diff --git a/Readme.md b/Readme.md index 188db518f..ea3faf9c3 100644 --- a/Readme.md +++ b/Readme.md @@ -2,23 +2,21 @@ ## web-apps -The frontend for [ONLYOFFICE Document Server][2]. Builds the program interface and allows the user create, edit, save and export text, spreadsheet and presentation documents using the common interface of a document editor. +The frontend for [ONLYOFFICE Document Server][2] and [ONLYOFFICE Desktop Editors](https://github.com/ONLYOFFICE/DesktopEditors). Builds the program interface and allows the user create, edit, save and export text documents, spreadsheets, and presentations. ## Previous versions -Until 2019-10-23 the repository was called web-apps-pro +Until 2019-10-23 the repository was called web-apps-pro. -## Project Information +## Project information -Official website: [http://www.onlyoffice.org](http://onlyoffice.org "http://www.onlyoffice.org") +Official website: [https://www.onlyoffice.com/](https://www.onlyoffice.com "https://www.onlyoffice.com") Code repository: [https://github.com/ONLYOFFICE/web-apps](https://github.com/ONLYOFFICE/web-apps "https://github.com/ONLYOFFICE/web-apps") -SaaS version: [http://www.onlyoffice.com](http://www.onlyoffice.com "http://www.onlyoffice.com") +## User feedback and support -## User Feedback and Support - -If you have any problems with or questions about [ONLYOFFICE Document Server][2], please visit our official forum to find answers to your questions: [dev.onlyoffice.org][1] or you can ask and answer ONLYOFFICE development questions on [Stack Overflow][3]. +If you have any problems with or questions about [ONLYOFFICE Document Server][2], please visit our official forum: [dev.onlyoffice.org][1] or you can ask and answer ONLYOFFICE development questions on [Stack Overflow][3]. [1]: http://dev.onlyoffice.org [2]: https://github.com/ONLYOFFICE/DocumentServer diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index e6868323e..6154a0c5e 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -135,6 +135,12 @@ request: bool (default: true), // enable set name label: string (default: "Guest") // postfix for user name }, + review: { + hideReviewDisplay: false // hide button Review mode, + showReviewChanges: false, + reviewDisplay: 'original', + trackChanges: undefined // true/false - open editor with track changes mode on/off, + }, chat: true, comments: true, zoom: 100, @@ -147,12 +153,12 @@ autosave: true, forcesave: false, commentAuthorOnly: false, // must be deprecated. use permissions.editCommentAuthorOnly and permissions.deleteCommentAuthorOnly instead - showReviewChanges: false, + showReviewChanges: false, // must be deprecated. use customization.review.showReviewChanges instead help: true, compactHeader: false, toolbarNoTabs: false, toolbarHideFileName: false, - reviewDisplay: 'original', + reviewDisplay: 'original', // must be deprecated. use customization.review.reviewDisplay instead spellcheck: true, compatibleFeatures: false, unit: 'cm' // cm, pt, inch, @@ -160,7 +166,7 @@ macros: true // can run macros in document plugins: true // can run plugins in document macrosMode: 'warn' // warn about automatic macros, 'enable', 'disable', 'warn', - trackChanges: undefined // true/false - open editor with track changes mode on/off, + trackChanges: undefined // true/false - open editor with track changes mode on/off, // must be deprecated. use customization.review.trackChanges instead hideRulers: false // hide or show rulers on first loading (presentation or document editor) hideNotes: false // hide or show notes panel on first loading (presentation editor) uiTheme: 'theme-dark' // set interface theme: id or default-dark/default-light diff --git a/apps/common/Gateway.js b/apps/common/Gateway.js index 14c1704f7..675a7421a 100644 --- a/apps/common/Gateway.js +++ b/apps/common/Gateway.js @@ -203,12 +203,13 @@ if (window.Common === undefined) { }); }, - requestRestore: function(version, url) { + requestRestore: function(version, url, fileType) { _postMessage({ event: 'onRequestRestore', data: { version: version, - url: url + url: url, + fileType: fileType } }); }, @@ -273,19 +274,23 @@ if (window.Common === undefined) { _postMessage({ event: 'onOutdatedVersion' }); }, - downloadAs: function(url) { + downloadAs: function(url, fileType) { _postMessage({ event: 'onDownloadAs', - data: url + data: { + url: url, + fileType: fileType + } }); }, - requestSaveAs: function(url, title) { + requestSaveAs: function(url, title, fileType) { _postMessage({ event: 'onRequestSaveAs', data: { url: url, - title: title + title: title, + fileType: fileType } }); }, diff --git a/apps/common/embed/lib/util/utils.js b/apps/common/embed/lib/util/utils.js index 7cddcafc7..2d275b85e 100644 --- a/apps/common/embed/lib/util/utils.js +++ b/apps/common/embed/lib/util/utils.js @@ -92,6 +92,14 @@ str = num.toString(); for (var i=str.length; i _arrAlphabet.length) { _arrLetters = _getLetters(visibleItems.length); } else { - _arrLetters = [..._arrAlphabet]; + _arrLetters = _arrAlphabet.slice(); } var usedLetters = []; if ($(_currentSection).find('[data-hint-title]').length > 0) { @@ -251,10 +251,17 @@ Common.UI.HintManager = new(function() { }; var _getHints = function() { + var docH = Common.Utils.innerHeight() - 20, + docW = Common.Utils.innerWidth() - 20, + topSection = _currentLevel !== 0 && $(_currentSection).length > 0 ? $(_currentSection).offset().top : 0, + bottomSection = _currentLevel !== 0 && $(_currentSection).length > 0 ? topSection + $(_currentSection).height() : docH; + if (_currentControls.length === 0) _getControls(); _currentControls.forEach(function(item, index) { if (!_isItemDisabled(item)) { + var leftBorder = 0, + rightBorder = docW; if ($(_currentSection).prop('id') === 'toolbar' && ($(_currentSection).find('.toolbar-mask').length > 0 || item.closest('.group').find('.toolbar-group-mask').length > 0)) { return; } @@ -264,6 +271,15 @@ Common.UI.HintManager = new(function() { return; } } + if (_currentLevel === 0 && item.closest('.tabs.short').length > 0) { + var blockTabs = item.closest('.tabs.short'); + leftBorder = blockTabs.offset().left; + rightBorder = leftBorder + blockTabs.width(); + if (!item.hasClass('scroll')) { + leftBorder += 20; + rightBorder -= 20; + } + } var hint = $('
' + item.attr('data-hint-title') + '
'); var direction = item.attr('data-hint-direction'); // exceptions @@ -277,6 +293,12 @@ Common.UI.HintManager = new(function() { item.attr('data-hint-direction', 'bottom'); } } + var maxHeight = docH; + if ($('#file-menu-panel').is(':visible') && _currentLevel > 1 && + ($('.fms-flex-apply').is(':visible') || $('#fms-flex-apply').is(':visible')) && + item.closest('.fms-flex-apply').length < 1 && item.closest('#fms-flex-apply').length < 1) { + maxHeight = docH - $('.fms-flex-apply').height(); + } var offsets = item.attr('data-hint-offset'); var applyOffset = offsets === 'big' ? 6 : (offsets === 'medium' ? 4 : (offsets === 'small' ? 2 : 0)); if (applyOffset) { @@ -295,35 +317,34 @@ Common.UI.HintManager = new(function() { break; } } else { - offsets = offsets ? item.attr('data-hint-offset').split(',').map((item) => (parseInt(item))) : [0, 0]; + offsets = offsets ? item.attr('data-hint-offset').split(',').map(function (item) { return parseInt(item); }) : [0, 0]; } var offset = item.offset(); - if (direction === 'left-top') + var top, left; + if (direction === 'left-top') { + top = offset.top - 10 + offsets[0]; + left = offset.left - 10 + offsets[1]; + } else if (direction === 'top') { + top = offset.top - 18 + offsets[0]; + left = offset.left + (item.outerWidth() - 18) / 2 + offsets[1]; + } else if (direction === 'right') { + top = offset.top + (item.outerHeight() - 18) / 2 + offsets[0]; + left = offset.left + item.outerWidth() + offsets[1]; + } else if (direction === 'left') { + top = offset.top + (item.outerHeight() - 18) / 2 + offsets[0]; + left = offset.left - 18 + offsets[1]; + } else { + top = offset.top + item.outerHeight() + offsets[0]; + left = offset.left + (item.outerWidth() - 18) / 2 + offsets[1]; + } + + if (top < maxHeight && left < docW && top > topSection && top < bottomSection && left > leftBorder && left + 18 < rightBorder) { hint.css({ - top: offset.top - 10 + offsets[0], - left: offset.left - 10 + offsets[1] + top: top, + left: left }); - else if (direction === 'top') - hint.css({ - top: offset.top - 18 + offsets[0], - left: offset.left + (item.outerWidth() - 18) / 2 + offsets[1] - }); - else if (direction === 'right') - hint.css({ - top: offset.top + (item.outerHeight() - 18) / 2 + offsets[0], - left: offset.left + item.outerWidth() + offsets[1] - }); - else if (direction === 'left') - hint.css({ - top: offset.top + (item.outerHeight() - 18) / 2 + offsets[0], - left: offset.left - 18 + offsets[1] - }); - else - hint.css({ - top: offset.top + item.outerHeight() + offsets[0], - left: offset.left + (item.outerWidth() - 18) / 2 + offsets[1] - }); - $(document.body).append(hint); + $(document.body).append(hint); + } _currentHints.push(hint); } @@ -350,7 +371,8 @@ Common.UI.HintManager = new(function() { _lang = mode.lang; _getAlphabetLetters(); }, - 'hints:clear': _clearHints + 'hints:clear': _clearHints, + 'window:resize': _clearHints }); $('#editor_sdk').on('click', function () { _clearHints(); @@ -362,7 +384,7 @@ Common.UI.HintManager = new(function() { if (e.keyCode == Common.UI.Keys.ALT && _isAlt) { e.preventDefault(); if (!_hintVisible) { - $('input').blur(); // to change value in inputField + $('input:focus').blur(); // to change value in inputField _currentLevel = $('#file-menu-panel').is(':visible') ? 1 : 0; _setCurrentSection(); _showHints(); @@ -431,17 +453,17 @@ Common.UI.HintManager = new(function() { _resetToDefault(); return; } - if (!curr.attr('content-target') || (curr.attr('content-target') && !$(`#${curr.attr('content-target')}`).is(':visible'))) { // need to open panel + if (!curr.attr('content-target') || (curr.attr('content-target') && !$('#' + curr.attr('content-target')).is(':visible'))) { // need to open panel if (!($('#file-menu-panel').is(':visible') && (curr.parent().prop('id') === 'fm-btn-info' && $('#panel-info').is(':visible') || curr.parent().prop('id') === 'fm-btn-settings' && $('#panel-settings').is(':visible')))) { if (curr.attr('for')) { // to trigger event in checkbox - $(`#${curr.attr('for')}`).trigger(jQuery.Event('click', {which: 1})); + $('#' + curr.attr('for')).trigger(jQuery.Event('click', {which: 1})); } else { curr.trigger(jQuery.Event('click', {which: 1})); } } } - if (curr.prop('id') === 'btn-goback' || curr.closest('.btn-slot').prop('id') === 'slot-btn-options' || curr.prop('id') === 'left-btn-thumbs') { + if (curr.prop('id') === 'btn-goback' || curr.closest('.btn-slot').prop('id') === 'slot-btn-options' || curr.prop('id') === 'left-btn-thumbs' || curr.hasClass('scroll')) { _resetToDefault(); return; } diff --git a/apps/common/main/lib/component/LoadMask.js b/apps/common/main/lib/component/LoadMask.js index 1742b2064..b67060b2b 100644 --- a/apps/common/main/lib/component/LoadMask.js +++ b/apps/common/main/lib/component/LoadMask.js @@ -104,38 +104,37 @@ define([ return this; }, - show: function(){ - // if (maskeEl || loaderEl) - // return; + internalShow: function() { + this.ownerEl.append(this.maskeEl); + this.ownerEl.append(this.loaderEl); + this.loaderEl.css('min-width', $('.asc-loadmask-title', this.loaderEl).width() + 105); + + if (this.ownerEl && this.ownerEl.closest('.asc-window.modal').length==0) + Common.util.Shortcuts.suspendEvents(); + }, + + show: function(immediately){ // The owner is already masked - var ownerEl = this.ownerEl, - loaderEl = this.loaderEl, - maskeEl = this.maskeEl; - if (!!ownerEl.ismasked) + if (!!this.ownerEl.ismasked) return this; - ownerEl.ismasked = true; + this.ownerEl.ismasked = true; var me = this; if (me.title != me.options.title) { me.options.title = me.title; - $('.asc-loadmask-title', loaderEl).html(me.title); + $('.asc-loadmask-title', this.loaderEl).html(me.title); } - // show mask after 500 ms if it wont be hided - me.timerId = setTimeout(function () { - ownerEl.append(maskeEl); - ownerEl.append(loaderEl); - - // if (ownerEl.height()<1 || ownerEl.width()<1) - // loaderEl.css({visibility: 'hidden'}); - - loaderEl.css('min-width', $('.asc-loadmask-title', loaderEl).width() + 105); - - if (ownerEl && ownerEl.closest('.asc-window.modal').length==0) - Common.util.Shortcuts.suspendEvents(); - },500); + if (immediately) { + me.internalShow(); + } else if (!me.timerId) { + // show mask after 500 ms if it wont be hided + me.timerId = setTimeout(function () { + me.internalShow(); + },500); + } return this; }, diff --git a/apps/common/main/lib/component/Mixtbar.js b/apps/common/main/lib/component/Mixtbar.js index 80bf8c471..44fc291ab 100644 --- a/apps/common/main/lib/component/Mixtbar.js +++ b/apps/common/main/lib/component/Mixtbar.js @@ -93,7 +93,7 @@ define([ var _template_tabs = '
' + - '' + + '' + '' + - '' + + '' + '
'; this.$layout = $(options.template({ diff --git a/apps/common/main/lib/component/Slider.js b/apps/common/main/lib/component/Slider.js index bbbb1bbb8..d142eed92 100644 --- a/apps/common/main/lib/component/Slider.js +++ b/apps/common/main/lib/component/Slider.js @@ -82,13 +82,14 @@ define([ maxValue: 100, step: 1, value: 100, - enableKeyEvents: false + enableKeyEvents: false, + direction: 'horizontal' // 'vertical' }, disabled: false, template : _.template([ - '
', + '
', '
', '
', '<% if (this.options.enableKeyEvents) { %>', @@ -107,6 +108,7 @@ define([ me.maxValue = me.options.maxValue; me.delta = 100/(me.maxValue - me.minValue); me.step = me.options.step; + me.direction = me.options.direction; if (me.options.el) { me.render(); @@ -133,7 +135,7 @@ define([ } this.cmpEl.find('.track-center').width(me.options.width - 14); - this.cmpEl.width(me.options.width); + this.cmpEl[me.direction === 'vertical' ? 'height' : 'width'](me.options.width); this.thumb = this.cmpEl.find('.thumb'); @@ -141,7 +143,9 @@ define([ e.preventDefault(); e.stopPropagation(); - var pos = Math.max(0, Math.min(100, (Math.round((e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left - me._dragstart) / me.width * 100)))); + var pos = Math.max(0, Math.min(100, (Math.round(( + me.direction === 'vertical' ? (e.pageY*Common.Utils.zoom() - me.cmpEl.offset().top) : (e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left) - me._dragstart + ) / me.width * 100)))); me.setThumbPosition(pos); me.lastValue = me.value; @@ -162,7 +166,9 @@ define([ e.preventDefault(); e.stopPropagation(); - var pos = Math.max(0, Math.min(100, (Math.round((e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left - me._dragstart) / me.width * 100)))); + var pos = Math.max(0, Math.min(100, (Math.round(( + me.direction === 'vertical' ? (e.pageY*Common.Utils.zoom() - me.cmpEl.offset().top) : (e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left) - me._dragstart + ) / me.width * 100)))); me.setThumbPosition(pos); me.lastValue = me.value; @@ -174,7 +180,7 @@ define([ var onMouseDown = function (e) { if ( me.disabled ) return; - me._dragstart = e.pageX*Common.Utils.zoom() - me.thumb.offset().left - 7; + me._dragstart = me.direction === 'vertical' ? (e.pageY*Common.Utils.zoom() - me.thumb.offset().top) : (e.pageX*Common.Utils.zoom() - me.thumb.offset().left) - 7; me.thumb.addClass('active'); $(document).on('mouseup', onMouseUp); @@ -187,7 +193,9 @@ define([ var onTrackMouseDown = function (e) { if ( me.disabled ) return; - var pos = Math.max(0, Math.min(100, (Math.round((e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left) / me.width * 100)))); + var pos = Math.max(0, Math.min(100, (Math.round(( + me.direction === 'vertical' ? (e.pageY*Common.Utils.zoom() - me.cmpEl.offset().top) : (e.pageX*Common.Utils.zoom() - me.cmpEl.offset().left) + ) / me.width * 100)))); me.setThumbPosition(pos); me.lastValue = me.value; @@ -245,8 +253,12 @@ define([ return this; }, - setThumbPosition: function(x) { - this.thumb.css({left: x + '%'}); + setThumbPosition: function(pos) { + if (this.direction === 'vertical') { + this.thumb.css({top: pos + '%'}); + } else { + this.thumb.css({left: pos + '%'}); + } }, setValue: function(value) { diff --git a/apps/common/main/lib/component/TabBar.js b/apps/common/main/lib/component/TabBar.js index 4ea3bbf18..a1ef6a17f 100644 --- a/apps/common/main/lib/component/TabBar.js +++ b/apps/common/main/lib/component/TabBar.js @@ -423,6 +423,7 @@ define([ this.setTabVisible('backward'); } } + Common.NotificationCenter.trigger('hints:clear'); }, onProcessMouse: function(data) { diff --git a/apps/common/main/lib/component/ThemeColorPalette.js b/apps/common/main/lib/component/ThemeColorPalette.js index 81c074cc3..79b937503 100644 --- a/apps/common/main/lib/component/ThemeColorPalette.js +++ b/apps/common/main/lib/component/ThemeColorPalette.js @@ -87,7 +87,7 @@ define([ '<% if (me.options.dynamiccolors!==undefined) { %>' + '
' + '<% for (var i=0; i' + - '' + + '' + ' ' + '<% } %>' + '<% } %>' + diff --git a/apps/common/main/lib/controller/History.js b/apps/common/main/lib/controller/History.js index b3714940d..506b64280 100644 --- a/apps/common/main/lib/controller/History.js +++ b/apps/common/main/lib/controller/History.js @@ -100,9 +100,10 @@ define([ this.panelHistory.$el.find('#history-list').css('padding-bottom', hasChanges ? '45px' : 0); }, - onDownloadUrl: function(url) { - if (this.isFromSelectRevision !== undefined) - Common.Gateway.requestRestore(this.isFromSelectRevision, url); + onDownloadUrl: function(url, fileType) { + if (this.isFromSelectRevision !== undefined) { + Common.Gateway.requestRestore(this.isFromSelectRevision, url, fileType); + } this.isFromSelectRevision = undefined; }, @@ -111,10 +112,11 @@ define([ var btn = $(e.target); if (btn && btn.hasClass('revision-restore')) { if (record.get('isRevision')) - Common.Gateway.requestRestore(record.get('revision')); + Common.Gateway.requestRestore(record.get('revision'), undefined, record.get('fileType')); else { this.isFromSelectRevision = record.get('revision'); - this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(Asc.c_oAscFileType.DOCX, true)); + var fileType = Asc.c_oAscFileType[(record.get('fileType') || '').toUpperCase()] || Asc.c_oAscFileType.DOCX; + this.api.asc_DownloadAs(new Asc.asc_CDownloadOptions(fileType, true)); } return; } @@ -135,9 +137,15 @@ define([ this.currentServerVersion = record.get('serverVersion'); if ( _.isEmpty(url) || (urlGetTime - record.get('urlGetTime') > 5 * 60000)) { - _.delay(function() { - Common.Gateway.requestHistoryData(rev); // получаем url-ы для ревизий - }, 10); + var me = this; + if (!me.timerId) { + me.timerId = setTimeout(function () { + me.timerId = 0; + },30000); + _.delay(function() { + Common.Gateway.requestHistoryData(rev); // получаем url-ы для ревизий + }, 10); + } } else { var commentsController = this.getApplication().getController('Common.Controllers.Comments'); if (commentsController) { @@ -167,6 +175,11 @@ define([ onSetHistoryData: function(opts) { if (!this.mode.canUseHistory) return; + if (this.timerId) { + clearTimeout(this.timerId); + this.timerId = 0; + } + if (opts.data.error) { var config = { title: this.notcriticalErrorTitle, @@ -204,6 +217,7 @@ define([ rev.set('docIdPrev', docIdPrev, {silent: true}); } rev.set('token', token, {silent: true}); + opts.data.fileType && rev.set('fileType', opts.data.fileType, {silent: true}); } } var hist = new Asc.asc_CVersionHistory(); @@ -216,6 +230,7 @@ define([ hist.asc_setIsRequested(true); hist.asc_setServerVersion(this.currentServerVersion); this.api.asc_showRevision(hist); + this.currentRev = data.version; var reviewController = this.getApplication().getController('Common.Controllers.ReviewChanges'); if (reviewController) diff --git a/apps/common/main/lib/controller/Protection.js b/apps/common/main/lib/controller/Protection.js index d7a45c1c6..cb144953f 100644 --- a/apps/common/main/lib/controller/Protection.js +++ b/apps/common/main/lib/controller/Protection.js @@ -153,7 +153,6 @@ define([ var me = this, win = new Common.Views.PasswordDialog({ api: me.api, - signType: 'invisible', handler: function(result, props) { if (result == 'ok') { me.api.asc_setCurrentPassword(props); diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index 6b6312256..fafa6cdc5 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -131,6 +131,8 @@ define([ this.api.asc_registerCallback('asc_onUpdateRevisionsChangesPosition', _.bind(this.onApiUpdateChangePosition, this)); this.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(this.onAuthParticipantsChanged, this)); this.api.asc_registerCallback('asc_onParticipantsChanged', _.bind(this.onAuthParticipantsChanged, this)); + this.api.asc_registerCallback('asc_onBeginViewModeInReview', _.bind(this.onBeginViewModeInReview, this)); + this.api.asc_registerCallback('asc_onEndViewModeInReview', _.bind(this.onEndViewModeInReview, this)); } if (this.appConfig.canReview) this.api.asc_registerCallback('asc_onOnTrackRevisionsChange', _.bind(this.onApiTrackRevisionsChange, this)); @@ -694,6 +696,18 @@ define([ this._state.previewMode = (mode == 'final' || mode == 'original'); }, + onBeginViewModeInReview: function(mode) { + this.disableEditing(true); + this.view && this.view.turnDisplayMode(mode ? 'final' : 'original'); + this._state.previewMode = true; + }, + + onEndViewModeInReview: function() { + this.disableEditing(false); + this.view && this.view.turnDisplayMode('markup'); + this._state.previewMode = false; + }, + isPreviewChangesMode: function() { return this._state.previewMode; }, @@ -784,7 +798,9 @@ define([ // Common.Utils.InternalSettings.set(me.view.appPrefix + "track-changes", (state ? 0 : 1) + (global ? 2 : 0)); // }; - var trackChanges = typeof (me.appConfig.customization) == 'object' ? me.appConfig.customization.trackChanges : undefined; + var trackChanges = me.appConfig.customization && me.appConfig.customization.review ? me.appConfig.customization.review.trackChanges : undefined; + (trackChanges===undefined) && (trackChanges = me.appConfig.customization ? me.appConfig.customization.trackChanges : undefined); + if (config.isReviewOnly || trackChanges!==undefined) me.api.asc_SetLocalTrackRevisions(config.isReviewOnly || trackChanges===true); else @@ -793,7 +809,8 @@ define([ // _setReviewStatus(state, global); - if ( typeof (me.appConfig.customization) == 'object' && (me.appConfig.customization.showReviewChanges==true) ) { + if ( typeof (me.appConfig.customization) == 'object' && (me.appConfig.customization.review && me.appConfig.customization.review.showReviewChanges==true || + (!me.appConfig.customization.review || me.appConfig.customization.review.showReviewChanges===undefined) && me.appConfig.customization.showReviewChanges==true) ) { me.dlgChanges = (new Common.Views.ReviewChangesDialog({ popoverChanges : me.popoverChanges, mode : me.appConfig @@ -807,8 +824,11 @@ define([ config.canViewReview = (config.isEdit || me.api.asc_HaveRevisionsChanges(true)); // check revisions from all users if (config.canViewReview) { var val = Common.localStorage.getItem(me.view.appPrefix + "review-mode"); - if (val===null) - val = me.appConfig.customization && /^(original|final|markup)$/i.test(me.appConfig.customization.reviewDisplay) ? me.appConfig.customization.reviewDisplay.toLocaleLowerCase() : 'original'; + if (val===null) { + val = me.appConfig.customization && me.appConfig.customization.review ? me.appConfig.customization.review.reviewDisplay : undefined; + !val && (val = me.appConfig.customization ? me.appConfig.customization.reviewDisplay : undefined); + val = /^(original|final|markup)$/i.test(val) ? val.toLocaleLowerCase() : 'original'; + } me.turnDisplayMode((config.isEdit || config.isRestrictedEdit) ? 'markup' : val); // load display mode only in viewer me.view.turnDisplayMode((config.isEdit || config.isRestrictedEdit) ? 'markup' : val); } diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index 64bdc4128..6fabc6e3d 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -261,6 +261,10 @@ define([ obj.name = theme_name; api.asc_setSkin(obj); + if ( !!this.api.asc_setContentDarkMode && this.isDarkTheme() ) { + this.api.asc_setContentDarkMode(this.isContentThemeDark()); + } + Common.NotificationCenter.on('document:ready', on_document_ready.bind(this)); }, @@ -282,7 +286,8 @@ define([ currentThemeId: function () { var t = Common.localStorage.getItem('ui-theme') || Common.localStorage.getItem('ui-theme-id'); - return get_ui_theme_name(t) || id_default_light_theme; + var id = get_ui_theme_name(t); + return !!themes_map[id] ? id : id_default_light_theme; }, defaultThemeId: function (type) { @@ -297,12 +302,34 @@ define([ return themes_map[this.currentThemeId()].type == 'dark'; }, + isContentThemeDark: function () { + return Common.localStorage.getItem("content-theme") == 'dark'; + }, + + toggleContentTheme: function () { + var is_current_dark = this.isContentThemeDark(); + is_current_dark ? Common.localStorage.setItem('content-theme', 'light') : Common.localStorage.setItem('content-theme', 'dark'); + + if ( this.api.asc_setContentDarkMode ) + this.api.asc_setContentDarkMode(!is_current_dark); + + Common.NotificationCenter.trigger('contenttheme:dark', !is_current_dark); + }, + setTheme: function (obj, force) { var id = get_ui_theme_name(obj); if ( (this.currentThemeId() != id || force) && !!themes_map[id] ) { document.body.className = document.body.className.replace(/theme-[\w-]+\s?/gi, '').trim(); document.body.classList.add(id, 'theme-type-' + themes_map[id].type); + if ( this.api.asc_setContentDarkMode ) + if ( themes_map[id].type == 'light' ) { + this.api.asc_setContentDarkMode(false); + } else { + this.api.asc_setContentDarkMode(this.isContentThemeDark()); + Common.NotificationCenter.trigger('contenttheme:dark', this.isContentThemeDark()); + } + if ( this.api ) { var obj = get_current_theme_colors(name_colors); obj.type = themes_map[id].type; diff --git a/apps/common/main/lib/model/HistoryVersion.js b/apps/common/main/lib/model/HistoryVersion.js index 5c4341806..169ee5a2f 100644 --- a/apps/common/main/lib/model/HistoryVersion.js +++ b/apps/common/main/lib/model/HistoryVersion.js @@ -74,7 +74,8 @@ define([ isVisible: true, allowSelected: true, selected: false, - serverVersion: 0 + serverVersion: 0, + fileType: 'docx' } } }); diff --git a/apps/common/main/lib/mods/perfect-scrollbar.js b/apps/common/main/lib/mods/perfect-scrollbar.js index 5397eb6c7..fe1879cc3 100644 --- a/apps/common/main/lib/mods/perfect-scrollbar.js +++ b/apps/common/main/lib/mods/perfect-scrollbar.js @@ -316,6 +316,7 @@ var shouldPrevent = false; $this.bind('mousewheel' + eventClassName, function (e, deprecatedDelta, deprecatedDeltaX, deprecatedDeltaY) { + Common.NotificationCenter.trigger('hints:clear'); var deltaX = e.deltaX * e.deltaFactor || deprecatedDeltaX, deltaY = e.deltaY * e.deltaFactor || deprecatedDeltaY; diff --git a/apps/common/main/lib/util/utils.js b/apps/common/main/lib/util/utils.js index 22a0d50a9..1a7aae36d 100644 --- a/apps/common/main/lib/util/utils.js +++ b/apps/common/main/lib/util/utils.js @@ -1072,3 +1072,12 @@ Common.Utils.UserInfoParser = new(function() { } } })(); + +Common.Utils.getKeyByValue = function(obj, value) { + for(var prop in obj) { + if(obj.hasOwnProperty(prop)) { + if(obj[prop] === value) + return prop; + } + } +}; \ No newline at end of file diff --git a/apps/common/main/lib/view/Comments.js b/apps/common/main/lib/view/Comments.js index cb57fadde..14469baa8 100644 --- a/apps/common/main/lib/view/Comments.js +++ b/apps/common/main/lib/view/Comments.js @@ -102,7 +102,7 @@ define([ var view = this, textBox = $(this.el).find('textarea'), domTextBox = null, - minHeight = 50, + minHeight = 55, lineHeight = 0, scrollPos = 0, oldHeight = 0, diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index 43daf623b..780ed9d52 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -97,6 +97,7 @@ define([ ''+ '
' + '
' + + '
' + '
' + '
' + '
' + @@ -350,6 +351,10 @@ define([ if ( me.btnOptions ) me.btnOptions.updateHint(me.tipViewSettings); + + if ( me.btnContentMode ) { + me.btnContentMode.on('click', function (e) { Common.UI.Themes.toggleContentTheme(); }); + } } function onDocNameKeyDown(e) { @@ -386,6 +391,12 @@ define([ } } + function onContentThemeChangedToDark(isdark) { + if ( this.btnContentMode ) { + this.btnContentMode.changeIcon(!isdark ? {curr: 'btn-mode-light', next: 'btn-mode-dark'} : {curr: 'btn-mode-dark', next: 'btn-mode-light'}); + } + } + return { options: { branding: {}, @@ -453,6 +464,7 @@ define([ 'app:face': function(mode) {Common.Utils.asyncCall(onAppShowed, me, mode);} }); Common.NotificationCenter.on('collaboration:sharingdeny', onLostEditRights); + Common.NotificationCenter.on('contenttheme:dark', onContentThemeChangedToDark.bind(this)); }, render: function (el, role) { @@ -548,6 +560,12 @@ define([ $panelUsers.hide(); + if ( !!window.DE ) { + var mode_cls = Common.UI.Themes.isContentThemeDark() ? 'btn-mode-light' : 'btn-mode-dark'; + me.btnContentMode = createTitleButton('toolbar__icon icon--inverse ' + mode_cls, $html.findById('#slot-btn-mode')); + me.btnContentMode.setVisible(Common.UI.Themes.isDarkTheme()); + } + return $html; } else if ( role == 'title' ) { diff --git a/apps/common/main/lib/view/OpenDialog.js b/apps/common/main/lib/view/OpenDialog.js index fce9a2ee1..5d7d7ba19 100644 --- a/apps/common/main/lib/view/OpenDialog.js +++ b/apps/common/main/lib/view/OpenDialog.js @@ -91,6 +91,8 @@ define([ }, options); + this.txtOpenFile = options.txtOpenFile || this.txtOpenFile; + this.template = options.template || [ '
', '
', diff --git a/apps/common/main/lib/view/PasswordDialog.js b/apps/common/main/lib/view/PasswordDialog.js index 05545ad1b..862446e9c 100644 --- a/apps/common/main/lib/view/PasswordDialog.js +++ b/apps/common/main/lib/view/PasswordDialog.js @@ -64,13 +64,15 @@ define([ }, options); + this.handler = options.handler; + this.template = options.template || [ '
', '
', '', '
', '
', - '', + '', '
', '
', '
', @@ -81,9 +83,6 @@ define([ '
' ].join(''); - this.handler = options.handler; - this.settings = options.settings; - _options.tpl = _.template(this.template)(_options); Common.UI.Window.prototype.initialize.call(this, _options); diff --git a/apps/common/main/lib/view/Protection.js b/apps/common/main/lib/view/Protection.js index 7c607a539..603d5bf13 100644 --- a/apps/common/main/lib/view/Protection.js +++ b/apps/common/main/lib/view/Protection.js @@ -121,7 +121,10 @@ define([ this.btnAddPwd = new Common.UI.Button({ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-ic-protect', - caption: this.txtEncrypt + caption: this.txtEncrypt, + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' }); this.btnsAddPwd.push(this.btnAddPwd); @@ -130,7 +133,10 @@ define([ iconCls: 'toolbar__icon btn-ic-protect', caption: this.txtEncrypt, menu: true, - visible: false + visible: false, + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' }); } if (this.appConfig.isSignatureSupport) { @@ -138,7 +144,10 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-ic-signature', caption: this.txtSignature, - menu: (this.appPrefix !== 'pe-') + menu: (this.appPrefix !== 'pe-'), + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' }); if (!this.btnSignature.menu) this.btnsInvisibleSignature.push(this.btnSignature); diff --git a/apps/common/main/lib/view/ReviewChanges.js b/apps/common/main/lib/view/ReviewChanges.js index d29e0ecdd..04d197591 100644 --- a/apps/common/main/lib/view/ReviewChanges.js +++ b/apps/common/main/lib/view/ReviewChanges.js @@ -295,7 +295,7 @@ define([ dataHintOffset: 'small' }); - if (!this.appConfig.isRestrictedEdit) {// hide Display mode option for fillForms and commenting mode + if (!this.appConfig.isRestrictedEdit && !(this.appConfig.customization && this.appConfig.customization.review && this.appConfig.customization.review.hideReviewDisplay)) {// hide Display mode option for fillForms and commenting mode var menuTemplate = _.template('
<%= caption %>
' + '<% if (options.description !== null) { %>' + '<% } %>
'); diff --git a/apps/common/main/lib/view/ReviewPopover.js b/apps/common/main/lib/view/ReviewPopover.js index 6eda90bda..759c2debe 100644 --- a/apps/common/main/lib/view/ReviewPopover.js +++ b/apps/common/main/lib/view/ReviewPopover.js @@ -176,7 +176,7 @@ define([ var view = this, textBox = this.$el.find('textarea'), domTextBox = null, - minHeight = 50, + minHeight = 55, lineHeight = 0, scrollPos = 0, oldHeight = 0, diff --git a/apps/common/main/lib/view/SearchDialog.js b/apps/common/main/lib/view/SearchDialog.js index 3a6039a56..41b1efb62 100644 --- a/apps/common/main/lib/view/SearchDialog.js +++ b/apps/common/main/lib/view/SearchDialog.js @@ -99,7 +99,7 @@ '
', '' diff --git a/apps/common/main/resources/img/doc-formats/docm.svg b/apps/common/main/resources/img/doc-formats/docm.svg new file mode 100644 index 000000000..9fe4cdb4e --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/docm.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/apps/common/main/resources/img/doc-formats/pptm.svg b/apps/common/main/resources/img/doc-formats/pptm.svg new file mode 100644 index 000000000..ead96f9dd --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/pptm.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/apps/common/main/resources/img/doc-formats/xlsm.svg b/apps/common/main/resources/img/doc-formats/xlsm.svg new file mode 100644 index 000000000..5a9c956f9 --- /dev/null +++ b/apps/common/main/resources/img/doc-formats/xlsm.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/apps/common/main/resources/img/toolbar/1x/btn-mode-dark.png b/apps/common/main/resources/img/toolbar/1x/btn-mode-dark.png new file mode 100644 index 000000000..5a6041484 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-mode-dark.png differ diff --git a/apps/common/main/resources/img/toolbar/1x/btn-mode-light.png b/apps/common/main/resources/img/toolbar/1x/btn-mode-light.png new file mode 100644 index 000000000..52e381f58 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/1x/btn-mode-light.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-mode-dark@2x.png b/apps/common/main/resources/img/toolbar/2x/btn-mode-dark@2x.png new file mode 100644 index 000000000..9235e2101 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-mode-dark@2x.png differ diff --git a/apps/common/main/resources/img/toolbar/2x/btn-mode-light@2x.png b/apps/common/main/resources/img/toolbar/2x/btn-mode-light@2x.png new file mode 100644 index 000000000..ff4ce3510 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/2x/btn-mode-light@2x.png differ diff --git a/apps/common/main/resources/less/buttons.less b/apps/common/main/resources/less/buttons.less index 6e545e95a..366d020b7 100644 --- a/apps/common/main/resources/less/buttons.less +++ b/apps/common/main/resources/less/buttons.less @@ -677,6 +677,7 @@ &:active:not(.disabled), &.active:not(.disabled) { .caret { + border-color: @icon-normal; } } @@ -990,6 +991,7 @@ &.active:not(.disabled) { .caret { background-position: @arrow-small-offset-x @arrow-small-offset-y; + border-color: @icon-normal; } } diff --git a/apps/common/main/resources/less/colors-table-classic.less b/apps/common/main/resources/less/colors-table-classic.less index efa5c9a63..50b2dc03a 100644 --- a/apps/common/main/resources/less/colors-table-classic.less +++ b/apps/common/main/resources/less/colors-table-classic.less @@ -45,9 +45,10 @@ --text-inverse: #fff; --text-toolbar-header: #fff; --text-contrast-background: #fff; + --text-alt-key-hint: #444; --icon-normal: #444; - --icon-normal-pressed: #444; + --icon-normal-pressed: #fff; --icon-inverse: #444; --icon-toolbar-header: fade(#fff, 80%); --icon-notification-badge: #000; diff --git a/apps/common/main/resources/less/colors-table-dark.less b/apps/common/main/resources/less/colors-table-dark.less index 4ffcbeb42..1772e0277 100644 --- a/apps/common/main/resources/less/colors-table-dark.less +++ b/apps/common/main/resources/less/colors-table-dark.less @@ -46,6 +46,7 @@ --text-inverse: #333; --text-toolbar-header: fade(#fff, 80%); --text-contrast-background: #fff; + --text-alt-key-hint: #2a2a2a; --icon-normal: fade(#fff, 80%); --icon-normal-pressed: fade(#fff, 80%); diff --git a/apps/common/main/resources/less/colors-table.less b/apps/common/main/resources/less/colors-table.less index f1224fc6c..177ab6b13 100644 --- a/apps/common/main/resources/less/colors-table.less +++ b/apps/common/main/resources/less/colors-table.less @@ -188,6 +188,7 @@ @text-inverse: var(--text-inverse); @text-toolbar-header: var(--text-toolbar-header); @text-contrast-background: var(--text-contrast-background); +@text-alt-key-hint: var(--text-alt-key-hint); // Icon // ------------------------- diff --git a/apps/common/main/resources/less/combo-dataview.less b/apps/common/main/resources/less/combo-dataview.less index 64b972abc..11a8aff52 100644 --- a/apps/common/main/resources/less/combo-dataview.less +++ b/apps/common/main/resources/less/combo-dataview.less @@ -48,6 +48,12 @@ } } } + + &.active, &:active { + .caret { + border-color: @icon-normal; + } + } } } diff --git a/apps/common/main/resources/less/comments.less b/apps/common/main/resources/less/comments.less index 62d3fc68e..b616e8ced 100644 --- a/apps/common/main/resources/less/comments.less +++ b/apps/common/main/resources/less/comments.less @@ -23,15 +23,6 @@ font-weight: bold; margin-top: 2px; } - - #comments-btn-sort { - .btn-toolbar { - min-width: 20px; - } - .inner-box-caret { - display: none; - } - } } .messages-ct { @@ -122,7 +113,7 @@ textarea { width: 100%; - height: 50px; + height: 55px; resize: none; margin-bottom: 5px; border: @scaled-one-px-value-ie solid @border-regular-control-ie; diff --git a/apps/common/main/resources/less/hint-manager.less b/apps/common/main/resources/less/hint-manager.less index df74acec3..ef0541000 100644 --- a/apps/common/main/resources/less/hint-manager.less +++ b/apps/common/main/resources/less/hint-manager.less @@ -8,7 +8,7 @@ text-align: center; background-color: @background-alt-key-hint-ie; background-color: @background-alt-key-hint; - color: @text-normal; + color: @text-alt-key-hint; font-size: 12px; line-height: 18px; padding: 0 4px; diff --git a/apps/common/main/resources/less/history.less b/apps/common/main/resources/less/history.less index ea04bb557..4c44e95b3 100644 --- a/apps/common/main/resources/less/history.less +++ b/apps/common/main/resources/less/history.less @@ -157,10 +157,10 @@ } .revision-restore { - color: @text-normal-ie; - color: @text-normal; - border-bottom: @scaled-one-px-value-ie dotted @text-normal-ie; - border-bottom: @scaled-one-px-value dotted @text-normal; + color: @text-normal-pressed-ie; + color: @text-normal-pressed; + border-bottom: @scaled-one-px-value-ie dotted @text-normal-pressed-ie; + border-bottom: @scaled-one-px-value dotted @text-normal-pressed; height: 16px; margin-top: 5px; white-space: pre-wrap; diff --git a/apps/common/main/resources/less/slider.less b/apps/common/main/resources/less/slider.less index fc134d2bf..cb7b32f55 100644 --- a/apps/common/main/resources/less/slider.less +++ b/apps/common/main/resources/less/slider.less @@ -32,6 +32,28 @@ &.active { } } + + &.vertical { + height: auto; + width: 18px; + padding-top: 0; + padding-left: 7px; + .track { + position: absolute; + @track-height: 4px; + height: calc(100% + @track-height); + width: @track-height; + margin-left: 0; + margin-top: -@track-height / 2; + } + .thumb { + @thumb-width: 12px; + top: auto; + left: 3px; + margin-left: 0; + margin-top: @thumb-width / -2; + } + } } .thumb { diff --git a/apps/common/main/resources/less/theme-colorpalette.less b/apps/common/main/resources/less/theme-colorpalette.less index 72a11809c..24a5c5f29 100644 --- a/apps/common/main/resources/less/theme-colorpalette.less +++ b/apps/common/main/resources/less/theme-colorpalette.less @@ -39,11 +39,16 @@ } } - .dynamic-empty-color em span { - border:solid @scaled-one-px-value-ie @border-color-shading-ie; - border:solid @scaled-one-px-value @border-color-shading; + .dynamic-empty-color { background: @background-normal-ie; background: @background-normal; + + em span { + border: solid @scaled-one-px-value-ie @border-color-shading-ie; + border: solid @scaled-one-px-value @border-color-shading; + background: @background-normal-ie; + background: @background-normal; + } } .color-transparent { diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index 008d01c72..e62daa61e 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -239,6 +239,10 @@ &:not(:first-child) { margin-top: 6px; } + + &.font-normal { + .font-size-normal(); + } } .separator { @@ -648,7 +652,8 @@ &, &:hover, &:focus { background-color: @highlight-button-pressed-ie; background-color: @highlight-button-pressed; - color: @dropdown-link-active-color; + color: @text-normal-ie; + color: @text-normal; span.color { border-color: @icon-normal-ie; border-color: @icon-normal; diff --git a/apps/common/mobile/lib/component/ThemeColorPalette.jsx b/apps/common/mobile/lib/component/ThemeColorPalette.jsx index b0637aa45..ea46284f1 100644 --- a/apps/common/mobile/lib/component/ThemeColorPalette.jsx +++ b/apps/common/mobile/lib/component/ThemeColorPalette.jsx @@ -45,7 +45,7 @@ const StandartColors = ({ options, standartColors, onColorClick, curColor }) => ) }; -const CustomColors = ({ options, customColors, onColorClick, curColor }) => { +const CustomColors = ({ options, customColors, isTypeColors, onColorClick, curColor }) => { const colors = customColors.length > 0 ? customColors : []; const emptyItems = []; if (colors.length < options.customcolors) { @@ -64,7 +64,7 @@ const CustomColors = ({ options, customColors, onColorClick, curColor }) => { {colors && colors.length > 0 && colors.map((color, index) => { return( {onColorClick(color)}} > @@ -100,6 +100,7 @@ const ThemeColorPalette = props => { themeColors[row].push(effect); }); const standartColors = Common.Utils.ThemeColor.getStandartColors(); + let isTypeColors = standartColors.some( value => value === curColor ); // custom color let customColors = props.customColors; if (customColors.length < 1) { @@ -120,7 +121,7 @@ const ThemeColorPalette = props => {
{ _t.textCustomColors }
- +
diff --git a/apps/common/mobile/lib/controller/Plugins.jsx b/apps/common/mobile/lib/controller/Plugins.jsx index f17c4dc12..5ec997299 100644 --- a/apps/common/mobile/lib/controller/Plugins.jsx +++ b/apps/common/mobile/lib/controller/Plugins.jsx @@ -218,7 +218,7 @@ const PluginsController = inject('storeAppOptions')(observer(props => { plugin.set_Name(item['name']); plugin.set_Guid(item['guid']); plugin.set_BaseUrl(item['baseUrl']); - plugin.set_MinVersion && plugin.set_MinVersion(item.get('minVersion')); + plugin.set_MinVersion && plugin.set_MinVersion(item['minVersion']); let variations = item['variations'], variationsArr = []; diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx index 830ab10de..a56773d84 100644 --- a/apps/common/mobile/lib/controller/collaboration/Review.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx @@ -17,15 +17,24 @@ class InitReview extends Component { Common.Notifications.on('document:ready', () => { const api = Common.EditorApi.get(); const appOptions = props.storeAppOptions; - api.asc_SetTrackRevisions(appOptions.isReviewOnly || LocalStorage.getBool("de-mobile-track-changes-" + (appOptions.fileKey || ''))); + + let trackChanges = appOptions.customization && appOptions.customization.review ? appOptions.customization.review.trackChanges : undefined; + (trackChanges===undefined) && (trackChanges = appOptions.customization ? appOptions.customization.trackChanges : undefined); + trackChanges = appOptions.isReviewOnly || trackChanges === true || trackChanges !== false + && LocalStorage.getBool("de-mobile-track-changes-" + (appOptions.fileKey || '')); + + api.asc_SetTrackRevisions(trackChanges); // Init display mode if (!appOptions.canReview) { const canViewReview = appOptions.isEdit || api.asc_HaveRevisionsChanges(true); appOptions.setCanViewReview(canViewReview); if (canViewReview) { let viewReviewMode = LocalStorage.getItem("de-view-review-mode"); - if (viewReviewMode === null) - viewReviewMode = appOptions.customization && /^(original|final|markup)$/i.test(appOptions.customization.reviewDisplay) ? appOptions.customization.reviewDisplay.toLocaleLowerCase() : 'original'; + if (viewReviewMode === null) { + viewReviewMode = appOptions.customization && appOptions.customization.review ? appOptions.customization.review.reviewDisplay : undefined; + !viewReviewMode && (viewReviewMode = appOptions.customization ? appOptions.customization.reviewDisplay : undefined); + viewReviewMode = /^(original|final|markup)$/i.test(viewReviewMode) ? viewReviewMode.toLocaleLowerCase() : 'original'; + } viewReviewMode = (appOptions.isEdit || appOptions.isRestrictedEdit) ? 'markup' : viewReviewMode; const displayMode = viewReviewMode.toLocaleLowerCase(); if (displayMode === 'final') { @@ -60,7 +69,8 @@ class Review extends Component { this.appConfig = props.storeAppOptions; this.editorPrefix = window.editorType || ''; - let trackChanges = typeof this.appConfig.customization == 'object' ? this.appConfig.customization.trackChanges : undefined; + let trackChanges = this.appConfig.customization && this.appConfig.customization.review ? this.appConfig.customization.review.trackChanges : undefined; + (trackChanges===undefined) && (trackChanges = this.appConfig.customization ? this.appConfig.customization.trackChanges : undefined); trackChanges = this.appConfig.isReviewOnly || trackChanges === true || trackChanges !== false && LocalStorage.getBool(`${this.editorPrefix}-mobile-track-changes-${this.appConfig.fileKey || ''}`); diff --git a/apps/documenteditor/mobile/src/store/review.js b/apps/common/mobile/lib/store/review.js similarity index 95% rename from apps/documenteditor/mobile/src/store/review.js rename to apps/common/mobile/lib/store/review.js index 61c39e384..0049a7319 100644 --- a/apps/documenteditor/mobile/src/store/review.js +++ b/apps/common/mobile/lib/store/review.js @@ -1,24 +1,24 @@ -import {action, observable, makeObservable} from 'mobx'; - -export class storeReview { - constructor() { - makeObservable(this, { - displayMode: observable, - dataChanges: observable, - changeDisplayMode: action, - changeArrReview: action - }); - } - - displayMode = 'markup'; - - changeDisplayMode (mode) { - this.displayMode = mode; - } - - dataChanges = []; - - changeArrReview (data) { - this.dataChanges = data && data.length > 0 ? data : []; - } +import {action, observable, makeObservable} from 'mobx'; + +export class storeReview { + constructor() { + makeObservable(this, { + displayMode: observable, + dataChanges: observable, + changeDisplayMode: action, + changeArrReview: action + }); + } + + displayMode = 'markup'; + + changeDisplayMode (mode) { + this.displayMode = mode; + } + + dataChanges = []; + + changeArrReview (data) { + this.dataChanges = data && data.length > 0 ? data : []; + } } \ No newline at end of file diff --git a/apps/common/mobile/lib/view/Search.jsx b/apps/common/mobile/lib/view/Search.jsx index 702ad94e1..6860c45cf 100644 --- a/apps/common/mobile/lib/view/Search.jsx +++ b/apps/common/mobile/lib/view/Search.jsx @@ -203,26 +203,21 @@ class SearchView extends Component { onEditorTouchStart(e) { this.startPoint = this.pointerPosition(e); - // console.log(this.startPoint); } onEditorTouchEnd(e) { const endPoint = this.pointerPosition(e); - // console.log(endPoint); if (this.searchbar.enabled) { let distance; if(this.startPoint) { - distance = (!!this.startPoint.x || !!this.startPoint.y) ? 0 : + distance = (this.startPoint.x === undefined || this.startPoint.y === undefined) ? 0 : Math.sqrt((endPoint.x -= this.startPoint.x) * endPoint.x + (endPoint.y -= this.startPoint.y) * endPoint.y); } else { distance = 0; } - // const distance = (this.startPoint === undefined || this.startPoint === undefined) ? 0 : - // Math.sqrt((endPoint.x -= this.startPoint.x) * endPoint.x + (endPoint.y -= this.startPoint.y) * endPoint.y); - if (distance < 1) { this.searchbar.disable(); } @@ -231,15 +226,10 @@ class SearchView extends Component { pointerPosition(e) { let out = {x:0, y:0}; - if ( e.type == 'touchstart' || e.type == 'touchend' ) { - const touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0]; - out.x = touch.pageX; - out.y = touch.pageY; - } else if ( e.type == 'mousedown' || e.type == 'mouseup' ) { + if ( e.type == 'pointerdown' || e.type == 'pointerup' || e.type == 'mousedown' || e.type == 'mouseup') { out.x = e.pageX; out.y = e.pageY; } - return out; } diff --git a/apps/common/mobile/lib/view/collaboration/Comments.jsx b/apps/common/mobile/lib/view/collaboration/Comments.jsx index 381ed375f..5917ba4be 100644 --- a/apps/common/mobile/lib/view/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/view/collaboration/Comments.jsx @@ -628,10 +628,11 @@ const pickLink = (message) => { } // View comments -const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onResolveComment, showComment}) => { +const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onResolveComment, showComment, storeReview}) => { const { t } = useTranslation(); const _t = t('Common.Collaboration', {returnObjects: true}); const isAndroid = Device.android; + const displayMode = storeReview.displayMode; const viewMode = !storeAppOptions.canComments; const comments = storeComments.groupCollectionFilter || storeComments.collectionComments; @@ -672,10 +673,13 @@ const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onRes
{!viewMode &&
- {comment.editable &&
{onResolveComment(comment);}}>
} -
{setComment(comment); openActionComment(true);}} - >
+ {(comment.editable && displayMode === 'markup') &&
{onResolveComment(comment);}}>
} + {displayMode === 'markup' && +
{setComment(comment); openActionComment(true);}}> + +
+ }
}
@@ -734,13 +738,14 @@ const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onRes ) }; -const _ViewComments = inject('storeComments', 'storeAppOptions')(observer(ViewComments)); +const _ViewComments = inject('storeComments', 'storeAppOptions', "storeReview")(observer(ViewComments)); -const CommentList = inject("storeComments", "storeAppOptions")(observer(({storeComments, storeAppOptions, onCommentMenuClick, onResolveComment}) => { +const CommentList = inject("storeComments", "storeAppOptions", "storeReview")(observer(({storeComments, storeAppOptions, onCommentMenuClick, onResolveComment, storeReview}) => { const { t } = useTranslation(); const _t = t('Common.Collaboration', {returnObjects: true}); const isAndroid = Device.android; + const displayMode = storeReview.displayMode; const viewMode = !storeAppOptions.canComments; const comments = storeComments.showComments; @@ -801,10 +806,13 @@ const CommentList = inject("storeComments", "storeAppOptions")(observer(({storeC
{!viewMode &&
- {comment.editable &&
{onResolveComment(comment);}}>
} -
{openActionComment(true);}} - >
+ {(comment.editable && displayMode === 'markup') &&
{onResolveComment(comment);}}>
} + {displayMode === 'markup' && +
{openActionComment(true);}}> + +
+ }
}
diff --git a/apps/common/mobile/resources/img/about/logo.svg b/apps/common/mobile/resources/img/about/logo.svg deleted file mode 100644 index 6541262b5..000000000 --- a/apps/common/mobile/resources/img/about/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/apps/common/mobile/resources/less/about.less b/apps/common/mobile/resources/less/about.less index 7234dcb25..8a7559530 100644 --- a/apps/common/mobile/resources/less/about.less +++ b/apps/common/mobile/resources/less/about.less @@ -36,6 +36,6 @@ display: inline-block; width: 100%; height: 55px; - background: url('../../../../common/mobile/resources/img/about/logo.svg') no-repeat center; + background: url('../../../../common/main/resources/img/about/logo_s.svg') no-repeat center; } -} \ No newline at end of file +} diff --git a/apps/common/mobile/resources/less/comments.less b/apps/common/mobile/resources/less/comments.less index bf9b78181..40d30d9ce 100644 --- a/apps/common/mobile/resources/less/comments.less +++ b/apps/common/mobile/resources/less/comments.less @@ -189,6 +189,7 @@ } } .toolbar { + position: absolute; border-radius: 0 0 var(--f7-popover-border-radius) var(--f7-popover-border-radius); } } @@ -226,4 +227,12 @@ .no-comments { text-align: center; margin-top: 35px; +} + +.actions-modal.modal-in { + z-index: 13700; +} + +.actions-backdrop.backdrop-in { + z-index: 13600; } \ No newline at end of file diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 1371c75b2..d5415fd06 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -383,47 +383,54 @@ } } -.color-palettes { - .palette { - padding: 8px 0px; - a { - flex-grow: 1; - position: relative; - min-width: 10px; - min-height: 26px; - margin: 1px 1px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset; - &.active:after { - content: ' '; - position: absolute; - width: 100%; - height: 100%; - box-shadow: 0 0 0 1px @white, 0 0 0 4px @themeColor; - z-index: 1; - border-radius: 1px; - } - &.transparent { - background-repeat: no-repeat; - background-size: 100% 100%; - .encoded-svg-background(""); +.page { + .color-palettes { + .list { + ul { + .palette { + padding: 8px 0px; + a { + flex-grow: 1; + position: relative; + min-width: 10px; + min-height: 26px; + margin: 1px 1px 0 0; + box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset; + border-radius: 0; + &.active:after { + content: ' '; + position: absolute; + width: 100%; + height: 100%; + box-shadow: 0 0 0 1px @white, 0 0 0 4px @themeColor; + z-index: 1; + border-radius: 1px; + } + &.transparent { + background-repeat: no-repeat; + background-size: 100% 100%; + .encoded-svg-background(""); + } + } + } } } - } - .row { - padding: 0; - } - .list .item-inner { - display: block; - } - .standart-colors, .dynamic-colors { - .palette { - display: flex; + .row { + padding: 0; + } + .list .item-inner { + display: block; + } + .standart-colors, .dynamic-colors { + .palette { + display: flex; + } } - } - .dynamic-colors { - .empty-color { - background-color: @white; + .dynamic-colors { + .empty-color { + background-color: @white; + } } } } @@ -829,6 +836,12 @@ input[type="number"]::-webkit-inner-spin-button { overflow: hidden; } +// Statusbar + +.statusbar .statusbar--box-tabs > ul > .locked a { + box-shadow: inset 0 2px red; +} + diff --git a/apps/documenteditor/embed/index.html b/apps/documenteditor/embed/index.html index ab20ccc1f..3fa779e70 100644 --- a/apps/documenteditor/embed/index.html +++ b/apps/documenteditor/embed/index.html @@ -50,7 +50,7 @@ .loadmask > .brendpanel .loading-logo > img { display: inline-block; - max-width: 100px; + max-width: 124px; max-height: 20px; margin-top: 2px; opacity: 0; @@ -155,8 +155,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -222,7 +221,7 @@
- + diff --git a/apps/documenteditor/embed/index.html.deploy b/apps/documenteditor/embed/index.html.deploy index c6c09db65..aa9a9c4fe 100644 --- a/apps/documenteditor/embed/index.html.deploy +++ b/apps/documenteditor/embed/index.html.deploy @@ -48,7 +48,7 @@ .loadmask > .brendpanel .loading-logo > img { display: inline-block; - max-width: 100px; + max-width: 124px; max-height: 20px; margin-top: 2px; opacity: 0; @@ -148,8 +148,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -214,7 +213,7 @@ - + diff --git a/apps/documenteditor/embed/index_loader.html b/apps/documenteditor/embed/index_loader.html index 938ddb42f..af3c1d916 100644 --- a/apps/documenteditor/embed/index_loader.html +++ b/apps/documenteditor/embed/index_loader.html @@ -225,8 +225,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -323,7 +322,7 @@ - + diff --git a/apps/documenteditor/embed/index_loader.html.deploy b/apps/documenteditor/embed/index_loader.html.deploy index 29f7ab10c..c70bdcc1c 100644 --- a/apps/documenteditor/embed/index_loader.html.deploy +++ b/apps/documenteditor/embed/index_loader.html.deploy @@ -217,8 +217,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -315,7 +314,7 @@ - + diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index ddc3b7363..dac8d554c 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -43,7 +43,9 @@ DE.ApplicationController = new(function(){ labelDocName, appOptions = {}, btnSubmit, - _submitFail, $submitedTooltip, $requiredTooltip; + _submitFail, $submitedTooltip, $requiredTooltip, + $listControlMenu, listControlItems = [], listObj, + bodyWidth = 0; var LoadingDocument = -256; @@ -83,6 +85,7 @@ DE.ApplicationController = new(function(){ } else { $('#toolbar').addClass('top'); $('#editor_sdk').addClass('top'); + ttOffset[1] = 40; } config.canBackToFolder = (config.canBackToFolder!==false) && config.customization && config.customization.goback && @@ -218,39 +221,53 @@ DE.ApplicationController = new(function(){ var $ttEl, $tooltip; function onDocMouseMove(data) { if (data) { - if (data.get_Type() == 1) { // hyperlink + var type = data.get_Type(); + 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(); + if (str.length>500) + str = str.substr(0, 500) + '...'; + str = common.utils.htmlEncode(str); + if ( !$ttEl ) { $ttEl = $('.hyperlink-tooltip'); $ttEl.tooltip({'container':'body', 'trigger':'manual'}); - $ttEl.on('shown.bs.tooltip', function(e) { - $tooltip = $ttEl.data('bs.tooltip').tip(); - - $tooltip.css({ - left: $ttEl.ttpos[0] + ttOffset[0], - top: $ttEl.ttpos[1] + ttOffset[1] - }); - - $tooltip.find('.tooltip-arrow').css({left: 10}); - }); } + $ttEl.ttpos = [data.get_X(), data.get_Y()]; + if ( !$tooltip) + $tooltip = $ttEl.data('bs.tooltip').tip(); - if ( !$tooltip ) { - $ttEl.ttpos = [data.get_X(), data.get_Y()]; - $ttEl.tooltip('show'); - } else { - $tooltip.css({ - left:data.get_X() + ttOffset[0], - top:data.get_Y() + ttOffset[1] - }); + if (!$tooltip.is(':visible')) { + var tip = $ttEl.data('bs.tooltip'); + tip.options.title = str; + tip.show([-1000, -1000]); + } else + $tooltip.find('.tooltip-inner')['text'](str); + + var ttHeight = $tooltip.height(), + ttWidth = $tooltip.width(); + !bodyWidth && (bodyWidth = $('body').width()); + + $ttEl.ttpos[1] -= (ttHeight - ttOffset[1] + 20); + if ($ttEl.ttpos[0] + ttWidth + 10 >bodyWidth) { + $ttEl.ttpos[0] = bodyWidth - ttWidth - 5; + if ($ttEl.ttpos[1] < 0) + $ttEl.ttpos[1] += ttHeight + ttOffset[1] + 20; + } else if ($ttEl.ttpos[1] < 0) { + $ttEl.ttpos[1] = 0; + $ttEl.ttpos[0] += 20; } + $tooltip.css({ + left: $ttEl.ttpos[0], + top: $ttEl.ttpos[1] + }); } } } - function onDownloadUrl(url) { - Common.Gateway.downloadAs(url); + function onDownloadUrl(url, fileType) { + Common.Gateway.downloadAs(url, fileType); } function onPrint() { @@ -273,6 +290,97 @@ DE.ApplicationController = new(function(){ } } + function onShowContentControlsActions(obj, x, y) { + switch (obj.type) { + case Asc.c_oAscContentControlSpecificType.Picture: + if (obj.pr && obj.pr.get_Lock) { + var lock = obj.pr.get_Lock(); + if (lock == Asc.c_oAscSdtLockType.SdtContentLocked || lock==Asc.c_oAscSdtLockType.ContentLocked) + return; + } + api.asc_addImage(obj); + setTimeout(function(){ + api.asc_UncheckContentControlButtons(); + }, 500); + break; + case Asc.c_oAscContentControlSpecificType.DropDownList: + case Asc.c_oAscContentControlSpecificType.ComboBox: + onShowListActions(obj, x, y); + break; + } + } + + function onHideContentControlsActions() { + $listControlMenu && $listControlMenu.hide(); + api.asc_UncheckContentControlButtons(); + } + + function onShowListActions(obj, x, y) { + var type = obj.type, + props = obj.pr, + specProps = (type == Asc.c_oAscContentControlSpecificType.ComboBox) ? props.get_ComboBoxPr() : props.get_DropDownListPr(), + isForm = !!props.get_FormPr(); + + var menuContainer = DE.ApplicationView.getMenuForm(); + + if (!$listControlMenu) { + $listControlMenu = menuContainer.find('ul'); + $listControlMenu.on('click', 'li', function(e) { + var value = $(e.target).attr('value'); + if (value) { + value = parseInt(value); + setTimeout(function(){ + (value!==-1) && api.asc_SelectContentControlListItem(listControlItems[value], listObj.get_InternalId()); + }, 1); + } + }); + $('#editor_sdk').on('click', function(e){ + if (e.target.localName == 'canvas') { + if (me._preventClick) + me._preventClick = false; + else { + $listControlMenu && $listControlMenu.hide(); + api.asc_UncheckContentControlButtons(); + } + } + }); + } + $listControlMenu.find('li').remove(); + listControlItems = []; + listObj = props; + + if (specProps) { + var k = 0; + if (isForm){ // for dropdown and combobox form control always add placeholder item + var text = props.get_PlaceholderText(); + $listControlMenu.append('
  • ' + + ((text.trim()!=='') ? text : me.txtEmpty) + + '
  • '); + listControlItems.push(''); + } + var count = specProps.get_ItemsCount(); + k = listControlItems.length; + for (var i=0; i' + + common.utils.htmlEncode(specProps.get_ItemDisplayText(i)) + + ''); + listControlItems.push(specProps.get_ItemValue(i)); + } + } + if (!isForm && listControlItems.length<1) { + $listControlMenu.append('
  • ' + + me.txtEmpty + + '
  • '); + listControlItems.push(-1); + } + } + + menuContainer.css({left: x, top : y}); + me._preventClick = true; + $listControlMenu.show(); + } + function hidePreloader() { $('#loading-mask').fadeOut('slow'); } @@ -350,6 +458,11 @@ DE.ApplicationController = new(function(){ api.asc_registerCallback('asc_onPrint', onPrint); api.asc_registerCallback('asc_onPrintUrl', onPrintUrl); api.asc_registerCallback('sync_onAllRequiredFormsFilled', onFillRequiredFields); + if (appOptions.canFillForms) { + api.asc_registerCallback('asc_onShowContentControlsActions', onShowContentControlsActions); + api.asc_registerCallback('asc_onHideContentControlsActions', onHideContentControlsActions); + api.asc_SetHighlightRequiredFields(true); + } Common.Gateway.on('processmouse', onProcessMouse); Common.Gateway.on('downloadas', onDownloadAs); @@ -625,6 +738,11 @@ DE.ApplicationController = new(function(){ message = me.errorEditingDownloadas; break; + case Asc.c_oAscError.ID.ForceSaveButton: + case Asc.c_oAscError.ID.ForceSaveTimeout: + message = me.errorForceSave; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -705,6 +823,7 @@ DE.ApplicationController = new(function(){ function onDocumentResize() { api && api.Resize(); + bodyWidth = $('body').width(); } function createController(){ @@ -806,6 +925,9 @@ DE.ApplicationController = new(function(){ textGuest: 'Guest', textAnonymous: 'Anonymous', textRequired: 'Fill all required fields to send form.', - textGotIt: 'Got it' + textGotIt: 'Got it', + errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + txtEmpty: '(Empty)', + txtPressLink: 'Press Ctrl and click link' } })(); \ No newline at end of file diff --git a/apps/documenteditor/embed/js/ApplicationView.js b/apps/documenteditor/embed/js/ApplicationView.js index 75a8adb04..0f74bdaf0 100644 --- a/apps/documenteditor/embed/js/ApplicationView.js +++ b/apps/documenteditor/embed/js/ApplicationView.js @@ -36,6 +36,7 @@ if (DE === undefined) { DE.ApplicationView = new(function(){ var $btnTools; + var $menuForm; // Initialize view @@ -63,11 +64,23 @@ DE.ApplicationView = new(function(){ return $btnTools.parent().find(name); } + function getMenuForm() { + if (!$menuForm) { + $menuForm = $(''); + $('#editor_sdk').append($menuForm); + } + return $menuForm; + } + return { create: createView , tools: { get: getTools }, + getMenuForm: getMenuForm, txtDownload: 'Download', txtPrint: 'Print', diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index b91723786..319f01d6f 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", "DE.ApplicationController.notcriticalErrorTitle": "Avis", "DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "DE.ApplicationController.textAnonymous": "Anònim", "DE.ApplicationController.textClear": "Esborrar tots els camps", + "DE.ApplicationController.textGotIt": "Ho tinc", + "DE.ApplicationController.textGuest": "Convidat", "DE.ApplicationController.textLoadingDocument": "Carregant document", "DE.ApplicationController.textNext": "Següent camp", "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Ompli tots els camps requerits per enviar el formulari.", "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulari enviat amb èxit
    Faci clic per a tancar el consell", "DE.ApplicationController.txtClose": "Tancar", diff --git a/apps/documenteditor/embed/locale/de.json b/apps/documenteditor/embed/locale/de.json index 8304142d9..09023d4de 100644 --- a/apps/documenteditor/embed/locale/de.json +++ b/apps/documenteditor/embed/locale/de.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Der Zugriff auf diese Datei ist nicht möglich.", "DE.ApplicationController.notcriticalErrorTitle": "Warnung", "DE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", + "DE.ApplicationController.textAnonymous": "Anonym", "DE.ApplicationController.textClear": "Alle Felder löschen", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "Gast", "DE.ApplicationController.textLoadingDocument": "Dokument wird geladen...", "DE.ApplicationController.textNext": "Nächstes Feld", "DE.ApplicationController.textOf": "von", + "DE.ApplicationController.textRequired": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.", "DE.ApplicationController.textSubmit": "Senden", "DE.ApplicationController.textSubmited": "Das Formular wurde erfolgreich abgesendet
    Klicken Sie hier, um den Tipp auszublenden", "DE.ApplicationController.txtClose": "Schließen", diff --git a/apps/documenteditor/embed/locale/el.json b/apps/documenteditor/embed/locale/el.json index a2f03f2e6..2a30fac8d 100644 --- a/apps/documenteditor/embed/locale/el.json +++ b/apps/documenteditor/embed/locale/el.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "DE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "DE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", + "DE.ApplicationController.textAnonymous": "Ανώνυμος", "DE.ApplicationController.textClear": "Εκκαθάριση Όλων των Πεδίων", + "DE.ApplicationController.textGotIt": "Ελήφθη", + "DE.ApplicationController.textGuest": "Επισκέπτης", "DE.ApplicationController.textLoadingDocument": "Φόρτωση εγγράφου", "DE.ApplicationController.textNext": "Επόμενο Πεδίο", "DE.ApplicationController.textOf": "του", + "DE.ApplicationController.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.", "DE.ApplicationController.textSubmit": "Υποβολή", "DE.ApplicationController.textSubmited": "Η φόρμα υποβλήθηκε με επιτυχία
    Κάντε κλικ για να κλείσετε τη συμβουλή ", "DE.ApplicationController.txtClose": "Κλείσιμο", diff --git a/apps/documenteditor/embed/locale/en.json b/apps/documenteditor/embed/locale/en.json index d1d9306a2..ce0a6ba1e 100644 --- a/apps/documenteditor/embed/locale/en.json +++ b/apps/documenteditor/embed/locale/en.json @@ -14,6 +14,7 @@ "DE.ApplicationController.errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download as...' option to save the file backup copy to your computer hard drive.", "DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.", + "DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "DE.ApplicationController.errorSubmit": "Submit failed.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", @@ -30,6 +31,8 @@ "DE.ApplicationController.textSubmit": "Submit", "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.unknownErrorText": "Unknown error.", "DE.ApplicationController.unsupportedBrowserErrorText": "Your browser is not supported.", "DE.ApplicationController.waitText": "Please, wait...", diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json index 0982a0c1f..de92ca281 100644 --- a/apps/documenteditor/embed/locale/es.json +++ b/apps/documenteditor/embed/locale/es.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.", "DE.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, recargue la página.", + "DE.ApplicationController.textAnonymous": "Anónimo", "DE.ApplicationController.textClear": "Borrar todos los campos", + "DE.ApplicationController.textGotIt": "Entiendo", + "DE.ApplicationController.textGuest": "Invitado", "DE.ApplicationController.textLoadingDocument": "Cargando documento", "DE.ApplicationController.textNext": "Campo siguiente", "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.", "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulario enviado con éxito
    Haga clic para cerrar el consejo", "DE.ApplicationController.txtClose": "Cerrar", diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index 4ad3bb1e2..c56b67a2f 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "DE.ApplicationController.notcriticalErrorTitle": "Avertissement", "DE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "DE.ApplicationController.textAnonymous": "Anonyme", "DE.ApplicationController.textClear": "Effacer tous les champs", + "DE.ApplicationController.textGotIt": "C'est compris", + "DE.ApplicationController.textGuest": "Invité", "DE.ApplicationController.textLoadingDocument": "Chargement du document", "DE.ApplicationController.textNext": "Champ suivant", "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire.", "DE.ApplicationController.textSubmit": "Soumettre ", "DE.ApplicationController.textSubmited": "Le formulaire a été soumis avec succès
    Cliquez ici pour fermer l'astuce", "DE.ApplicationController.txtClose": "Fermer", diff --git a/apps/documenteditor/embed/locale/it.json b/apps/documenteditor/embed/locale/it.json index b18e037e0..288d3065c 100644 --- a/apps/documenteditor/embed/locale/it.json +++ b/apps/documenteditor/embed/locale/it.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "DE.ApplicationController.notcriticalErrorTitle": "Avviso", "DE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", + "DE.ApplicationController.textAnonymous": "Anonimo", "DE.ApplicationController.textClear": "‎Cancella tutti i campi‎", + "DE.ApplicationController.textGotIt": "Capito", + "DE.ApplicationController.textGuest": "Ospite", "DE.ApplicationController.textLoadingDocument": "Caricamento del documento", "DE.ApplicationController.textNext": "Campo successivo", "DE.ApplicationController.textOf": "di", + "DE.ApplicationController.textRequired": "Compila tutti i campi richiesti per inviare il modulo.", "DE.ApplicationController.textSubmit": "‎Invia‎", "DE.ApplicationController.textSubmited": "Modulo inviato con successo
    Fare click per chiudere la notifica
    ", "DE.ApplicationController.txtClose": "Chiudi", diff --git a/apps/documenteditor/embed/locale/ja.json b/apps/documenteditor/embed/locale/ja.json index 17e852b32..aea359867 100644 --- a/apps/documenteditor/embed/locale/ja.json +++ b/apps/documenteditor/embed/locale/ja.json @@ -11,20 +11,33 @@ "DE.ApplicationController.downloadTextText": "ドキュメントのダウンロード中...", "DE.ApplicationController.errorAccessDeny": "利用権限がない操作をしようとしました。
    Documentサーバー管理者に連絡してください。", "DE.ApplicationController.errorDefaultMessage": "エラー コード: %1", + "DE.ApplicationController.errorEditingDownloadas": "ドキュメントの作業中にエラーが発生しました。
    「名前を付けてダウンロード」オプションを使用して、ファイルのバックアップコピーをコンピュータに保存します。", "DE.ApplicationController.errorFilePassProtect": "ドキュメントがパスワードで保護されているため開くことができません", "DE.ApplicationController.errorFileSizeExceed": "ファイルサイズがサーバーで設定された制限を超過しています。
    Documentサーバー管理者に詳細をお問い合わせください。", + "DE.ApplicationController.errorSubmit": "送信に失敗しました。", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されています。
    作業を継続する前に、ファイルをダウンロードするか内容をコピーして、変更が消えてしまわないようにしてからページを再読み込みしてください。", "DE.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。", "DE.ApplicationController.notcriticalErrorTitle": "警告", "DE.ApplicationController.scriptLoadError": "接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。", + "DE.ApplicationController.textAnonymous": "匿名", + "DE.ApplicationController.textClear": "すべてのフィールドを削除する", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "ゲスト", "DE.ApplicationController.textLoadingDocument": "ドキュメントを読み込んでいます", + "DE.ApplicationController.textNext": "次のフィールド", "DE.ApplicationController.textOf": "から", + "DE.ApplicationController.textRequired": "必須事項をすべて入力し、送信してください。", + "DE.ApplicationController.textSubmit": "送信", + "DE.ApplicationController.textSubmited": "フォームが正常に送信されました。
    クリックしてヒントを閉じます。", "DE.ApplicationController.txtClose": "閉じる", "DE.ApplicationController.unknownErrorText": "不明なエラー", - "DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。", + "DE.ApplicationController.unsupportedBrowserErrorText": "お使いのブラウザはサポートされていません。", "DE.ApplicationController.waitText": "少々お待ちください...", "DE.ApplicationView.txtDownload": "ダウンロード", + "DE.ApplicationView.txtDownloadDocx": "docxとして保存", + "DE.ApplicationView.txtDownloadPdf": "PDFとして保存", "DE.ApplicationView.txtEmbed": "埋め込み", + "DE.ApplicationView.txtFileLocation": "ファイルを開く", "DE.ApplicationView.txtFullScreen": "全画面表示", "DE.ApplicationView.txtPrint": "印刷する", "DE.ApplicationView.txtShare": "シェア" diff --git a/apps/documenteditor/embed/locale/ko.json b/apps/documenteditor/embed/locale/ko.json index 4ba731456..0420837fe 100644 --- a/apps/documenteditor/embed/locale/ko.json +++ b/apps/documenteditor/embed/locale/ko.json @@ -17,6 +17,7 @@ "DE.ApplicationController.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", "DE.ApplicationController.notcriticalErrorTitle": "경고", "DE.ApplicationController.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", + "DE.ApplicationController.textAnonymous": "익명사용자", "DE.ApplicationController.textLoadingDocument": "문서 로드 중", "DE.ApplicationController.textOf": "의", "DE.ApplicationController.txtClose": "닫기", @@ -24,6 +25,8 @@ "DE.ApplicationController.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", "DE.ApplicationController.waitText": "잠시만 기달려주세요...", "DE.ApplicationView.txtDownload": "다운로드 ", + "DE.ApplicationView.txtDownloadDocx": "docx 형식으로 다운로드", + "DE.ApplicationView.txtDownloadPdf": "PDF형식으로 다운로드", "DE.ApplicationView.txtEmbed": "개체 삽입", "DE.ApplicationView.txtFullScreen": "전체 화면", "DE.ApplicationView.txtShare": "공유" diff --git a/apps/documenteditor/embed/locale/nl.json b/apps/documenteditor/embed/locale/nl.json index c17b00567..424c279f0 100644 --- a/apps/documenteditor/embed/locale/nl.json +++ b/apps/documenteditor/embed/locale/nl.json @@ -11,20 +11,33 @@ "DE.ApplicationController.downloadTextText": "Document wordt gedownload...", "DE.ApplicationController.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
    Neem contact op met de beheerder van de documentserver.", "DE.ApplicationController.errorDefaultMessage": "Foutcode: %1", + "DE.ApplicationController.errorEditingDownloadas": "Er is een fout ontstaan tijdens het werken met het document.
    Gebruik de 'Opslaan als...' optie om het bestand als back-upkopie op te slaan op uw computer.", "DE.ApplicationController.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", "DE.ApplicationController.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
    Neem contact op met uw Document Server-beheerder voor details.", + "DE.ApplicationController.errorSubmit": "Verzenden mislukt. ", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", "DE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "DE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "DE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", + "DE.ApplicationController.textAnonymous": "Anoniem", + "DE.ApplicationController.textClear": "Wis Alle Velden", + "DE.ApplicationController.textGotIt": "OK", + "DE.ApplicationController.textGuest": "Gast", "DE.ApplicationController.textLoadingDocument": "Document wordt geladen", + "DE.ApplicationController.textNext": "Volgend veld ", "DE.ApplicationController.textOf": "van", + "DE.ApplicationController.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.", + "DE.ApplicationController.textSubmit": "Verzenden ", + "DE.ApplicationController.textSubmited": "Formulier succesvol ingediend
    Klik om de tip te sluiten", "DE.ApplicationController.txtClose": "Sluiten", "DE.ApplicationController.unknownErrorText": "Onbekende fout.", "DE.ApplicationController.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "DE.ApplicationController.waitText": "Een moment geduld", "DE.ApplicationView.txtDownload": "Downloaden", + "DE.ApplicationView.txtDownloadDocx": "Downloaden als docx", + "DE.ApplicationView.txtDownloadPdf": "Downloaden als PDF", "DE.ApplicationView.txtEmbed": "Invoegen", + "DE.ApplicationView.txtFileLocation": "Open bestandslocatie", "DE.ApplicationView.txtFullScreen": "Volledig scherm", "DE.ApplicationView.txtPrint": "Afdrukken", "DE.ApplicationView.txtShare": "Delen" diff --git a/apps/documenteditor/embed/locale/pt.json b/apps/documenteditor/embed/locale/pt.json index a61f4e5f3..ec784e55d 100644 --- a/apps/documenteditor/embed/locale/pt.json +++ b/apps/documenteditor/embed/locale/pt.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "DE.ApplicationController.notcriticalErrorTitle": "Aviso", "DE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.", + "DE.ApplicationController.textAnonymous": "Anônimo", "DE.ApplicationController.textClear": "Limpar todos os campos", + "DE.ApplicationController.textGotIt": "Entendi", + "DE.ApplicationController.textGuest": "Convidado(a)", "DE.ApplicationController.textLoadingDocument": "Carregando documento", "DE.ApplicationController.textNext": "Próximo campo", "DE.ApplicationController.textOf": "de", + "DE.ApplicationController.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.", "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulário apresentado com sucesso>br>Click para fechar a ponta", "DE.ApplicationController.txtClose": "Fechar", diff --git a/apps/documenteditor/embed/locale/ro.json b/apps/documenteditor/embed/locale/ro.json index 0a69dd72d..2916153cc 100644 --- a/apps/documenteditor/embed/locale/ro.json +++ b/apps/documenteditor/embed/locale/ro.json @@ -11,20 +11,33 @@ "DE.ApplicationController.downloadTextText": "Descărcarea documentului...", "DE.ApplicationController.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dumneavoastră de Server Documente.", "DE.ApplicationController.errorDefaultMessage": "Codul de eroare: %1", + "DE.ApplicationController.errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
    Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca...", "DE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "DE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", + "DE.ApplicationController.errorSubmit": "Remiterea eșuată.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", "DE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "DE.ApplicationController.notcriticalErrorTitle": "Avertisment", "DE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "DE.ApplicationController.textAnonymous": "Anonim", + "DE.ApplicationController.textClear": "Goleşte toate câmpurile", + "DE.ApplicationController.textGotIt": "Am înțeles", + "DE.ApplicationController.textGuest": "Invitat", "DE.ApplicationController.textLoadingDocument": "Încărcare document", + "DE.ApplicationController.textNext": "Câmpul următor", "DE.ApplicationController.textOf": "din", + "DE.ApplicationController.textRequired": "Toate câmpurile din formular trebuie completate înainte de a-l trimite.", + "DE.ApplicationController.textSubmit": "Remitere", + "DE.ApplicationController.textSubmited": "Formularul a fost remis cu succes
    Faceţi clic pentru a închide sfatul", "DE.ApplicationController.txtClose": "Închidere", - "DE.ApplicationController.unknownErrorText": "Eroare Necunoscut.", + "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.ApplicationController.waitText": "Vă rugăm să așteptați...", "DE.ApplicationView.txtDownload": "Descărcare", + "DE.ApplicationView.txtDownloadDocx": "Descărcare ca docx", + "DE.ApplicationView.txtDownloadPdf": "Descărcare ca pdf", "DE.ApplicationView.txtEmbed": "Încorporare", + "DE.ApplicationView.txtFileLocation": "Deschidere locația fișierului", "DE.ApplicationView.txtFullScreen": "Ecran complet", "DE.ApplicationView.txtPrint": "Imprimare", "DE.ApplicationView.txtShare": "Partajează" diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json index 29a785721..e6c834b14 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.json @@ -30,6 +30,7 @@ "DE.ApplicationController.textSubmit": "Отправить", "DE.ApplicationController.textSubmited": "Форма успешно отправлена
    Нажмите, чтобы закрыть подсказку", "DE.ApplicationController.txtClose": "Закрыть", + "DE.ApplicationController.txtPressLink": "Нажмите Ctrl и щелкните по ссылке", "DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.", "DE.ApplicationController.waitText": "Пожалуйста, подождите...", diff --git a/apps/documenteditor/embed/locale/sv.json b/apps/documenteditor/embed/locale/sv.json index 6516afa10..57796daab 100644 --- a/apps/documenteditor/embed/locale/sv.json +++ b/apps/documenteditor/embed/locale/sv.json @@ -11,20 +11,33 @@ "DE.ApplicationController.downloadTextText": "Laddar ner dokumentet...", "DE.ApplicationController.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.
    Vänligen kontakta din systemadministratör.", "DE.ApplicationController.errorDefaultMessage": "Felkod: %1", + "DE.ApplicationController.errorEditingDownloadas": "Ett fel har inträffat.
    Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", "DE.ApplicationController.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", "DE.ApplicationController.errorFileSizeExceed": "Filstorleken överskrider gränsen för din server.
    Var snäll och kontakta administratören för dokumentservern för mer information.", + "DE.ApplicationController.errorSubmit": "Gick ej att verkställa.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internetanslutningen har återställts och filversionen har ändrats.
    Innan du fortsätter arbeta, ladda ner filen eller kopiera innehållet för att försäkra dig om att inte förlora något, ladda sedan om denna sida.", "DE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "DE.ApplicationController.notcriticalErrorTitle": "Varning", "DE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", + "DE.ApplicationController.textAnonymous": "Anonym", + "DE.ApplicationController.textClear": "Rensa fält", + "DE.ApplicationController.textGotIt": "Ok!", + "DE.ApplicationController.textGuest": "Gäst", "DE.ApplicationController.textLoadingDocument": "Laddar dokument", + "DE.ApplicationController.textNext": "Nästa fält", "DE.ApplicationController.textOf": "av", + "DE.ApplicationController.textRequired": "Fyll i alla fält för att skicka formulär.", + "DE.ApplicationController.textSubmit": "Verkställ", + "DE.ApplicationController.textSubmited": " Formulär skickat
    Klicka för att stänga tipset", "DE.ApplicationController.txtClose": "Stäng", "DE.ApplicationController.unknownErrorText": "Okänt fel.", "DE.ApplicationController.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "DE.ApplicationController.waitText": "Var snäll och vänta...", "DE.ApplicationView.txtDownload": "Ladda ner", + "DE.ApplicationView.txtDownloadDocx": "Ladda ner som docx", + "DE.ApplicationView.txtDownloadPdf": "Ladda ner som pdf", "DE.ApplicationView.txtEmbed": "Inbädda", + "DE.ApplicationView.txtFileLocation": "Gå till filens plats", "DE.ApplicationView.txtFullScreen": "Fullskärm", "DE.ApplicationView.txtPrint": "Skriva ut", "DE.ApplicationView.txtShare": "Dela" diff --git a/apps/documenteditor/embed/locale/zh.json b/apps/documenteditor/embed/locale/zh.json index 16ef5651e..24883a822 100644 --- a/apps/documenteditor/embed/locale/zh.json +++ b/apps/documenteditor/embed/locale/zh.json @@ -19,10 +19,14 @@ "DE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "DE.ApplicationController.notcriticalErrorTitle": "警告", "DE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", + "DE.ApplicationController.textAnonymous": "匿名", "DE.ApplicationController.textClear": "清除所有字段", + "DE.ApplicationController.textGotIt": "知道了", + "DE.ApplicationController.textGuest": "访客", "DE.ApplicationController.textLoadingDocument": "文件加载中…", "DE.ApplicationController.textNext": "下一域", "DE.ApplicationController.textOf": "的", + "DE.ApplicationController.textRequired": "要发送表单,请填写所有必填项目。", "DE.ApplicationController.textSubmit": "提交", "DE.ApplicationController.textSubmited": "表单成功地被提交了
    点击以关闭贴士", "DE.ApplicationController.txtClose": "关闭", diff --git a/apps/documenteditor/main/app/controller/FormsTab.js b/apps/documenteditor/main/app/controller/FormsTab.js index c0fd48ad2..9f39fe260 100644 --- a/apps/documenteditor/main/app/controller/FormsTab.js +++ b/apps/documenteditor/main/app/controller/FormsTab.js @@ -194,6 +194,7 @@ define([ this.disableEditing(state); this.api.asc_setRestriction(state ? Asc.c_oAscRestrictionType.OnlyForms : Asc.c_oAscRestrictionType.None); this.api.asc_SetPerformContentControlActionByClick(state); + this.api.asc_SetHighlightRequiredFields(state); } Common.NotificationCenter.trigger('edit:complete', this.toolbar); }, diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index 65651c976..c57d4026c 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -155,7 +155,8 @@ define([ var collection = this.getApplication().getCollection('Common.Collections.Comments'), resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); for (var i = 0; i < collection.length; ++i) { - if (collection.at(i).get('userid') !== this.mode.user.id && (resolved || !collection.at(i).get('resolved'))) { + var comment = collection.at(i); + if (!comment.get('hide') && comment.get('userid') !== this.mode.user.id && (resolved || !comment.get('resolved'))) { this.leftMenu.markCoauthOptions('comments', true); break; } @@ -397,7 +398,7 @@ define([ } }, - onDownloadUrl: function(url) { + onDownloadUrl: function(url, fileType) { if (this.isFromFileDownloadAs) { var me = this, defFileName = this.getApplication().getController('Viewport').getView('Common.Views.Header').getDocumentCaption(); @@ -410,7 +411,7 @@ define([ } if (me.mode.canRequestSaveAs) { - Common.Gateway.requestSaveAs(url, defFileName); + Common.Gateway.requestSaveAs(url, defFileName, fileType); } else { me._saveCopyDlg = new Common.Views.SaveAsDlg({ saveFolderUrl: me.mode.saveAsUrl, @@ -698,14 +699,14 @@ define([ onApiAddComment: function(id, data) { var resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); - if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved())) + if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) this.leftMenu.markCoauthOptions('comments'); }, onApiAddComments: function(data) { var resolved = Common.Utils.InternalSettings.get("de-settings-resolvedcomment"); for (var i = 0; i < data.length; ++i) { - if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved())) { + if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) { this.leftMenu.markCoauthOptions('comments'); break; } diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 311b9b5ea..0105baa1f 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -535,6 +535,7 @@ define([ var _format = (format && (typeof format == 'string')) ? Asc.c_oAscFileType[ format.toUpperCase() ] : null, _supported = [ Asc.c_oAscFileType.TXT, + Asc.c_oAscFileType.RTF, Asc.c_oAscFileType.ODT, Asc.c_oAscFileType.DOCX, Asc.c_oAscFileType.HTML, @@ -543,7 +544,8 @@ define([ Asc.c_oAscFileType.DOTX, Asc.c_oAscFileType.OTT, Asc.c_oAscFileType.FB2, - Asc.c_oAscFileType.EPUB + Asc.c_oAscFileType.EPUB, + Asc.c_oAscFileType.DOCM ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -629,7 +631,8 @@ define([ selected: (opts.data.currentVersion == version.version), canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1), isExpanded: true, - serverVersion: version.serverVersion + serverVersion: version.serverVersion, + fileType: 'docx' })); if (opts.data.currentVersion == version.version) { currentVersion = arrVersions[arrVersions.length-1]; @@ -679,7 +682,8 @@ define([ canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload, isRevision: false, isVisible: true, - serverVersion: version.serverVersion + serverVersion: version.serverVersion, + fileType: 'docx' })); arrColors.push(user.get('colorval')); } @@ -1045,7 +1049,7 @@ define([ this.loadMask.setTitle(title); if (!this.isShowOpenDialog) - this.loadMask.show(); + this.loadMask.show(action.id===Asc.c_oAscAsyncAction['Open']); } else { this.getApplication().getController('Statusbar').setStatusCaption(text, force); } @@ -1395,6 +1399,15 @@ define([ if (this.permissions.editCommentAuthorOnly===undefined && this.permissions.deleteCommentAuthorOnly===undefined) this.appOptions.canEditComments = this.appOptions.canDeleteComments = this.appOptions.isOffline; } + if (typeof (this.editorConfig.customization) == 'object') { + if (this.editorConfig.customization.showReviewChanges!==undefined) + console.log("Obsolete: The 'showReviewChanges' parameter of the 'customization' section is deprecated. Please use 'showReviewChanges' parameter in the 'customization.review' section instead."); + if (this.editorConfig.customization.reviewDisplay!==undefined) + console.log("Obsolete: The 'reviewDisplay' parameter of the 'customization' section is deprecated. Please use 'reviewDisplay' parameter in the 'customization.review' section instead."); + if (this.editorConfig.customization.trackChanges!==undefined) + console.log("Obsolete: The 'trackChanges' parameter of the 'customization' section is deprecated. Please use 'trackChanges' parameter in the 'customization.review' section instead."); + } + this.appOptions.trialMode = params.asc_getLicenseMode(); this.appOptions.isBeta = params.asc_getIsBeta(); this.appOptions.isSignatureSupport= this.appOptions.isEdit && this.appOptions.isDesktopApp && this.appOptions.isOffline && this.api.asc_isSignaturesSupport(); @@ -1464,6 +1477,7 @@ define([ this.api.asc_setViewMode(!this.appOptions.isEdit && !this.appOptions.isRestrictedEdit); this.appOptions.isRestrictedEdit && this.appOptions.canComments && this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyComments); this.appOptions.isRestrictedEdit && this.appOptions.canFillForms && this.api.asc_setRestriction(Asc.c_oAscRestrictionType.OnlyForms); + this.appOptions.isRestrictedEdit && this.appOptions.canFillForms && this.api.asc_SetHighlightRequiredFields(true); this.api.asc_LoadDocument(); }, @@ -2039,9 +2053,10 @@ define([ }); }, - onDownloadUrl: function(url) { - if (this._state.isFromGatewayDownloadAs) - Common.Gateway.downloadAs(url); + onDownloadUrl: function(url, fileType) { + if (this._state.isFromGatewayDownloadAs) { + Common.Gateway.downloadAs(url, fileType); + } this._state.isFromGatewayDownloadAs = false; }, diff --git a/apps/documenteditor/main/app/controller/Statusbar.js b/apps/documenteditor/main/app/controller/Statusbar.js index b48ee0e7f..db122880e 100644 --- a/apps/documenteditor/main/app/controller/Statusbar.js +++ b/apps/documenteditor/main/app/controller/Statusbar.js @@ -144,7 +144,9 @@ define([ } var trackRevisions = me.api.asc_IsTrackRevisions(), - trackChanges = typeof (config.customization) == 'object' ? config.customization.trackChanges : undefined; + trackChanges = config.customization && config.customization.review ? config.customization.review.trackChanges : undefined; + (trackChanges===undefined) && (trackChanges = config.customization ? config.customization.trackChanges : undefined); + if ( config.isReviewOnly || trackChanges===true || (trackChanges!==false) && trackRevisions) { _process_changestip(); } else if ( trackRevisions ) { diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 7bc242027..e03d1e1df 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -158,7 +158,8 @@ define([ Asc.c_oAscFileType.DOTX, Asc.c_oAscFileType.OTT, Asc.c_oAscFileType.FB2, - Asc.c_oAscFileType.EPUB + Asc.c_oAscFileType.EPUB, + Asc.c_oAscFileType.DOCM ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -321,6 +322,7 @@ define([ toolbar.btnShowHidenChars.on('toggle', _.bind(this.onNonPrintingToggle, this)); toolbar.mnuTablePicker.on('select', _.bind(this.onTablePickerSelect, this)); toolbar.mnuInsertTable.on('item:click', _.bind(this.onInsertTableClick, this)); + toolbar.mnuInsertTable.on('show:after', _.bind(this.onInsertTableShow, this)); toolbar.mnuInsertImage.on('item:click', _.bind(this.onInsertImageClick, this)); toolbar.btnInsertText.on('click', _.bind(this.onBtnInsertTextClick, this)); toolbar.btnInsertShape.menu.on('hide:after', _.bind(this.onInsertShapeHide, this)); @@ -1523,6 +1525,11 @@ define([ Common.component.Analytics.trackEvent('ToolBar', 'Table'); }, + onInsertTableShow: function(menu) { + var selected = this.api.asc_GetSelectedText(); + menu.items[4].setDisabled(!selected || selected.length<1); + }, + onInsertTableClick: function(menu, item, e) { var me = this; if (item.value === 'custom') { diff --git a/apps/documenteditor/main/app/controller/Viewport.js b/apps/documenteditor/main/app/controller/Viewport.js index 80e01e5c5..39f0d058d 100644 --- a/apps/documenteditor/main/app/controller/Viewport.js +++ b/apps/documenteditor/main/app/controller/Viewport.js @@ -153,6 +153,8 @@ define([ Common.NotificationCenter.on('app:face', this.onAppShowed.bind(this)); Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); + Common.NotificationCenter.on('uitheme:changed', this.onThemeChanged.bind(this)); + Common.NotificationCenter.on('contenttheme:dark', this.onContentThemeChangedToDark.bind(this)); }, onAppShowed: function (config) { @@ -248,6 +250,13 @@ define([ if (!config.isEdit) mnuitemHideRulers.hide(); + me.header.menuItemsDarkMode = new Common.UI.MenuItem({ + caption: 'Dark mode', + checkable: true, + checked: Common.UI.Themes.isContentThemeDark(), + value: 'mode:dark' + }); + me.header.mnuitemFitPage = new Common.UI.MenuItem({ caption: me.textFitPage, checkable: true, @@ -286,6 +295,8 @@ define([ mnuitemHideStatusBar, mnuitemHideRulers, {caption:'--'}, + me.header.menuItemsDarkMode, + {caption:'--'}, me.header.mnuitemFitPage, me.header.mnuitemFitWidth, me.header.mnuZoom, @@ -314,6 +325,10 @@ define([ })).on('click', _on_btn_zoom.bind(me, 'up')); me.header.btnOptions.menu.on('item:click', me.onOptionsItemClick.bind(this)); + if ( !Common.UI.Themes.isDarkTheme() ) { + me.header.menuItemsDarkMode.hide(); + me.header.menuItemsDarkMode.$el.prev('.divider').hide(); + } } }, @@ -354,6 +369,20 @@ define([ this.api.Resize(); }, + onThemeChanged: function (id) { + var current_dark = Common.UI.Themes.isDarkTheme(); + var menuItem = this.header.menuItemsDarkMode; + menuItem.setVisible(current_dark); + menuItem.$el.prev('.divider')[current_dark ? 'show' : 'hide'](); + + menuItem.setChecked(current_dark); + this.header.btnContentMode.setVisible(current_dark); + }, + + onContentThemeChangedToDark: function (isdark) { + this.header.menuItemsDarkMode.setChecked(isdark, true); + }, + onWindowResize: function(e) { this.onLayoutChanged('window'); Common.NotificationCenter.trigger('window:resize'); @@ -400,6 +429,7 @@ define([ Common.NotificationCenter.trigger('edit:complete', me.header); break; case 'advanced': me.header.fireEvent('file:settings', me.header); break; + case 'mode:dark': Common.UI.Themes.toggleContentTheme(); break; } }, diff --git a/apps/documenteditor/main/app/template/FormSettings.template b/apps/documenteditor/main/app/template/FormSettings.template index e43b4b60e..c63a68c60 100644 --- a/apps/documenteditor/main/app/template/FormSettings.template +++ b/apps/documenteditor/main/app/template/FormSettings.template @@ -83,6 +83,22 @@
    + + +
    +
    +
    +
    <%= scope.textImage %>
    +
    +
    +
    +
    +
    + +
    +
    + +
    diff --git a/apps/documenteditor/main/app/template/StatusBar.template b/apps/documenteditor/main/app/template/StatusBar.template index 655483e90..bcf70b81d 100644 --- a/apps/documenteditor/main/app/template/StatusBar.template +++ b/apps/documenteditor/main/app/template/StatusBar.template @@ -1,7 +1,7 @@
    - + ' @@ -1033,7 +1041,7 @@ define([ '', '', '', - '', + '', '', '
    ', '
    ' diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index 19d51c9b8..17d39bd90 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -143,6 +143,9 @@ define([ this.lockedControls.push(this.txtPlaceholder); this.txtPlaceholder.on('changed:after', this.onPlaceholderChanged.bind(this)); this.txtPlaceholder.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + this.txtPlaceholder.cmpEl.on('focus', 'input.form-control', function() { + setTimeout(function(){me.txtPlaceholder._input && me.txtPlaceholder._input.select();}, 1); + }); this.textareaHelp = new Common.UI.TextareaField({ el : $markup.findById('#form-txt-help'), @@ -420,6 +423,36 @@ define([ this.cmbScale.on('changed:after', this.onScaleChanged.bind(this)); this.cmbScale.on('hide:after', this.onHideMenus.bind(this)); + this.imagePositionPreview = $markup.findById('#form-img-example'); + this.imagePositionLabel = $markup.findById('#form-img-slider-value'); + + this.sldrPreviewPositionX = new Common.UI.SingleSlider({ + el: $('#form-img-slider-position-x'), + width: 116, + minValue: 0, + maxValue: 100, + value: 50 + }); + this.sldrPreviewPositionX.on('change', _.bind(this.onImagePositionChange, this, 'x')); + this.sldrPreviewPositionX.on('changecomplete', _.bind(this.onImagePositionChangeComplete, this, 'x')); + this.lockedControls.push(this.sldrPreviewPositionX); + + this.sldrPreviewPositionY = new Common.UI.SingleSlider({ + el: $('#form-img-slider-position-y'), + width: 116, + minValue: 0, + maxValue: 100, + value: 50, + direction: 'vertical' + }); + this.sldrPreviewPositionY.on('change', _.bind(this.onImagePositionChange, this, 'y')); + this.sldrPreviewPositionY.on('changecomplete', _.bind(this.onImagePositionChangeComplete, this, 'y')); + this.lockedControls.push(this.sldrPreviewPositionY); + + var xValue = this.sldrPreviewPositionX.getValue(), + yValue = this.sldrPreviewPositionY.getValue(); + this.imagePositionLabel.text(xValue + ',' + yValue); + this.updateMetricUnit(); this.UpdateThemeColors(); }, @@ -716,18 +749,18 @@ define([ if (this.api && !this._noApply) { var props = this._originalProps || new AscCommon.CContentControlPr(); - var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr(); + var formPr = this._originalFormProps || new AscCommon.CSdtFormPr(); if (color == 'transparent') { - formTextPr.put_CombBorder(); + formPr.put_Border(); } else { - var brd = formTextPr.get_CombBorder(); + var brd = formPr.get_Border(); if (!brd) brd = new Asc.asc_CTextBorder(); brd.put_Value(1); brd.put_Color(Common.Utils.ThemeColor.getRgbColor(color)); - formTextPr.put_CombBorder(brd); + formPr.put_Border(brd); } - props.put_TextFormPr(formTextPr); + props.put_FormPr(formPr); this.api.asc_SetContentControlProperties(props, this.internalId); this.fireEvent('editcomplete', this); } @@ -739,9 +772,9 @@ define([ if (this.api && !this._noApply) { var props = this._originalProps || new AscCommon.CContentControlPr(); - var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr(); - formTextPr.put_CombBorder(); - props.put_TextFormPr(formTextPr); + var formPr = this._originalFormProps || new AscCommon.CSdtFormPr(); + formPr.put_Border(); + props.put_FormPr(formPr); this.api.asc_SetContentControlProperties(props, this.internalId); this.fireEvent('editcomplete', this); } @@ -887,6 +920,33 @@ define([ this._state.Fixed=val; } } + + var brd = formPr.get_Border(); + if (brd) { + var color = brd.get_Color(); + if (color) { + if (color.get_type() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) { + this.BorderColor = {color: Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()), effectValue: color.get_value() }; + } else { + this.BorderColor = Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()); + } + } else + this.BorderColor = 'transparent'; + } else + this.BorderColor = 'transparent'; + + var type1 = typeof(this.BorderColor), + type2 = typeof(this._state.BorderColor); + if ( (type1 !== type2) || (type1=='object' && + (this.BorderColor.effectValue!==this._state.BorderColor.effectValue || this._state.BorderColor.color.indexOf(this.BorderColor.color)<0)) || + (type1!='object' && this._state.BorderColor.indexOf(this.BorderColor)<0 )) { + + this.btnColor.setColor(this.BorderColor); + this.mnuColorPicker.clearSelection(); + this.mnuNoBorder.setChecked(this.BorderColor == 'transparent', true); + (this.BorderColor != 'transparent') && this.mnuColorPicker.selectByRGB(typeof(this.BorderColor) == 'object' ? this.BorderColor.color : this.BorderColor,true); + this._state.BorderColor = this.BorderColor; + } } var pictPr = props.get_PictureFormPr(); @@ -903,6 +963,27 @@ define([ this.cmbScale.setValue(val); this._state.scaleFlag=val; } + + val = pictPr.get_ShiftX() * 100; + if (this._state.imgPositionX !== val) { + this.sldrPreviewPositionX.setValue(val); + this._state.imgPositionX = val; + } + val = pictPr.get_ShiftY() * 100; + if (this._state.imgPositionY !== val) { + this.sldrPreviewPositionY.setValue(val); + this._state.imgPositionY = val; + } + this.imagePositionLabel.text(Math.round(this._state.imgPositionX) + ',' + Math.round(this._state.imgPositionY)); + val = ((130 - 80) * this._state.imgPositionX) / 100 - 1; + this.imagePositionPreview.css({'left': val + 'px'}); + val = ((130 - 80) * this._state.imgPositionY) / 100 - 1; + this.imagePositionPreview.css({'top': val + 'px'}); + + this.chAspect.setDisabled(this._state.scaleFlag === Asc.c_oAscPictureFormScaleFlag.Never); + var disableSliders = this._state.scaleFlag === Asc.c_oAscPictureFormScaleFlag.Always && !this._state.Aspect; + this.sldrPreviewPositionX.setDisabled(disableSliders); + this.sldrPreviewPositionY.setDisabled(disableSliders); } var formTextPr = props.get_TextFormPr(); @@ -930,8 +1011,6 @@ define([ } this.chAutofit.setDisabled(!this._state.Fixed || this._state.Comb); - this.btnColor.setDisabled(!this._state.Comb); - this.spnWidth.setDisabled(!this._state.Comb); val = formTextPr.get_Width(); if ( (val===undefined || this._state.Width===undefined)&&(this._state.Width!==val) || Math.abs(this._state.Width-val)>0.1) { @@ -952,33 +1031,6 @@ define([ this.spnMaxChars.setValue(val && val>=0 ? val : 10, true); this._state.MaxChars=val; } - - var brd = formTextPr.get_CombBorder(); - if (brd) { - var color = brd.get_Color(); - if (color) { - if (color.get_type() == Asc.c_oAscColor.COLOR_TYPE_SCHEME) { - this.BorderColor = {color: Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()), effectValue: color.get_value() }; - } else { - this.BorderColor = Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()); - } - } else - this.BorderColor = 'transparent'; - } else - this.BorderColor = 'transparent'; - - var type1 = typeof(this.BorderColor), - type2 = typeof(this._state.BorderColor); - if ( (type1 !== type2) || (type1=='object' && - (this.BorderColor.effectValue!==this._state.BorderColor.effectValue || this._state.BorderColor.color.indexOf(this.BorderColor.color)<0)) || - (type1!='object' && this._state.BorderColor.indexOf(this.BorderColor)<0 )) { - - this.btnColor.setColor(this.BorderColor); - this.mnuColorPicker.clearSelection(); - this.mnuNoBorder.setChecked(this.BorderColor == 'transparent', true); - (this.BorderColor != 'transparent') && this.mnuColorPicker.selectByRGB(typeof(this.BorderColor) == 'object' ? this.BorderColor.color : this.BorderColor,true); - this._state.BorderColor = this.BorderColor; - } } this._noApply = false; @@ -1089,6 +1141,7 @@ define([ }, onSelectItem: function(listView, itemView, record) { + if (!record) return; this.txtNewValue.setValue(record.get('name')); this._state.listValue = record.get('name'); this._state.listIndex = undefined; @@ -1107,6 +1160,61 @@ define([ this.btnListDown.setDisabled(disabled || this._state.DisabledControls); }, + onImagePositionChange: function (type, field, newValue, oldValue) { + var value = ((130 - 80) * newValue) / 100 - 1; + if (type === 'x') { + this.imagePositionPreview.css({'left': value + 'px'}); + this._state.imgPositionX = newValue; + } else { + this.imagePositionPreview.css({'top': value + 'px'}); + this._state.imgPositionY = newValue; + } + if (_.isUndefined(this._state.imgPositionX)) { + this._state.imgPositionX = 50; + } else if (_.isUndefined(this._state.imgPositionY)) { + this._state.imgPositionY = 50; + } + this.imagePositionLabel.text(Math.round(this._state.imgPositionX) + ',' + Math.round(this._state.imgPositionY)); + + if (this._sendUndoPoint) { + this.api.setStartPointHistory(); + this._sendUndoPoint = false; + this.updateslider = setInterval(_.bind(this.imgPositionApplyFunc, this, type), 100); + } + }, + + onImagePositionChangeComplete: function (type, field, newValue, oldValue) { + clearInterval(this.updateslider); + if (type === 'x') { + this._state.imgPositionX = newValue; + } else { + this._state.imgPositionY = newValue; + } + if (!this._sendUndoPoint) { // start point was added + this.api.setEndPointHistory(); + this.imgPositionApplyFunc(type); + } + this._sendUndoPoint = true; + }, + + imgPositionApplyFunc: function (type) { + if (this.api && !this._noApply) { + var props = this._originalProps || new AscCommon.CContentControlPr(); + var pictPr = this._originalPictProps || new AscCommon.CSdtPictureFormPr(); + var val; + if (type === 'x') { + val = this._state.imgPositionX / 100; + pictPr.put_ShiftX(val); + } else { + val = this._state.imgPositionY / 100; + pictPr.put_ShiftY(val); + } + props.put_PictureFormPr(pictPr); + this.api.asc_SetContentControlProperties(props, this.internalId); + this.fireEvent('editcomplete', this); + } + }, + textField: 'Text Field', textKey: 'Key', textPlaceholder: 'Placeholder', diff --git a/apps/documenteditor/main/app/view/MailMergeSettings.js b/apps/documenteditor/main/app/view/MailMergeSettings.js index 6c40a0a34..865e68096 100644 --- a/apps/documenteditor/main/app/view/MailMergeSettings.js +++ b/apps/documenteditor/main/app/view/MailMergeSettings.js @@ -570,7 +570,7 @@ define([ } }, - onSaveMailMerge: function(url) { + onSaveMailMerge: function(url, fileType) { var loadMask = DE.getController('Main').loadMask; loadMask && loadMask.hide(); @@ -579,7 +579,7 @@ define([ if (this.cmbMergeTo.getValue() != Asc.c_oAscFileType.HTML) { var defFileName = me.defFileName + ((this.cmbMergeTo.getValue() == Asc.c_oAscFileType.PDF) ? '.pdf' : '.docx'); if (me.mode.canRequestSaveAs) { - Common.Gateway.requestSaveAs(url, defFileName); + Common.Gateway.requestSaveAs(url, defFileName, fileType); } else { me._mailMergeDlg = new Common.Views.SaveAsDlg({ saveFolderUrl: me.mode.mergeFolderUrl, diff --git a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js index 9ac8c6434..edfd61997 100644 --- a/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/documenteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -1384,6 +1384,7 @@ define([ 'text!documenteditor/main/app/template/ParagraphSettingsAdvanced.tem }, onSelectTab: function(lisvView, itemView, record) { + if (!record) return; var rawData = {}, isViewSelect = _.isFunction(record.toJSON); diff --git a/apps/documenteditor/main/app/view/TextToTableDialog.js b/apps/documenteditor/main/app/view/TextToTableDialog.js index 8f6d0153e..a1d69eea2 100644 --- a/apps/documenteditor/main/app/view/TextToTableDialog.js +++ b/apps/documenteditor/main/app/view/TextToTableDialog.js @@ -247,7 +247,7 @@ define([ maxLength: 1, validateOnChange: true, validateOnBlur: false, - value: '-' + value: Common.Utils.InternalSettings.get("de-text-to-table-separator") || '-' }).on ('changing', function(input, newValue) { if (me.props && newValue) { me.props.put_SeparatorType(3, true); @@ -315,6 +315,7 @@ define([ if (this.props) { this.props.put_AutoFitType(this.rbFixed.getValue() ? 1 : (this.rbContents.getValue() ? 2 : 3)); this.rbFixed.getValue() && this.props.put_Fit(Common.Utils.Metric.fnRecalcToMM(this.spnWidth.getNumberValue())); + this.rbOther.getValue() && Common.Utils.InternalSettings.set("de-text-to-table-separator", String.fromCharCode(this.props.get_Separator())); } return this.props; diff --git a/apps/documenteditor/main/app/view/Toolbar.js b/apps/documenteditor/main/app/view/Toolbar.js index 2e107c270..d0adfc37a 100644 --- a/apps/documenteditor/main/app/view/Toolbar.js +++ b/apps/documenteditor/main/app/view/Toolbar.js @@ -2006,15 +2006,15 @@ define([ restoreHeight: 138, allowScrollbar: false, store: new Common.UI.DataViewStore([ - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: -1}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 1}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 2}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 3}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 4}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 5}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 6}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 7}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 8}} + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: -1}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 1}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 2}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 3}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 4}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 5}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 6}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 7}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 8}, skipRenderOnChange: true} ]), itemTemplate: _.template('
    ') }); @@ -2027,14 +2027,14 @@ define([ restoreHeight: 92, allowScrollbar: false, store: new Common.UI.DataViewStore([ - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: -1}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 4}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 5}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 6}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 1}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 2}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 3}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 7}} + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: -1}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 4}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 5}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 6}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 1}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 2}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 3}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 7}, skipRenderOnChange: true} ]), itemTemplate: _.template('
    ') }); @@ -2047,10 +2047,10 @@ define([ restoreHeight: 92, allowScrollbar: false, store: new Common.UI.DataViewStore([ - {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: -1}}, - {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 1}}, - {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 2}}, - {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 3}} + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: -1}, skipRenderOnChange: true}, + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 1}, skipRenderOnChange: true}, + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 2}, skipRenderOnChange: true}, + {id: 'id-multilevels-' + Common.UI.getId(), data: {type: 2, subtype: 3}, skipRenderOnChange: true} ]), itemTemplate: _.template('
    ') }); diff --git a/apps/documenteditor/main/index.html b/apps/documenteditor/main/index.html index 4fe8a6c3e..3aac9d3ef 100644 --- a/apps/documenteditor/main/index.html +++ b/apps/documenteditor/main/index.html @@ -225,8 +225,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -315,6 +314,7 @@ + diff --git a/apps/documenteditor/main/index.html.deploy b/apps/documenteditor/main/index.html.deploy index 6387529ff..1f94e89d8 100644 --- a/apps/documenteditor/main/index.html.deploy +++ b/apps/documenteditor/main/index.html.deploy @@ -197,8 +197,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -309,6 +308,7 @@ + diff --git a/apps/documenteditor/main/index_loader.html b/apps/documenteditor/main/index_loader.html index f1fe2ae1b..cc8559683 100644 --- a/apps/documenteditor/main/index_loader.html +++ b/apps/documenteditor/main/index_loader.html @@ -199,8 +199,7 @@ return urlParams; } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -272,6 +271,7 @@ + diff --git a/apps/documenteditor/main/index_loader.html.deploy b/apps/documenteditor/main/index_loader.html.deploy index 13d327a22..c237081ba 100644 --- a/apps/documenteditor/main/index_loader.html.deploy +++ b/apps/documenteditor/main/index_loader.html.deploy @@ -218,8 +218,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -315,6 +314,7 @@ + diff --git a/apps/documenteditor/main/locale/ca.json b/apps/documenteditor/main/locale/ca.json index 341181b19..859fc3f36 100644 --- a/apps/documenteditor/main/locale/ca.json +++ b/apps/documenteditor/main/locale/ca.json @@ -1,17 +1,17 @@ { - "Common.Controllers.Chat.notcriticalErrorTitle": "Avis", + "Common.Controllers.Chat.notcriticalErrorTitle": "Avís", "Common.Controllers.Chat.textEnterMessage": "Introduïu el vostre missatge aquí", "Common.Controllers.ExternalDiagramEditor.textAnonymous": "Anònim", "Common.Controllers.ExternalDiagramEditor.textClose": "Tancar", - "Common.Controllers.ExternalDiagramEditor.warningText": "L’objecte està desactivat perquè està sent editat per un altre usuari.", - "Common.Controllers.ExternalDiagramEditor.warningTitle": "Avis", + "Common.Controllers.ExternalDiagramEditor.warningText": "L’objecte s'ha desactivat perquè un altre usuari ja el té obert.", + "Common.Controllers.ExternalDiagramEditor.warningTitle": "Avís", "Common.Controllers.ExternalMergeEditor.textAnonymous": "Anònim", "Common.Controllers.ExternalMergeEditor.textClose": "Tancar", - "Common.Controllers.ExternalMergeEditor.warningText": "L’objecte està desactivat perquè està sent editat per un altre usuari.", + "Common.Controllers.ExternalMergeEditor.warningText": "L’objecte s'ha desactivat perquè està un altre usuari ja el té obert.", "Common.Controllers.ExternalMergeEditor.warningTitle": "Avis", - "Common.Controllers.History.notcriticalErrorTitle": "Avis", + "Common.Controllers.History.notcriticalErrorTitle": "Avís", "Common.Controllers.ReviewChanges.textAcceptBeforeCompare": "Per poder comparar documents, es consideraran acceptats tots els canvis realitzats en un seguiment. Vols continuar?", - "Common.Controllers.ReviewChanges.textAtLeast": "al menys", + "Common.Controllers.ReviewChanges.textAtLeast": "pel cap baix", "Common.Controllers.ReviewChanges.textAuto": "auto", "Common.Controllers.ReviewChanges.textBaseline": "Línia Subíndex", "Common.Controllers.ReviewChanges.textBold": "Negreta", @@ -33,7 +33,7 @@ "Common.Controllers.ReviewChanges.textImage": "Imatge", "Common.Controllers.ReviewChanges.textIndentLeft": "Tabulador esquerre", "Common.Controllers.ReviewChanges.textIndentRight": "Tabulador dret", - "Common.Controllers.ReviewChanges.textInserted": "Insertat:", + "Common.Controllers.ReviewChanges.textInserted": "Inserit:", "Common.Controllers.ReviewChanges.textItalic": "Itàlica", "Common.Controllers.ReviewChanges.textJustify": "Justificar", "Common.Controllers.ReviewChanges.textKeepLines": "Mantenir les línies unides", @@ -49,19 +49,19 @@ "Common.Controllers.ReviewChanges.textNoWidow": "Sense control de la finestra", "Common.Controllers.ReviewChanges.textNum": "Canviar numeració", "Common.Controllers.ReviewChanges.textOff": "{0} Ja no s'utilitza el seguiment de canvis.", - "Common.Controllers.ReviewChanges.textOffGlobal": "{0} S'ha inhabilitat el Seguiment de Canvis per a tothom.", - "Common.Controllers.ReviewChanges.textOn": "{0} Ara s'està utilitzant el seguiment de canvis.", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} S'ha desactivat el Seguiment de Canvis per a tothom.", + "Common.Controllers.ReviewChanges.textOn": "{0} utilitza ara el seguiment de canvis.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} S'ha activat el seguiment de canvis per a tothom.", "Common.Controllers.ReviewChanges.textParaDeleted": "Paràgraf Suprimit", "Common.Controllers.ReviewChanges.textParaFormatted": "Paràgraf Formatat", "Common.Controllers.ReviewChanges.textParaInserted": "Paràgraf Inserit", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Baixat:", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Pujat:", - "Common.Controllers.ReviewChanges.textParaMoveTo": "Mogut:", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Abaixat:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Apujat:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "Desplaçat:", "Common.Controllers.ReviewChanges.textPosition": "Posició", "Common.Controllers.ReviewChanges.textRight": "Alinear dreta", "Common.Controllers.ReviewChanges.textShape": "Forma", - "Common.Controllers.ReviewChanges.textShd": "Color de Fons", + "Common.Controllers.ReviewChanges.textShd": "Color de fons", "Common.Controllers.ReviewChanges.textShow": "Mostra els canvis a", "Common.Controllers.ReviewChanges.textSmallCaps": "Majúscules petites", "Common.Controllers.ReviewChanges.textSpacing": "Espai", @@ -70,14 +70,14 @@ "Common.Controllers.ReviewChanges.textStrikeout": "Ratllar tex", "Common.Controllers.ReviewChanges.textSubScript": "Subíndex", "Common.Controllers.ReviewChanges.textSuperScript": "Superíndex", - "Common.Controllers.ReviewChanges.textTableChanged": "Configuració de la Taula Canviada", - "Common.Controllers.ReviewChanges.textTableRowsAdd": "Files de Taula Afegides", - "Common.Controllers.ReviewChanges.textTableRowsDel": "Files de Taula Suprimides", + "Common.Controllers.ReviewChanges.textTableChanged": "S'ha modificat la Configuració de la Taula", + "Common.Controllers.ReviewChanges.textTableRowsAdd": "S'han afegit Files a la Taula", + "Common.Controllers.ReviewChanges.textTableRowsDel": "S'han suprimit Files a la Taula", "Common.Controllers.ReviewChanges.textTabs": "Canviar tabulació", "Common.Controllers.ReviewChanges.textTitleComparison": "Paràmetres de comparació", "Common.Controllers.ReviewChanges.textUnderline": "Subratllar", "Common.Controllers.ReviewChanges.textUrl": "Enganxar la URL del document", - "Common.Controllers.ReviewChanges.textWidow": "Control Finestra", + "Common.Controllers.ReviewChanges.textWidow": "Control de finestra", "Common.Controllers.ReviewChanges.textWord": "Nivell de paraula", "Common.define.chartData.textArea": "Àrea", "Common.define.chartData.textAreaStacked": "Àrea apilada", @@ -89,7 +89,7 @@ "Common.define.chartData.textBarStacked": "Columna apilada", "Common.define.chartData.textBarStacked3d": "Columna 3D apilada", "Common.define.chartData.textBarStackedPer": "Columna apilada al 100%", - "Common.define.chartData.textBarStackedPer3d": "columna 3D apilada al 100%", + "Common.define.chartData.textBarStackedPer3d": "Columna 3D apilada al 100%", "Common.define.chartData.textCharts": "Gràfics", "Common.define.chartData.textColumn": "Columna", "Common.define.chartData.textCombo": "Combo", @@ -121,7 +121,7 @@ "Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors", "Common.define.chartData.textStock": "Existències", "Common.define.chartData.textSurface": "Superfície", - "Common.Translation.warnFileLocked": "No pot editar aquest fitxer perquè s'està editant en una altra aplicació.", + "Common.Translation.warnFileLocked": "No podeu editar aquest fitxer perquè és obert en una altra aplicació.", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obrir per veure", "Common.UI.Calendar.textApril": "Abril", @@ -138,7 +138,7 @@ "Common.UI.Calendar.textOctober": "Octubre", "Common.UI.Calendar.textSeptember": "Setembre", "Common.UI.Calendar.textShortApril": "Abr", - "Common.UI.Calendar.textShortAugust": "Ags", + "Common.UI.Calendar.textShortAugust": "Ago", "Common.UI.Calendar.textShortDecember": "Dec", "Common.UI.Calendar.textShortFebruary": "Feb", "Common.UI.Calendar.textShortFriday": "Fr", @@ -158,15 +158,15 @@ "Common.UI.Calendar.textShortWednesday": "Dim", "Common.UI.Calendar.textYears": "Anys", "Common.UI.ColorButton.textAutoColor": "Automàtic", - "Common.UI.ColorButton.textNewColor": "Afegir un Nou Color Personalitzat", + "Common.UI.ColorButton.textNewColor": "Afegir un color nou personalitzat", "Common.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", "Common.UI.ComboDataView.emptyComboText": "Sense estil", "Common.UI.ExtendedColorDialog.addButtonText": "Afegir", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", - "Common.UI.ExtendedColorDialog.textHexErr": "El valor introduït és incorrecte.
    Introduïu un valor entre 000000 i FFFFFF.", + "Common.UI.ExtendedColorDialog.textHexErr": "El valor introduït no és correcte.
    Introduïu un valor entre 000000 i FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nou", - "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït és incorrecte.
    Introduïu un valor numèric entre 0 i 255.", + "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït no és correcte.
    Introduïu un valor numèric entre 0 i 255.", "Common.UI.HSBColorPicker.textNoColor": "Sense Color", "Common.UI.SearchDialog.textHighlight": "Ressaltar els resultats", "Common.UI.SearchDialog.textMatchCase": "Sensible a majúscules i minúscules", @@ -179,9 +179,9 @@ "Common.UI.SearchDialog.txtBtnReplace": "Canviar", "Common.UI.SearchDialog.txtBtnReplaceAll": "Canviar Tot", "Common.UI.SynchronizeTip.textDontShow": "No torneu a mostrar aquest missatge", - "Common.UI.SynchronizeTip.textSynchronize": "Un altre usuari ha canviat el document.
    Feu clic per desar els canvis i tornar a carregar les actualitzacions.", + "Common.UI.SynchronizeTip.textSynchronize": "Un altre usuari ha canviat el document.
    Cliqueu per desar els canvis i tornar a carregar les actualitzacions.", "Common.UI.ThemeColorPalette.textStandartColors": "Colors Estàndards", - "Common.UI.ThemeColorPalette.textThemeColors": "Colors Tema", + "Common.UI.ThemeColorPalette.textThemeColors": "Colors del tema", "Common.UI.Themes.txtThemeClassicLight": "Llum clàssica", "Common.UI.Themes.txtThemeDark": "Fosc", "Common.UI.Themes.txtThemeLight": "Llum", @@ -193,7 +193,7 @@ "Common.UI.Window.textDontShow": "No torneu a mostrar aquest missatge", "Common.UI.Window.textError": "Error", "Common.UI.Window.textInformation": "Informació", - "Common.UI.Window.textWarning": "Avis", + "Common.UI.Window.textWarning": "Avís", "Common.UI.Window.yesButtonText": "Sí", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", @@ -206,9 +206,9 @@ "Common.Views.About.txtVersion": "Versió", "Common.Views.AutoCorrectDialog.textAdd": "Afegir", "Common.Views.AutoCorrectDialog.textApplyText": "Aplica a mesura que escrius", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció Automàtica", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció automàtica", "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que escriviu", - "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de vinyetes", + "Common.Views.AutoCorrectDialog.textBulleted": "Llistes automàtiques de pics", "Common.Views.AutoCorrectDialog.textBy": "Per", "Common.Views.AutoCorrectDialog.textDelete": "Esborrar", "Common.Views.AutoCorrectDialog.textFLSentence": "Posa en majúscules la primera lletra de les frases", @@ -217,24 +217,24 @@ "Common.Views.AutoCorrectDialog.textNumbered": "Llistes numerades automàtiques", "Common.Views.AutoCorrectDialog.textQuotes": "\"Cometes rectes\" amb \"cometes tipogràfiques\"", "Common.Views.AutoCorrectDialog.textRecognized": "Funcions Reconegudes", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions següents són expressions matemàtiques reconegudes. No es posaran en cursiva automàticament.", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions següents són expressions matemàtiques reconegudes. No es posaran automàticament en cursiva.", "Common.Views.AutoCorrectDialog.textReplace": "Substitueix", "Common.Views.AutoCorrectDialog.textReplaceText": "Substitueix mentre escrius", "Common.Views.AutoCorrectDialog.textReplaceType": "Substituïu el text mentre escriviu", "Common.Views.AutoCorrectDialog.textReset": "Restablir", "Common.Views.AutoCorrectDialog.textResetAll": "Restableix a valor predeterminat", "Common.Views.AutoCorrectDialog.textRestore": "Restaurar", - "Common.Views.AutoCorrectDialog.textTitle": "Correcció Automàtica", + "Common.Views.AutoCorrectDialog.textTitle": "Correcció automàtica", "Common.Views.AutoCorrectDialog.textWarnAddRec": "Les funcions reconegudes han de contenir només les lletres de la A a la Z, en majúscules o en minúscules.", - "Common.Views.AutoCorrectDialog.textWarnResetRec": "Qualsevol expressió que hàgiu afegit se suprimirà i es restabliran les eliminades. Vols continuar?", - "Common.Views.AutoCorrectDialog.warnReplace": "L'entrada de correcció automàtica de %1 ja existeix. El voleu substituir?", - "Common.Views.AutoCorrectDialog.warnReset": "Qualsevol autocorrecció que hàgiu afegit se suprimirà i les modificades es restauraran als seus valors originals. Vols continuar?", - "Common.Views.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Vols continuar?", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Qualsevol expressió que hàgiu afegit se suprimirà i es restabliran les eliminades. Voleu continuar?", + "Common.Views.AutoCorrectDialog.warnReplace": "L'entrada de correcció automàtica de %1 ja existeix. La voleu substituir?", + "Common.Views.AutoCorrectDialog.warnReset": "Qualsevol autocorrecció que hàgiu afegit se suprimirà i les modificades es restauraran als seus valors originals. Voleu continuar?", + "Common.Views.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Voleu continuar?", "Common.Views.Chat.textSend": "Enviar", "Common.Views.Comments.textAdd": "Afegir", - "Common.Views.Comments.textAddComment": "Afegir comentari", + "Common.Views.Comments.textAddComment": "Afegir Comentari", "Common.Views.Comments.textAddCommentToDoc": "Afegir Comentari al Document", - "Common.Views.Comments.textAddReply": "Afegir una Resposta", + "Common.Views.Comments.textAddReply": "Afegir una resposta", "Common.Views.Comments.textAnonym": "Convidat", "Common.Views.Comments.textCancel": "Cancel·lar", "Common.Views.Comments.textClose": "Tancar", @@ -262,7 +262,7 @@ "Common.Views.ExternalMergeEditor.textTitle": "Receptors de Fusió de Correu", "Common.Views.Header.labelCoUsersDescr": "Usuaris que editen el fitxer:", "Common.Views.Header.textAddFavorite": "Marca com a favorit", - "Common.Views.Header.textAdvSettings": "Configuració Avançada", + "Common.Views.Header.textAdvSettings": "Configuració avançada", "Common.Views.Header.textBack": "Obrir ubicació del arxiu", "Common.Views.Header.textCompactView": "Amagar la Barra d'Eines", "Common.Views.Header.textHideLines": "Amagar Regles", @@ -289,11 +289,11 @@ "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Enganxar URL d'imatge:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", - "Common.Views.InsertTableDialog.textInvalidRowsCols": "Cal que especifiqueu el número de files i columnes vàlids.", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", + "Common.Views.InsertTableDialog.textInvalidRowsCols": "Cal especificar el recompte de files i columnes vàlides.", "Common.Views.InsertTableDialog.txtColumns": "Número de columnes", "Common.Views.InsertTableDialog.txtMaxText": "El valor màxim per a aquest camp és {0}.", - "Common.Views.InsertTableDialog.txtMinText": "El valor mínim d’aquest camp és {0}.", + "Common.Views.InsertTableDialog.txtMinText": "El valor mínim per aquest camp és {0}.", "Common.Views.InsertTableDialog.txtRows": "Número de files", "Common.Views.InsertTableDialog.txtTitle": "Mida Taula", "Common.Views.InsertTableDialog.txtTitleSplit": "Dividir Cel·la", @@ -312,7 +312,7 @@ "Common.Views.PasswordDialog.txtPassword": "Contrasenya", "Common.Views.PasswordDialog.txtRepeat": "Repeteix la contrasenya", "Common.Views.PasswordDialog.txtTitle": "Estableix la contrasenya", - "Common.Views.PasswordDialog.txtWarning": "Avis: si perdeu o oblideu la contrasenya, no es podrà recuperar. Desa-la en un lloc segur.", + "Common.Views.PasswordDialog.txtWarning": "Avís: si perdeu o oblideu la contrasenya, no es podrà recuperar. Desa-la en un lloc segur.", "Common.Views.PluginDlg.textLoading": "Carregant", "Common.Views.Plugins.groupCaption": "Connectors", "Common.Views.Plugins.strPlugins": "Connectors", @@ -331,7 +331,7 @@ "Common.Views.Protection.txtSignatureLine": "Afegir línia de signatura", "Common.Views.RenameDialog.textName": "Nom Fitxer", "Common.Views.RenameDialog.txtInvalidName": "El nom del fitxer no pot contenir cap dels caràcters següents:", - "Common.Views.ReviewChanges.hintNext": "Al següent canvi", + "Common.Views.ReviewChanges.hintNext": "Al canvi següent", "Common.Views.ReviewChanges.hintPrev": "Al canvi anterior", "Common.Views.ReviewChanges.mniFromFile": "Document cap a fitxer", "Common.Views.ReviewChanges.mniFromStorage": "Document cap a emmagatzematge", @@ -340,9 +340,9 @@ "Common.Views.ReviewChanges.strFast": "Ràpid", "Common.Views.ReviewChanges.strFastDesc": "Co-edició a temps real. Tots", "Common.Views.ReviewChanges.strStrict": "Estricte", - "Common.Views.ReviewChanges.strStrictDesc": "Feu servir el botó \"Desa\" per sincronitzar els canvis que feu i els altres.", + "Common.Views.ReviewChanges.strStrictDesc": "Utilitzeu el botó \"Desar\" per sincronitzar els canvis que vostè i altres feu.", "Common.Views.ReviewChanges.textEnable": "Activar", - "Common.Views.ReviewChanges.textWarnTrackChanges": "El seguiment de canvis s'activarà per a tots els usuaris amb accés total. La pròxima vegada que algú obri el document, el seguiment de canvis seguirà activat.", + "Common.Views.ReviewChanges.textWarnTrackChanges": "S'activarà el seguiment de canvis per a tots els usuaris amb accés total. La pròxima vegada que algú obri el document, el seguiment de canvis seguirà activat.", "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Voleu activar el seguiment de canvis per a tothom?", "Common.Views.ReviewChanges.tipAcceptCurrent": "Acceptar el canvi actual", "Common.Views.ReviewChanges.tipCoAuthMode": "Configura el mode de coedició", @@ -361,7 +361,7 @@ "Common.Views.ReviewChanges.txtAccept": "Acceptar", "Common.Views.ReviewChanges.txtAcceptAll": "Acceptar Tots els Canvis", "Common.Views.ReviewChanges.txtAcceptChanges": "Acceptar canvis", - "Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptar el Canvis Actual", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptar el canvi actual", "Common.Views.ReviewChanges.txtChat": "Xat", "Common.Views.ReviewChanges.txtClose": "Tancar", "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de Coedició", @@ -377,7 +377,7 @@ "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resoldre els Meus Comentaris Actuals", "Common.Views.ReviewChanges.txtCompare": "Comparar", "Common.Views.ReviewChanges.txtDocLang": "Idioma", - "Common.Views.ReviewChanges.txtFinal": "Tots el canvis acceptats (Previsualitzar)", + "Common.Views.ReviewChanges.txtFinal": "S'han acceptat tots el canvis (Previsualitzar)", "Common.Views.ReviewChanges.txtFinalCap": "Final", "Common.Views.ReviewChanges.txtHistory": "Historial de versions", "Common.Views.ReviewChanges.txtMarkup": "Tots els canvis (Edició)", @@ -387,7 +387,7 @@ "Common.Views.ReviewChanges.txtOffGlobal": "DESACTIVAT per mi i per tothom", "Common.Views.ReviewChanges.txtOn": "ACTIU per mi", "Common.Views.ReviewChanges.txtOnGlobal": "ACTIU per mi i per tothom", - "Common.Views.ReviewChanges.txtOriginal": "Tots els canvis rebutjats (Previsualitzar)", + "Common.Views.ReviewChanges.txtOriginal": "S'han rebutjat tots els canvis (Previsualitzar)", "Common.Views.ReviewChanges.txtOriginalCap": "Original", "Common.Views.ReviewChanges.txtPrev": "Anterior", "Common.Views.ReviewChanges.txtReject": "Rebutjar", @@ -402,13 +402,13 @@ "Common.Views.ReviewChangesDialog.txtAccept": "Acceptar", "Common.Views.ReviewChangesDialog.txtAcceptAll": "Acceptar Tots els Canvis", "Common.Views.ReviewChangesDialog.txtAcceptCurrent": "Acceptar el canvi actual", - "Common.Views.ReviewChangesDialog.txtNext": "Al següent canvi", + "Common.Views.ReviewChangesDialog.txtNext": "Al canvi següent", "Common.Views.ReviewChangesDialog.txtPrev": "Al canvi anterior", "Common.Views.ReviewChangesDialog.txtReject": "Rebutjar", "Common.Views.ReviewChangesDialog.txtRejectAll": "Rebutjar Tots els Canvis", "Common.Views.ReviewChangesDialog.txtRejectCurrent": "Rebutjar Canvi Actual", "Common.Views.ReviewPopover.textAdd": "Afegir", - "Common.Views.ReviewPopover.textAddReply": "Afegir una Resposta", + "Common.Views.ReviewPopover.textAddReply": "Afegir una resposta", "Common.Views.ReviewPopover.textCancel": "Cancel·lar", "Common.Views.ReviewPopover.textClose": "Tancar", "Common.Views.ReviewPopover.textEdit": "Acceptar", @@ -437,7 +437,7 @@ "Common.Views.SignDialog.textValid": "Vàlid des de %1 fins a %2", "Common.Views.SignDialog.tipFontName": "Nom de Font", "Common.Views.SignDialog.tipFontSize": "Mida de Font", - "Common.Views.SignSettingsDialog.textAllowComment": "Permet al signant afegir comentaris al diàleg de signatura", + "Common.Views.SignSettingsDialog.textAllowComment": "Permetre al signant afegir comentaris al quadre de diàleg de signatura", "Common.Views.SignSettingsDialog.textInfo": "Informació de qui Firma", "Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic", "Common.Views.SignSettingsDialog.textInfoName": "Nom", @@ -472,19 +472,19 @@ "Common.Views.SymbolTableDialog.textSpecial": "Caràcters Especials", "Common.Views.SymbolTableDialog.textSymbols": "Símbols", "Common.Views.SymbolTableDialog.textTitle": "Símbol", - "Common.Views.SymbolTableDialog.textTradeMark": "Símbol de Marca Comercial", + "Common.Views.SymbolTableDialog.textTradeMark": "Símbol de marca comercial", "Common.Views.UserNameDialog.textDontShow": "No em tornis a preguntar", "Common.Views.UserNameDialog.textLabel": "Etiqueta:", "Common.Views.UserNameDialog.textLabelError": "L'etiqueta no pot estar en blanc.", - "DE.Controllers.LeftMenu.leavePageText": "Es perdran tots els canvis no guardats en aquest document.
    Feu clic a \"Cancel·lar\" i, a continuació, \"Desa\" per desar-los. Feu clic a \"OK\" per descartar tots els canvis no desats.", + "DE.Controllers.LeftMenu.leavePageText": "Es perdran tots els canvis d'aquest document que no s'hagin desat.
    Cliqueu a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Cliqueu a \"OK\" per descartar tots els canvis que no s'hagin desat.", "DE.Controllers.LeftMenu.newDocumentTitle": "Document sense nom", - "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avis", + "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Avís", "DE.Controllers.LeftMenu.requestEditRightsText": "Sol·licitant drets d’edició ...", "DE.Controllers.LeftMenu.textLoadHistory": "Carregant historial de versions...", "DE.Controllers.LeftMenu.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.", - "DE.Controllers.LeftMenu.textReplaceSkipped": "La substitució s’ha realitzat. Es van saltar {0} ocurrències.", - "DE.Controllers.LeftMenu.textReplaceSuccess": "La recerca s’ha fet. Es van substituir les coincidències: {0}", - "DE.Controllers.LeftMenu.txtCompatible": "El document es desarà al nou format. Permet utilitzar totes les funcions de l'editor, però pot afectar la disposició del document.
    Utilitzeu l'opció 'Compatibilitat' de la configuració avançada si voleu compatibilitzar els fitxers amb versions anteriors de MS Word.", + "DE.Controllers.LeftMenu.textReplaceSkipped": "S'ha realitzat la substitució s’ha realitzat. S'han omès {0} ocurrències.", + "DE.Controllers.LeftMenu.textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", + "DE.Controllers.LeftMenu.txtCompatible": "El document es desarà amb el format nou. Podrà utilitzar totes les funcions de l'editor, però podria afectar la disposició del document.
    Utilitzeu l'opció 'Compatibilitat' de la configuració avançada si voleu que els fitxers siguin compatibles amb versions anteriors de MS Word.", "DE.Controllers.LeftMenu.txtUntitled": "Sense títol", "DE.Controllers.LeftMenu.warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les funcions, excepte el text.
    Esteu segur que voleu continuar?", "DE.Controllers.LeftMenu.warnDownloadAsRTF": "Si continueu guardant en aquest format, es podria perdre una mica de la configuració.
    Segur que voleu continuar?", @@ -498,44 +498,44 @@ "DE.Controllers.Main.downloadMergeTitle": "Descarregant", "DE.Controllers.Main.downloadTextText": "Descarregant document...", "DE.Controllers.Main.downloadTitleText": "Descarregant Document", - "DE.Controllers.Main.errorAccessDeny": "Intenteu realitzar una acció per la qual no teniu drets.
    Poseu-vos en contacte amb l'administrador del servidor de documents.", + "DE.Controllers.Main.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
    Poseu-vos en contacte amb l'administrador del servidor de documents.", "DE.Controllers.Main.errorBadImageUrl": "Enllaç de la Imatge Incorrecte", "DE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. El document no es pot editar ara mateix.", - "DE.Controllers.Main.errorComboSeries": "Per crear un diagrama combinat, seleccioneu almenys dues sèries de dades.", + "DE.Controllers.Main.errorComboSeries": "Per crear un diagrama combinat, seleccioneu pel cap baix dues sèries de dades.", "DE.Controllers.Main.errorCompare": "La funció de comparació de documents no està disponible durant la coedició.", - "DE.Controllers.Main.errorConnectToServer": "El document no s'ha pogut desar. Comproveu la configuració de la connexió o poseu-vos en contacte amb el vostre administrador.
    Quan feu clic al botó \"D'acord\", se us demanarà que descarregueu el document.", + "DE.Controllers.Main.errorConnectToServer": "No s'ha pogut desar el document. Comproveu la configuració de la connexió o contacteu amb el vostre administrador.
    Quan cliqueu el botó \"D'acord\", se us demanarà que descarregueu el document.", "DE.Controllers.Main.errorDatabaseConnection": "Error extern.
    Error de connexió de base de dades. Contacteu amb l'assistència en cas que l'error continuï.", "DE.Controllers.Main.errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", "DE.Controllers.Main.errorDataRange": "Interval de dades incorrecte.", "DE.Controllers.Main.errorDefaultMessage": "Error codi:%1 ", "DE.Controllers.Main.errorDirectUrl": "Verifiqueu l'enllaç al document.
    Aquest enllaç ha de ser un enllaç directe al fitxer per descarregar-lo.", - "DE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error durant el treball amb el document.
    Utilitzeu l'opció \"Baixa com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", - "DE.Controllers.Main.errorEditingSaveas": "S'ha produït un error durant el treball amb el document.
    Utilitzeu l'opció \"Desa com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", + "DE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
    Utilitzeu l'opció \"Baixa com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", + "DE.Controllers.Main.errorEditingSaveas": "S'ha produït un error mentre es treballava amb el treball amb el document.
    Utilitzeu l'opció \"Desar com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", "DE.Controllers.Main.errorEmailClient": "No s'ha pogut trobar cap client de correu electrònic", "DE.Controllers.Main.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "DE.Controllers.Main.errorFileSizeExceed": "La mida del fitxer excedeix la limitació establerta per al vostre servidor. Podeu contactar amb l'administrador del Document Server per obtenir més detalls.", + "DE.Controllers.Main.errorFileSizeExceed": "La mida del fitxer excedeix la limitació establerta pel vostre servidor. Contacteu amb l'administrador del Document Server per obtenir més informació.", "DE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", - "DE.Controllers.Main.errorKeyEncrypt": "Descriptor de la clau desconegut", + "DE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", "DE.Controllers.Main.errorKeyExpire": "El descriptor de la clau ha caducat", "DE.Controllers.Main.errorMailMergeLoadFile": "Ha fallat la càrrega del document. Seleccioneu un fitxer diferent.", "DE.Controllers.Main.errorMailMergeSaveFile": "Ha fallat la fusió.", "DE.Controllers.Main.errorProcessSaveResult": "Problemes al Guardar.", "DE.Controllers.Main.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", "DE.Controllers.Main.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.", - "DE.Controllers.Main.errorSessionIdle": "El document no s’ha editat des de fa temps. Torneu a carregar la pàgina.", + "DE.Controllers.Main.errorSessionIdle": "El document fa temps que no s'obre. Torneu a carregar la pàgina.", "DE.Controllers.Main.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", "DE.Controllers.Main.errorSetPassword": "No s'ha pogut establir la contrasenya.", "DE.Controllers.Main.errorStockChart": "Ordre de fila incorrecte. Per crear un gràfic de valors, col·loqueu les dades del full en l’ordre següent:
    preu d’obertura, preu màxim, preu mínim, preu de tancament.", "DE.Controllers.Main.errorSubmit": "L'enviament ha fallat.", - "DE.Controllers.Main.errorToken": "El testimoni de seguretat del document no està format correctament.
    Contacteu l'administrador del servidor de documents.", - "DE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
    Contacteu amb l'administrador del Document Server.", - "DE.Controllers.Main.errorUpdateVersion": "La versió del fitxer s'ha canviat. La pàgina es tornarà a carregar.", + "DE.Controllers.Main.errorToken": "El testimoni de seguretat del document no s'ha format correctament.
    Contacteu amb el vostre administrador del servidor de documents.", + "DE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
    Contacteu amb el vostre administrador del servidor de documents.", + "DE.Controllers.Main.errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connexió a Internet s'ha restaurat i la versió del fitxer s'ha canviat.
    Abans de continuar treballant, heu de descarregar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, tornar a carregar aquesta pàgina.", "DE.Controllers.Main.errorUserDrop": "Ara no es pot accedir al fitxer.", - "DE.Controllers.Main.errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel pla de preus", + "DE.Controllers.Main.errorUsersExceed": "S'ha superat el nombre d’usuaris que permet el vostre pla", "DE.Controllers.Main.errorViewerDisconnect": "Es perd la connexió. Encara podeu visualitzar el document,
    però no podreu descarregar-lo ni imprimir-lo fins que no es restableixi la connexió i es torni a carregar la pàgina.", - "DE.Controllers.Main.leavePageText": "Heu fet canvis no guardats en aquest document. Feu clic a \"Continua en aquesta pàgina\" i, a continuació, \"Desa\" per desar-les. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", - "DE.Controllers.Main.leavePageTextOnClose": "Es perdran tots els canvis no guardats en aquest document.
    Feu clic a \"Cancel·lar\" i, a continuació, \"Desa\" per desar-los. Feu clic a \"OK\" per descartar tots els canvis no desats.", + "DE.Controllers.Main.leavePageText": "Heu fet canvis en aquest document que no s'ha desat. Cliqueu a \"Continuar en aquesta pàgina\" i, a continuació, \"Desar\" per desar-les. Cliqueu a \"Deixra aquesta pàgina\" per descartar tots els canvis que no s'hagin desat.", + "DE.Controllers.Main.leavePageTextOnClose": "Es perdran tots els canvis d'aquest document que no s'hagin desat.
    Cliqueu a \"Cancel·lar\" i, a continuació, \"Desar\" per desar-los. Cliqueu a \"OK\" per descartar tots els canvis no desats.", "DE.Controllers.Main.loadFontsTextText": "Carregant dades...", "DE.Controllers.Main.loadFontsTitleText": "Carregant Dades", "DE.Controllers.Main.loadFontTextText": "Carregant dades...", @@ -548,7 +548,7 @@ "DE.Controllers.Main.loadingDocumentTitleText": "Carregant document", "DE.Controllers.Main.mailMergeLoadFileText": "Carregant l'origen de dades...", "DE.Controllers.Main.mailMergeLoadFileTitle": "Carregant l'origen de dades", - "DE.Controllers.Main.notcriticalErrorTitle": "Avis", + "DE.Controllers.Main.notcriticalErrorTitle": "Avís", "DE.Controllers.Main.openErrorText": "S'ha produït un error en obrir el fitxer.", "DE.Controllers.Main.openTextText": "Obrint Document...", "DE.Controllers.Main.openTitleText": "Obrir Document", @@ -558,7 +558,7 @@ "DE.Controllers.Main.requestEditFailedMessageText": "Algú està editant aquest document ara mateix. Si us plau, intenta-ho més tard.", "DE.Controllers.Main.requestEditFailedTitleText": "Accés denegat", "DE.Controllers.Main.saveErrorText": "S'ha produït un error en desar el fitxer.", - "DE.Controllers.Main.saveErrorTextDesktop": "Aquest fitxer no es pot desar o crear.
    Les raons possibles són:
    1. El fitxer és de només lectura.
    2. El fitxer està sent editat per altres usuaris.
    3. El disc està ple o corromput.", + "DE.Controllers.Main.saveErrorTextDesktop": "Aquest fitxer no es pot desar o crear.
    Les possibles raons són:
    1. El fitxer és només de lectura.
    2. El fitxer és en aquests moments obert per altres usuaris.
    3. El disc és ple o s'ha fet malbé.", "DE.Controllers.Main.savePreparingText": "Preparant per guardar", "DE.Controllers.Main.savePreparingTitle": "Preparant per guardar. Si us plau, esperi", "DE.Controllers.Main.saveTextText": "Desant Document...", @@ -571,15 +571,15 @@ "DE.Controllers.Main.splitMaxRowsErrorText": "El nombre de files ha de ser inferior a %1.", "DE.Controllers.Main.textAnonymous": "Anònim", "DE.Controllers.Main.textApplyAll": "Aplicar a totes les equacions", - "DE.Controllers.Main.textBuyNow": "Visita el Lloc Web", - "DE.Controllers.Main.textChangesSaved": "Tots els canvis guardats", + "DE.Controllers.Main.textBuyNow": "Visiteu el Lloc Web", + "DE.Controllers.Main.textChangesSaved": "S'han desat tots els canvis", "DE.Controllers.Main.textClose": "Tancar", "DE.Controllers.Main.textCloseTip": "Feu clic per tancar", "DE.Controllers.Main.textContactUs": "Contacte de Vendes", - "DE.Controllers.Main.textConvertEquation": "Aquesta equació es va crear amb una versió antiga de l'editor d'equacions que ja no és compatible. Per editar-la, converteix l’equació al format d’Office Math ML.
    Converteix ara?", + "DE.Controllers.Main.textConvertEquation": "Aquesta equació es va crear amb una versió antiga de l'editor d'equacions que ja no és compatible. Per editar-la, converteixi l’equació al format d’Office Math ML.
    Convertir ara?", "DE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu dret a canviar el carregador.
    Consulteu el nostre departament de vendes per obtenir un pressupost.", "DE.Controllers.Main.textGuest": "Convidat", - "DE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
    Voleu executar macros?", + "DE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
    Voleu executar les macros?", "DE.Controllers.Main.textLearnMore": "Aprèn Més", "DE.Controllers.Main.textLoadingDocument": "Carregant document", "DE.Controllers.Main.textLongName": "Introduïu un nom que sigui inferior a 128 caràcters.", @@ -590,13 +590,13 @@ "DE.Controllers.Main.textRenameLabel": "Introduïu un nom per a la col·laboració", "DE.Controllers.Main.textShape": "Forma", "DE.Controllers.Main.textStrict": "Mode estricte", - "DE.Controllers.Main.textTryUndoRedo": "Les funcions Desfés / Rehabiliteu estan desactivades per al mode de coedició ràpida. Feu clic al botó \"Mode estricte\" per canviar al mode de coedició estricte per editar el fitxer sense que hi hagi interferències d'altres usuaris i enviar els canvis només després de desar-lo ells. Podeu canviar entre els modes de coedició mitjançant l'editor Paràmetres avançats.", - "DE.Controllers.Main.textTryUndoRedoWarn": "Les funcions Desfer/Refer estan desactivades per al mode de coedició ràpida.", + "DE.Controllers.Main.textTryUndoRedo": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida. Cliqueu al botó \"Mode estricte\" per canviar al mode de coedició estricte i editar el fitxer sense que hi hagi interferències d'altres usuaris i enviar els vostres canvis un cop els hagueu desat. Podeu canviar entre els modes de coedició mitjançant l'editor \"Paràmetres avançats\".", + "DE.Controllers.Main.textTryUndoRedoWarn": "S'han desactivat les funcions Desfer/Refer per al mode de coedició ràpida.", "DE.Controllers.Main.titleLicenseExp": "Llicència Caducada", "DE.Controllers.Main.titleServerVersion": "S'ha actualitzat l'editor", - "DE.Controllers.Main.titleUpdateVersion": "Versió canviada", - "DE.Controllers.Main.txtAbove": "Amunt", - "DE.Controllers.Main.txtArt": "El seu text aquí", + "DE.Controllers.Main.titleUpdateVersion": "S'ha canviat la versió", + "DE.Controllers.Main.txtAbove": "amunt", + "DE.Controllers.Main.txtArt": "El vostre text aquí", "DE.Controllers.Main.txtBasicShapes": "Formes Bàsiques", "DE.Controllers.Main.txtBelow": "abaix", "DE.Controllers.Main.txtBookmarkError": "Error! Marcador no definit.", @@ -615,7 +615,7 @@ "DE.Controllers.Main.txtFiguredArrows": "Fletxes Figurades", "DE.Controllers.Main.txtFirstPage": "Primera Pàgina", "DE.Controllers.Main.txtFooter": "Peu de pàgina", - "DE.Controllers.Main.txtFormulaNotInTable": "La fórmula no està a la taula", + "DE.Controllers.Main.txtFormulaNotInTable": "La fórmula no és a la taula", "DE.Controllers.Main.txtHeader": "Capçalera", "DE.Controllers.Main.txtHyperlink": "Hiperenllaç", "DE.Controllers.Main.txtIndTooLarge": "L'índex es massa gran", @@ -796,14 +796,14 @@ "DE.Controllers.Main.txtShape_stripedRightArrow": "Fletxa a la dreta amb bandes", "DE.Controllers.Main.txtShape_sun": "Sol", "DE.Controllers.Main.txtShape_teardrop": "Llàgrima", - "DE.Controllers.Main.txtShape_textRect": "Quadre de Text", + "DE.Controllers.Main.txtShape_textRect": "Quadre de text", "DE.Controllers.Main.txtShape_trapezoid": "Trapezi", "DE.Controllers.Main.txtShape_triangle": "Triangle", "DE.Controllers.Main.txtShape_upArrow": "Fletxa amunt", "DE.Controllers.Main.txtShape_upArrowCallout": "Trucada de fletxa cap amunt", - "DE.Controllers.Main.txtShape_upDownArrow": "Fletxa cap amunt i abaix", + "DE.Controllers.Main.txtShape_upDownArrow": "Fletxa cap amunt i cap avall", "DE.Controllers.Main.txtShape_uturnArrow": "Fletxa en U", - "DE.Controllers.Main.txtShape_verticalScroll": "Desplaçament Vertical", + "DE.Controllers.Main.txtShape_verticalScroll": "Desplaçament vertical", "DE.Controllers.Main.txtShape_wave": "Ona", "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Trucada ovalada", "DE.Controllers.Main.txtShape_wedgeRectCallout": "Trucada rectangular", @@ -832,47 +832,47 @@ "DE.Controllers.Main.txtTableInd": "L'índex de la taula no pot ser zero", "DE.Controllers.Main.txtTableOfContents": "Taula de continguts", "DE.Controllers.Main.txtTableOfFigures": "Taula de figures", - "DE.Controllers.Main.txtTOCHeading": "Capçalera de la taula", + "DE.Controllers.Main.txtTOCHeading": "Capçalera de la taula de continguts", "DE.Controllers.Main.txtTooLarge": "El número es massa gran per donar-l'hi format", - "DE.Controllers.Main.txtTypeEquation": "Escrivir una equació aquí.", + "DE.Controllers.Main.txtTypeEquation": "Escriviu una equació aquí.", "DE.Controllers.Main.txtUndefBookmark": "Marcador no definit", "DE.Controllers.Main.txtXAxis": "Eix X", "DE.Controllers.Main.txtYAxis": "Eix Y", "DE.Controllers.Main.txtZeroDivide": "Divideix zero", - "DE.Controllers.Main.unknownErrorText": "Error Desconegut.", + "DE.Controllers.Main.unknownErrorText": "Error desconegut.", "DE.Controllers.Main.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", "DE.Controllers.Main.uploadDocExtMessage": "Format de document desconegut.", "DE.Controllers.Main.uploadDocFileCountMessage": "No hi ha documents pujats", "DE.Controllers.Main.uploadDocSizeMessage": "Superat el límit màxim del document.", - "DE.Controllers.Main.uploadImageExtMessage": "Format imatge desconegut.", + "DE.Controllers.Main.uploadImageExtMessage": "Format d'imatge desconegut.", "DE.Controllers.Main.uploadImageFileCountMessage": "Cap imatge carregada.", "DE.Controllers.Main.uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", - "DE.Controllers.Main.uploadImageTextText": "Pujant imatge...", - "DE.Controllers.Main.uploadImageTitleText": "Pujant Imatge", + "DE.Controllers.Main.uploadImageTextText": "S'està carregant la imatge...", + "DE.Controllers.Main.uploadImageTitleText": "S'està carregant la imatge", "DE.Controllers.Main.waitText": "Si us plau, esperi...", "DE.Controllers.Main.warnBrowserIE9": "L’aplicació té baixes capacitats en IE9. Utilitzeu IE10 o superior", - "DE.Controllers.Main.warnBrowserZoom": "La configuració del zoom actual del navegador no és totalment compatible. Restabliu el zoom per defecte prement Ctrl+0.", - "DE.Controllers.Main.warnLicenseExceeded": "S'ha superat el nombre de connexions simultànies al servidor de documents i el document s'obrirà només per a la seva visualització.
    Contacteu l'administrador per obtenir més informació.", + "DE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del navegador no és totalment compatible. Restabliu el zoom per defecte prement Ctrl+0.", + "DE.Controllers.Main.warnLicenseExceeded": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà per visualitzar-lo.
    Contacteu amb l'administrador per obtenir més informació.", "DE.Controllers.Main.warnLicenseExp": "La seva llicencia ha caducat.
    Si us plau, actualitzi la llicencia i recarregui la pàgina.", "DE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
    No teniu accés a la funcionalitat d'edició de documents.
    Si us plau, contacteu amb l'administrador.", "DE.Controllers.Main.warnLicenseLimitedRenewed": "Cal renovar la llicència.
    Teniu un accés limitat a la funcionalitat d'edició de documents.
    Contacteu amb l'administrador per obtenir accés complet", - "DE.Controllers.Main.warnLicenseUsersExceeded": "S'ha superat el nombre d'usuaris concurrents i el document s'obrirà només per a la seva visualització.
    Per més informació, poseu-vos en contacte amb l'administrador.", - "DE.Controllers.Main.warnNoLicense": "Heu arribat al límit de connexions simultànies per als editors %1. Aquest document s'obrirà al mode de només lectura. Contacteu l'equip de vendes %1 per a les condicions personals de millora del servei.", - "DE.Controllers.Main.warnNoLicenseUsers": "Heu arribat al límit d'usuaris concurrents per a editors %1.
    Contactau l'equip de vendes per als termes de millora personal dels vostres serveis.", - "DE.Controllers.Main.warnProcessRightsChange": "Se li ha denegat el dret a editar el fitxer.", + "DE.Controllers.Main.warnLicenseUsersExceeded": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb el vostre administrador per saber-ne més.", + "DE.Controllers.Main.warnNoLicense": "Heu assolit el límit de connexions simultànies amb% 1 editors. Aquest document només s'obrirà per visualitzar-lo.
    Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millora personals del vostre servei.", + "DE.Controllers.Main.warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a% 1 editors. Contacteu amb l'equip de vendes de% 1 per obtenir les condicions de millor personals dels vostres serveis.", + "DE.Controllers.Main.warnProcessRightsChange": "No teniu permís per editar el fitxer.", "DE.Controllers.Navigation.txtBeginning": "Inici del document", "DE.Controllers.Navigation.txtGotoBeginning": "Anar al començament del document", "DE.Controllers.Statusbar.textHasChanges": "S'han fet un seguiment de nous canvis", "DE.Controllers.Statusbar.textSetTrackChanges": "Esteu en mode de seguiment de canvis", - "DE.Controllers.Statusbar.textTrackChanges": "El document s'obre amb el mode Canvis de pista activat", + "DE.Controllers.Statusbar.textTrackChanges": "El document s'obre amb el mode de Seguiment de Canvis activat", "DE.Controllers.Statusbar.tipReview": "Control de Canvis", "DE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "DE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que guardareu no està disponible al dispositiu actual.
    L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible.
    Voleu continuar ?", - "DE.Controllers.Toolbar.notcriticalErrorTitle": "Avis", + "DE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que desareu no està disponible al dispositiu actual.
    L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible.
    Voleu continuar ?", + "DE.Controllers.Toolbar.notcriticalErrorTitle": "Avís", "DE.Controllers.Toolbar.textAccent": "Accents", "DE.Controllers.Toolbar.textBracket": "Claudàtor", - "DE.Controllers.Toolbar.textEmptyImgUrl": "Cal que especifiqueu l’enllaç de la imatge.", - "DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït és incorrecte.
    Introduïu un valor numèric entre 1 i 300.", + "DE.Controllers.Toolbar.textEmptyImgUrl": "Cal especificar l’enllaç de la imatge.", + "DE.Controllers.Toolbar.textFontSizeErr": "El valor introduït no és correcte.
    Introduïu un valor numèric entre 1 i 300.", "DE.Controllers.Toolbar.textFraction": "Fraccions", "DE.Controllers.Toolbar.textFunction": "Funcions", "DE.Controllers.Toolbar.textGroup": "Grup", @@ -886,21 +886,21 @@ "DE.Controllers.Toolbar.textScript": "Lletres", "DE.Controllers.Toolbar.textSymbols": "Símbols", "DE.Controllers.Toolbar.textTabForms": "Formularis", - "DE.Controllers.Toolbar.textWarning": "Avis", + "DE.Controllers.Toolbar.textWarning": "Avís", "DE.Controllers.Toolbar.txtAccent_Accent": "Agut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Fletxa dreta-esquerra superior", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa superior cap a esquerra", "DE.Controllers.Toolbar.txtAccent_ArrowR": "Fletxa superior cap a dreta", "DE.Controllers.Toolbar.txtAccent_Bar": "Barra", - "DE.Controllers.Toolbar.txtAccent_BarBot": "Barra Subjacent", + "DE.Controllers.Toolbar.txtAccent_BarBot": "Barra subjacent", "DE.Controllers.Toolbar.txtAccent_BarTop": "Barra superposada", "DE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula a celda (amb el marcador de posició)", "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula a celda (exemple)", "DE.Controllers.Toolbar.txtAccent_Check": "Comprovar", - "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Clau Subjacent", + "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Clau subjacent", "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Clau superposada", "DE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", - "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC amb barra a sobre", + "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC amb la barra a dalt", "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR i amb barra sobreposada", "DE.Controllers.Toolbar.txtAccent_DDDot": "Tres punts", "DE.Controllers.Toolbar.txtAccent_DDot": "Doble punt", @@ -1077,7 +1077,7 @@ "DE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Punts Subíndexs", "DE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punts en línia mitja", "DE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punts en diagonal", - "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Punts Verticals", + "DE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Punts verticals", "DE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriu escassa", "DE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriu escassa", "DE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 matriu d’identitat", @@ -1091,7 +1091,7 @@ "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Fletxa inferior cap a dreta", "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Fletxa superior cap a dreta", "DE.Controllers.Toolbar.txtOperator_ColonEquals": "Dos punts igual", - "DE.Controllers.Toolbar.txtOperator_Custom_1": "Rendiments", + "DE.Controllers.Toolbar.txtOperator_Custom_1": "Rendiment", "DE.Controllers.Toolbar.txtOperator_Custom_2": "Rendiments Delta", "DE.Controllers.Toolbar.txtOperator_Definition": "Igual per definició", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta igual a", @@ -1122,7 +1122,7 @@ "DE.Controllers.Toolbar.txtSymbol_about": "Aproximadament", "DE.Controllers.Toolbar.txtSymbol_additional": "Complement", "DE.Controllers.Toolbar.txtSymbol_aleph": "Alef", - "DE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", + "DE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", "DE.Controllers.Toolbar.txtSymbol_approx": "Gairebé igual a", "DE.Controllers.Toolbar.txtSymbol_ast": "Operador asterisc", "DE.Controllers.Toolbar.txtSymbol_beta": "Beta", @@ -1145,7 +1145,7 @@ "DE.Controllers.Toolbar.txtSymbol_equals": "Igual", "DE.Controllers.Toolbar.txtSymbol_equiv": "Idèntic a", "DE.Controllers.Toolbar.txtSymbol_eta": "Eta", - "DE.Controllers.Toolbar.txtSymbol_exists": "Existeixen", + "DE.Controllers.Toolbar.txtSymbol_exists": "Hi ha", "DE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", "DE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus Fahrenheit", "DE.Controllers.Toolbar.txtSymbol_forall": "Per tot", @@ -1171,7 +1171,7 @@ "DE.Controllers.Toolbar.txtSymbol_neq": "No igual a", "DE.Controllers.Toolbar.txtSymbol_ni": "Conté com a membre", "DE.Controllers.Toolbar.txtSymbol_not": "Signe de negació", - "DE.Controllers.Toolbar.txtSymbol_notexists": "No existeix", + "DE.Controllers.Toolbar.txtSymbol_notexists": "No n'hi ha", "DE.Controllers.Toolbar.txtSymbol_nu": "Ni", "DE.Controllers.Toolbar.txtSymbol_o": "Omicron", "DE.Controllers.Toolbar.txtSymbol_omega": "Omega", @@ -1201,8 +1201,8 @@ "DE.Controllers.Toolbar.txtSymbol_varpi": "Variant Pi", "DE.Controllers.Toolbar.txtSymbol_varrho": "Variant Ro", "DE.Controllers.Toolbar.txtSymbol_varsigma": "Variant Sigma", - "DE.Controllers.Toolbar.txtSymbol_vartheta": "Variant Zeta", - "DE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsis Vertical", + "DE.Controllers.Toolbar.txtSymbol_vartheta": "Variant zeta", + "DE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsis vertical", "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "DE.Controllers.Viewport.textFitPage": "Ajusta a Pàgina", @@ -1222,7 +1222,7 @@ "DE.Views.BookmarksDialog.textSort": "Ordenar per", "DE.Views.BookmarksDialog.textTitle": "Marcadors", "DE.Views.BookmarksDialog.txtInvalidName": "El nom del marcador només pot contenir lletres, dígits i guions baixos i hauria de començar per la lletra", - "DE.Views.CaptionDialog.textAdd": "Afegir", + "DE.Views.CaptionDialog.textAdd": "Afegir etiqueta", "DE.Views.CaptionDialog.textAfter": "Després", "DE.Views.CaptionDialog.textBefore": "Abans", "DE.Views.CaptionDialog.textCaption": "Subtítol", @@ -1246,21 +1246,21 @@ "DE.Views.CaptionDialog.textTitle": "Inseriu Llegenda", "DE.Views.CellsAddDialog.textCol": "Columnes", "DE.Views.CellsAddDialog.textDown": "A sota del cursor", - "DE.Views.CellsAddDialog.textLeft": "A la esquerra", + "DE.Views.CellsAddDialog.textLeft": "A l'esquerra", "DE.Views.CellsAddDialog.textRight": "A la dreta", "DE.Views.CellsAddDialog.textRow": "Files", "DE.Views.CellsAddDialog.textTitle": "Inserir Diversos", - "DE.Views.CellsAddDialog.textUp": "Per sobre del cursor", + "DE.Views.CellsAddDialog.textUp": "Per damunt del cursor", "DE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", "DE.Views.ChartSettings.textChartType": "Canviar el tipus de gràfic", "DE.Views.ChartSettings.textEditData": "Edita Dades", "DE.Views.ChartSettings.textHeight": "Alçada", - "DE.Views.ChartSettings.textOriginalSize": "Mida Actual", + "DE.Views.ChartSettings.textOriginalSize": "Mida real", "DE.Views.ChartSettings.textSize": "Mida", "DE.Views.ChartSettings.textStyle": "Estil", - "DE.Views.ChartSettings.textUndock": "Desacoblar del panell", + "DE.Views.ChartSettings.textUndock": "Desacoblar del tauler", "DE.Views.ChartSettings.textWidth": "Amplada", - "DE.Views.ChartSettings.textWrap": "Ajust d'estil ", + "DE.Views.ChartSettings.textWrap": "Ajustament de l'estil ", "DE.Views.ChartSettings.txtBehind": "Darrere", "DE.Views.ChartSettings.txtInFront": "Davant", "DE.Views.ChartSettings.txtInline": "En línia", @@ -1268,7 +1268,7 @@ "DE.Views.ChartSettings.txtThrough": "A través", "DE.Views.ChartSettings.txtTight": "Estret", "DE.Views.ChartSettings.txtTitle": "Gràfic", - "DE.Views.ChartSettings.txtTopAndBottom": "Superior e Inferior", + "DE.Views.ChartSettings.txtTopAndBottom": "Superior i inferior", "DE.Views.ControlSettingsDialog.strGeneral": "General", "DE.Views.ControlSettingsDialog.textAdd": "Afegir", "DE.Views.ControlSettingsDialog.textAppearance": "Aparença", @@ -1295,7 +1295,7 @@ "DE.Views.ControlSettingsDialog.textTag": "Etiqueta", "DE.Views.ControlSettingsDialog.textTitle": "Configuració de control de contingut", "DE.Views.ControlSettingsDialog.textUnchecked": "Símbol desactivat", - "DE.Views.ControlSettingsDialog.textUp": "Puja", + "DE.Views.ControlSettingsDialog.textUp": "Amunt", "DE.Views.ControlSettingsDialog.textValue": "Valor", "DE.Views.ControlSettingsDialog.tipChange": "Canviar símbol", "DE.Views.ControlSettingsDialog.txtLockDelete": "El control de contingut no es pot suprimir", @@ -1350,13 +1350,13 @@ "DE.Views.DateTimeDialog.textLang": "Idioma", "DE.Views.DateTimeDialog.textUpdate": "Actualitza automàticament", "DE.Views.DateTimeDialog.txtTitle": "Data & Hora", - "DE.Views.DocumentHolder.aboveText": "Amunt", + "DE.Views.DocumentHolder.aboveText": "A dalt", "DE.Views.DocumentHolder.addCommentText": "Afegir Comentari", "DE.Views.DocumentHolder.advancedDropCapText": "Configuració Drop Cap", "DE.Views.DocumentHolder.advancedFrameText": "Marc Configuració Avançada", "DE.Views.DocumentHolder.advancedParagraphText": "Paràgraf Configuració Avançada", "DE.Views.DocumentHolder.advancedTableText": "Taula Configuració Avançada", - "DE.Views.DocumentHolder.advancedText": "Configuracions Avançades", + "DE.Views.DocumentHolder.advancedText": "Configuracions avançades", "DE.Views.DocumentHolder.alignmentText": "Alineació", "DE.Views.DocumentHolder.belowText": "Abaix", "DE.Views.DocumentHolder.breakBeforeText": "Salt de pàgina abans", @@ -1373,7 +1373,7 @@ "DE.Views.DocumentHolder.direct270Text": "Girar text cap a munt", "DE.Views.DocumentHolder.direct90Text": "Girar text cap a baix", "DE.Views.DocumentHolder.directHText": "Horitzontal", - "DE.Views.DocumentHolder.directionText": "Direcció Text", + "DE.Views.DocumentHolder.directionText": "Direcció del text", "DE.Views.DocumentHolder.editChartText": "Edita Dades", "DE.Views.DocumentHolder.editFooterText": "Edita el peu de pàgina", "DE.Views.DocumentHolder.editHeaderText": "Edita la capçalera", @@ -1397,7 +1397,7 @@ "DE.Views.DocumentHolder.mergeCellsText": "Unir Cel·les", "DE.Views.DocumentHolder.moreText": "Més variants...", "DE.Views.DocumentHolder.noSpellVariantsText": "Sense variants", - "DE.Views.DocumentHolder.originalSizeText": "Mida Actual", + "DE.Views.DocumentHolder.originalSizeText": "Mida real", "DE.Views.DocumentHolder.paragraphText": "Paràgraf", "DE.Views.DocumentHolder.removeHyperlinkText": "Esborrar hiperenllaç", "DE.Views.DocumentHolder.rightText": "Dreta", @@ -1419,7 +1419,7 @@ "DE.Views.DocumentHolder.styleText": "Formatant com a estil", "DE.Views.DocumentHolder.tableText": "Taula", "DE.Views.DocumentHolder.textAlign": "Alinear", - "DE.Views.DocumentHolder.textArrange": "Arreglar", + "DE.Views.DocumentHolder.textArrange": "Organitzar", "DE.Views.DocumentHolder.textArrangeBack": "Enviar a un segon pla", "DE.Views.DocumentHolder.textArrangeBackward": "Envia Endarrere", "DE.Views.DocumentHolder.textArrangeForward": "Portar Endavant", @@ -1467,12 +1467,12 @@ "DE.Views.DocumentHolder.textSeparateList": "Separar llista", "DE.Views.DocumentHolder.textSettings": "Configuració", "DE.Views.DocumentHolder.textSeveral": "Diverses Files/Columnes", - "DE.Views.DocumentHolder.textShapeAlignBottom": "Alineació Inferior", + "DE.Views.DocumentHolder.textShapeAlignBottom": "Alineació inferior", "DE.Views.DocumentHolder.textShapeAlignCenter": "Centrar", - "DE.Views.DocumentHolder.textShapeAlignLeft": "Alinear Esquerra", - "DE.Views.DocumentHolder.textShapeAlignMiddle": "Alinear al Mig", + "DE.Views.DocumentHolder.textShapeAlignLeft": "Alinear esquerra", + "DE.Views.DocumentHolder.textShapeAlignMiddle": "Alinear al mig", "DE.Views.DocumentHolder.textShapeAlignRight": "Alinear dreta", - "DE.Views.DocumentHolder.textShapeAlignTop": "Alinear Superior", + "DE.Views.DocumentHolder.textShapeAlignTop": "Alinea a la part superior", "DE.Views.DocumentHolder.textStartNewList": "Iniciar una llista nova", "DE.Views.DocumentHolder.textStartNumberingFrom": "Establir el valor de numeració", "DE.Views.DocumentHolder.textTitleCellsRemove": "Suprimeix Cel·les", @@ -1482,14 +1482,14 @@ "DE.Views.DocumentHolder.textUpdateAll": "Actualitzar tota la taula", "DE.Views.DocumentHolder.textUpdatePages": "Actualitza només números de pàgina", "DE.Views.DocumentHolder.textUpdateTOC": "Actualitza la taula de continguts", - "DE.Views.DocumentHolder.textWrap": "Ajust d'estil ", - "DE.Views.DocumentHolder.tipIsLocked": "Actualment, un altre usuari està editant aquest element.", - "DE.Views.DocumentHolder.toDictionaryText": "Afegir al Diccionari", + "DE.Views.DocumentHolder.textWrap": "Ajustament de l'estil ", + "DE.Views.DocumentHolder.tipIsLocked": "Aquest element està sent editat actualment per un altre usuari.", + "DE.Views.DocumentHolder.toDictionaryText": "Afegir al diccionari", "DE.Views.DocumentHolder.txtAddBottom": "Afegir línia inferior", "DE.Views.DocumentHolder.txtAddFractionBar": "Afegir barra de fracció", "DE.Views.DocumentHolder.txtAddHor": "Afegir línia horitzontal", "DE.Views.DocumentHolder.txtAddLB": "Afegir línia inferior esquerra", - "DE.Views.DocumentHolder.txtAddLeft": "Afegiu vora esquerra", + "DE.Views.DocumentHolder.txtAddLeft": "Afegir vora esquerra", "DE.Views.DocumentHolder.txtAddLT": "Afegir línia superior esquerra", "DE.Views.DocumentHolder.txtAddRight": "Afegir vora dreta", "DE.Views.DocumentHolder.txtAddTop": "Afegir vora superior", @@ -1570,18 +1570,18 @@ "DE.Views.DocumentHolder.txtThrough": "A través", "DE.Views.DocumentHolder.txtTight": "Estret", "DE.Views.DocumentHolder.txtTop": "Superior", - "DE.Views.DocumentHolder.txtTopAndBottom": "Superior e Inferior", + "DE.Views.DocumentHolder.txtTopAndBottom": "Superior i inferior", "DE.Views.DocumentHolder.txtUnderbar": "Barra sota text", - "DE.Views.DocumentHolder.txtUngroup": "Des agrupar", + "DE.Views.DocumentHolder.txtUngroup": "Desagrupar", "DE.Views.DocumentHolder.updateStyleText": "Actualitzar estil %1", - "DE.Views.DocumentHolder.vertAlignText": "Alineació Vertical", + "DE.Views.DocumentHolder.vertAlignText": "Alineació vertical", "DE.Views.DropcapSettingsAdvanced.strBorders": "Vora & Omplir", "DE.Views.DropcapSettingsAdvanced.strDropcap": "Drop Cap", "DE.Views.DropcapSettingsAdvanced.strMargins": "Marges", "DE.Views.DropcapSettingsAdvanced.textAlign": "Alineació", - "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Al menys", + "DE.Views.DropcapSettingsAdvanced.textAtLeast": "Pel cap baix", "DE.Views.DropcapSettingsAdvanced.textAuto": "Auto", - "DE.Views.DropcapSettingsAdvanced.textBackColor": "Color de Fons", + "DE.Views.DropcapSettingsAdvanced.textBackColor": "Color de fons", "DE.Views.DropcapSettingsAdvanced.textBorderColor": "Color Vora", "DE.Views.DropcapSettingsAdvanced.textBorderDesc": "Feu clic al diagrama o utilitzeu els botons per seleccionar les vores", "DE.Views.DropcapSettingsAdvanced.textBorderWidth": "Mida de la Vora", @@ -1631,12 +1631,12 @@ "DE.Views.FileMenu.btnProtectCaption": "Protegir", "DE.Views.FileMenu.btnRecentFilesCaption": "Obrir recent...", "DE.Views.FileMenu.btnRenameCaption": "Canvia el nom ...", - "DE.Views.FileMenu.btnReturnCaption": "Tornar al Document", - "DE.Views.FileMenu.btnRightsCaption": "Drets d'Accés ...", + "DE.Views.FileMenu.btnReturnCaption": "Tornar al document", + "DE.Views.FileMenu.btnRightsCaption": "Drets d'accés ...", "DE.Views.FileMenu.btnSaveAsCaption": "Desar com", "DE.Views.FileMenu.btnSaveCaption": "Desar", "DE.Views.FileMenu.btnSaveCopyAsCaption": "Guardar Copia com a...", - "DE.Views.FileMenu.btnSettingsCaption": "Configuració Avançada...", + "DE.Views.FileMenu.btnSettingsCaption": "Configuració avançada...", "DE.Views.FileMenu.btnToEditCaption": "Editar Document", "DE.Views.FileMenu.textDownload": "Descarregar", "DE.Views.FileMenuPanels.CreateNew.fromBlankText": "Des de buit", @@ -1645,8 +1645,8 @@ "DE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nou document de text", "DE.Views.FileMenuPanels.CreateNew.noTemplatesText": "No hi ha plantilles", "DE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", - "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegir Autor", - "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegir Text", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegir autor", + "DE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegir text", "DE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicació", "DE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", "DE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canviar els drets d’accés", @@ -1665,33 +1665,33 @@ "DE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assumpte", "DE.Views.FileMenuPanels.DocumentInfo.txtSymbols": "Símbols", "DE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Títol", - "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Penjat", + "DE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S'ha carregat", "DE.Views.FileMenuPanels.DocumentInfo.txtWords": "Paraules", "DE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canviar els drets d’accés", "DE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tinguin drets", - "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avis", - "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb Contrasenya", + "DE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avís", + "DE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb contrasenya", "DE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegir Document", "DE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb Firma", "DE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar document", "DE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures del document.
    Esteu segur que voleu continuar?", - "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Aquest document ha estat protegit amb contrasenya", + "DE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Aquest document està protegit amb contrasenya", "DE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Aquest document s'ha de signar.", "DE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'han afegit signatures vàlides al document. El document està protegit de l'edició.", "DE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals del document no són vàlides o no s’han pogut verificar. El document està protegit de l'edició.", - "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Veure signatures", + "DE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra les signatures", "DE.Views.FileMenuPanels.Settings.okButtonText": "Aplicar", - "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activeu les guies d'alineació", - "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar la auto recuperació", - "DE.Views.FileMenuPanels.Settings.strAutosave": "Activar l'arxivament automàtic", + "DE.Views.FileMenuPanels.Settings.strAlignGuides": "Activa les guies d'alineació", + "DE.Views.FileMenuPanels.Settings.strAutoRecover": "Activar la recuperació automàtica", + "DE.Views.FileMenuPanels.Settings.strAutosave": "Activar el desament automàtic", "DE.Views.FileMenuPanels.Settings.strCoAuthMode": "Mode de Coedició", "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Altres usuaris veuran els canvis alhora", - "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Haureu d’acceptar canvis abans de poder-los veure", + "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Haureu d’acceptar els canvis abans de poder-los veure", "DE.Views.FileMenuPanels.Settings.strFast": "Ràpid", "DE.Views.FileMenuPanels.Settings.strFontRender": "Font Suggerida", - "DE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix una versió a l'emmagatzematge després de fer clic a Desa o Ctrl+S", + "DE.Views.FileMenuPanels.Settings.strForcesave": "Afegeix una versió a l'emmagatzematge després de fer clic a Desar o Ctrl+S", "DE.Views.FileMenuPanels.Settings.strInputMode": "Activar els jeroglífics", - "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activa la visualització dels comentaris", + "DE.Views.FileMenuPanels.Settings.strLiveComment": "Activar la visualització dels comentaris", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Configuració de macros", "DE.Views.FileMenuPanels.Settings.strPaste": "Tallar, copiar i enganxar", "DE.Views.FileMenuPanels.Settings.strPasteButton": "Mostra el botó d'opcions d’enganxar quan s’enganxa contingut", @@ -1700,33 +1700,33 @@ "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Activar l’opció de correcció ortogràfica", "DE.Views.FileMenuPanels.Settings.strStrict": "Estricte", "DE.Views.FileMenuPanels.Settings.strTheme": "Tema de la interfície", - "DE.Views.FileMenuPanels.Settings.strUnit": "Unitat de Mesura", + "DE.Views.FileMenuPanels.Settings.strUnit": "Unitat de mesura", "DE.Views.FileMenuPanels.Settings.strZoom": "Valor de Zoom Predeterminat", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Cada 10 minuts", "DE.Views.FileMenuPanels.Settings.text30Minutes": "Cada 30 minuts", "DE.Views.FileMenuPanels.Settings.text5Minutes": "Cada 5 minuts", "DE.Views.FileMenuPanels.Settings.text60Minutes": "Cada Hora", "DE.Views.FileMenuPanels.Settings.textAlignGuides": "Guies d'Alineació", - "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Auto recuperació", - "DE.Views.FileMenuPanels.Settings.textAutoSave": "Guardar Automàticament", + "DE.Views.FileMenuPanels.Settings.textAutoRecover": "Recuperació automàtica", + "DE.Views.FileMenuPanels.Settings.textAutoSave": "Desar Automàticament", "DE.Views.FileMenuPanels.Settings.textCompatible": "Compatibilitat", "DE.Views.FileMenuPanels.Settings.textDisabled": "Desactivat", "DE.Views.FileMenuPanels.Settings.textForceSave": "Desant versions intermèdies", "DE.Views.FileMenuPanels.Settings.textMinute": "Cada Minut", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Feu que els fitxers siguin compatibles amb versions anteriors de MS Word quan els deseu com a DOCX", - "DE.Views.FileMenuPanels.Settings.txtAll": "Veure Tot", - "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opcions de Correcció Automàtica ...", + "DE.Views.FileMenuPanels.Settings.txtAll": "Veure-ho tot", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Opcions de correcció automàtica ...", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Mode de memòria cau per defecte", "DE.Views.FileMenuPanels.Settings.txtCm": "Centímetre", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Ajusta a Pàgina", "DE.Views.FileMenuPanels.Settings.txtFitWidth": "Ajusta a Amplada", "DE.Views.FileMenuPanels.Settings.txtInch": "Polzada", - "DE.Views.FileMenuPanels.Settings.txtInput": "Entrada Alternativa", - "DE.Views.FileMenuPanels.Settings.txtLast": "Veure Últims", + "DE.Views.FileMenuPanels.Settings.txtInput": "Entrada alternativa", + "DE.Views.FileMenuPanels.Settings.txtLast": "Mostra l'últim", "DE.Views.FileMenuPanels.Settings.txtLiveComment": "Visualització de Comentaris", - "DE.Views.FileMenuPanels.Settings.txtMac": "com OS X", + "DE.Views.FileMenuPanels.Settings.txtMac": "com a OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Natiu", - "DE.Views.FileMenuPanels.Settings.txtNone": "No Veure Cap", + "DE.Views.FileMenuPanels.Settings.txtNone": "No veure cap", "DE.Views.FileMenuPanels.Settings.txtProofing": "Prova", "DE.Views.FileMenuPanels.Settings.txtPt": "Punt", "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Activa tot", @@ -1736,7 +1736,10 @@ "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Desactiveu totes les macros sense una notificació", "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostra la Notificació", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desactiveu totes les macros amb una notificació", - "DE.Views.FileMenuPanels.Settings.txtWin": "com Windows", + "DE.Views.FileMenuPanels.Settings.txtWin": "com a Windows", + "DE.Views.FormSettings.textAlways": "Sempre", + "DE.Views.FormSettings.textAspect": "Blocar relació d'aspecte", + "DE.Views.FormSettings.textAutofit": "Ajusta automàticament", "DE.Views.FormSettings.textCheckbox": "\nCasella de selecció", "DE.Views.FormSettings.textColor": "Color Vora", "DE.Views.FormSettings.textComb": "Pinta de caràcters", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Clau", "DE.Views.FormSettings.textLock": "Bloqueja", "DE.Views.FormSettings.textMaxChars": "Límit de caràcters", + "DE.Views.FormSettings.textMulti": "Camp multilínia", + "DE.Views.FormSettings.textNever": "Mai", "DE.Views.FormSettings.textNoBorder": "Sense vora", "DE.Views.FormSettings.textPlaceholder": "Marcador de posició", "DE.Views.FormSettings.textRadiobox": "Botó d'opció", "DE.Views.FormSettings.textRequired": "Requerit", + "DE.Views.FormSettings.textScale": "Quan ajusta a escala", "DE.Views.FormSettings.textSelectImage": "Seleccionar imatge", "DE.Views.FormSettings.textTip": "Consell", - "DE.Views.FormSettings.textTipAdd": "Afegeir nou valor", + "DE.Views.FormSettings.textTipAdd": "Afegir un valor nou", "DE.Views.FormSettings.textTipDelete": "Suprimeix el valor", "DE.Views.FormSettings.textTipDown": "Mou avall", "DE.Views.FormSettings.textTipUp": "Mou amunt", + "DE.Views.FormSettings.textTooBig": "La Imatge és Massa Gran", + "DE.Views.FormSettings.textTooSmall": "La Imatge és Massa Petita", "DE.Views.FormSettings.textUnlock": "Desbloquejar", "DE.Views.FormSettings.textValue": "Opcions de valor", "DE.Views.FormSettings.textWidth": "Ample de cel·la", @@ -1777,11 +1785,12 @@ "DE.Views.FormsTab.capBtnRadioBox": "Botó d'opció", "DE.Views.FormsTab.capBtnSubmit": "Enviar", "DE.Views.FormsTab.capBtnText": "Camp de text", - "DE.Views.FormsTab.capBtnView": "Visualitzar formulari", + "DE.Views.FormsTab.capBtnView": "Mostra el formulari", "DE.Views.FormsTab.textClear": "Neteja els camps", "DE.Views.FormsTab.textClearFields": "Esborrar tots els camps", "DE.Views.FormsTab.textHighlight": "Paràmetres de ressaltat", "DE.Views.FormsTab.textNoHighlight": "Sense ressaltat", + "DE.Views.FormsTab.textRequired": "Ompli tots els camps requerits per enviar el formulari.", "DE.Views.FormsTab.textSubmited": "El formulari s'ha enviat correctament", "DE.Views.FormsTab.tipCheckBox": "Insereix casella de selecció", "DE.Views.FormsTab.tipComboBox": "Insereix casella de combinació", @@ -1792,7 +1801,7 @@ "DE.Views.FormsTab.tipRadioBox": "Insereix botó d'opció", "DE.Views.FormsTab.tipSubmit": "Enviar formulari", "DE.Views.FormsTab.tipTextField": "Insereix camp de text", - "DE.Views.FormsTab.tipViewForm": "Visualitzar formulari", + "DE.Views.FormsTab.tipViewForm": "Mostra el formulari", "DE.Views.HeaderFooterSettings.textBottomCenter": "Inferior centre", "DE.Views.HeaderFooterSettings.textBottomLeft": "Inferior esquerra", "DE.Views.HeaderFooterSettings.textBottomPage": "Al Peu de Pàgina", @@ -1824,7 +1833,7 @@ "DE.Views.HyperlinkSettingsDialog.txtBookmarks": "Marcadors", "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és obligatori", "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Rúbriques", - "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", + "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser un enllaç amb el format \"http://www.example.com\"", "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Aquest camp està limitat a 2083 caràcters", "DE.Views.ImageSettings.textAdvanced": "Mostra la configuració avançada", "DE.Views.ImageSettings.textCrop": "Retallar", @@ -1843,37 +1852,37 @@ "DE.Views.ImageSettings.textHintFlipH": "Voltejar Horitzontalment", "DE.Views.ImageSettings.textHintFlipV": "Voltejar Verticalment", "DE.Views.ImageSettings.textInsert": "Canviar Imatge", - "DE.Views.ImageSettings.textOriginalSize": "Mida Actual", + "DE.Views.ImageSettings.textOriginalSize": "Mida real", "DE.Views.ImageSettings.textRotate90": "Girar 90°", "DE.Views.ImageSettings.textRotation": "Rotació", "DE.Views.ImageSettings.textSize": "Mida", "DE.Views.ImageSettings.textWidth": "Amplada", - "DE.Views.ImageSettings.textWrap": "Ajust d'estil ", + "DE.Views.ImageSettings.textWrap": "Ajustament de l'estil ", "DE.Views.ImageSettings.txtBehind": "Darrere", "DE.Views.ImageSettings.txtInFront": "Davant", "DE.Views.ImageSettings.txtInline": "En línia", "DE.Views.ImageSettings.txtSquare": "Quadrat", "DE.Views.ImageSettings.txtThrough": "A través", "DE.Views.ImageSettings.txtTight": "Estret", - "DE.Views.ImageSettings.txtTopAndBottom": "Superior e Inferior", - "DE.Views.ImageSettingsAdvanced.strMargins": "Marges Interiors", + "DE.Views.ImageSettings.txtTopAndBottom": "Superior i inferior", + "DE.Views.ImageSettingsAdvanced.strMargins": "Espaiat del text", "DE.Views.ImageSettingsAdvanced.textAbsoluteWH": "Absolut", "DE.Views.ImageSettingsAdvanced.textAlignment": "Alineació", - "DE.Views.ImageSettingsAdvanced.textAlt": "Text Alternatiu", + "DE.Views.ImageSettingsAdvanced.textAlt": "Text alternatiu", "DE.Views.ImageSettingsAdvanced.textAltDescription": "Descripció", - "DE.Views.ImageSettingsAdvanced.textAltTip": "La representació alternativa basada en text de la informació d’objectes visuals, que es llegirà a les persones amb deficiències de visió o cognitives per ajudar-les a comprendre millor quina informació hi ha a la imatge, autoforma, gràfic o taula.", + "DE.Views.ImageSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.", "DE.Views.ImageSettingsAdvanced.textAltTitle": "Títol", "DE.Views.ImageSettingsAdvanced.textAngle": "Angle", "DE.Views.ImageSettingsAdvanced.textArrows": "Fletxes", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Bloquejar relació d'aspecte", - "DE.Views.ImageSettingsAdvanced.textAutofit": "Auto ajustar", + "DE.Views.ImageSettingsAdvanced.textAutofit": "Ajusta automàticament", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Mida Inicial", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Estil d’Inici", "DE.Views.ImageSettingsAdvanced.textBelow": "abaix", "DE.Views.ImageSettingsAdvanced.textBevel": "Bisell", "DE.Views.ImageSettingsAdvanced.textBottom": "Inferior", "DE.Views.ImageSettingsAdvanced.textBottomMargin": "Inferior al Marge", - "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Ajust de Text", + "DE.Views.ImageSettingsAdvanced.textBtnWrap": "Ajustament del text", "DE.Views.ImageSettingsAdvanced.textCapType": "Tipus de Cap", "DE.Views.ImageSettingsAdvanced.textCenter": "Centre", "DE.Views.ImageSettingsAdvanced.textCharacter": "Caràcter", @@ -1896,8 +1905,8 @@ "DE.Views.ImageSettingsAdvanced.textMiter": "Angle", "DE.Views.ImageSettingsAdvanced.textMove": "Moure objecte amb text", "DE.Views.ImageSettingsAdvanced.textOptions": "Opcions", - "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Mida Actual", - "DE.Views.ImageSettingsAdvanced.textOverlap": "Permet que se superposin", + "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Mida real", + "DE.Views.ImageSettingsAdvanced.textOverlap": "Permet la superposició", "DE.Views.ImageSettingsAdvanced.textPage": "Pàgina", "DE.Views.ImageSettingsAdvanced.textParagraph": "Paràgraf", "DE.Views.ImageSettingsAdvanced.textPosition": "Posició", @@ -1913,7 +1922,7 @@ "DE.Views.ImageSettingsAdvanced.textShape": "Configuració de la Forma", "DE.Views.ImageSettingsAdvanced.textSize": "Mida", "DE.Views.ImageSettingsAdvanced.textSquare": "Quadrat", - "DE.Views.ImageSettingsAdvanced.textTextBox": "Quadre de Text", + "DE.Views.ImageSettingsAdvanced.textTextBox": "Quadre de text", "DE.Views.ImageSettingsAdvanced.textTitle": "Imatge - Configuració Avançada", "DE.Views.ImageSettingsAdvanced.textTitleChart": "Gràfic-Configuració Avançada", "DE.Views.ImageSettingsAdvanced.textTitleShape": "Forma - Configuració Avançada", @@ -1923,14 +1932,14 @@ "DE.Views.ImageSettingsAdvanced.textVertically": "Verticalment", "DE.Views.ImageSettingsAdvanced.textWeightArrows": "Gruix i fletxes", "DE.Views.ImageSettingsAdvanced.textWidth": "Amplada", - "DE.Views.ImageSettingsAdvanced.textWrap": "Ajust d'estil ", + "DE.Views.ImageSettingsAdvanced.textWrap": "Ajustament de l'estil ", "DE.Views.ImageSettingsAdvanced.textWrapBehindTooltip": "Darrere", "DE.Views.ImageSettingsAdvanced.textWrapInFrontTooltip": "Davant", "DE.Views.ImageSettingsAdvanced.textWrapInlineTooltip": "En línia", "DE.Views.ImageSettingsAdvanced.textWrapSquareTooltip": "Quadrat", "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "A través", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Estret", - "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Superior e Inferior", + "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Superior i inferior", "DE.Views.LeftMenu.tipAbout": "Quant a...", "DE.Views.LeftMenu.tipChat": "Xat", "DE.Views.LeftMenu.tipComments": "Comentaris", @@ -1941,7 +1950,7 @@ "DE.Views.LeftMenu.tipTitles": "Títols", "DE.Views.LeftMenu.txtDeveloper": "MODALITAT DE DESENVOLUPADOR", "DE.Views.LeftMenu.txtLimit": "Limitar l'accés", - "DE.Views.LeftMenu.txtTrial": "ESTAT DE PROVA", + "DE.Views.LeftMenu.txtTrial": "MODE DE PROVA", "DE.Views.LeftMenu.txtTrialDev": "Mode de desenvolupador de prova", "DE.Views.LineNumbersDialog.textAddLineNumbering": "Afegir numeració de línies", "DE.Views.LineNumbersDialog.textApplyTo": "Aplicar els canvis a", @@ -2025,7 +2034,7 @@ "DE.Views.MailMergeEmailDlg.textWarningMsg": "Tingueu en compte que la publicació no es pot aturar un cop feu clic al botó \"Enviar\".", "DE.Views.MailMergeSettings.downloadMergeTitle": "Fusió", "DE.Views.MailMergeSettings.errorMailMergeSaveFile": "Ha fallat la fusió.", - "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Avis", + "DE.Views.MailMergeSettings.notcriticalErrorTitle": "Avís", "DE.Views.MailMergeSettings.textAddRecipients": "Afegir primer alguns destinataris a la llista", "DE.Views.MailMergeSettings.textAll": "Tots els registres", "DE.Views.MailMergeSettings.textCurrent": "Registre actual", @@ -2046,12 +2055,12 @@ "DE.Views.MailMergeSettings.textPortal": "Desar", "DE.Views.MailMergeSettings.textPreview": "Vista prèvia de resultats", "DE.Views.MailMergeSettings.textReadMore": "Llegir més", - "DE.Views.MailMergeSettings.textSendMsg": "Tots els missatges de correu electrònic estan preparats i seran enviats properament.
    La velocitat de la publicació depèn del servei de correu.
    Podeu continuar treballant amb el document o tancar-lo. Un cop finalitzada l’operació, la notificació s’enviarà a la vostra adreça de correu electrònic de registre.", + "DE.Views.MailMergeSettings.textSendMsg": "Tots els missatges de correu electrònic són a punt i s'enviaran properament.
    La velocitat de l'enviament dependrà del servei de correu.
    Podeu continuar treballant amb el document o tancar-lo. Un cop finalitzada l’operació, s'enviarà la notificació a la vostra adreça de correu electrònic de registre.", "DE.Views.MailMergeSettings.textTo": "Per a", - "DE.Views.MailMergeSettings.txtFirst": "Al Primer Camp", + "DE.Views.MailMergeSettings.txtFirst": "Al primer registre", "DE.Views.MailMergeSettings.txtFromToError": "El valor «De» ha de ser més petit que el valor «Fins»", - "DE.Views.MailMergeSettings.txtLast": "A l'Últim camp", - "DE.Views.MailMergeSettings.txtNext": "Al camp següent", + "DE.Views.MailMergeSettings.txtLast": "A l'últim registre", + "DE.Views.MailMergeSettings.txtNext": "Al registre següent", "DE.Views.MailMergeSettings.txtPrev": "Al registre anterior", "DE.Views.MailMergeSettings.txtUntitled": "Sense títol", "DE.Views.MailMergeSettings.warnProcessMailMerge": "Ha fallat la fusió inicial", @@ -2090,7 +2099,7 @@ "DE.Views.NotesRemoveDialog.textEnd": "Suprimeix Totes les Notes al Final", "DE.Views.NotesRemoveDialog.textFoot": "Suprimeix totes les notes al peu de pàgina", "DE.Views.NotesRemoveDialog.textTitle": "Suprimeix Notes", - "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avis", + "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Avís", "DE.Views.PageMarginsDialog.textBottom": "Inferior", "DE.Views.PageMarginsDialog.textGutter": "Canal", "DE.Views.PageMarginsDialog.textGutterPosition": "Posició Canal", @@ -2125,7 +2134,7 @@ "DE.Views.ParagraphSettings.strSpacingBefore": "Abans", "DE.Views.ParagraphSettings.textAdvanced": "Mostra la configuració avançada", "DE.Views.ParagraphSettings.textAt": "En", - "DE.Views.ParagraphSettings.textAtLeast": "Al menys", + "DE.Views.ParagraphSettings.textAtLeast": "Pel cap baix", "DE.Views.ParagraphSettings.textAuto": "multiplicador", "DE.Views.ParagraphSettings.textBackColor": "Color de Fons", "DE.Views.ParagraphSettings.textExact": "Exacte", @@ -2163,9 +2172,9 @@ "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Suprimiu números de línia", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Pestanya", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alineació", - "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Al menys", + "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Pel cap baix", "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiplicador", - "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de Fons", + "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Color de fons", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Text Bàsic", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Color Vora", "DE.Views.ParagraphSettingsAdvanced.textBorderDesc": "Feu clic al diagrama o utilitzeu els botons per seleccionar les vores i apliqueu-los l'estil escollit", @@ -2215,8 +2224,8 @@ "DE.Views.RightMenu.txtShapeSettings": "Configuració de la Forma", "DE.Views.RightMenu.txtSignatureSettings": "Configuració de la Firma", "DE.Views.RightMenu.txtTableSettings": "Configuració de la taula", - "DE.Views.RightMenu.txtTextArtSettings": "Configuració de l'Art de Text", - "DE.Views.ShapeSettings.strBackground": "Color de Fons", + "DE.Views.RightMenu.txtTextArtSettings": "Configuració de la galeria de text", + "DE.Views.ShapeSettings.strBackground": "Color de fons", "DE.Views.ShapeSettings.strChange": "Canviar la Forma Automàtica", "DE.Views.ShapeSettings.strColor": "Color", "DE.Views.ShapeSettings.strFill": "Omplir", @@ -2229,7 +2238,7 @@ "DE.Views.ShapeSettings.strType": "Tipus", "DE.Views.ShapeSettings.textAdvanced": "Mostra la configuració avançada", "DE.Views.ShapeSettings.textAngle": "Angle", - "DE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït és incorrecte.
    Introduïu un valor entre 0 pt i 1584 pt.", + "DE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
    Introduïu un valor entre 0 pt i 1584 pt.", "DE.Views.ShapeSettings.textColor": "Omplir de Color", "DE.Views.ShapeSettings.textDirection": "Direcció", "DE.Views.ShapeSettings.textEmptyPattern": "Sense Patró", @@ -2257,7 +2266,7 @@ "DE.Views.ShapeSettings.textStyle": "Estil", "DE.Views.ShapeSettings.textTexture": "Des d'un Tex", "DE.Views.ShapeSettings.textTile": "Mosaic", - "DE.Views.ShapeSettings.textWrap": "Ajust d'estil ", + "DE.Views.ShapeSettings.textWrap": "Ajustament de l'estil ", "DE.Views.ShapeSettings.tipAddGradientPoint": "Afegir punt de degradat", "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", "DE.Views.ShapeSettings.txtBehind": "Darrere", @@ -2277,9 +2286,9 @@ "DE.Views.ShapeSettings.txtSquare": "Quadrat", "DE.Views.ShapeSettings.txtThrough": "A través", "DE.Views.ShapeSettings.txtTight": "Estret", - "DE.Views.ShapeSettings.txtTopAndBottom": "Superior e Inferior", + "DE.Views.ShapeSettings.txtTopAndBottom": "Superior i inferior", "DE.Views.ShapeSettings.txtWood": "Fusta", - "DE.Views.SignatureSettings.notcriticalErrorTitle": "Avis", + "DE.Views.SignatureSettings.notcriticalErrorTitle": "Avís", "DE.Views.SignatureSettings.strDelete": "Esborrar la firma", "DE.Views.SignatureSettings.strDetails": "Detalls de la Firma", "DE.Views.SignatureSettings.strInvalid": "Firmes invalides", @@ -2361,10 +2370,10 @@ "DE.Views.TableSettings.splitCellsText": "Dividir Cel·la...", "DE.Views.TableSettings.splitCellTitleText": "Dividir Cel·la", "DE.Views.TableSettings.strRepeatRow": "Repetiu com a fila de capçalera a la part superior de cada pàgina", - "DE.Views.TableSettings.textAddFormula": "Afegir formula", + "DE.Views.TableSettings.textAddFormula": "Afegir fórmula", "DE.Views.TableSettings.textAdvanced": "Mostra la configuració avançada", - "DE.Views.TableSettings.textBackColor": "Color de Fons", - "DE.Views.TableSettings.textBanded": "Bandat", + "DE.Views.TableSettings.textBackColor": "Color de fons", + "DE.Views.TableSettings.textBanded": "En bandes", "DE.Views.TableSettings.textBorderColor": "Color", "DE.Views.TableSettings.textBorders": "Estil de la Vora", "DE.Views.TableSettings.textCellSize": "Mida de Files i Columnes", @@ -2405,9 +2414,9 @@ "DE.Views.TableSettingsAdvanced.textAlign": "Alineació", "DE.Views.TableSettingsAdvanced.textAlignment": "Alineació", "DE.Views.TableSettingsAdvanced.textAllowSpacing": "Espai entre cel·les", - "DE.Views.TableSettingsAdvanced.textAlt": "Text Alternatiu", + "DE.Views.TableSettingsAdvanced.textAlt": "Text alternatiu", "DE.Views.TableSettingsAdvanced.textAltDescription": "Descripció", - "DE.Views.TableSettingsAdvanced.textAltTip": "La representació alternativa basada en text de la informació d’objectes visuals, que es llegirà a les persones amb deficiències de visió o cognitives per ajudar-les a comprendre millor quina informació hi ha a la imatge, autoforma, gràfic o taula.", + "DE.Views.TableSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.", "DE.Views.TableSettingsAdvanced.textAltTitle": "Títol", "DE.Views.TableSettingsAdvanced.textAnchorText": "Text", "DE.Views.TableSettingsAdvanced.textAutofit": "Redimensiona automàticament els continguts", @@ -2436,7 +2445,7 @@ "DE.Views.TableSettingsAdvanced.textMove": "Moure objecte amb text", "DE.Views.TableSettingsAdvanced.textOnlyCells": "Només per a cel·les seleccionades", "DE.Views.TableSettingsAdvanced.textOptions": "Opcions", - "DE.Views.TableSettingsAdvanced.textOverlap": "Permet que se superposin", + "DE.Views.TableSettingsAdvanced.textOverlap": "Permet la superposició", "DE.Views.TableSettingsAdvanced.textPage": "Pàgina", "DE.Views.TableSettingsAdvanced.textPosition": "Posició", "DE.Views.TableSettingsAdvanced.textPrefWidth": "Amplada Preferida", @@ -2453,11 +2462,11 @@ "DE.Views.TableSettingsAdvanced.textTop": "Superior", "DE.Views.TableSettingsAdvanced.textVertical": "Vertical", "DE.Views.TableSettingsAdvanced.textWidth": "Amplada", - "DE.Views.TableSettingsAdvanced.textWidthSpaces": "Ample i Espais", - "DE.Views.TableSettingsAdvanced.textWrap": "Ajust de Text", + "DE.Views.TableSettingsAdvanced.textWidthSpaces": "Amplada i Espais", + "DE.Views.TableSettingsAdvanced.textWrap": "Ajustament del text", "DE.Views.TableSettingsAdvanced.textWrapNoneTooltip": "Taula en línia", "DE.Views.TableSettingsAdvanced.textWrapParallelTooltip": "Taula de Flux", - "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Ajust d'estil ", + "DE.Views.TableSettingsAdvanced.textWrappingStyle": "Ajustament de l'estil ", "DE.Views.TableSettingsAdvanced.textWrapText": "Ajustar el text", "DE.Views.TableSettingsAdvanced.tipAll": "Establir el límit exterior i totes les línies interiors", "DE.Views.TableSettingsAdvanced.tipCellAll": "Establiu els límits només per a les cel·les interiors", @@ -2489,7 +2498,7 @@ "DE.Views.TextArtSettings.strTransparency": "Opacitat", "DE.Views.TextArtSettings.strType": "Tipus", "DE.Views.TextArtSettings.textAngle": "Angle", - "DE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït és incorrecte.
    Introduïu un valor entre 0 pt i 1584 pt.", + "DE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït no és correcte.
    Introduïu un valor entre 0 pt i 1584 pt.", "DE.Views.TextArtSettings.textColor": "Omplir de Color", "DE.Views.TextArtSettings.textDirection": "Direcció", "DE.Views.TextArtSettings.textGradient": "Degradat", @@ -2505,7 +2514,7 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "Afegir punt de degradat", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", "DE.Views.TextArtSettings.txtNoBorders": "Sense Línia", - "DE.Views.TextToTableDialog.textAutofit": "Ajustament automàtic", + "DE.Views.TextToTableDialog.textAutofit": "Comportament d’ajust automàtic", "DE.Views.TextToTableDialog.textColumns": "Columnes", "DE.Views.TextToTableDialog.textContents": "Ajustar automàticament al contingut", "DE.Views.TextToTableDialog.textEmpty": "Heu d'introduir un caràcter per al separador personalitzat.", @@ -2518,7 +2527,7 @@ "DE.Views.TextToTableDialog.textTab": "Pestanyes", "DE.Views.TextToTableDialog.textTableSize": "Mida de la taula", "DE.Views.TextToTableDialog.textTitle": "Converteix el text a taula", - "DE.Views.TextToTableDialog.textWindow": "\nAjustar automàticament a la finestra", + "DE.Views.TextToTableDialog.textWindow": "Ajustar automàticament a la finestra", "DE.Views.TextToTableDialog.txtAutoText": "Automàtic", "DE.Views.Toolbar.capBtnAddComment": "Afegir Comentari", "DE.Views.Toolbar.capBtnBlankPage": "Pàgina en Blanc", @@ -2535,8 +2544,8 @@ "DE.Views.Toolbar.capBtnInsShape": "Forma", "DE.Views.Toolbar.capBtnInsSymbol": "Símbol", "DE.Views.Toolbar.capBtnInsTable": "Taula", - "DE.Views.Toolbar.capBtnInsTextart": "Art de text", - "DE.Views.Toolbar.capBtnInsTextbox": "Quadre de Text", + "DE.Views.Toolbar.capBtnInsTextart": "Galeria de text", + "DE.Views.Toolbar.capBtnInsTextbox": "Quadre de text", "DE.Views.Toolbar.capBtnLineNumbers": "Numeració de Línies", "DE.Views.Toolbar.capBtnMargins": "Marges", "DE.Views.Toolbar.capBtnPageOrient": "Orientació", @@ -2546,7 +2555,7 @@ "DE.Views.Toolbar.capImgBackward": "Envia Endarrere", "DE.Views.Toolbar.capImgForward": "Portar Endavant", "DE.Views.Toolbar.capImgGroup": "Agrupar", - "DE.Views.Toolbar.capImgWrapping": "Ajustant", + "DE.Views.Toolbar.capImgWrapping": "S'està ajustant", "DE.Views.Toolbar.mniCapitalizeWords": "Posar en majúscules cada paraula", "DE.Views.Toolbar.mniCustomTable": "Inserir Taula Personalitzada", "DE.Views.Toolbar.mniDrawTable": "Taula de dibuix", @@ -2603,7 +2612,7 @@ "DE.Views.Toolbar.textMarginsNormal": "Normal", "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Ampli", - "DE.Views.Toolbar.textNewColor": "Afegir un Nou Color Personalitzat", + "DE.Views.Toolbar.textNewColor": "Afegir un color nou personalitzat", "DE.Views.Toolbar.textNextPage": "Pàgina Següent", "DE.Views.Toolbar.textNoHighlight": "No resaltar", "DE.Views.Toolbar.textNone": "Cap", @@ -2698,14 +2707,14 @@ "DE.Views.Toolbar.tipSendBackward": "Envia endarrere", "DE.Views.Toolbar.tipSendForward": "Portar endavant", "DE.Views.Toolbar.tipShowHiddenChars": "Caràcters que no imprimeixen", - "DE.Views.Toolbar.tipSynchronize": "Un altre usuari ha canviat el document. Feu clic per desar els canvis i carregar les actualitzacions.", + "DE.Views.Toolbar.tipSynchronize": "Un altre usuari ha canviat el document. Cliqueu per desar els canvis i carregar les actualitzacions.", "DE.Views.Toolbar.tipUndo": "Desfer", "DE.Views.Toolbar.tipWatermark": "Edita la filigrana", "DE.Views.Toolbar.txtDistribHor": "Distribuïu horitzontalment", "DE.Views.Toolbar.txtDistribVert": "Distribuïu verticalment", - "DE.Views.Toolbar.txtMarginAlign": "Alinear al Marge", - "DE.Views.Toolbar.txtObjectsAlign": "Alinear Objectes Seleccionats", - "DE.Views.Toolbar.txtPageAlign": "Alinear a la Pàgina", + "DE.Views.Toolbar.txtMarginAlign": "Alinear al marge", + "DE.Views.Toolbar.txtObjectsAlign": "Alinear els objectes seleccionats", + "DE.Views.Toolbar.txtPageAlign": "Alinear a la pàgina", "DE.Views.Toolbar.txtScheme1": "Oficina", "DE.Views.Toolbar.txtScheme10": "Intermitg", "DE.Views.Toolbar.txtScheme11": "Metro", @@ -2719,7 +2728,8 @@ "DE.Views.Toolbar.txtScheme19": "Viatges", "DE.Views.Toolbar.txtScheme2": "Escala de Gris", "DE.Views.Toolbar.txtScheme20": "Urbà", - "DE.Views.Toolbar.txtScheme21": "Empenta", + "DE.Views.Toolbar.txtScheme21": "Inspiració", + "DE.Views.Toolbar.txtScheme22": "Nova Oficina", "DE.Views.Toolbar.txtScheme3": "Vèrtex", "DE.Views.Toolbar.txtScheme4": "Aspecte", "DE.Views.Toolbar.txtScheme5": "Cívic", @@ -2729,7 +2739,7 @@ "DE.Views.Toolbar.txtScheme9": "Fosa", "DE.Views.WatermarkSettingsDialog.textAuto": "Auto", "DE.Views.WatermarkSettingsDialog.textBold": "Negreta", - "DE.Views.WatermarkSettingsDialog.textColor": "Color Text", + "DE.Views.WatermarkSettingsDialog.textColor": "Color del text", "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", "DE.Views.WatermarkSettingsDialog.textFont": "Font", "DE.Views.WatermarkSettingsDialog.textFromFile": "Des d'un fitxer", @@ -2740,7 +2750,7 @@ "DE.Views.WatermarkSettingsDialog.textItalic": "Itàlica", "DE.Views.WatermarkSettingsDialog.textLanguage": "Idioma", "DE.Views.WatermarkSettingsDialog.textLayout": "Maquetació", - "DE.Views.WatermarkSettingsDialog.textNewColor": "Afegir un Nou Color Personalitzat", + "DE.Views.WatermarkSettingsDialog.textNewColor": "Afegir un color nou personalitzat", "DE.Views.WatermarkSettingsDialog.textNone": "Cap", "DE.Views.WatermarkSettingsDialog.textScale": "Escala", "DE.Views.WatermarkSettingsDialog.textSelect": "Seleccionar Imatge", diff --git a/apps/documenteditor/main/locale/de.json b/apps/documenteditor/main/locale/de.json index 01a349e4e..ecfbca9c6 100644 --- a/apps/documenteditor/main/locale/de.json +++ b/apps/documenteditor/main/locale/de.json @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Benachrichtigung anzeigen", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Alle Makros mit einer Benachrichtigung deaktivieren", "DE.Views.FileMenuPanels.Settings.txtWin": "wie Windows", + "DE.Views.FormSettings.textAlways": "Immer", + "DE.Views.FormSettings.textAspect": "Seitenverhältnis sperren", + "DE.Views.FormSettings.textAutofit": "Automatisch anpassen", "DE.Views.FormSettings.textCheckbox": "Kontrollkästchen", "DE.Views.FormSettings.textColor": "Rahmenfarbe", "DE.Views.FormSettings.textComb": "Zeichenanzahl in Textfeld", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Schlüssel", "DE.Views.FormSettings.textLock": "Sperren", "DE.Views.FormSettings.textMaxChars": "Zeichengrenze", + "DE.Views.FormSettings.textMulti": "Mehrzeiliges Feld", + "DE.Views.FormSettings.textNever": "Nie", "DE.Views.FormSettings.textNoBorder": "Kein Rahmen", "DE.Views.FormSettings.textPlaceholder": "Platzhalter", "DE.Views.FormSettings.textRadiobox": "Radiobutton", "DE.Views.FormSettings.textRequired": "Erforderlich", + "DE.Views.FormSettings.textScale": "Wann skalieren", "DE.Views.FormSettings.textSelectImage": "Bild auswählen", "DE.Views.FormSettings.textTip": "Tipp", "DE.Views.FormSettings.textTipAdd": "Neuen Wert hinzufügen", "DE.Views.FormSettings.textTipDelete": "Den Wert löschen", "DE.Views.FormSettings.textTipDown": "Nach unten bewegen", "DE.Views.FormSettings.textTipUp": "Nach oben bewegen", + "DE.Views.FormSettings.textTooBig": "Das Bild ist zu groß", + "DE.Views.FormSettings.textTooSmall": "Das Bild ist zu klein", "DE.Views.FormSettings.textUnlock": "Entsperren", "DE.Views.FormSettings.textValue": "Optionen von Werten", "DE.Views.FormSettings.textWidth": "Zeilenbreite", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Einstellungen für Hervorhebungen", "DE.Views.FormsTab.textNewColor": "Benutzerdefinierte Farbe", "DE.Views.FormsTab.textNoHighlight": "Ohne Hervorhebung", + "DE.Views.FormsTab.textRequired": "Füllen Sie alle erforderlichen Felder aus, um das Formular zu senden.", "DE.Views.FormsTab.textSubmited": "Das Formular wurde erfolgreich versandt", "DE.Views.FormsTab.tipCheckBox": "Checkbox einfügen", "DE.Views.FormsTab.tipComboBox": "Combobox einfügen", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Graustufe", "DE.Views.Toolbar.txtScheme20": "Rhea", "DE.Views.Toolbar.txtScheme21": "Telesto", + "DE.Views.Toolbar.txtScheme22": "Neues Office", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Aspekt ", "DE.Views.Toolbar.txtScheme5": "bürgerlich", diff --git a/apps/documenteditor/main/locale/el.json b/apps/documenteditor/main/locale/el.json index cfe438cef..61c48162a 100644 --- a/apps/documenteditor/main/locale/el.json +++ b/apps/documenteditor/main/locale/el.json @@ -846,7 +846,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "Ξεπεράστηκε το μέγιστο μέγεθος εγγράφου.", "DE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "DE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "DE.Controllers.Main.uploadImageSizeMessage": "Ξεπεράστηκε το μέγιστο μέγεθος εικόνας.", + "DE.Controllers.Main.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", "DE.Controllers.Main.uploadImageTextText": "Μεταφόρτωση εικόνας...", "DE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση Εικόνας", "DE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Εμφάνιση Ειδοποίησης", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Απενεργοποίηση όλων των μακροεντολών με ειδοποίηση", "DE.Views.FileMenuPanels.Settings.txtWin": "ως Windows", + "DE.Views.FormSettings.textAlways": "Πάντα", + "DE.Views.FormSettings.textAspect": "Κλείδωμα αναλογίας", + "DE.Views.FormSettings.textAutofit": "Αυτόματο Ταίριασμα", "DE.Views.FormSettings.textCheckbox": "Πλαίσιο επιλογής", "DE.Views.FormSettings.textColor": "Χρώμα περιγράμματος", "DE.Views.FormSettings.textComb": "Ξεδιάλεγμα χαρακτήρων", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Κλειδί", "DE.Views.FormSettings.textLock": "Κλείδωμα", "DE.Views.FormSettings.textMaxChars": "Όριο χαρακτήρων", + "DE.Views.FormSettings.textMulti": "Πεδίο πολλών γραμμών", + "DE.Views.FormSettings.textNever": "Ποτέ", "DE.Views.FormSettings.textNoBorder": "Χωρίς περίγραμμα", "DE.Views.FormSettings.textPlaceholder": "Δέσμευση Θέσης", "DE.Views.FormSettings.textRadiobox": "Κουμπί Επιλογής", "DE.Views.FormSettings.textRequired": "Απαιτείται", + "DE.Views.FormSettings.textScale": "Πότε να γίνεται κλιμάκωση", "DE.Views.FormSettings.textSelectImage": "Επιλογή Εικόνας", "DE.Views.FormSettings.textTip": "Υπόδειξη", "DE.Views.FormSettings.textTipAdd": "Προσθήκη νέας τιμής", "DE.Views.FormSettings.textTipDelete": "Διαγραφή τιμής", "DE.Views.FormSettings.textTipDown": "Μετακίνηση κάτω", "DE.Views.FormSettings.textTipUp": "Μετακίνηση πάνω", + "DE.Views.FormSettings.textTooBig": "Η Εικόνα είναι Πολύ Μεγάλη", + "DE.Views.FormSettings.textTooSmall": "Η Εικόνα είναι Πολύ Μικρή", "DE.Views.FormSettings.textUnlock": "Ξεκλείδωμα", "DE.Views.FormSettings.textValue": "Επιλογές Τιμής", "DE.Views.FormSettings.textWidth": "Πλάτος κελιού", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Ρυθμίσεις Επισήμανσης", "DE.Views.FormsTab.textNewColor": "Προσθήκη Νέου Προσαρμοσμένου Χρώματος", "DE.Views.FormsTab.textNoHighlight": "Χωρίς επισήμανση", + "DE.Views.FormsTab.textRequired": "Συμπληρώστε όλα τα απαιτούμενα πεδία για την αποστολή της φόρμας.", "DE.Views.FormsTab.textSubmited": "Η φόρμα υποβλήθηκε επιτυχώς", "DE.Views.FormsTab.tipCheckBox": "Εισαγωγή πλαισίου επιλογής", "DE.Views.FormsTab.tipComboBox": "Εισαγωγή πολλαπλών επιλογών", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Αποχρώσεις του γκρι", "DE.Views.Toolbar.txtScheme20": "Αστικό", "DE.Views.Toolbar.txtScheme21": "Οίστρος", + "DE.Views.Toolbar.txtScheme22": "Νέο Γραφείο", "DE.Views.Toolbar.txtScheme3": "Άκρο", "DE.Views.Toolbar.txtScheme4": "Άποψη", "DE.Views.Toolbar.txtScheme5": "Κυβικό", diff --git a/apps/documenteditor/main/locale/es.json b/apps/documenteditor/main/locale/es.json index a81763380..8de0d19a9 100644 --- a/apps/documenteditor/main/locale/es.json +++ b/apps/documenteditor/main/locale/es.json @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificación", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Deshabilitar todas las macros con notificación", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "DE.Views.FormSettings.textAlways": "Siempre", + "DE.Views.FormSettings.textAspect": "Bloquear relación de aspecto", + "DE.Views.FormSettings.textAutofit": "Autoajustar", "DE.Views.FormSettings.textCheckbox": "Casilla", "DE.Views.FormSettings.textColor": "Color de borde", "DE.Views.FormSettings.textComb": "Peine de caracteres", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Clave", "DE.Views.FormSettings.textLock": "Bloquear", "DE.Views.FormSettings.textMaxChars": "Límite de caracteres", + "DE.Views.FormSettings.textMulti": "Campo multilínea", + "DE.Views.FormSettings.textNever": "Nunca", "DE.Views.FormSettings.textNoBorder": "Sin bordes", "DE.Views.FormSettings.textPlaceholder": "Marcador de posición", "DE.Views.FormSettings.textRadiobox": "Botón de opción", "DE.Views.FormSettings.textRequired": "Necesario", + "DE.Views.FormSettings.textScale": "Cuándo escalar", "DE.Views.FormSettings.textSelectImage": "Seleccionar Imagen", "DE.Views.FormSettings.textTip": "Sugerencia", "DE.Views.FormSettings.textTipAdd": "Agregar nuevo valor", "DE.Views.FormSettings.textTipDelete": "Eliminar valor", "DE.Views.FormSettings.textTipDown": "Mover hacia abajo", "DE.Views.FormSettings.textTipUp": "Mover hacia arriba", + "DE.Views.FormSettings.textTooBig": "La imagen es demasiado grande", + "DE.Views.FormSettings.textTooSmall": "La imagen es demasiado pequeña", "DE.Views.FormSettings.textUnlock": "Desbloquear", "DE.Views.FormSettings.textValue": "Opciones de valor", "DE.Views.FormSettings.textWidth": "Ancho de celda", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Ajustes de resaltado", "DE.Views.FormsTab.textNewColor": "Color personalizado", "DE.Views.FormsTab.textNoHighlight": "No resaltar", + "DE.Views.FormsTab.textRequired": "Rellene todos los campos obligatorios para enviar el formulario.", "DE.Views.FormsTab.textSubmited": "El formulario se ha enviado correctamente", "DE.Views.FormsTab.tipCheckBox": "Insertar casilla", "DE.Views.FormsTab.tipComboBox": "Insertar cuadro combinado", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Escala de grises", "DE.Views.Toolbar.txtScheme20": "Urbano", "DE.Views.Toolbar.txtScheme21": "Brío", + "DE.Views.Toolbar.txtScheme22": "Nueva oficina", "DE.Views.Toolbar.txtScheme3": "Vértice", "DE.Views.Toolbar.txtScheme4": "Aspecto", "DE.Views.Toolbar.txtScheme5": "Civil", diff --git a/apps/documenteditor/main/locale/fr.json b/apps/documenteditor/main/locale/fr.json index 4452b337f..96adefc70 100644 --- a/apps/documenteditor/main/locale/fr.json +++ b/apps/documenteditor/main/locale/fr.json @@ -23,7 +23,7 @@ "Common.Controllers.ReviewChanges.textColor": "Couleur de police", "Common.Controllers.ReviewChanges.textContextual": "Ne pas ajouter d'intervalle entre paragraphes du même style", "Common.Controllers.ReviewChanges.textDeleted": "Supprimé:", - "Common.Controllers.ReviewChanges.textDStrikeout": "Double barré", + "Common.Controllers.ReviewChanges.textDStrikeout": "Barré double", "Common.Controllers.ReviewChanges.textEquation": "Équation", "Common.Controllers.ReviewChanges.textExact": "exactement", "Common.Controllers.ReviewChanges.textFirstLine": "Première ligne", @@ -40,7 +40,7 @@ "Common.Controllers.ReviewChanges.textKeepNext": "Paragraphes solidaires", "Common.Controllers.ReviewChanges.textLeft": "Aligner à gauche", "Common.Controllers.ReviewChanges.textLineSpacing": "Interligne:", - "Common.Controllers.ReviewChanges.textMultiple": "Plusieurs", + "Common.Controllers.ReviewChanges.textMultiple": "multiple ", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Pas de saut de page avant", "Common.Controllers.ReviewChanges.textNoContextual": "Ajouter un intervalle entre les paragraphes du même style", "Common.Controllers.ReviewChanges.textNoKeepLines": "Ne gardez pas de lignes ensemble", @@ -201,7 +201,7 @@ "Common.Views.About.txtLicensee": "CESSIONNAIRE", "Common.Views.About.txtLicensor": "CONCÉDANT", "Common.Views.About.txtMail": "émail: ", - "Common.Views.About.txtPoweredBy": "Powered by", + "Common.Views.About.txtPoweredBy": "Réalisation", "Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter", @@ -505,7 +505,7 @@ "DE.Controllers.Main.errorCompare": "La fonctionnalité «‎ Comparaison des documents » n'est pas disponible lors de co-édition.", "DE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", "DE.Controllers.Main.errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Si l'erreur persiste veillez contactez l'assistance technique.", - "DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, elle ne peuvent pas être déchiffrées.", + "DE.Controllers.Main.errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", "DE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", "DE.Controllers.Main.errorDefaultMessage": "Code d'erreur: %1", "DE.Controllers.Main.errorDirectUrl": "Vérifiez le lien vers le document.
    Assurez-vous que c'est un lien de téléchargement direct. ", @@ -516,9 +516,9 @@ "DE.Controllers.Main.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Veuillez contacter votre administrateur de Document Server pour obtenir plus d'information. ", "DE.Controllers.Main.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", "DE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", - "DE.Controllers.Main.errorKeyExpire": "Descripteur clé a expiré", + "DE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", "DE.Controllers.Main.errorMailMergeLoadFile": "Échec de chargement du document. Merci de choisir un autre fichier.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Fusionner échoué.", + "DE.Controllers.Main.errorMailMergeSaveFile": "Fusion a échoué.", "DE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement", "DE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", "DE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", @@ -584,7 +584,7 @@ "DE.Controllers.Main.textLoadingDocument": "Chargement du document", "DE.Controllers.Main.textLongName": "Entrez un nom inférieur à 128 caractères.", "DE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", - "DE.Controllers.Main.textPaidFeature": "Fonction payée", + "DE.Controllers.Main.textPaidFeature": "Fonction payante", "DE.Controllers.Main.textRemember": "Se souvenir de mon choix pour tous les fichiers", "DE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "DE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", @@ -607,7 +607,7 @@ "DE.Controllers.Main.txtClickToLoad": "Cliquez pour charger une image", "DE.Controllers.Main.txtCurrentDocument": "Document actuel", "DE.Controllers.Main.txtDiagramTitle": "Titre du graphique", - "DE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", + "DE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...", "DE.Controllers.Main.txtEndOfFormula": "Fin de Formule Inattendue.", "DE.Controllers.Main.txtEnterDate": "Entrer une date", "DE.Controllers.Main.txtErrorLoadHistory": "Chargement de histoire a échoué", @@ -846,7 +846,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "La taille du fichier dépasse la limite autorisée.", "DE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "DE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", - "DE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.", + "DE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", "DE.Controllers.Main.uploadImageTextText": "Chargement d'une image...", "DE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "DE.Controllers.Main.waitText": "Veuillez patienter...", @@ -871,7 +871,7 @@ "DE.Controllers.Toolbar.notcriticalErrorTitle": "Avertissement", "DE.Controllers.Toolbar.textAccent": "Types d'accentuation", "DE.Controllers.Toolbar.textBracket": "Crochets", - "DE.Controllers.Toolbar.textEmptyImgUrl": "Specifiez URL d'image", + "DE.Controllers.Toolbar.textEmptyImgUrl": "Spécifiez l'URL de l'image", "DE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.
    Entrez une valeur numérique entre 1 et 300", "DE.Controllers.Toolbar.textFraction": "Fractions", "DE.Controllers.Toolbar.textFunction": "Fonctions", @@ -1168,7 +1168,7 @@ "DE.Controllers.Toolbar.txtSymbol_mp": "Moins plus", "DE.Controllers.Toolbar.txtSymbol_mu": "Mu", "DE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", - "DE.Controllers.Toolbar.txtSymbol_neq": "N'est pas égal à", + "DE.Controllers.Toolbar.txtSymbol_neq": "N'est pas égale à", "DE.Controllers.Toolbar.txtSymbol_ni": "Contient comme élément", "DE.Controllers.Toolbar.txtSymbol_not": "Signe négation", "DE.Controllers.Toolbar.txtSymbol_notexists": "Inexistant", @@ -1360,7 +1360,7 @@ "DE.Views.DocumentHolder.alignmentText": "Alignement", "DE.Views.DocumentHolder.belowText": "En dessous", "DE.Views.DocumentHolder.breakBeforeText": "Saut de page avant", - "DE.Views.DocumentHolder.bulletsText": "Puces et Numérotation", + "DE.Views.DocumentHolder.bulletsText": "Puces et Numéros", "DE.Views.DocumentHolder.cellAlignText": "Alignement vertical de la cellule", "DE.Views.DocumentHolder.cellText": "Cellule", "DE.Views.DocumentHolder.centerText": "Centre", @@ -1392,7 +1392,7 @@ "DE.Views.DocumentHolder.insertText": "Insérer", "DE.Views.DocumentHolder.keepLinesText": "Lignes solidaires", "DE.Views.DocumentHolder.langText": "Sélectionner la langue", - "DE.Views.DocumentHolder.leftText": "A gauche", + "DE.Views.DocumentHolder.leftText": "À gauche", "DE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...", "DE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules", "DE.Views.DocumentHolder.moreText": "Plus de variantes...", @@ -1598,7 +1598,7 @@ "DE.Views.DropcapSettingsAdvanced.textInline": "Cadre en ligne", "DE.Views.DropcapSettingsAdvanced.textInMargin": "Dans la marge", "DE.Views.DropcapSettingsAdvanced.textInText": "Dans le texte", - "DE.Views.DropcapSettingsAdvanced.textLeft": "A gauche", + "DE.Views.DropcapSettingsAdvanced.textLeft": "À gauche", "DE.Views.DropcapSettingsAdvanced.textMargin": "Marge", "DE.Views.DropcapSettingsAdvanced.textMove": "Déplacer avec le texte", "DE.Views.DropcapSettingsAdvanced.textNone": "Aucune", @@ -1734,9 +1734,12 @@ "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Vérification de l'orthographe", "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Désactiver tout", "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Désactiver toutes les macros sans notification", - "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Montrer la notification", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Montrer la notification", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Désactiver toutes les macros avec notification", "DE.Views.FileMenuPanels.Settings.txtWin": "comme Windows", + "DE.Views.FormSettings.textAlways": "Toujour", + "DE.Views.FormSettings.textAspect": "Verrouiller les proportions", + "DE.Views.FormSettings.textAutofit": "Ajuster automatiquement", "DE.Views.FormSettings.textCheckbox": "Case à cocher", "DE.Views.FormSettings.textColor": "Couleur de bordure.", "DE.Views.FormSettings.textComb": "Peigne de caractères ", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Clé", "DE.Views.FormSettings.textLock": "Verrou ", "DE.Views.FormSettings.textMaxChars": "Limite de caractères", + "DE.Views.FormSettings.textMulti": "Champ de saisie à plusieurs lignes", + "DE.Views.FormSettings.textNever": "Jamais", "DE.Views.FormSettings.textNoBorder": "Sans bordures", "DE.Views.FormSettings.textPlaceholder": "Espace réservé", "DE.Views.FormSettings.textRadiobox": "Bouton radio", "DE.Views.FormSettings.textRequired": "Requis", + "DE.Views.FormSettings.textScale": "Mise à l'échelle", "DE.Views.FormSettings.textSelectImage": "Sélectionner une image", "DE.Views.FormSettings.textTip": "Conseil", "DE.Views.FormSettings.textTipAdd": "Ajouter une nouvelle valeur", "DE.Views.FormSettings.textTipDelete": "Supprimer la valeur", "DE.Views.FormSettings.textTipDown": "Descendre", "DE.Views.FormSettings.textTipUp": "Monter", + "DE.Views.FormSettings.textTooBig": "L'image semble trop grande", + "DE.Views.FormSettings.textTooSmall": "L'image semble trop petite", "DE.Views.FormSettings.textUnlock": "Déverrouiller", "DE.Views.FormSettings.textValue": "Options de valeur", "DE.Views.FormSettings.textWidth": "Largeur de cellule", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Paramètres de surbrillance", "DE.Views.FormsTab.textNewColor": "Couleur personnalisée", "DE.Views.FormsTab.textNoHighlight": "Pas de surbrillance ", + "DE.Views.FormsTab.textRequired": "Veuillez remplir tous les champs obligatoires avant d'envoyer le formulaire.", "DE.Views.FormsTab.textSubmited": "Formulaire soumis avec succès", "DE.Views.FormsTab.tipCheckBox": "Insérer une case à cocher", "DE.Views.FormsTab.tipComboBox": "Insérer une zone de liste déroulante", @@ -1800,7 +1809,7 @@ "DE.Views.HeaderFooterSettings.textBottomRight": "En bas à droite", "DE.Views.HeaderFooterSettings.textDiffFirst": "Première page différente", "DE.Views.HeaderFooterSettings.textDiffOdd": "Pages paires et impaires différentes", - "DE.Views.HeaderFooterSettings.textFrom": "Début", + "DE.Views.HeaderFooterSettings.textFrom": "Commencer par", "DE.Views.HeaderFooterSettings.textHeaderFromBottom": "Pied de page à partir du bas", "DE.Views.HeaderFooterSettings.textHeaderFromTop": "En-tête à partir du haut", "DE.Views.HeaderFooterSettings.textInsertCurrent": "Insérer à la position actuelle", @@ -1889,7 +1898,7 @@ "DE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontalement", "DE.Views.ImageSettingsAdvanced.textJoinType": "Type de jointure", "DE.Views.ImageSettingsAdvanced.textKeepRatio": "Proportions constantes", - "DE.Views.ImageSettingsAdvanced.textLeft": "A gauche", + "DE.Views.ImageSettingsAdvanced.textLeft": "À gauche", "DE.Views.ImageSettingsAdvanced.textLeftMargin": "Marge gauche", "DE.Views.ImageSettingsAdvanced.textLine": "Ligne", "DE.Views.ImageSettingsAdvanced.textLineStyle": "Style de la ligne", @@ -1932,12 +1941,12 @@ "DE.Views.ImageSettingsAdvanced.textWrapThroughTooltip": "Au travers", "DE.Views.ImageSettingsAdvanced.textWrapTightTooltip": "Rapproché", "DE.Views.ImageSettingsAdvanced.textWrapTopbottomTooltip": "Haut et bas", - "DE.Views.LeftMenu.tipAbout": "Au sujet de", + "DE.Views.LeftMenu.tipAbout": "À propos", "DE.Views.LeftMenu.tipChat": "Chat", "DE.Views.LeftMenu.tipComments": "Commentaires", "DE.Views.LeftMenu.tipNavigation": "Navigation", "DE.Views.LeftMenu.tipPlugins": "Plug-ins", - "DE.Views.LeftMenu.tipSearch": "Recherche", + "DE.Views.LeftMenu.tipSearch": "Rechercher", "DE.Views.LeftMenu.tipSupport": "Commentaires & assistance", "DE.Views.LeftMenu.tipTitles": "Titres", "DE.Views.LeftMenu.txtDeveloper": "MODE DEVELOPPEUR", @@ -1994,7 +2003,7 @@ "DE.Views.Links.titleUpdateTOF": "Rafraichir la table des figures", "DE.Views.ListSettingsDialog.textAuto": "Automatique", "DE.Views.ListSettingsDialog.textCenter": "Au centre", - "DE.Views.ListSettingsDialog.textLeft": "A gauche", + "DE.Views.ListSettingsDialog.textLeft": "À gauche", "DE.Views.ListSettingsDialog.textLevel": "Niveau", "DE.Views.ListSettingsDialog.textPreview": "Aperçu", "DE.Views.ListSettingsDialog.textRight": "A droite", @@ -2085,7 +2094,7 @@ "DE.Views.NoteSettingsDialog.textPageBottom": "Bas de page", "DE.Views.NoteSettingsDialog.textSectEnd": "Fin de section", "DE.Views.NoteSettingsDialog.textSection": "Section active", - "DE.Views.NoteSettingsDialog.textStart": "Début", + "DE.Views.NoteSettingsDialog.textStart": "Commencer par", "DE.Views.NoteSettingsDialog.textTextBottom": "Sous le texte", "DE.Views.NoteSettingsDialog.textTitle": "Paramètres des notes de bas de page", "DE.Views.NotesRemoveDialog.textEnd": "Supprimer toutes les notes de fin", @@ -2116,7 +2125,7 @@ "DE.Views.PageSizeDialog.textWidth": "Largeur", "DE.Views.PageSizeDialog.txtCustom": "Personnalisé", "DE.Views.ParagraphSettings.strIndent": "Retraits", - "DE.Views.ParagraphSettings.strIndentsLeftText": "Gauche", + "DE.Views.ParagraphSettings.strIndentsLeftText": "À gauche", "DE.Views.ParagraphSettings.strIndentsRightText": "Droite", "DE.Views.ParagraphSettings.strIndentsSpecial": "Spécial", "DE.Views.ParagraphSettings.strLineHeight": "Interligne", @@ -2127,7 +2136,7 @@ "DE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés", "DE.Views.ParagraphSettings.textAt": "A", "DE.Views.ParagraphSettings.textAtLeast": "Au moins ", - "DE.Views.ParagraphSettings.textAuto": "Plusieurs", + "DE.Views.ParagraphSettings.textAuto": "Multiple ", "DE.Views.ParagraphSettings.textBackColor": "Couleur d'arrière-plan", "DE.Views.ParagraphSettings.textExact": "Exactement", "DE.Views.ParagraphSettings.textFirstLine": "Première ligne", @@ -2138,9 +2147,9 @@ "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Toutes en majuscules", "DE.Views.ParagraphSettingsAdvanced.strBorders": "Bordures et remplissage", "DE.Views.ParagraphSettingsAdvanced.strBreakBefore": "Saut de page avant", - "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré", + "DE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barré double", "DE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits", - "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche", + "DE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "À gauche", "DE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne", "DE.Views.ParagraphSettingsAdvanced.strIndentsOutlinelevel": "Niveau hiérarchique", "DE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite", @@ -2165,7 +2174,7 @@ "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Au moins ", - "DE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs", + "DE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ", "DE.Views.ParagraphSettingsAdvanced.textBackColor": "Couleur d'arrière-plan", "DE.Views.ParagraphSettingsAdvanced.textBodyText": "Texte simple", "DE.Views.ParagraphSettingsAdvanced.textBorderColor": "Couleur", @@ -2192,7 +2201,7 @@ "DE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier", "DE.Views.ParagraphSettingsAdvanced.textSpacing": "Espacement", "DE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre", - "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "A gauche", + "DE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche", "DE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position", "DE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "DE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", @@ -2429,8 +2438,8 @@ "DE.Views.TableSettingsAdvanced.textDistance": "Distance du texte", "DE.Views.TableSettingsAdvanced.textHorizontal": "Horizontal", "DE.Views.TableSettingsAdvanced.textIndLeft": "Retrait à gauche", - "DE.Views.TableSettingsAdvanced.textLeft": "A gauche", - "DE.Views.TableSettingsAdvanced.textLeftTooltip": "A gauche", + "DE.Views.TableSettingsAdvanced.textLeft": "À gauche", + "DE.Views.TableSettingsAdvanced.textLeftTooltip": "À gauche", "DE.Views.TableSettingsAdvanced.textMargin": "Marge", "DE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule", "DE.Views.TableSettingsAdvanced.textMeasure": "Mesure en", @@ -2574,7 +2583,7 @@ "DE.Views.Toolbar.textChangeLevel": "Changer le niveau de liste", "DE.Views.Toolbar.textCheckboxControl": "Case à cocher", "DE.Views.Toolbar.textColumnsCustom": "Colonnes personnalisées", - "DE.Views.Toolbar.textColumnsLeft": "A gauche", + "DE.Views.Toolbar.textColumnsLeft": "À gauche", "DE.Views.Toolbar.textColumnsOne": "Un", "DE.Views.Toolbar.textColumnsRight": "A droite", "DE.Views.Toolbar.textColumnsThree": "Trois", @@ -2707,7 +2716,7 @@ "DE.Views.Toolbar.txtMarginAlign": "Aligner par rapport à la marge", "DE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés", "DE.Views.Toolbar.txtPageAlign": "Aligner par rapport à la page", - "DE.Views.Toolbar.txtScheme1": "Bureau", + "DE.Views.Toolbar.txtScheme1": "Office", "DE.Views.Toolbar.txtScheme10": "Médian", "DE.Views.Toolbar.txtScheme11": "Métro", "DE.Views.Toolbar.txtScheme12": "Module", @@ -2721,9 +2730,10 @@ "DE.Views.Toolbar.txtScheme2": "Niveaux de gris", "DE.Views.Toolbar.txtScheme20": "Urbain", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "New Office", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Proportions", - "DE.Views.Toolbar.txtScheme5": "Civique", + "DE.Views.Toolbar.txtScheme5": "Civil", "DE.Views.Toolbar.txtScheme6": "Rotonde", "DE.Views.Toolbar.txtScheme7": "Capitaux", "DE.Views.Toolbar.txtScheme8": "Flux", diff --git a/apps/documenteditor/main/locale/it.json b/apps/documenteditor/main/locale/it.json index b4954edd4..26c42f8d4 100644 --- a/apps/documenteditor/main/locale/it.json +++ b/apps/documenteditor/main/locale/it.json @@ -1737,6 +1737,9 @@ "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.FormSettings.textAlways": "Sempre", + "DE.Views.FormSettings.textAspect": "Blocca proporzioni", + "DE.Views.FormSettings.textAutofit": "adattare automaticamente", "DE.Views.FormSettings.textCheckbox": "Casella di controllo", "DE.Views.FormSettings.textColor": "Colore bordo", "DE.Views.FormSettings.textComb": "Combinazione di caratteri", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Chiave", "DE.Views.FormSettings.textLock": "Blocca", "DE.Views.FormSettings.textMaxChars": "‎Limite caratteri‎", + "DE.Views.FormSettings.textMulti": "Campo con molte righe", + "DE.Views.FormSettings.textNever": "Mai", "DE.Views.FormSettings.textNoBorder": "Senza bordo", "DE.Views.FormSettings.textPlaceholder": "Segnaposto", "DE.Views.FormSettings.textRadiobox": "Pulsante opzione", "DE.Views.FormSettings.textRequired": "Richiesto", + "DE.Views.FormSettings.textScale": "Quando scalare", "DE.Views.FormSettings.textSelectImage": "Seleziona Immagine", "DE.Views.FormSettings.textTip": "Suggerimento", "DE.Views.FormSettings.textTipAdd": "Aggiungi un nuovo valore", "DE.Views.FormSettings.textTipDelete": "Elimina valore", "DE.Views.FormSettings.textTipDown": "Sposta verso il basso", "DE.Views.FormSettings.textTipUp": "Sposta verso l'alto", + "DE.Views.FormSettings.textTooBig": "L'immagine è troppo grande", + "DE.Views.FormSettings.textTooSmall": "L'immagine è troppo piccola", "DE.Views.FormSettings.textUnlock": "Sblocca", "DE.Views.FormSettings.textValue": "Opzioni di valore", "DE.Views.FormSettings.textWidth": "‎Larghezza cella‎", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Impostazioni evidenziazione", "DE.Views.FormsTab.textNewColor": "Aggiungi Colore personalizzato", "DE.Views.FormsTab.textNoHighlight": "Nessuna evidenziazione", + "DE.Views.FormsTab.textRequired": "Compila tutti i campi richiesti per inviare il modulo.", "DE.Views.FormsTab.textSubmited": "Modulo inviato con successo", "DE.Views.FormsTab.tipCheckBox": "Inserisci casella di controllo", "DE.Views.FormsTab.tipComboBox": "Inserisci una cella combinata", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Scala di grigi", "DE.Views.Toolbar.txtScheme20": "Tramonto", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "Nuovo ufficio", "DE.Views.Toolbar.txtScheme3": "Vertice", "DE.Views.Toolbar.txtScheme4": "Aspetto", "DE.Views.Toolbar.txtScheme5": "Civico", diff --git a/apps/documenteditor/main/locale/ja.json b/apps/documenteditor/main/locale/ja.json index ce362367b..4f71a3329 100644 --- a/apps/documenteditor/main/locale/ja.json +++ b/apps/documenteditor/main/locale/ja.json @@ -48,6 +48,10 @@ "Common.Controllers.ReviewChanges.textNot": "ありません", "Common.Controllers.ReviewChanges.textNoWidow": "改ページ時1行残して段落を区切らないを制御しない。", "Common.Controllers.ReviewChanges.textNum": "番号設定の変更", + "Common.Controllers.ReviewChanges.textOff": "{0} は、変更履歴を使用しなくなりました。", + "Common.Controllers.ReviewChanges.textOffGlobal": "{0} は全員に変更履歴を無効にしました", + "Common.Controllers.ReviewChanges.textOn": "{0} は変更履歴を現在使用しています。", + "Common.Controllers.ReviewChanges.textOnGlobal": "{0} は全員に変更履歴を有効にしました。", "Common.Controllers.ReviewChanges.textParaDeleted": "段落が削除されました", "Common.Controllers.ReviewChanges.textParaFormatted": "段落の書式変更", "Common.Controllers.ReviewChanges.textParaInserted": "段落が挿入されました", @@ -114,8 +118,9 @@ "Common.define.chartData.textScatterSmoothMarker": "マーカーと平滑線付き散布図", "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", - "Common.Translation.warnFileLocked": "文書が別のアプリで使用されています。編集を続けて、コピーとして保存できます。", + "Common.Translation.warnFileLocked": "このファイルは他のアプリで編集されているので、編集できません。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", + "Common.Translation.warnFileLockedBtnView": "閲覧可能", "Common.UI.Calendar.textApril": "四月", "Common.UI.Calendar.textAugust": "八月", "Common.UI.Calendar.textDecember": "十二月", @@ -173,7 +178,7 @@ "Common.UI.SynchronizeTip.textDontShow": "今後このメッセージを表示しない", "Common.UI.SynchronizeTip.textSynchronize": "ドキュメントは他のユーザーによって変更されました。
    変更を保存するためにここでクリックし、アップデートを再ロードしてください。", "Common.UI.ThemeColorPalette.textStandartColors": "標準の色", - "Common.UI.ThemeColorPalette.textThemeColors": "テーマ色", + "Common.UI.ThemeColorPalette.textThemeColors": "テーマカラー", "Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)", "Common.UI.Themes.txtThemeDark": "暗い", "Common.UI.Themes.txtThemeLight": "明るい", @@ -198,17 +203,19 @@ "Common.Views.About.txtVersion": "バージョン", "Common.Views.AutoCorrectDialog.textAdd": "加える", "Common.Views.AutoCorrectDialog.textApplyText": "入力時に適用する", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "オートコレクト", "Common.Views.AutoCorrectDialog.textAutoFormat": "入力時にオートフォーマット", "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き", "Common.Views.AutoCorrectDialog.textBy": "幅", "Common.Views.AutoCorrectDialog.textDelete": "削除する", + "Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)の代わりにダッシュ(—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "数式オートコレクト", "Common.Views.AutoCorrectDialog.textNumbered": "自動番号付きリスト", "Common.Views.AutoCorrectDialog.textQuotes": "左右の区別がない引用符を、区別がある引用符に変更する", "Common.Views.AutoCorrectDialog.textRecognized": "認識された関数", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "以下の式は、認識される数式です。 自動的にイタリック体になることはありません。", - "Common.Views.AutoCorrectDialog.textReplace": "置き換える", + "Common.Views.AutoCorrectDialog.textReplace": "置き換え", "Common.Views.AutoCorrectDialog.textReplaceText": "入力時に置き換える\n\t", "Common.Views.AutoCorrectDialog.textReplaceType": "入力時にテキストを置き換える", "Common.Views.AutoCorrectDialog.textReset": "リセット", @@ -229,7 +236,7 @@ "Common.Views.Comments.textCancel": "キャンセル", "Common.Views.Comments.textClose": "閉じる", "Common.Views.Comments.textComments": "コメント", - "Common.Views.Comments.textEdit": "編集", + "Common.Views.Comments.textEdit": "OK", "Common.Views.Comments.textEnterCommentHint": "コメントをここに挿入する", "Common.Views.Comments.textHintAddComment": "コメントを追加", "Common.Views.Comments.textOpenAgain": "もう一度開きます", @@ -258,7 +265,7 @@ "Common.Views.Header.textHideLines": "ルーラを隠す", "Common.Views.Header.textHideStatusBar": "ステータスバーを表示しない", "Common.Views.Header.textRemoveFavorite": "お気に入りから削除", - "Common.Views.Header.textZoom": "拡大図", + "Common.Views.Header.textZoom": "拡大率", "Common.Views.Header.tipAccessRights": "文書のアクセス許可のの管理", "Common.Views.Header.tipDownload": "ファイルをダウンロード", "Common.Views.Header.tipGoEdit": "現在のファイルを編集する", @@ -333,10 +340,13 @@ "Common.Views.ReviewChanges.strStrictDesc": "あなたや他の人が行った変更を同期するために、[保存]ボタンを使用する", "Common.Views.ReviewChanges.textEnable": "有効にする", "Common.Views.ReviewChanges.textWarnTrackChanges": "変更履歴はフルアクセス権を持つすべてのユーザーに対して有効になります。次に他のユーザーがドキュメントを開いた時にも、変更履歴は有効になっています。", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "全員に変更履歴を有効しますか?", "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.tipCompare": "現在の文書を別の文書と比較する", "Common.Views.ReviewChanges.tipHistory": "バージョン履歴を表示する", "Common.Views.ReviewChanges.tipRejectCurrent": "現在の変更を元に戻します。", @@ -357,6 +367,11 @@ "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.txtCompare": "比較", "Common.Views.ReviewChanges.txtDocLang": "言語", "Common.Views.ReviewChanges.txtFinal": "変更は承認", @@ -495,7 +510,7 @@ "DE.Controllers.Main.errorForceSave": "文書の保存中にエラーが発生しました。PCにファイルを保存するように「としてダウンロード」を使用し、または後で再試行してください。", "DE.Controllers.Main.errorKeyEncrypt": "不明なキーの記述子", "DE.Controllers.Main.errorKeyExpire": "署名キーは期限切れました。", - "DE.Controllers.Main.errorMailMergeLoadFile": "読み込みの失敗", + "DE.Controllers.Main.errorMailMergeLoadFile": "ドキュメントの読み込みに失敗しました。 別のファイルを選択してください。", "DE.Controllers.Main.errorMailMergeSaveFile": "結合に失敗しました。", "DE.Controllers.Main.errorProcessSaveResult": "保存に失敗しました", "DE.Controllers.Main.errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。", @@ -504,6 +519,7 @@ "DE.Controllers.Main.errorSessionToken": "サーバーとの接続が中断されました。このページを再度お読み込みください。", "DE.Controllers.Main.errorSetPassword": "パスワードを設定できませんでした。", "DE.Controllers.Main.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、
    始値、高値、安値、終値の順でシートのデータを配置してください。", + "DE.Controllers.Main.errorSubmit": "送信に失敗しました。", "DE.Controllers.Main.errorToken": "ドキュメント・セキュリティ・トークンが正しく形成されていません。
    ドキュメントサーバーの管理者にご連絡ください。", "DE.Controllers.Main.errorTokenExpire": "ドキュメント・セキュリティ・トークンの有効期限が切れています。
    ドキュメントサーバーの管理者にご連絡ください。", "DE.Controllers.Main.errorUpdateVersion": "ファイルのバージョンが変更されました。ページが再ロードされます。", @@ -512,6 +528,7 @@ "DE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。", "DE.Controllers.Main.errorViewerDisconnect": "接続が切断された。文書を表示が可能ですが、
    接続を復旧し、ページを再読み込む前に、ダウンロード・印刷できません。", "DE.Controllers.Main.leavePageText": "この文書の保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。", + "DE.Controllers.Main.leavePageTextOnClose": "変更を保存せずにドキュメントを閉じると変更が失われます。
    保存するには\"キャンセル\"を押して、保存をしてください。保存せずに破棄するには\"OK\"をクリックしてください。", "DE.Controllers.Main.loadFontsTextText": "データを読み込んでいます", "DE.Controllers.Main.loadFontsTitleText": "データを読み込んでいます", "DE.Controllers.Main.loadFontTextText": "データを読み込んでいます", @@ -559,7 +576,7 @@ "DE.Controllers.Main.textLearnMore": "詳細はこちら", "DE.Controllers.Main.textLoadingDocument": "ドキュメントを読み込んでいます", "DE.Controllers.Main.textLongName": "128文字未満の名前を入力してください。", - "DE.Controllers.Main.textNoLicenseTitle": "%1 接続の制限", + "DE.Controllers.Main.textNoLicenseTitle": "ライセンス制限に達しました。", "DE.Controllers.Main.textPaidFeature": "有料機能", "DE.Controllers.Main.textRemember": "選択内容を保存", "DE.Controllers.Main.textRenameError": "ユーザー名は空にできません。", @@ -567,6 +584,7 @@ "DE.Controllers.Main.textShape": "図形", "DE.Controllers.Main.textStrict": "厳格モード", "DE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。
    他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", + "DE.Controllers.Main.textTryUndoRedoWarn": "ファスト共同編集モードでは、元に戻す/やり直し機能が無効になります。", "DE.Controllers.Main.titleLicenseExp": "ライセンス期限を過ぎました", "DE.Controllers.Main.titleServerVersion": "エディターが更新された", "DE.Controllers.Main.titleUpdateVersion": "バージョンを変更しました。", @@ -579,6 +597,7 @@ "DE.Controllers.Main.txtCallouts": "引き出し", "DE.Controllers.Main.txtCharts": "グラフ", "DE.Controllers.Main.txtChoose": "アイテムを選択してください", + "DE.Controllers.Main.txtClickToLoad": "クリックして写真を読み込む", "DE.Controllers.Main.txtCurrentDocument": "現在文書", "DE.Controllers.Main.txtDiagramTitle": "グラフ名", "DE.Controllers.Main.txtEditingMode": "編集モードを設定します。", @@ -599,7 +618,9 @@ "DE.Controllers.Main.txtMissArg": "引数がありません", "DE.Controllers.Main.txtMissOperator": "演算子がありません ", "DE.Controllers.Main.txtNeedSynchronize": "更新があります。", + "DE.Controllers.Main.txtNone": "なし", "DE.Controllers.Main.txtNoTableOfContents": "ドキュメントに見出しはありません。 目次に表示されるように、テキストに見出しスタイルをご適用ください。", + "DE.Controllers.Main.txtNoTableOfFigures": "図や表の掲載はありません。", "DE.Controllers.Main.txtNoText": "エラー!文書に指定されたスタイルのテキストがありません。", "DE.Controllers.Main.txtNotInTable": "テーブルにありません", "DE.Controllers.Main.txtNotValidBookmark": "エラー!ブックマークセルフリファレンスが無効です。", @@ -817,7 +838,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "文書の最大サイズ制限を超えました", "DE.Controllers.Main.uploadImageExtMessage": "不明な画像形式", "DE.Controllers.Main.uploadImageFileCountMessage": "アップロードされた画像がない", - "DE.Controllers.Main.uploadImageSizeMessage": "最大イメージサイズの極限を超えました。", + "DE.Controllers.Main.uploadImageSizeMessage": "最大の画像サイズの上限を超えました。", "DE.Controllers.Main.uploadImageTextText": "画像がアップロード中...", "DE.Controllers.Main.uploadImageTitleText": "画像がアップロード中", "DE.Controllers.Main.waitText": "少々お待ちください...", @@ -1660,7 +1681,7 @@ "DE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "変更を見れる前に、変更を受け入れる必要があります。", "DE.Views.FileMenuPanels.Settings.strFast": "ファスト", "DE.Views.FileMenuPanels.Settings.strFontRender": "フォントのヒント", - "DE.Views.FileMenuPanels.Settings.strForcesave": "常にサーバーに保存する(もしくは、文書をを閉じる後、サーバーに保存)", + "DE.Views.FileMenuPanels.Settings.strForcesave": "保存またはCtrl + Sを押した後、バージョンをサーバーに保存する。", "DE.Views.FileMenuPanels.Settings.strInputMode": "漢字をターンにします。", "DE.Views.FileMenuPanels.Settings.strLiveComment": "テキストコメントの表示をターンにします。", "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "マクロの設定", @@ -1682,7 +1703,7 @@ "DE.Views.FileMenuPanels.Settings.textAutoSave": "自動保存", "DE.Views.FileMenuPanels.Settings.textCompatible": "互換性", "DE.Views.FileMenuPanels.Settings.textDisabled": "無効", - "DE.Views.FileMenuPanels.Settings.textForceSave": "サーバーに保存する", + "DE.Views.FileMenuPanels.Settings.textForceSave": "中間バージョンの保存", "DE.Views.FileMenuPanels.Settings.textMinute": "1 分ごと", "DE.Views.FileMenuPanels.Settings.textOldVersions": " DOCXとして保存する場合は、MS Wordの古いバージョンと互換性のあるファイルにします", "DE.Views.FileMenuPanels.Settings.txtAll": "全ての表示", @@ -1708,13 +1729,19 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "通知を表示する", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "マクロを無効にして、通知する", "DE.Views.FileMenuPanels.Settings.txtWin": "Windowsのような", + "DE.Views.FormSettings.textAlways": "いつも", + "DE.Views.FormSettings.textAspect": "縦横比の固定", + "DE.Views.FormSettings.textAutofit": "自動調整", "DE.Views.FormSettings.textCheckbox": "チェックボックス", "DE.Views.FormSettings.textColor": "罫線の色", + "DE.Views.FormSettings.textComb": "文字の組み合わせ", "DE.Views.FormSettings.textCombobox": "コンボ・ボックス", + "DE.Views.FormSettings.textConnected": "接続されたフィールド", "DE.Views.FormSettings.textDelete": "削除する", "DE.Views.FormSettings.textDisconnect": "切断する", "DE.Views.FormSettings.textDropDown": "ドロップダウン", "DE.Views.FormSettings.textField": "テキストフィールド", + "DE.Views.FormSettings.textFixed": "固定サイズのフィールド", "DE.Views.FormSettings.textFromFile": "ファイルから", "DE.Views.FormSettings.textFromStorage": "ストレージから", "DE.Views.FormSettings.textFromUrl": "URLから", @@ -1723,15 +1750,21 @@ "DE.Views.FormSettings.textKey": "キー", "DE.Views.FormSettings.textLock": "ロックする", "DE.Views.FormSettings.textMaxChars": "文字の制限", + "DE.Views.FormSettings.textMulti": "複数行のフィールド", + "DE.Views.FormSettings.textNever": "一度もない", "DE.Views.FormSettings.textNoBorder": "罫線なし", "DE.Views.FormSettings.textPlaceholder": "プレースホルダ", "DE.Views.FormSettings.textRadiobox": "ラジオボタン", + "DE.Views.FormSettings.textRequired": "必須", + "DE.Views.FormSettings.textScale": "スケーリングのタイミング", "DE.Views.FormSettings.textSelectImage": "画像を選択する", "DE.Views.FormSettings.textTip": "ヒント", "DE.Views.FormSettings.textTipAdd": "新しい値を追加する", "DE.Views.FormSettings.textTipDelete": "値を削除する", "DE.Views.FormSettings.textTipDown": "下に移動する", "DE.Views.FormSettings.textTipUp": "上に移動する", + "DE.Views.FormSettings.textTooBig": "画像が大きすぎます", + "DE.Views.FormSettings.textTooSmall": "画像が小さすぎます", "DE.Views.FormSettings.textUnlock": "ロックを解除する", "DE.Views.FormSettings.textValue": "値のオプション", "DE.Views.FormSettings.textWidth": "セル幅", @@ -1739,20 +1772,29 @@ "DE.Views.FormsTab.capBtnComboBox": "コンボ・ボックス", "DE.Views.FormsTab.capBtnDropDown": "ドロップダウン", "DE.Views.FormsTab.capBtnImage": "画像", + "DE.Views.FormsTab.capBtnNext": "新しいフィールド", + "DE.Views.FormsTab.capBtnPrev": "前のフィールド", "DE.Views.FormsTab.capBtnRadioBox": "ラジオボタン", + "DE.Views.FormsTab.capBtnSubmit": "送信", "DE.Views.FormsTab.capBtnText": "テキストフィールド", "DE.Views.FormsTab.capBtnView": "フォームを表示する", + "DE.Views.FormsTab.textClear": "フィールドを解除する", "DE.Views.FormsTab.textClearFields": "すべてのフィールドをクリアする", "DE.Views.FormsTab.textHighlight": "強調表示設定", "DE.Views.FormsTab.textNewColor": "ユーザー設定の色の追加", "DE.Views.FormsTab.textNoHighlight": "強調表示なし", + "DE.Views.FormsTab.textRequired": "必須事項をすべて入力し、送信してください。", + "DE.Views.FormsTab.textSubmited": "フォームの送信成功", "DE.Views.FormsTab.tipCheckBox": "チェックボックスを挿入する", "DE.Views.FormsTab.tipComboBox": "コンボ・ボックスを挿入する", "DE.Views.FormsTab.tipDropDown": "ドロップダウン・リストを挿入する", "DE.Views.FormsTab.tipImageField": "画像の挿入", + "DE.Views.FormsTab.tipNextForm": "次のフィールドへ", + "DE.Views.FormsTab.tipPrevForm": "前のフィールドへ", "DE.Views.FormsTab.tipRadioBox": "ラジオボタンの挿入\t", + "DE.Views.FormsTab.tipSubmit": "フォームを送信", "DE.Views.FormsTab.tipTextField": "テキストフィールドを挿入する", - "DE.Views.FormsTab.tipViewForm": "フォーム入力モード", + "DE.Views.FormsTab.tipViewForm": "フォームを表示する", "DE.Views.HeaderFooterSettings.textBottomCenter": "左下", "DE.Views.HeaderFooterSettings.textBottomLeft": "左下", "DE.Views.HeaderFooterSettings.textBottomPage": "ページの下部", @@ -2077,6 +2119,7 @@ "DE.Views.ParagraphSettings.strIndent": "インデント", "DE.Views.ParagraphSettings.strIndentsLeftText": "左", "DE.Views.ParagraphSettings.strIndentsRightText": "右", + "DE.Views.ParagraphSettings.strIndentsSpecial": "スペシャル", "DE.Views.ParagraphSettings.strLineHeight": "行間", "DE.Views.ParagraphSettings.strParagraphSpacing": "段落間隔", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "同じスタイルの場合は、段落間に間隔を追加しません。", @@ -2089,6 +2132,7 @@ "DE.Views.ParagraphSettings.textBackColor": "背景色", "DE.Views.ParagraphSettings.textExact": "固定値", "DE.Views.ParagraphSettings.textFirstLine": "最初の行", + "DE.Views.ParagraphSettings.textHanging": "ぶら下げインデント", "DE.Views.ParagraphSettings.textNoneSpecial": "(なし)", "DE.Views.ParagraphSettings.txtAutoText": "自動", "DE.Views.ParagraphSettingsAdvanced.noTabs": "指定されたタブは、このフィールドに表示されます。", @@ -2182,7 +2226,7 @@ "DE.Views.ShapeSettings.strPattern": "パターン", "DE.Views.ShapeSettings.strShadow": "影を表示する", "DE.Views.ShapeSettings.strSize": "サイズ", - "DE.Views.ShapeSettings.strStroke": "画数", + "DE.Views.ShapeSettings.strStroke": "行", "DE.Views.ShapeSettings.strTransparency": "不透明度", "DE.Views.ShapeSettings.strType": "タイプ", "DE.Views.ShapeSettings.textAdvanced": "詳細設定の表示", @@ -2258,7 +2302,7 @@ "DE.Views.Statusbar.tipFitPage": "ページに合わせる", "DE.Views.Statusbar.tipFitWidth": "幅を合わせる", "DE.Views.Statusbar.tipSetLang": "テキストの言語を設定します。", - "DE.Views.Statusbar.tipZoomFactor": "ズーム", + "DE.Views.Statusbar.tipZoomFactor": "拡大率", "DE.Views.Statusbar.tipZoomIn": "拡大", "DE.Views.Statusbar.tipZoomOut": "縮小", "DE.Views.Statusbar.txtPageNumInvalid": "ページ番号が正しくありません。", @@ -2276,6 +2320,7 @@ "DE.Views.TableOfContentsSettings.strAlign": "ページ番号の右揃え", "DE.Views.TableOfContentsSettings.strFullCaption": "ラベルと番号を含める", "DE.Views.TableOfContentsSettings.strLinks": "目次をリンクとして書式設定する", + "DE.Views.TableOfContentsSettings.strLinksOF": "図や表をリンクとしてフォーマットする", "DE.Views.TableOfContentsSettings.strShowPages": "ページ番号の表示", "DE.Views.TableOfContentsSettings.textBuildTable": "目次の作成要素:", "DE.Views.TableOfContentsSettings.textBuildTableOF": "次から図表を作成する", @@ -2326,6 +2371,7 @@ "DE.Views.TableSettings.textBorders": "罫線のスタイル", "DE.Views.TableSettings.textCellSize": "行と列のサイズ", "DE.Views.TableSettings.textColumns": "列", + "DE.Views.TableSettings.textConvert": "表を文字に変換する", "DE.Views.TableSettings.textDistributeCols": "列の幅を揃える", "DE.Views.TableSettings.textDistributeRows": "行の高さを揃える", "DE.Views.TableSettings.textEdit": "行/列", @@ -2430,10 +2476,18 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "罫線なし", "DE.Views.TableSettingsAdvanced.txtPercent": "パーセント", "DE.Views.TableSettingsAdvanced.txtPt": "ポイント", + "DE.Views.TableToTextDialog.textEmpty": "カスタムセパレータの文字を入力する必要があります。", + "DE.Views.TableToTextDialog.textNested": "ネストした表の変換", + "DE.Views.TableToTextDialog.textOther": "その他", + "DE.Views.TableToTextDialog.textPara": "段落記号", + "DE.Views.TableToTextDialog.textSemicolon": "セミコロン", + "DE.Views.TableToTextDialog.textSeparator": "で文字を区切る", + "DE.Views.TableToTextDialog.textTab": "タブ", + "DE.Views.TableToTextDialog.textTitle": "表を文字に変換する", "DE.Views.TextArtSettings.strColor": "色", "DE.Views.TextArtSettings.strFill": "塗りつぶし", "DE.Views.TextArtSettings.strSize": "サイズ", - "DE.Views.TextArtSettings.strStroke": "画数", + "DE.Views.TextArtSettings.strStroke": "行", "DE.Views.TextArtSettings.strTransparency": "不透明度", "DE.Views.TextArtSettings.strType": "タイプ", "DE.Views.TextArtSettings.textAngle": "角", @@ -2453,6 +2507,21 @@ "DE.Views.TextArtSettings.tipAddGradientPoint": "グラデーションポイントを追加する", "DE.Views.TextArtSettings.tipRemoveGradientPoint": "グラデーションポイントを削除する", "DE.Views.TextArtSettings.txtNoBorders": "線なし", + "DE.Views.TextToTableDialog.textAutofit": "オートフィットの動作", + "DE.Views.TextToTableDialog.textColumns": "列", + "DE.Views.TextToTableDialog.textContents": "コンテンツへのオートフィット", + "DE.Views.TextToTableDialog.textEmpty": "カスタムセパレータの文字を入力する必要があります。", + "DE.Views.TextToTableDialog.textFixed": "カラムの幅を固定", + "DE.Views.TextToTableDialog.textOther": "その他", + "DE.Views.TextToTableDialog.textPara": "段落", + "DE.Views.TextToTableDialog.textRows": "行", + "DE.Views.TextToTableDialog.textSemicolon": "セミコロン", + "DE.Views.TextToTableDialog.textSeparator": "でテキストを分離", + "DE.Views.TextToTableDialog.textTab": "タブ", + "DE.Views.TextToTableDialog.textTableSize": "表のサイズ", + "DE.Views.TextToTableDialog.textTitle": "文字を表に変換する", + "DE.Views.TextToTableDialog.textWindow": "ウインドウへのオートフィット", + "DE.Views.TextToTableDialog.txtAutoText": "自動", "DE.Views.Toolbar.capBtnAddComment": "コメントを追加", "DE.Views.Toolbar.capBtnBlankPage": "空白ページ", "DE.Views.Toolbar.capBtnColumns": "列", @@ -2495,12 +2564,15 @@ "DE.Views.Toolbar.mniImageFromStorage": "ストレージから画像を読み込む", "DE.Views.Toolbar.mniImageFromUrl": "URLからのファイル", "DE.Views.Toolbar.mniLowerCase": "小文字", + "DE.Views.Toolbar.mniSentenceCase": "センテンスケース", + "DE.Views.Toolbar.mniTextToTable": "文字を表に変換する", "DE.Views.Toolbar.mniToggleCase": "大文字と小文字を入れ替える", "DE.Views.Toolbar.mniUpperCase": "大文字", "DE.Views.Toolbar.strMenuNoFill": "塗りつぶしなし", "DE.Views.Toolbar.textAutoColor": "自動", "DE.Views.Toolbar.textBold": "太字", "DE.Views.Toolbar.textBottom": "下:", + "DE.Views.Toolbar.textChangeLevel": "変更リストラベル", "DE.Views.Toolbar.textCheckboxControl": "チェックボックス", "DE.Views.Toolbar.textColumnsCustom": "ユーザー設定の列", "DE.Views.Toolbar.textColumnsLeft": "左", @@ -2650,6 +2722,7 @@ "DE.Views.Toolbar.txtScheme2": "グレースケール", "DE.Views.Toolbar.txtScheme20": "アーバン", "DE.Views.Toolbar.txtScheme21": "ネオン", + "DE.Views.Toolbar.txtScheme22": "新しいオフィス", "DE.Views.Toolbar.txtScheme3": "ひらめき", "DE.Views.Toolbar.txtScheme4": "アスペクト", "DE.Views.Toolbar.txtScheme5": "クール", diff --git a/apps/documenteditor/main/locale/ko.json b/apps/documenteditor/main/locale/ko.json index 21d5f4049..c7211a886 100644 --- a/apps/documenteditor/main/locale/ko.json +++ b/apps/documenteditor/main/locale/ko.json @@ -275,6 +275,7 @@ "Common.Views.SignSettingsDialog.textShowDate": "서명라인에 서명 날짜를 보여주세요", "Common.Views.SignSettingsDialog.textTitle": "서명 셋업", "Common.Views.SignSettingsDialog.txtEmpty": "이 입력란은 필수 항목", + "Common.Views.SymbolTableDialog.textSymbols": "기호", "DE.Controllers.LeftMenu.leavePageText": "이 문서의 모든 저장되지 않은 변경 사항이 손실됩니다.
    취소 를 클릭 한 다음저장 \"을 클릭하여 저장하십시오. 저장되지 않은 변경 사항. ", "DE.Controllers.LeftMenu.newDocumentTitle": "Unnamed document", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "경고", @@ -391,6 +392,7 @@ "DE.Controllers.Main.txtSameAsPrev": "이전과 동일", "DE.Controllers.Main.txtSection": "섹션", "DE.Controllers.Main.txtSeries": "Series", + "DE.Controllers.Main.txtShape_textRect": "텍스트상자", "DE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", "DE.Controllers.Main.txtStyle_footnote_text": "꼬리말 글", "DE.Controllers.Main.txtStyle_Heading_1": "제목 1", @@ -409,6 +411,7 @@ "DE.Controllers.Main.txtStyle_Quote": "Quote", "DE.Controllers.Main.txtStyle_Subtitle": "자막", "DE.Controllers.Main.txtStyle_Title": "제목", + "DE.Controllers.Main.txtSyntaxError": "구문 오류", "DE.Controllers.Main.txtTableOfContents": "콘텐츠 테이블", "DE.Controllers.Main.txtXAxis": "X 축", "DE.Controllers.Main.txtYAxis": "Y 축", @@ -775,6 +778,7 @@ "DE.Views.BookmarksDialog.textName": "이름", "DE.Views.BookmarksDialog.textSort": "정렬", "DE.Views.BookmarksDialog.textTitle": "책갈피", + "DE.Views.CaptionDialog.textTable": "표", "DE.Views.ChartSettings.textAdvanced": "고급 설정 표시", "DE.Views.ChartSettings.textChartType": "차트 유형 변경", "DE.Views.ChartSettings.textEditData": "데이터 편집", @@ -795,10 +799,12 @@ "DE.Views.ChartSettings.txtTopAndBottom": "상단 및 하단", "DE.Views.ControlSettingsDialog.textLock": "잠그기", "DE.Views.ControlSettingsDialog.textName": "제목", + "DE.Views.ControlSettingsDialog.textSystemColor": "시스템", "DE.Views.ControlSettingsDialog.textTag": "꼬리표", "DE.Views.ControlSettingsDialog.textTitle": "콘텐트 제어 세팅", "DE.Views.ControlSettingsDialog.txtLockDelete": "콘텐트 제어가 삭제될 수 없슴", "DE.Views.ControlSettingsDialog.txtLockEdit": "콘텐트가 편집될 수 없슴", + "DE.Views.CrossReferenceDialog.textTable": "표", "DE.Views.CustomColumnsDialog.textColumns": "열 수", "DE.Views.CustomColumnsDialog.textSeparator": "열 구분선", "DE.Views.CustomColumnsDialog.textSpacing": "열 사이의 간격", @@ -1223,6 +1229,7 @@ "DE.Views.ImageSettingsAdvanced.textShape": "도형 설정", "DE.Views.ImageSettingsAdvanced.textSize": "크기", "DE.Views.ImageSettingsAdvanced.textSquare": "Square", + "DE.Views.ImageSettingsAdvanced.textTextBox": "텍스트상자", "DE.Views.ImageSettingsAdvanced.textTitle": "이미지 - 고급 설정", "DE.Views.ImageSettingsAdvanced.textTitleChart": "차트 - 고급 설정", "DE.Views.ImageSettingsAdvanced.textTitleShape": "모양 - 고급 설정", @@ -1266,6 +1273,7 @@ "DE.Views.Links.tipContentsUpdate": "콘텐트 테이블 새로고침", "DE.Views.Links.tipInsertHyperlink": "하이퍼 링크 추가", "DE.Views.Links.tipNotes": "각주 삽입 또는 편집", + "DE.Views.ListSettingsDialog.txtSymbol": "기호", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "보내기", "DE.Views.MailMergeEmailDlg.subjectPlaceholder": "테마", @@ -1365,6 +1373,7 @@ "DE.Views.ParagraphSettings.textAuto": "Multiple", "DE.Views.ParagraphSettings.textBackColor": "배경색", "DE.Views.ParagraphSettings.textExact": "정확히", + "DE.Views.ParagraphSettings.textNoneSpecial": "(없음)", "DE.Views.ParagraphSettings.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.noTabs": "지정된 탭이이 필드에 나타납니다", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "모든 대문자", @@ -1397,6 +1406,7 @@ "DE.Views.ParagraphSettingsAdvanced.textLeader": "리더", "DE.Views.ParagraphSettingsAdvanced.textLeft": "왼쪽", "DE.Views.ParagraphSettingsAdvanced.textNone": "없음", + "DE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(없음)", "DE.Views.ParagraphSettingsAdvanced.textPosition": "위치", "DE.Views.ParagraphSettingsAdvanced.textRemove": "제거", "DE.Views.ParagraphSettingsAdvanced.textRemoveAll": "모두 제거", @@ -1518,6 +1528,7 @@ "DE.Views.TableOfContentsSettings.textRadioStyles": "선택 스타일", "DE.Views.TableOfContentsSettings.textStyle": "스타일", "DE.Views.TableOfContentsSettings.textStyles": "스타일들", + "DE.Views.TableOfContentsSettings.textTable": "표", "DE.Views.TableOfContentsSettings.textTitle": "콘텍츠 테이블", "DE.Views.TableOfContentsSettings.txtClassic": "클래식", "DE.Views.TableOfContentsSettings.txtCurrent": "현재", @@ -1671,6 +1682,7 @@ "DE.Views.Toolbar.capBtnInsImage": "그림", "DE.Views.Toolbar.capBtnInsPagebreak": "나누기", "DE.Views.Toolbar.capBtnInsShape": "쉐이프", + "DE.Views.Toolbar.capBtnInsSymbol": "기호", "DE.Views.Toolbar.capBtnInsTable": "테이블", "DE.Views.Toolbar.capBtnInsTextart": "텍스트 아트", "DE.Views.Toolbar.capBtnInsTextbox": "텍스트 박스", @@ -1825,5 +1837,7 @@ "DE.Views.Toolbar.txtScheme6": "Concourse", "DE.Views.Toolbar.txtScheme7": "Equity", "DE.Views.Toolbar.txtScheme8": "흐름", - "DE.Views.Toolbar.txtScheme9": "주조" + "DE.Views.Toolbar.txtScheme9": "주조", + "DE.Views.WatermarkSettingsDialog.textColor": "글꼴색", + "DE.Views.WatermarkSettingsDialog.textText": "텍스트" } \ No newline at end of file diff --git a/apps/documenteditor/main/locale/nl.json b/apps/documenteditor/main/locale/nl.json index ff590e77e..855439cc9 100644 --- a/apps/documenteditor/main/locale/nl.json +++ b/apps/documenteditor/main/locale/nl.json @@ -156,7 +156,7 @@ "Common.UI.Calendar.textShortThursday": "do", "Common.UI.Calendar.textShortTuesday": "di", "Common.UI.Calendar.textShortWednesday": "wij", - "Common.UI.Calendar.textYears": "jaren", + "Common.UI.Calendar.textYears": "Jaren", "Common.UI.ColorButton.textAutoColor": "Automatisch", "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", @@ -299,7 +299,7 @@ "Common.Views.InsertTableDialog.txtTitleSplit": "Cel Splitsen", "Common.Views.LanguageDialog.labelSelect": "Taal van document selecteren", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", - "Common.Views.OpenDialog.txtEncoding": "Versleuteling", + "Common.Views.OpenDialog.txtEncoding": "Codering", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen", "Common.Views.OpenDialog.txtPassword": "Wachtwoord", @@ -846,7 +846,7 @@ "DE.Controllers.Main.uploadDocSizeMessage": "Maximale documentgrootte overschreden.", "DE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "DE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", + "DE.Controllers.Main.uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.", "DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", "DE.Controllers.Main.waitText": "Een moment...", @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Weergeef notificatie", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", "DE.Views.FileMenuPanels.Settings.txtWin": "als Windows", + "DE.Views.FormSettings.textAlways": "Altijd", + "DE.Views.FormSettings.textAspect": "Aspectratio vastzetten", + "DE.Views.FormSettings.textAutofit": "Automatische pasvorm", "DE.Views.FormSettings.textCheckbox": "Checkbox", "DE.Views.FormSettings.textColor": "Randkleur", "DE.Views.FormSettings.textComb": "Lijst van characters", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Sleutel", "DE.Views.FormSettings.textLock": "Opslot", "DE.Views.FormSettings.textMaxChars": "Teken limiet", + "DE.Views.FormSettings.textMulti": "Meerlijnig veld", + "DE.Views.FormSettings.textNever": "Nooit", "DE.Views.FormSettings.textNoBorder": "Geen rand", "DE.Views.FormSettings.textPlaceholder": "Tijdelijke aanduiding", "DE.Views.FormSettings.textRadiobox": "Radial knop", "DE.Views.FormSettings.textRequired": "Vereist", + "DE.Views.FormSettings.textScale": "Wanneer schalen", "DE.Views.FormSettings.textSelectImage": "Selecteer afbeelding", "DE.Views.FormSettings.textTip": "Tip", "DE.Views.FormSettings.textTipAdd": "Voeg nieuwe waarde toe", "DE.Views.FormSettings.textTipDelete": "Verwijder waarde", "DE.Views.FormSettings.textTipDown": "Naar beneden", "DE.Views.FormSettings.textTipUp": "Naar boven", + "DE.Views.FormSettings.textTooBig": "Afbeelding is Te Groot", + "DE.Views.FormSettings.textTooSmall": "Afbeelding is Te Klein", "DE.Views.FormSettings.textUnlock": "Ontgrendelen", "DE.Views.FormSettings.textValue": "Waarde opties", "DE.Views.FormSettings.textWidth": "Celbreedte", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Markeer Instellingen", "DE.Views.FormsTab.textNewColor": "Nieuwe aangepaste kleur toevoegen", "DE.Views.FormsTab.textNoHighlight": "Geen accentuering", + "DE.Views.FormsTab.textRequired": "Vul alle verplichte velden in om het formulier te verzenden.", "DE.Views.FormsTab.textSubmited": "Formulier succesvol ingediend ", "DE.Views.FormsTab.tipCheckBox": "Selectievakje invoegen", "DE.Views.FormsTab.tipComboBox": "Plaats de keuzelijst met invoervak", @@ -1898,7 +1907,7 @@ "DE.Views.ImageSettingsAdvanced.textMove": "Object met tekst verplaatsen", "DE.Views.ImageSettingsAdvanced.textOptions": "Opties", "DE.Views.ImageSettingsAdvanced.textOriginalSize": "Ware grootte", - "DE.Views.ImageSettingsAdvanced.textOverlap": "Overlapping toestaan", + "DE.Views.ImageSettingsAdvanced.textOverlap": "Overlappingen toestaan", "DE.Views.ImageSettingsAdvanced.textPage": "Pagina", "DE.Views.ImageSettingsAdvanced.textParagraph": "Alinea", "DE.Views.ImageSettingsAdvanced.textPosition": "Positie", @@ -2632,7 +2641,7 @@ "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Onderdrukken voor huidige alinea", "DE.Views.Toolbar.textTabCollaboration": "Samenwerking", "DE.Views.Toolbar.textTabFile": "Bestand", - "DE.Views.Toolbar.textTabHome": "Home", + "DE.Views.Toolbar.textTabHome": "Start", "DE.Views.Toolbar.textTabInsert": "Invoegen", "DE.Views.Toolbar.textTabLayout": "Pagina-indeling", "DE.Views.Toolbar.textTabLinks": "Verwijzingen", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Grijswaarden", "DE.Views.Toolbar.txtScheme20": "Stedelijk", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "Nieuw kantoor", "DE.Views.Toolbar.txtScheme3": "Toppunt", "DE.Views.Toolbar.txtScheme4": "Aspect", "DE.Views.Toolbar.txtScheme5": "Civiel", diff --git a/apps/documenteditor/main/locale/pt.json b/apps/documenteditor/main/locale/pt.json index 51870e9bf..ea611da12 100644 --- a/apps/documenteditor/main/locale/pt.json +++ b/apps/documenteditor/main/locale/pt.json @@ -1737,6 +1737,9 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Mostrar notificação", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Desativar todas as macros com uma notificação", "DE.Views.FileMenuPanels.Settings.txtWin": "como Windows", + "DE.Views.FormSettings.textAlways": "Sempre", + "DE.Views.FormSettings.textAspect": "Bloquear proporção", + "DE.Views.FormSettings.textAutofit": "Ajuste automático", "DE.Views.FormSettings.textCheckbox": "Caixa de seleção", "DE.Views.FormSettings.textColor": "Cor da borda", "DE.Views.FormSettings.textComb": "Conjunto de Caracteres", @@ -1755,16 +1758,21 @@ "DE.Views.FormSettings.textKey": "Chave", "DE.Views.FormSettings.textLock": "Bloquear", "DE.Views.FormSettings.textMaxChars": "Limite de caracteres", + "DE.Views.FormSettings.textMulti": "Campo multilinha", + "DE.Views.FormSettings.textNever": "Nunca", "DE.Views.FormSettings.textNoBorder": "Sem limite", "DE.Views.FormSettings.textPlaceholder": "Marcador de posição", "DE.Views.FormSettings.textRadiobox": "Botao de radio", "DE.Views.FormSettings.textRequired": "Necessário", + "DE.Views.FormSettings.textScale": "Quando escalar", "DE.Views.FormSettings.textSelectImage": "Selecionar Imagem", "DE.Views.FormSettings.textTip": "Dica", "DE.Views.FormSettings.textTipAdd": "Adicionar novo valor", "DE.Views.FormSettings.textTipDelete": "Excluir valor", "DE.Views.FormSettings.textTipDown": "Mover para baixo", "DE.Views.FormSettings.textTipUp": "Mover para cima", + "DE.Views.FormSettings.textTooBig": "A imagem é muito grande", + "DE.Views.FormSettings.textTooSmall": "A imagem é muito pequena", "DE.Views.FormSettings.textUnlock": "Desbloquear", "DE.Views.FormSettings.textValue": "Opções de valor", "DE.Views.FormSettings.textWidth": "Largura da célula", @@ -1783,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Configurações de destaque", "DE.Views.FormsTab.textNewColor": "Adicionar nova cor personalizada", "DE.Views.FormsTab.textNoHighlight": "Sem destaque", + "DE.Views.FormsTab.textRequired": "Preencha todos os campos obrigatórios para enviar o formulário.", "DE.Views.FormsTab.textSubmited": "Formulário enviado com sucesso", "DE.Views.FormsTab.tipCheckBox": "Inserir caixa de seleção", "DE.Views.FormsTab.tipComboBox": "Inserir caixa de combinação", @@ -2721,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Escala de cinza", "DE.Views.Toolbar.txtScheme20": "Urbano", "DE.Views.Toolbar.txtScheme21": "Verve", + "DE.Views.Toolbar.txtScheme22": "Novo Office", "DE.Views.Toolbar.txtScheme3": "Ápice", "DE.Views.Toolbar.txtScheme4": "Aspecto", "DE.Views.Toolbar.txtScheme5": "Cívico", diff --git a/apps/documenteditor/main/locale/ro.json b/apps/documenteditor/main/locale/ro.json index 32db3fe02..ecc7e1f32 100644 --- a/apps/documenteditor/main/locale/ro.json +++ b/apps/documenteditor/main/locale/ro.json @@ -53,11 +53,11 @@ "Common.Controllers.ReviewChanges.textOn": "{0} folosește Urmărirea Modificărilor acum.", "Common.Controllers.ReviewChanges.textOnGlobal": "{0} a activat Urmărire modificări pentru toți.", "Common.Controllers.ReviewChanges.textParaDeleted": "Paragraful a fost eliminat", - "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraf formatat", + "Common.Controllers.ReviewChanges.textParaFormatted": "Paragraful a fost formatat", "Common.Controllers.ReviewChanges.textParaInserted": "Paragraful a fost inserat", - "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Deplasat în jos:", - "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Deplasat în sus:", - "Common.Controllers.ReviewChanges.textParaMoveTo": "S-a deplasat:", + "Common.Controllers.ReviewChanges.textParaMoveFromDown": "Este mutat în jos:", + "Common.Controllers.ReviewChanges.textParaMoveFromUp": "Este mutat în sus:", + "Common.Controllers.ReviewChanges.textParaMoveTo": "S-a mutat:", "Common.Controllers.ReviewChanges.textPosition": "Poziție", "Common.Controllers.ReviewChanges.textRight": "Aliniere la dreapta", "Common.Controllers.ReviewChanges.textShape": "Forma", @@ -133,7 +133,7 @@ "Common.UI.Calendar.textJune": "Iunie", "Common.UI.Calendar.textMarch": "Martie", "Common.UI.Calendar.textMay": "Mai", - "Common.UI.Calendar.textMonths": "Luni", + "Common.UI.Calendar.textMonths": "Lună", "Common.UI.Calendar.textNovember": "Noiembrie", "Common.UI.Calendar.textOctober": "Octombrie", "Common.UI.Calendar.textSeptember": "Septembrie", @@ -839,7 +839,7 @@ "DE.Controllers.Main.txtXAxis": "Axa X", "DE.Controllers.Main.txtYAxis": "Axa Y", "DE.Controllers.Main.txtZeroDivide": "Împărțirea cu zero", - "DE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", + "DE.Controllers.Main.unknownErrorText": "Eroare necunoscută.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.Controllers.Main.uploadDocExtMessage": "Format de fișier necunoscut.", "DE.Controllers.Main.uploadDocFileCountMessage": "Nu există nicun document încărcat.", @@ -1600,7 +1600,7 @@ "DE.Views.DropcapSettingsAdvanced.textInText": "În paragraf", "DE.Views.DropcapSettingsAdvanced.textLeft": "Stânga", "DE.Views.DropcapSettingsAdvanced.textMargin": "Margine", - "DE.Views.DropcapSettingsAdvanced.textMove": "Deplasare odată cu textul", + "DE.Views.DropcapSettingsAdvanced.textMove": "Mutare odată cu textul", "DE.Views.DropcapSettingsAdvanced.textNone": "Niciunul", "DE.Views.DropcapSettingsAdvanced.textPage": "Pagina", "DE.Views.DropcapSettingsAdvanced.textParagraph": "Paragraf", @@ -1737,6 +1737,7 @@ "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Afișare notificări", "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Se dezactivează toate macrocomenzile, cu notificare ", "DE.Views.FileMenuPanels.Settings.txtWin": "ca Windows", + "DE.Views.FormSettings.textAlways": "Întotdeauna", "DE.Views.FormSettings.textAspect": "Blocare raport aspect", "DE.Views.FormSettings.textAutofit": "Potrivire automată", "DE.Views.FormSettings.textCheckbox": "Caseta de selectare", @@ -1757,17 +1758,21 @@ "DE.Views.FormSettings.textKey": "Cheie", "DE.Views.FormSettings.textLock": "Blocare", "DE.Views.FormSettings.textMaxChars": "Numărul limită de caractere", + "DE.Views.FormSettings.textMulti": "Câmp cu mai multe linii de text", "DE.Views.FormSettings.textNever": "Niciodată", "DE.Views.FormSettings.textNoBorder": "Fără bordură", "DE.Views.FormSettings.textPlaceholder": "Substituent", "DE.Views.FormSettings.textRadiobox": "Buton opțiune", "DE.Views.FormSettings.textRequired": "Obligatoriu", + "DE.Views.FormSettings.textScale": "Scalare", "DE.Views.FormSettings.textSelectImage": "Selectați imaginea", "DE.Views.FormSettings.textTip": "Tip", "DE.Views.FormSettings.textTipAdd": "Se adaugă o valoare nouă", "DE.Views.FormSettings.textTipDelete": "Valoarea trebuie eliminată", - "DE.Views.FormSettings.textTipDown": "Deplasare în jos", - "DE.Views.FormSettings.textTipUp": "Deplasare în sus", + "DE.Views.FormSettings.textTipDown": "Mutare în jos", + "DE.Views.FormSettings.textTipUp": "Mutare în sus", + "DE.Views.FormSettings.textTooBig": "Imaginea este prea mare", + "DE.Views.FormSettings.textTooSmall": "Imaginea este prea mică", "DE.Views.FormSettings.textUnlock": "Deblocare", "DE.Views.FormSettings.textValue": "Opțiuni valori", "DE.Views.FormSettings.textWidth": "Lățimea celulei", @@ -1786,6 +1791,7 @@ "DE.Views.FormsTab.textHighlight": "Evidențiere setări", "DE.Views.FormsTab.textNewColor": "Сuloare particularizată", "DE.Views.FormsTab.textNoHighlight": "Fără evidențiere", + "DE.Views.FormsTab.textRequired": "Toate câmpurile din formular trebuie completate înainte de a-l trimite.", "DE.Views.FormsTab.textSubmited": "Formularul a fost remis cu succes", "DE.Views.FormsTab.tipCheckBox": "Se inserează un control casetă de selectare", "DE.Views.FormsTab.tipComboBox": "Se inserează un control casetă combo", @@ -2724,6 +2730,7 @@ "DE.Views.Toolbar.txtScheme2": "Tonuri de gri", "DE.Views.Toolbar.txtScheme20": "Urban", "DE.Views.Toolbar.txtScheme21": "Vervă", + "DE.Views.Toolbar.txtScheme22": "New Office", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Aspect", "DE.Views.Toolbar.txtScheme5": "Civic", diff --git a/apps/documenteditor/main/locale/sv.json b/apps/documenteditor/main/locale/sv.json index 6905f0c82..88ee007a6 100644 --- a/apps/documenteditor/main/locale/sv.json +++ b/apps/documenteditor/main/locale/sv.json @@ -18,6 +18,7 @@ "Common.Controllers.ReviewChanges.textBreakBefore": "Sidbrytning före", "Common.Controllers.ReviewChanges.textCaps": "Alla versaler", "Common.Controllers.ReviewChanges.textCenter": "Centrera", + "Common.Controllers.ReviewChanges.textChar": "Tecken nivå", "Common.Controllers.ReviewChanges.textChart": "Diagram", "Common.Controllers.ReviewChanges.textColor": "Fontfärg", "Common.Controllers.ReviewChanges.textContextual": "Lägg inte till mellanrum mellan stycken med samma formatmall", @@ -41,12 +42,16 @@ "Common.Controllers.ReviewChanges.textLineSpacing": "Radavstånd:", "Common.Controllers.ReviewChanges.textMultiple": "flera", "Common.Controllers.ReviewChanges.textNoBreakBefore": "Ingen sidbrytning före", - "Common.Controllers.ReviewChanges.textNoContextual": "Lägg intervall mellan punkterna i samma stil", + "Common.Controllers.ReviewChanges.textNoContextual": "Lägg intervall mellan stycken i samma stil", "Common.Controllers.ReviewChanges.textNoKeepLines": "Håll inte ihop raderna", "Common.Controllers.ReviewChanges.textNoKeepNext": "Behåll inte med nästa", "Common.Controllers.ReviewChanges.textNot": "Inte", "Common.Controllers.ReviewChanges.textNoWidow": "Ingen änkekontroll", "Common.Controllers.ReviewChanges.textNum": "Ändra numrering", + "Common.Controllers.ReviewChanges.textOff": "Spårning inaktiverad", + "Common.Controllers.ReviewChanges.textOffGlobal": "Inaktivera Spåra ändringar", + "Common.Controllers.ReviewChanges.textOn": "Spårning aktiverad", + "Common.Controllers.ReviewChanges.textOnGlobal": "Aktivera Spåra ändringar", "Common.Controllers.ReviewChanges.textParaDeleted": " Stycke raderad", "Common.Controllers.ReviewChanges.textParaFormatted": "Styckets formatering", "Common.Controllers.ReviewChanges.textParaInserted": "Stycke infogad", @@ -57,6 +62,7 @@ "Common.Controllers.ReviewChanges.textRight": "Högerjustera", "Common.Controllers.ReviewChanges.textShape": "Form", "Common.Controllers.ReviewChanges.textShd": "Bakgrundsfärg", + "Common.Controllers.ReviewChanges.textShow": "Visa ändringar på", "Common.Controllers.ReviewChanges.textSmallCaps": "Gemener", "Common.Controllers.ReviewChanges.textSpacing": "Avstånd", "Common.Controllers.ReviewChanges.textSpacingAfter": "Avstånd efter", @@ -74,11 +80,50 @@ "Common.Controllers.ReviewChanges.textWidow": "Fönsterkontroll", "Common.Controllers.ReviewChanges.textWord": "Ordnivå", "Common.define.chartData.textArea": "Område", + "Common.define.chartData.textAreaStacked": "Staplad yta", + "Common.define.chartData.textAreaStackedPer": "100% staplat område", "Common.define.chartData.textBar": "Linje", + "Common.define.chartData.textBarNormal": "Grupperad kolumn", + "Common.define.chartData.textBarNormal3d": "3-D grupperad kolumn", + "Common.define.chartData.textBarNormal3dPerspective": "3-D kolumn", + "Common.define.chartData.textBarStacked": "Staplad kolumn", + "Common.define.chartData.textBarStacked3d": "3-D staplad kolumn", + "Common.define.chartData.textBarStackedPer": "100% staplad kolumn", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% staplad kolumn", "Common.define.chartData.textCharts": "Diagram", "Common.define.chartData.textColumn": "Kolumn", + "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textComboAreaBar": "Staplat område - grupperad kolumn", + "Common.define.chartData.textComboBarLine": "Grupperad kolumn - rad", + "Common.define.chartData.textComboBarLineSecondary": "Grupperad kolumn - rad på andra axeln", + "Common.define.chartData.textComboCustom": "Anpassad kombination", + "Common.define.chartData.textDoughnut": "Doughnut", + "Common.define.chartData.textHBarNormal": "Grupperad stapel", + "Common.define.chartData.textHBarNormal3d": "3-D grupperad stapel", + "Common.define.chartData.textHBarStacked": "Staplad stapel", + "Common.define.chartData.textHBarStacked3d": "3-D staplad stapel", + "Common.define.chartData.textHBarStackedPer": "100% staplad stapel", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% staplad stapel", "Common.define.chartData.textLine": "Linje", + "Common.define.chartData.textLine3d": "3-D linje", + "Common.define.chartData.textLineMarker": "Linje med markörer", + "Common.define.chartData.textLineStacked": "Staplad linje", + "Common.define.chartData.textLineStackedMarker": "Staplad linje med markeringar", + "Common.define.chartData.textLineStackedPer": "100% staplad linje", + "Common.define.chartData.textLineStackedPerMarker": "100% staplad linje med markörer", + "Common.define.chartData.textPie": "Paj", + "Common.define.chartData.textPie3d": "3-D paj", + "Common.define.chartData.textPoint": "XY (Spridning)", + "Common.define.chartData.textScatter": "Sprida ut", + "Common.define.chartData.textScatterLine": "Sprid med raka linjer", + "Common.define.chartData.textScatterLineMarker": "Sprid med raka linjer och markeringar", + "Common.define.chartData.textScatterSmooth": "Sprid med mjuka linjer", + "Common.define.chartData.textScatterSmoothMarker": "Sprid med mjuka linjer och markeringar", + "Common.define.chartData.textStock": "Lager", "Common.define.chartData.textSurface": "Yta", + "Common.Translation.warnFileLocked": "Du kan inte redigera den här filen eftersom den redigeras i en annan app.", + "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", + "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", "Common.UI.Calendar.textApril": "April", "Common.UI.Calendar.textAugust": "Augusti", "Common.UI.Calendar.textDecember": "December", @@ -112,6 +157,7 @@ "Common.UI.Calendar.textShortTuesday": "Tis", "Common.UI.Calendar.textShortWednesday": "Ons", "Common.UI.Calendar.textYears": "År", + "Common.UI.ColorButton.textAutoColor": "Automatisk", "Common.UI.ColorButton.textNewColor": "Lägg till ny egen färg", "Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Inga ramar", @@ -136,6 +182,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokumentet har ändrats av en annan användare.
    Klicka för att spara dina ändringar och ladda uppdateringarna.", "Common.UI.ThemeColorPalette.textStandartColors": "Standard färger", "Common.UI.ThemeColorPalette.textThemeColors": "Temafärger", + "Common.UI.Themes.txtThemeClassicLight": "Classic Light", + "Common.UI.Themes.txtThemeDark": "Mörk", + "Common.UI.Themes.txtThemeLight": "Ljus", "Common.UI.Window.cancelButtonText": "Avbryt", "Common.UI.Window.closeButtonText": "Stäng", "Common.UI.Window.noButtonText": "Inga", @@ -156,6 +205,31 @@ "Common.Views.About.txtTel": "Tel.:", "Common.Views.About.txtVersion": "Version", "Common.Views.AutoCorrectDialog.textAdd": "Lägg till", + "Common.Views.AutoCorrectDialog.textApplyText": "Korrigera när du skriver", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrigering", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformat när du skriver", + "Common.Views.AutoCorrectDialog.textBulleted": "Automatiska punktlistor", + "Common.Views.AutoCorrectDialog.textBy": "Av", + "Common.Views.AutoCorrectDialog.textDelete": "Radera", + "Common.Views.AutoCorrectDialog.textFLSentence": "Stor bokstav varje mening", + "Common.Views.AutoCorrectDialog.textHyphens": "Bindestreck (--) med streck (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematisk autokorrigering", + "Common.Views.AutoCorrectDialog.textNumbered": "Automatiska nummerlistor", + "Common.Views.AutoCorrectDialog.textQuotes": "\"Raka citat\" med \"smarta citat\"", + "Common.Views.AutoCorrectDialog.textRecognized": "Hittade funktioner", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Följande uttryck är igenkända matematiska uttryck. De kommer inte att kursiveras automatiskt.", + "Common.Views.AutoCorrectDialog.textReplace": "Ersätt", + "Common.Views.AutoCorrectDialog.textReplaceText": "Ersätt när du skriver", + "Common.Views.AutoCorrectDialog.textReplaceType": "Ersätt text när du skriver", + "Common.Views.AutoCorrectDialog.textReset": "Återställ", + "Common.Views.AutoCorrectDialog.textResetAll": "Återställ till standard", + "Common.Views.AutoCorrectDialog.textRestore": "Återställ", + "Common.Views.AutoCorrectDialog.textTitle": "Autokorrigering", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Erkända funktioner får endast innehålla bokstäverna A till Z, versaler eller gemener.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Alla uttryck du har lagt till kommer att tas bort och de borttagna kommer att återställas. Vill du fortsätta?", + "Common.Views.AutoCorrectDialog.warnReplace": "Autokorrigeringsposten för %1 finns redan. Vill du ersätta den?", + "Common.Views.AutoCorrectDialog.warnReset": "All autokorrigering som du lagt till kommer att tas bort och ändringar kommer att återställas till sina ursprungliga värden. Vill du fortsätta?", + "Common.Views.AutoCorrectDialog.warnRestore": "Autokorrigeringen för %1 återställs till sitt ursprungliga värde. Vill du fortsätta?", "Common.Views.Chat.textSend": "Skicka", "Common.Views.Comments.textAdd": "Lägg till", "Common.Views.Comments.textAddComment": "Lägg till kommentar", @@ -187,11 +261,13 @@ "Common.Views.ExternalMergeEditor.textSave": "Spara & avsluta", "Common.Views.ExternalMergeEditor.textTitle": "Slå ihop mottagare", "Common.Views.Header.labelCoUsersDescr": "Dokumentet redigeras för närvarande av flera användare.", + "Common.Views.Header.textAddFavorite": "Markera som favorit", "Common.Views.Header.textAdvSettings": "Avancerade inställningar", "Common.Views.Header.textBack": "Gå till dokument", "Common.Views.Header.textCompactView": "Dölj verktygsrad", "Common.Views.Header.textHideLines": "Dölj linjaler", "Common.Views.Header.textHideStatusBar": "Dölj statusrad", + "Common.Views.Header.textRemoveFavorite": "Ta bort från favoriter", "Common.Views.Header.textZoom": "Zooma", "Common.Views.Header.tipAccessRights": "Hantera åtkomsträttigheter för dokument", "Common.Views.Header.tipDownload": "Ladda ner fil", @@ -265,10 +341,15 @@ "Common.Views.ReviewChanges.strFastDesc": "Realtidssamarbete. Alla ändringar sparas automatiskt.", "Common.Views.ReviewChanges.strStrict": "Strikt", "Common.Views.ReviewChanges.strStrictDesc": "Använd 'Spara'-knappen för att synkronisera de förändringar du och andra gör.", + "Common.Views.ReviewChanges.textEnable": "Aktivera", + "Common.Views.ReviewChanges.textWarnTrackChanges": "Spårändringar slås PÅ för alla användare med full åtkomst. Nästa gång någon öppnar dokumentet kommer Spårändringar att vara aktiverade.", + "Common.Views.ReviewChanges.textWarnTrackChangesTitle": "Aktivera spåra ändringar för alla?", "Common.Views.ReviewChanges.tipAcceptCurrent": "Acceptera nuvarande ändring", "Common.Views.ReviewChanges.tipCoAuthMode": "Ställ in samredigeringsläge", "Common.Views.ReviewChanges.tipCommentRem": "Ta bort kommentarer", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Ta bort aktuella kommentarer", + "Common.Views.ReviewChanges.tipCommentResolve": "Lös kommentarer", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Lös aktuella kommentarer", "Common.Views.ReviewChanges.tipCompare": "Jämför det aktuella dokumentet med ett annat", "Common.Views.ReviewChanges.tipHistory": "Visa versionshistorik", "Common.Views.ReviewChanges.tipRejectCurrent": "Avvisa nuvarande ändring", @@ -289,6 +370,11 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Ta bort mina kommentarer", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Ta bort mina aktuella kommentarer", "Common.Views.ReviewChanges.txtCommentRemove": "Ta bort", + "Common.Views.ReviewChanges.txtCommentResolve": "Lös", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Lös alla kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Lös aktuella kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Lös mina kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Lös mina nuvarande kommentarer", "Common.Views.ReviewChanges.txtCompare": "Jämför", "Common.Views.ReviewChanges.txtDocLang": "Språk", "Common.Views.ReviewChanges.txtFinal": "Alla ändringar accepterade", @@ -297,6 +383,10 @@ "Common.Views.ReviewChanges.txtMarkup": "Alla ändringar (Redigering)", "Common.Views.ReviewChanges.txtMarkupCap": "Markering", "Common.Views.ReviewChanges.txtNext": "Nästa", + "Common.Views.ReviewChanges.txtOff": "OFF för mig", + "Common.Views.ReviewChanges.txtOffGlobal": "OFF för mig och alla", + "Common.Views.ReviewChanges.txtOn": "ON för mig", + "Common.Views.ReviewChanges.txtOnGlobal": "ON för mig och alla", "Common.Views.ReviewChanges.txtOriginal": "Alla ändringar avvisades (Förhandsgranska)", "Common.Views.ReviewChanges.txtOriginalCap": "Orginal", "Common.Views.ReviewChanges.txtPrev": "Föregående", @@ -322,6 +412,7 @@ "Common.Views.ReviewPopover.textCancel": "Avbryt", "Common.Views.ReviewPopover.textClose": "Stäng", "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textFollowMove": "Följ flytta", "Common.Views.ReviewPopover.textMention": "+omnämnande ger åtkomst till dokumentet och skickar ett e-postmeddelande", "Common.Views.ReviewPopover.textMentionNotify": "+omnämning meddelar användaren via e-post", "Common.Views.ReviewPopover.textOpenAgain": "Öppna igen", @@ -336,6 +427,7 @@ "Common.Views.SignDialog.textChange": "Ändra", "Common.Views.SignDialog.textInputName": "Infoga undertecknares namn", "Common.Views.SignDialog.textItalic": "Kursiv", + "Common.Views.SignDialog.textNameError": "Undertecknare får inte vara tom.", "Common.Views.SignDialog.textPurpose": "Syfte för att underteckna det här dokumentet", "Common.Views.SignDialog.textSelect": "Välj", "Common.Views.SignDialog.textSelectImage": "Välj bild", @@ -354,10 +446,36 @@ "Common.Views.SignSettingsDialog.textShowDate": "Visa datum för signatur på signaturraden", "Common.Views.SignSettingsDialog.textTitle": "Skapa signatur", "Common.Views.SignSettingsDialog.txtEmpty": "Detta fält är obligatoriskt", + "Common.Views.SymbolTableDialog.textCharacter": "Tecken", "Common.Views.SymbolTableDialog.textCode": "Unicode HEX värde", + "Common.Views.SymbolTableDialog.textCopyright": "Upphovsrättstecken", + "Common.Views.SymbolTableDialog.textDCQuote": "Avslutande dubbelt citattecken", + "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis", + "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", + "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", + "Common.Views.SymbolTableDialog.textEnDash": "En Dash", + "Common.Views.SymbolTableDialog.textEnSpace": "En Space", "Common.Views.SymbolTableDialog.textFont": "Font", + "Common.Views.SymbolTableDialog.textNBHyphen": "Icke-brytande bindestreck", + "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space", + "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow tecken", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", "Common.Views.SymbolTableDialog.textRange": "Omgång", + "Common.Views.SymbolTableDialog.textRecent": "Tidigare använda symboler", + "Common.Views.SymbolTableDialog.textRegistered": "Registrerat tecken", + "Common.Views.SymbolTableDialog.textSCQuote": "Avslutande enkelt citattecken", + "Common.Views.SymbolTableDialog.textSection": "Avsnittstecken", + "Common.Views.SymbolTableDialog.textShortcut": "Snabbtangent", + "Common.Views.SymbolTableDialog.textSHyphen": "Mjuk bindestreck", + "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote", + "Common.Views.SymbolTableDialog.textSpecial": "Specialtecken", + "Common.Views.SymbolTableDialog.textSymbols": "Symboler", "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Varumärkesymbol", + "Common.Views.UserNameDialog.textDontShow": "Fråga inte igen", + "Common.Views.UserNameDialog.textLabel": "Etikett:", + "Common.Views.UserNameDialog.textLabelError": "Etiketten får inte vara tom.", "DE.Controllers.LeftMenu.leavePageText": "Alla ändringar som inte sparats i detta dokument kommer att gå förlorade.
    Klicka på \"Avbryt\" och sedan \"Spara\" för att spara dem. Klicka på \"OK\" för att kasta alla ändringar som inte sparats.", "DE.Controllers.LeftMenu.newDocumentTitle": "Namnlöst dokument", "DE.Controllers.LeftMenu.notcriticalErrorTitle": "Varning", @@ -383,6 +501,7 @@ "DE.Controllers.Main.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.
    Vänligen kontakta din systemadministratör.", "DE.Controllers.Main.errorBadImageUrl": "Bildens URL är felaktig", "DE.Controllers.Main.errorCoAuthoringDisconnect": "Serveranslutning förlorade. Dokumentet kan inte redigeras just nu.", + "DE.Controllers.Main.errorComboSeries": "Välj minst två serier med data för att skapa ett kombinationsschema.", "DE.Controllers.Main.errorCompare": "Funktionen jämför dokument är inte tillgänglig vid samredigering.", "DE.Controllers.Main.errorConnectToServer": "Dokumentet kunde inte sparas. Kontrollera anslutningsinställningarna eller kontakta administratören
    När du klickar på \"OK\"-knappen, kommer du att bli ombedd att ladda ner dokumentet.", "DE.Controllers.Main.errorDatabaseConnection": "Externt fel.
    Databasen gick inte att koppla. Kontakta support om felet består.", @@ -405,7 +524,9 @@ "DE.Controllers.Main.errorSessionAbsolute": "Dokumentet redigeringssession har löpt ut. Vänligen ladda om sidan.", "DE.Controllers.Main.errorSessionIdle": "Dokumentet har inte redigerats under en ganska lång tid. Var vänlig att ladda om sidan.", "DE.Controllers.Main.errorSessionToken": "Anslutningen till servern har avbrutits. Vänligen ladda om sidan.", + "DE.Controllers.Main.errorSetPassword": "Lösenord kunde inte ställas in.", "DE.Controllers.Main.errorStockChart": "Felaktig radordning. Att bygga en börsdiagram plats data på arket i följande ordning:
    öppningspris, max pris, min pris, slutkurs.", + "DE.Controllers.Main.errorSubmit": "Gick ej att verkställa.", "DE.Controllers.Main.errorToken": "Dokumentets säkerhetstoken är inte korrekt.
    Vänligen kontakta din dokumentserver administratör.", "DE.Controllers.Main.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
    Var vänlig och Kontakta din dokumentserver administratör.", "DE.Controllers.Main.errorUpdateVersion": "Filens version har ändrats. Sidan kommer laddas om.", @@ -414,6 +535,7 @@ "DE.Controllers.Main.errorUsersExceed": "Antalet användare som tillåts av licensen överskreds", "DE.Controllers.Main.errorViewerDisconnect": "Anslutningen bryts. Du kan fortfarande se dokumentet
    men kommer inte att kunna ladda ner eller skriva ut tills anslutningen är återställd.", "DE.Controllers.Main.leavePageText": "Du har osparade ändringar i det här dokumentet. Klicka på \"Stanna på den här sidan\", sedan \"Spara\" för att spara dem. Klicka på \"Lämna den här sidan\" för att förkasta alla osparade ändringar.", + "DE.Controllers.Main.leavePageTextOnClose": "Alla ändringar som inte sparats i detta dokument kommer att gå förlorade.
    Klicka på \"Avbryt\" och sedan \"Spara\" för att spara dem. Klicka på \"OK\" för att kasta alla ändringar som inte sparats.", "DE.Controllers.Main.loadFontsTextText": "Laddar data...", "DE.Controllers.Main.loadFontsTitleText": "Laddar data", "DE.Controllers.Main.loadFontTextText": "Laddar data...", @@ -436,6 +558,7 @@ "DE.Controllers.Main.requestEditFailedMessageText": "Någon annan redigerar detta dokument just nu. Försök igen senare.", "DE.Controllers.Main.requestEditFailedTitleText": "Ingen behörighet", "DE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas", + "DE.Controllers.Main.saveErrorTextDesktop": "Den här filen kan inte sparas eller skapas.
    Möjliga orsaker är:
    1. Filen är skrivskyddad.
    2. Filen redigeras av andra användare.
    3. Disken är full eller skadad.", "DE.Controllers.Main.savePreparingText": "Förbereder att spara", "DE.Controllers.Main.savePreparingTitle": "Förbereder att spara. Vänta...", "DE.Controllers.Main.saveTextText": "Sparar dokument...", @@ -447,18 +570,28 @@ "DE.Controllers.Main.splitMaxColsErrorText": "Antalet kolumner måste vara mindre än% 1.", "DE.Controllers.Main.splitMaxRowsErrorText": "Antalet rader måste vara mindre än %1.", "DE.Controllers.Main.textAnonymous": "Anonym", + "DE.Controllers.Main.textApplyAll": "Tillämpa alla ekvationer", "DE.Controllers.Main.textBuyNow": "Besök webbplats", "DE.Controllers.Main.textChangesSaved": "Alla ändringar har sparats", "DE.Controllers.Main.textClose": "Stäng", "DE.Controllers.Main.textCloseTip": "Klicka för att stänga tipset", "DE.Controllers.Main.textContactUs": "Kontakta säljare", + "DE.Controllers.Main.textConvertEquation": "Denna ekvation skapades med en gammal version av ekvationsredigeraren som inte längre stöds. Om du vill redigera den konverterar du ekvationen till Office Math ML-format.
    Konvertera nu?", + "DE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren.
    Kontakta vår försäljningsavdelning för att få en offert.", + "DE.Controllers.Main.textGuest": "Gäst", + "DE.Controllers.Main.textHasMacros": "Filen innehåller automatiska makron.
    Vill du köra makron?", "DE.Controllers.Main.textLearnMore": "Lär dig mer", "DE.Controllers.Main.textLoadingDocument": "Laddar dokument", + "DE.Controllers.Main.textLongName": "Ange namn (max 128 tecken).", "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE anslutningsbegränsning", "DE.Controllers.Main.textPaidFeature": "Betald funktion", + "DE.Controllers.Main.textRemember": "Kom ihåg mitt val för alla filer", + "DE.Controllers.Main.textRenameError": "Användarnamn får inte var tomt.", + "DE.Controllers.Main.textRenameLabel": "Ange namn för samarbete", "DE.Controllers.Main.textShape": "Form", "DE.Controllers.Main.textStrict": "Strikt läge", "DE.Controllers.Main.textTryUndoRedo": "Ångra/Återställ-funktionerna är inaktiva i snabbt samredigeringsläget.
    Klicka på knappen 'Strikt läge' för att växla till strikt samredigeringsläge och redigera filen utan andra användares påverkan och skicka dina ändringar först efter att du har sparat dem. Du kan växla mellan samredigeringslägena med hjälp av avancerade inställningar.", + "DE.Controllers.Main.textTryUndoRedoWarn": "Ångra-funktionerna är inaktiverade för snabb samredigeringsläge.", "DE.Controllers.Main.titleLicenseExp": "Licensen har utgått", "DE.Controllers.Main.titleServerVersion": "Editorn är uppdaterad", "DE.Controllers.Main.titleUpdateVersion": "Version ändrad", @@ -471,9 +604,11 @@ "DE.Controllers.Main.txtCallouts": "Länktext", "DE.Controllers.Main.txtCharts": "Diagram", "DE.Controllers.Main.txtChoose": "Välj ett objekt", + "DE.Controllers.Main.txtClickToLoad": "Klicka för att ladda bild", "DE.Controllers.Main.txtCurrentDocument": "Aktuellt dokument", "DE.Controllers.Main.txtDiagramTitle": "Diagram titel", "DE.Controllers.Main.txtEditingMode": "Ställ in redigeringsläge", + "DE.Controllers.Main.txtEndOfFormula": "Oväntat slut på formeln", "DE.Controllers.Main.txtEnterDate": "Ange ett datum", "DE.Controllers.Main.txtErrorLoadHistory": "Gick inte ladda historik", "DE.Controllers.Main.txtEvenPage": "Jämn sida", @@ -487,8 +622,12 @@ "DE.Controllers.Main.txtLines": "Rader", "DE.Controllers.Main.txtMainDocOnly": "Fel! Endast huvuddokument.", "DE.Controllers.Main.txtMath": "Matte", + "DE.Controllers.Main.txtMissArg": "Argument saknas", + "DE.Controllers.Main.txtMissOperator": "Saknad operator", "DE.Controllers.Main.txtNeedSynchronize": "Du har uppdateringar", + "DE.Controllers.Main.txtNone": "ingen", "DE.Controllers.Main.txtNoTableOfContents": "Inga innehållsförteckningar hittades.", + "DE.Controllers.Main.txtNoTableOfFigures": "Ingen tabell med siffror hittades.", "DE.Controllers.Main.txtNoText": "Fel! Ingen text med angiven stil i dokumentet.", "DE.Controllers.Main.txtNotInTable": "Är inte i tabellen", "DE.Controllers.Main.txtNotValidBookmark": "Fel! Inte en giltig självreferens för bokmärke.", @@ -498,26 +637,65 @@ "DE.Controllers.Main.txtSameAsPrev": "Samma som föregående", "DE.Controllers.Main.txtSection": "-Sektion", "DE.Controllers.Main.txtSeries": "Serier", + "DE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)", + "DE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)", + "DE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)", + "DE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)", + "DE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)", + "DE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)", "DE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tillbaka eller föregående knapp", "DE.Controllers.Main.txtShape_actionButtonBeginning": "Startknapp", "DE.Controllers.Main.txtShape_actionButtonBlank": "Tömknapp", "DE.Controllers.Main.txtShape_actionButtonDocument": "Dokumentknapp", + "DE.Controllers.Main.txtShape_actionButtonEnd": "Slutknapp", "DE.Controllers.Main.txtShape_actionButtonForwardNext": "Framåt eller nästa knapp", "DE.Controllers.Main.txtShape_actionButtonHelp": "Hjälpknapp", "DE.Controllers.Main.txtShape_actionButtonHome": "Hemknapp", "DE.Controllers.Main.txtShape_actionButtonInformation": "Informationsknapp", + "DE.Controllers.Main.txtShape_actionButtonMovie": "Film knapp", "DE.Controllers.Main.txtShape_actionButtonReturn": "Returknapp", "DE.Controllers.Main.txtShape_actionButtonSound": "Ljudknapp", "DE.Controllers.Main.txtShape_arc": "Båge", "DE.Controllers.Main.txtShape_bentArrow": "Böjd pil", + "DE.Controllers.Main.txtShape_bentConnector5": "Elbow Connector", + "DE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow Arrow Connector", + "DE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow Double-Arrow Connector", + "DE.Controllers.Main.txtShape_bentUpArrow": "Böjd uppåtpil", "DE.Controllers.Main.txtShape_bevel": "Fasning", + "DE.Controllers.Main.txtShape_blockArc": "Block båge", + "DE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1", + "DE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2", + "DE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3", + "DE.Controllers.Main.txtShape_bracePair": "Double Brace", + "DE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)", + "DE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)", + "DE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)", + "DE.Controllers.Main.txtShape_can": "Burk", + "DE.Controllers.Main.txtShape_chevron": "Chevron", + "DE.Controllers.Main.txtShape_chord": "Chord", + "DE.Controllers.Main.txtShape_circularArrow": "Cirkulär pil", "DE.Controllers.Main.txtShape_cloud": "Moln", + "DE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout", "DE.Controllers.Main.txtShape_corner": "Hörn", "DE.Controllers.Main.txtShape_cube": "Kub", + "DE.Controllers.Main.txtShape_curvedConnector3": "Böjd anslutning", + "DE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Böjd pilanslutning", + "DE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Böjd dubbelpil", + "DE.Controllers.Main.txtShape_curvedDownArrow": "Böjd nedåtpil", + "DE.Controllers.Main.txtShape_curvedLeftArrow": "Böjd vänsterpil", + "DE.Controllers.Main.txtShape_curvedRightArrow": "Böjd högerpil", + "DE.Controllers.Main.txtShape_curvedUpArrow": "Böjd uppåtpil", + "DE.Controllers.Main.txtShape_decagon": "Decagon", "DE.Controllers.Main.txtShape_diagStripe": "Diagonal rand", "DE.Controllers.Main.txtShape_diamond": "Diamant", + "DE.Controllers.Main.txtShape_dodecagon": "Dodecagon", + "DE.Controllers.Main.txtShape_donut": "Donut", + "DE.Controllers.Main.txtShape_doubleWave": "Double Wave", "DE.Controllers.Main.txtShape_downArrow": "Nedåtpil", + "DE.Controllers.Main.txtShape_downArrowCallout": "Down Arrow Callout", "DE.Controllers.Main.txtShape_ellipse": "Ellips", + "DE.Controllers.Main.txtShape_ellipseRibbon": "Curved Down Ribbon", + "DE.Controllers.Main.txtShape_ellipseRibbon2": "Curved Up Ribbon", "DE.Controllers.Main.txtShape_flowChartAlternateProcess": "Födesschema: Alternativ process", "DE.Controllers.Main.txtShape_flowChartCollate": "Flödesschema: Collate", "DE.Controllers.Main.txtShape_flowChartConnector": "Flödesschema: Anslutning", @@ -552,13 +730,22 @@ "DE.Controllers.Main.txtShape_heart": "Hjärta", "DE.Controllers.Main.txtShape_heptagon": "Heptagon", "DE.Controllers.Main.txtShape_hexagon": "Sexhörning", + "DE.Controllers.Main.txtShape_homePlate": "Pentagon", "DE.Controllers.Main.txtShape_horizontalScroll": "Horisontell rullning", "DE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1", "DE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2", "DE.Controllers.Main.txtShape_leftArrow": "Vänsterpil", + "DE.Controllers.Main.txtShape_leftArrowCallout": "Left Arrow Callout", + "DE.Controllers.Main.txtShape_leftBrace": "Left Brace", + "DE.Controllers.Main.txtShape_leftBracket": "Left Bracket", + "DE.Controllers.Main.txtShape_leftRightArrow": "Vänster-höger-pil", + "DE.Controllers.Main.txtShape_leftRightArrowCallout": "Left Right Arrow Callout", + "DE.Controllers.Main.txtShape_leftRightUpArrow": "Vänster höger uppåtpil", + "DE.Controllers.Main.txtShape_leftUpArrow": "Vänster uppåtpil", "DE.Controllers.Main.txtShape_lightningBolt": "Blixt", "DE.Controllers.Main.txtShape_line": "Linje", "DE.Controllers.Main.txtShape_lineWithArrow": "Pil", + "DE.Controllers.Main.txtShape_lineWithTwoArrows": "Dubbel pil", "DE.Controllers.Main.txtShape_mathDivide": "Division", "DE.Controllers.Main.txtShape_mathEqual": "Lika med", "DE.Controllers.Main.txtShape_mathMinus": "Minus", @@ -567,13 +754,34 @@ "DE.Controllers.Main.txtShape_mathPlus": "Plus", "DE.Controllers.Main.txtShape_moon": "Måne", "DE.Controllers.Main.txtShape_noSmoking": "\"Ingen\" symbol", + "DE.Controllers.Main.txtShape_notchedRightArrow": "Skårad högerpil", "DE.Controllers.Main.txtShape_octagon": "Oktogon", + "DE.Controllers.Main.txtShape_parallelogram": "Parallellogram", + "DE.Controllers.Main.txtShape_pentagon": "Pentagon", + "DE.Controllers.Main.txtShape_pie": "Paj", + "DE.Controllers.Main.txtShape_plaque": "Underteckna", "DE.Controllers.Main.txtShape_plus": "Plus", + "DE.Controllers.Main.txtShape_polyline1": "Klotter", "DE.Controllers.Main.txtShape_polyline2": "Fri form", + "DE.Controllers.Main.txtShape_quadArrow": "Quad Arrow", + "DE.Controllers.Main.txtShape_quadArrowCallout": "Quad Arrow Callout", "DE.Controllers.Main.txtShape_rect": "Rektangel", + "DE.Controllers.Main.txtShape_ribbon": "Down Ribbon", + "DE.Controllers.Main.txtShape_ribbon2": "Uppåt band", "DE.Controllers.Main.txtShape_rightArrow": "Högerpil", + "DE.Controllers.Main.txtShape_rightArrowCallout": "Right Arrow Callout", + "DE.Controllers.Main.txtShape_rightBrace": "Right Brace", + "DE.Controllers.Main.txtShape_rightBracket": "Right Bracket", + "DE.Controllers.Main.txtShape_round1Rect": "Rektangel med ett rundat hörn", + "DE.Controllers.Main.txtShape_round2DiagRect": "Rektangel med rundade hörn diagonalt", + "DE.Controllers.Main.txtShape_round2SameRect": "Rektangel med rundade hörn samma sida", + "DE.Controllers.Main.txtShape_roundRect": "Rektangel med avrundade hörn", "DE.Controllers.Main.txtShape_rtTriangle": "Höger triangel", "DE.Controllers.Main.txtShape_smileyFace": "Glad gubbe", + "DE.Controllers.Main.txtShape_snip1Rect": "Rektangel med ett klippt hörn", + "DE.Controllers.Main.txtShape_snip2DiagRect": "Rektangel med klippta hörn diagonalt", + "DE.Controllers.Main.txtShape_snip2SameRect": "Rektangel med klippta hörn på en sida", + "DE.Controllers.Main.txtShape_snipRoundRect": "Rektangel med ett klippt och rundat hörn", "DE.Controllers.Main.txtShape_spline": "Kurva", "DE.Controllers.Main.txtShape_star10": "10-punkts stjärna", "DE.Controllers.Main.txtShape_star12": "12-punkts stjärna", @@ -585,16 +793,24 @@ "DE.Controllers.Main.txtShape_star6": "6-punkts stjärna", "DE.Controllers.Main.txtShape_star7": "7-punkts stjärna", "DE.Controllers.Main.txtShape_star8": "8-punkts stjärna", + "DE.Controllers.Main.txtShape_stripedRightArrow": "Genomstruken högerpil", "DE.Controllers.Main.txtShape_sun": "Sol", + "DE.Controllers.Main.txtShape_teardrop": "Tår", "DE.Controllers.Main.txtShape_textRect": "Textruta", + "DE.Controllers.Main.txtShape_trapezoid": "Trapes", "DE.Controllers.Main.txtShape_triangle": "Triangel", "DE.Controllers.Main.txtShape_upArrow": "Pil upp", + "DE.Controllers.Main.txtShape_upArrowCallout": "Pratbubbla uppåtpil", "DE.Controllers.Main.txtShape_upDownArrow": "Upp-Ner pil", "DE.Controllers.Main.txtShape_uturnArrow": "U-sväng pil", "DE.Controllers.Main.txtShape_verticalScroll": "Vertikal rullning", "DE.Controllers.Main.txtShape_wave": "Våg", + "DE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout", + "DE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular Callout", + "DE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout", "DE.Controllers.Main.txtStarsRibbons": "Stjärnor & banner", "DE.Controllers.Main.txtStyle_Caption": "Rubrik", + "DE.Controllers.Main.txtStyle_endnote_text": "Slutnot text", "DE.Controllers.Main.txtStyle_footnote_text": "Fotnot text", "DE.Controllers.Main.txtStyle_Heading_1": "Rubrik 1", "DE.Controllers.Main.txtStyle_Heading_2": "Rubrik 2", @@ -613,10 +829,16 @@ "DE.Controllers.Main.txtStyle_Subtitle": "Undertitel", "DE.Controllers.Main.txtStyle_Title": "Titel", "DE.Controllers.Main.txtSyntaxError": "Syntaxfel", + "DE.Controllers.Main.txtTableInd": "Tabellindex kan inte vara noll", "DE.Controllers.Main.txtTableOfContents": "Innehållsförteckning", + "DE.Controllers.Main.txtTableOfFigures": "tabell över siffror", + "DE.Controllers.Main.txtTOCHeading": "Rubrik förteckning", + "DE.Controllers.Main.txtTooLarge": "Tal för stort för att formatera", + "DE.Controllers.Main.txtTypeEquation": "Skriv en ekvation här.", "DE.Controllers.Main.txtUndefBookmark": "Odefinierad bokmärke", "DE.Controllers.Main.txtXAxis": "X-axel", "DE.Controllers.Main.txtYAxis": "Y-axel", + "DE.Controllers.Main.txtZeroDivide": "Nolldivision", "DE.Controllers.Main.unknownErrorText": "Okänt fel.", "DE.Controllers.Main.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "DE.Controllers.Main.uploadDocExtMessage": "Okänt dokumentformat.", @@ -632,6 +854,8 @@ "DE.Controllers.Main.warnBrowserZoom": "Din webbläsares nuvarande zoominställningar stöds inte fullt ut. Återställ till standard zoom genom att trycka på Ctrl + 0.", "DE.Controllers.Main.warnLicenseExceeded": "Antalet samtidiga anslutningar till dokumentservern har överskridits och dokumentet öppnas endast för visning.
    Vänligen kontakta din systemadministratör för mer information.", "DE.Controllers.Main.warnLicenseExp": "Din licens har gått ut.
    Förnya din licens och uppdatera sidan.", + "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licensen ogiltig.
    Ingen access till redigeringsfunktioner.
    Kontakta din administratör.", + "DE.Controllers.Main.warnLicenseLimitedRenewed": "Licensen måste förnyas.
    Endast begränsad funktionalitet.
    Kontakta din administratör för full funktionalitet.", "DE.Controllers.Main.warnLicenseUsersExceeded": "Antalet samtidiga användare har överskridits och dokumentet öppnas endast för visning.
    Vänligen kontakta din systemadministratör för mer information.", "DE.Controllers.Main.warnNoLicense": "Den här versionen av %1 har vissa begränsningar för samtidiga anslutningar till dokumentservern.
    Om du behöver mer, överväg att köpa en kommersiell licens.", "DE.Controllers.Main.warnNoLicenseUsers": "Den här versionen av %1 har vissa begränsningar för samtidiga användare.
    Om du behöver mer, överväg att köpa en kommersiell licens.", @@ -639,6 +863,7 @@ "DE.Controllers.Navigation.txtBeginning": "Början av dokumentet", "DE.Controllers.Navigation.txtGotoBeginning": "Gå till början av dokumentet", "DE.Controllers.Statusbar.textHasChanges": "Nya ändringar har spårats", + "DE.Controllers.Statusbar.textSetTrackChanges": "Du är i spårändringsläge", "DE.Controllers.Statusbar.textTrackChanges": "Dokumentet är öppnat med Spåra Ändringar läge aktiverat", "DE.Controllers.Statusbar.tipReview": "Spåra ändringar", "DE.Controllers.Statusbar.zoomText": "Zooma {0}%", @@ -650,6 +875,7 @@ "DE.Controllers.Toolbar.textFontSizeErr": "Det angivna värdet är inkorrekt.
    Vänligen ange ett numeriskt värde mellan 0 och 300", "DE.Controllers.Toolbar.textFraction": "Fraktioner", "DE.Controllers.Toolbar.textFunction": "Funktioner", + "DE.Controllers.Toolbar.textGroup": "Grupp", "DE.Controllers.Toolbar.textInsert": "Infoga", "DE.Controllers.Toolbar.textIntegral": "Integraler", "DE.Controllers.Toolbar.textLargeOperator": "Stora operatorer", @@ -659,19 +885,23 @@ "DE.Controllers.Toolbar.textRadical": "Radikaler", "DE.Controllers.Toolbar.textScript": "Skript", "DE.Controllers.Toolbar.textSymbols": "Symboler", + "DE.Controllers.Toolbar.textTabForms": "Formulär", "DE.Controllers.Toolbar.textWarning": "Varning", "DE.Controllers.Toolbar.txtAccent_Accent": "Akut", "DE.Controllers.Toolbar.txtAccent_ArrowD": "Höger-vänster pil ovanför", "DE.Controllers.Toolbar.txtAccent_ArrowL": "Vänsterpil ovan", "DE.Controllers.Toolbar.txtAccent_ArrowR": "Åt höger pilen ovanför", "DE.Controllers.Toolbar.txtAccent_Bar": "Linje", + "DE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", "DE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", "DE.Controllers.Toolbar.txtAccent_BorderBox": "Boxad formel (med hållare)", "DE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxad formel (exempel)", "DE.Controllers.Toolbar.txtAccent_Check": "Markera", + "DE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Understöd", "DE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Oberbrace", "DE.Controllers.Toolbar.txtAccent_Custom_1": "Vektor A", "DE.Controllers.Toolbar.txtAccent_Custom_2": "ABC med overbar", + "DE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y med overbar", "DE.Controllers.Toolbar.txtAccent_DDDot": "Trippel punkt", "DE.Controllers.Toolbar.txtAccent_DDot": "Dubbel punkt", "DE.Controllers.Toolbar.txtAccent_Dot": "Punkt", @@ -797,6 +1027,11 @@ "DE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summering", "DE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt", "DE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Koppla ihop", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "DE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", "DE.Controllers.Toolbar.txtLargeOperator_Intersection": "Skärning", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Skärning", "DE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Skärning", @@ -856,6 +1091,7 @@ "DE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Åt höger pilen nedanför", "DE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Åt höger pilen ovanför", "DE.Controllers.Toolbar.txtOperator_ColonEquals": "Kolon är lika med", + "DE.Controllers.Toolbar.txtOperator_Custom_1": "Avkastning", "DE.Controllers.Toolbar.txtOperator_Custom_2": "Delta utbyten", "DE.Controllers.Toolbar.txtOperator_Definition": "Lika med enligt definition", "DE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta lika med", @@ -956,6 +1192,7 @@ "DE.Controllers.Toolbar.txtSymbol_sqrt": "Radikal skylt", "DE.Controllers.Toolbar.txtSymbol_tau": "Tau", "DE.Controllers.Toolbar.txtSymbol_therefore": "Därför", + "DE.Controllers.Toolbar.txtSymbol_theta": "Theta", "DE.Controllers.Toolbar.txtSymbol_times": "Flera tecken", "DE.Controllers.Toolbar.txtSymbol_uparrow": "Pil upp", "DE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", @@ -964,7 +1201,10 @@ "DE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant", "DE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant", "DE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", + "DE.Controllers.Toolbar.txtSymbol_vartheta": "Theta variant", "DE.Controllers.Toolbar.txtSymbol_vdots": "Vertikal ellips", + "DE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "DE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "DE.Controllers.Viewport.textFitPage": "Anpassa till sida", "DE.Controllers.Viewport.textFitWidth": "Anpassa till bredd", "DE.Views.AddNewCaptionLabelDialog.textLabel": "Etikett:", @@ -974,6 +1214,7 @@ "DE.Views.BookmarksDialog.textClose": "Stäng", "DE.Views.BookmarksDialog.textCopy": "Kopiera", "DE.Views.BookmarksDialog.textDelete": "Radera", + "DE.Views.BookmarksDialog.textGetLink": "Hämta länk", "DE.Views.BookmarksDialog.textGoto": "Gå till", "DE.Views.BookmarksDialog.textHidden": "Gömda bokmärken", "DE.Views.BookmarksDialog.textLocation": "Placering", @@ -988,13 +1229,16 @@ "DE.Views.CaptionDialog.textChapter": "Kapitel börjar med stil", "DE.Views.CaptionDialog.textChapterInc": "Inkludera kapitelnummer", "DE.Views.CaptionDialog.textColon": "kolon", + "DE.Views.CaptionDialog.textDash": "dash", "DE.Views.CaptionDialog.textDelete": "Radera", "DE.Views.CaptionDialog.textEquation": "Ekvation", "DE.Views.CaptionDialog.textExamples": "Exempel: Tabell 2-A, Bild 1.IV", + "DE.Views.CaptionDialog.textExclude": "Exclude label from caption", "DE.Views.CaptionDialog.textFigure": "Figur", "DE.Views.CaptionDialog.textHyphen": "bindestreck", "DE.Views.CaptionDialog.textInsert": "Infoga", "DE.Views.CaptionDialog.textLabel": "Etikett", + "DE.Views.CaptionDialog.textLongDash": "long dash", "DE.Views.CaptionDialog.textNumbering": "Numrering", "DE.Views.CaptionDialog.textPeriod": "period", "DE.Views.CaptionDialog.textSeparator": "Använd separator", @@ -1005,6 +1249,7 @@ "DE.Views.CellsAddDialog.textLeft": "Till vänster", "DE.Views.CellsAddDialog.textRight": "Till höger", "DE.Views.CellsAddDialog.textRow": "Rader", + "DE.Views.CellsAddDialog.textTitle": "Infoga flera", "DE.Views.CellsAddDialog.textUp": "Ovanför markören", "DE.Views.ChartSettings.textAdvanced": "Visa avancerade inställningar", "DE.Views.ChartSettings.textChartType": "Ändra diagramtyp", @@ -1031,6 +1276,7 @@ "DE.Views.ControlSettingsDialog.textBox": "Bindande låda", "DE.Views.ControlSettingsDialog.textChange": "Redigera", "DE.Views.ControlSettingsDialog.textCheckbox": "Kryssruta", + "DE.Views.ControlSettingsDialog.textChecked": "Markerad symbol", "DE.Views.ControlSettingsDialog.textColor": "Färg", "DE.Views.ControlSettingsDialog.textCombobox": "Kombinationsruta", "DE.Views.ControlSettingsDialog.textDate": "Datumformat", @@ -1043,26 +1289,70 @@ "DE.Views.ControlSettingsDialog.textLock": "Låsning", "DE.Views.ControlSettingsDialog.textName": "Titel", "DE.Views.ControlSettingsDialog.textNone": "Ingen", + "DE.Views.ControlSettingsDialog.textPlaceholder": "Platshållare", "DE.Views.ControlSettingsDialog.textShowAs": "Visa som", "DE.Views.ControlSettingsDialog.textSystemColor": "System", "DE.Views.ControlSettingsDialog.textTag": "Etikett", "DE.Views.ControlSettingsDialog.textTitle": "Inställningar för innehållskontroll", + "DE.Views.ControlSettingsDialog.textUnchecked": "Symbol omarkerad", "DE.Views.ControlSettingsDialog.textUp": "Upp", "DE.Views.ControlSettingsDialog.textValue": "Värde", "DE.Views.ControlSettingsDialog.tipChange": "Ändra symbol", "DE.Views.ControlSettingsDialog.txtLockDelete": "Innehållskontroll kan inte raderas", "DE.Views.ControlSettingsDialog.txtLockEdit": "Innehållet kan inte redigeras", + "DE.Views.CrossReferenceDialog.textAboveBelow": "Över/Under", + "DE.Views.CrossReferenceDialog.textBookmark": "Bokmärke", + "DE.Views.CrossReferenceDialog.textBookmarkText": "Bokmärk text", + "DE.Views.CrossReferenceDialog.textCaption": "Entire caption", + "DE.Views.CrossReferenceDialog.textEmpty": "Begärd referens är tom.", + "DE.Views.CrossReferenceDialog.textEndnote": "Slutnot", + "DE.Views.CrossReferenceDialog.textEndNoteNum": "Slutnot nummer", + "DE.Views.CrossReferenceDialog.textEndNoteNumForm": "Slutnot nummer (formaterad)", + "DE.Views.CrossReferenceDialog.textEquation": "Ekvation", "DE.Views.CrossReferenceDialog.textFigure": "Figur", + "DE.Views.CrossReferenceDialog.textFootnote": "Fotnot", + "DE.Views.CrossReferenceDialog.textHeading": "Rubrik", + "DE.Views.CrossReferenceDialog.textHeadingNum": "Rubriknummer", + "DE.Views.CrossReferenceDialog.textHeadingNumFull": "Rubriknummer (hela)", + "DE.Views.CrossReferenceDialog.textHeadingNumNo": "Rubriknummer (utan innehåll)", + "DE.Views.CrossReferenceDialog.textHeadingText": "Rubriktext", + "DE.Views.CrossReferenceDialog.textIncludeAbove": "Infoga ovan/under", + "DE.Views.CrossReferenceDialog.textInsert": "Infoga", + "DE.Views.CrossReferenceDialog.textInsertAs": "Infoga som länk", + "DE.Views.CrossReferenceDialog.textLabelNum": "Endast etikett och nummer", + "DE.Views.CrossReferenceDialog.textNoteNum": "Fotnot nummer", + "DE.Views.CrossReferenceDialog.textNoteNumForm": "Fotnot nummer (formaterad)", + "DE.Views.CrossReferenceDialog.textOnlyCaption": "Endast rubriktext", + "DE.Views.CrossReferenceDialog.textPageNum": "Sidnummer", + "DE.Views.CrossReferenceDialog.textParagraph": "För stort tal att formattera", + "DE.Views.CrossReferenceDialog.textParaNum": "Stycke nummer", + "DE.Views.CrossReferenceDialog.textParaNumFull": "Stycke nummer (hela innehållet)", + "DE.Views.CrossReferenceDialog.textParaNumNo": "Stycke nummer (utan innehåll)", + "DE.Views.CrossReferenceDialog.textSeparate": "Separata nummer med", + "DE.Views.CrossReferenceDialog.textTable": "Tabell", + "DE.Views.CrossReferenceDialog.textText": "Stycke text", + "DE.Views.CrossReferenceDialog.textWhich": "För vilken rubrik", + "DE.Views.CrossReferenceDialog.textWhichBookmark": "För vilket bokmärke", + "DE.Views.CrossReferenceDialog.textWhichEndnote": "För vilken slutnot", + "DE.Views.CrossReferenceDialog.textWhichHeading": "För vilken rubrik", + "DE.Views.CrossReferenceDialog.textWhichNote": "För vilken fotnot", + "DE.Views.CrossReferenceDialog.textWhichPara": "För vilket numrerat objekt", + "DE.Views.CrossReferenceDialog.txtReference": "Infoga referens till", + "DE.Views.CrossReferenceDialog.txtTitle": "Korsreferens", + "DE.Views.CrossReferenceDialog.txtType": "Referens typ", "DE.Views.CustomColumnsDialog.textColumns": "Antal kolumner", "DE.Views.CustomColumnsDialog.textSeparator": "Kolumndelare", "DE.Views.CustomColumnsDialog.textSpacing": "Avstånd mellan kolumner", "DE.Views.CustomColumnsDialog.textTitle": "Kolumner", + "DE.Views.DateTimeDialog.confirmDefault": "Ange standardformat för {0}: \"{1}\"", "DE.Views.DateTimeDialog.textDefault": "Ange som standard", "DE.Views.DateTimeDialog.textFormat": "Format", "DE.Views.DateTimeDialog.textLang": "Språk", + "DE.Views.DateTimeDialog.textUpdate": "Uppdatera automatiskt", "DE.Views.DateTimeDialog.txtTitle": "Datum & Tid", "DE.Views.DocumentHolder.aboveText": "Ovan", "DE.Views.DocumentHolder.addCommentText": "Lägg till kommentar", + "DE.Views.DocumentHolder.advancedDropCapText": "Drop Cap Settings", "DE.Views.DocumentHolder.advancedFrameText": "Ram avancerade inställningar", "DE.Views.DocumentHolder.advancedParagraphText": "Stycke avancerad inställning", "DE.Views.DocumentHolder.advancedTableText": "Tabell avancerade inställningar", @@ -1149,18 +1439,26 @@ "DE.Views.DocumentHolder.textEditWrapBoundary": "Redigera omtagets gränser", "DE.Views.DocumentHolder.textFlipH": "Vänd horisontellt", "DE.Views.DocumentHolder.textFlipV": "Vänd vertikalt", + "DE.Views.DocumentHolder.textFollow": "Fotnot", "DE.Views.DocumentHolder.textFromFile": "Från fil", + "DE.Views.DocumentHolder.textFromStorage": "Från lagring", "DE.Views.DocumentHolder.textFromUrl": "Från URL", "DE.Views.DocumentHolder.textJoinList": "Gå med i förra listan", - "DE.Views.DocumentHolder.textLeft": "Flytta celler till vänster", + "DE.Views.DocumentHolder.textLeft": "Flytta celler åt vänster", "DE.Views.DocumentHolder.textNest": "Nästlad tabell", "DE.Views.DocumentHolder.textNextPage": "Nästa sida", "DE.Views.DocumentHolder.textNumberingValue": "Nummervärde", "DE.Views.DocumentHolder.textPaste": "Klistra in", "DE.Views.DocumentHolder.textPrevPage": "Föregående sida", "DE.Views.DocumentHolder.textRefreshField": "Uppdatera fältet", + "DE.Views.DocumentHolder.textRemCheckBox": "Radera kryssruta", + "DE.Views.DocumentHolder.textRemComboBox": "Radera Combobox", + "DE.Views.DocumentHolder.textRemDropdown": "Ta bort dropdown", + "DE.Views.DocumentHolder.textRemField": "Ta bort textfält", "DE.Views.DocumentHolder.textRemove": "Ta bort", "DE.Views.DocumentHolder.textRemoveControl": "Ta bort innehållskontrollen", + "DE.Views.DocumentHolder.textRemPicture": "Ta bort bild", + "DE.Views.DocumentHolder.textRemRadioBox": "Ta bort radioknapp", "DE.Views.DocumentHolder.textReplace": "Byt ut bild", "DE.Views.DocumentHolder.textRotate": "Rotera", "DE.Views.DocumentHolder.textRotate270": "Rotera 90° moturs", @@ -1319,7 +1617,9 @@ "DE.Views.DropcapSettingsAdvanced.tipFontName": "Font", "DE.Views.DropcapSettingsAdvanced.txtNoBorders": "Inga ramar", "DE.Views.EditListItemDialog.textDisplayName": "Visningsnamn", + "DE.Views.EditListItemDialog.textNameError": "Visningsnamn får inte vara", "DE.Views.EditListItemDialog.textValue": "Värde", + "DE.Views.EditListItemDialog.textValueError": "Det finns redan ett objekt med samma värde.", "DE.Views.FileMenu.btnBackCaption": "Gå till dokument", "DE.Views.FileMenu.btnCloseMenuCaption": "Stäng meny", "DE.Views.FileMenu.btnCreateNewCaption": "Skapa ny", @@ -1392,10 +1692,14 @@ "DE.Views.FileMenuPanels.Settings.strForcesave": "Spara alltid till server (annars spara till servern när dokumentet stängs)", "DE.Views.FileMenuPanels.Settings.strInputMode": "Aktivera hieroglyfer", "DE.Views.FileMenuPanels.Settings.strLiveComment": "Aktivera visning av kommentarer", + "DE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroinställningar", + "DE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopiera och klistra in", + "DE.Views.FileMenuPanels.Settings.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in", "DE.Views.FileMenuPanels.Settings.strResolvedComment": "Aktivera visning av lösta kommentarer", "DE.Views.FileMenuPanels.Settings.strShowChanges": "Samarbeta i realtid", "DE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktivera stavningskontroll", "DE.Views.FileMenuPanels.Settings.strStrict": "Strikt", + "DE.Views.FileMenuPanels.Settings.strTheme": "Gränssnittstema", "DE.Views.FileMenuPanels.Settings.strUnit": "Måttenhet", "DE.Views.FileMenuPanels.Settings.strZoom": "Standard zoomvärde", "DE.Views.FileMenuPanels.Settings.text10Minutes": "Var 10:e minut", @@ -1411,6 +1715,7 @@ "DE.Views.FileMenuPanels.Settings.textMinute": "Varje minut", "DE.Views.FileMenuPanels.Settings.textOldVersions": "Gör filerna kompatibla med äldre MS Word-versioner när de sparas som DOCX", "DE.Views.FileMenuPanels.Settings.txtAll": "Visa alla", + "DE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Inställningar autokorrigering", "DE.Views.FileMenuPanels.Settings.txtCacheMode": "Standard cache-läge", "DE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "DE.Views.FileMenuPanels.Settings.txtFitPage": "Anpassa till sida", @@ -1422,10 +1727,82 @@ "DE.Views.FileMenuPanels.Settings.txtMac": "som OS X", "DE.Views.FileMenuPanels.Settings.txtNative": "Orginal", "DE.Views.FileMenuPanels.Settings.txtNone": "Visa ingen", + "DE.Views.FileMenuPanels.Settings.txtProofing": "Korrektur", "DE.Views.FileMenuPanels.Settings.txtPt": "Punkt", + "DE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktivera alla", + "DE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktivera alla makron utan avisering", "DE.Views.FileMenuPanels.Settings.txtSpellCheck": "Rättstavning", + "DE.Views.FileMenuPanels.Settings.txtStopMacros": "Inaktivera allt", + "DE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Inaktivera alla makron utan avisering", + "DE.Views.FileMenuPanels.Settings.txtWarnMacros": "Visa meddelanden", + "DE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Inaktivera alla makron med en avisering", "DE.Views.FileMenuPanels.Settings.txtWin": "som Windows", + "DE.Views.FormSettings.textAlways": "Alltid", + "DE.Views.FormSettings.textAspect": "Lås bildformat", + "DE.Views.FormSettings.textAutofit": "Anpassa automatiskt", + "DE.Views.FormSettings.textCheckbox": "Kryssruta", + "DE.Views.FormSettings.textColor": "Ramfärg", + "DE.Views.FormSettings.textComb": "Kombination av tecken", + "DE.Views.FormSettings.textCombobox": "Combo box", + "DE.Views.FormSettings.textConnected": "Anslutna fält", + "DE.Views.FormSettings.textDelete": "Radera", + "DE.Views.FormSettings.textDisconnect": "Koppla ifrån", + "DE.Views.FormSettings.textDropDown": "Dropdown", + "DE.Views.FormSettings.textField": "Textfält", + "DE.Views.FormSettings.textFixed": "Låst cellstorlek", + "DE.Views.FormSettings.textFromFile": "Från fil", + "DE.Views.FormSettings.textFromStorage": "Från lagring", "DE.Views.FormSettings.textFromUrl": "Från URL", + "DE.Views.FormSettings.textGroupKey": "Gruppnyckel", + "DE.Views.FormSettings.textImage": "Bild", + "DE.Views.FormSettings.textKey": "Nyckel", + "DE.Views.FormSettings.textLock": "Lås", + "DE.Views.FormSettings.textMaxChars": "Tecken begränsning", + "DE.Views.FormSettings.textMulti": "Flerradigt fält", + "DE.Views.FormSettings.textNever": "Aldrig", + "DE.Views.FormSettings.textNoBorder": "Ingen ram", + "DE.Views.FormSettings.textPlaceholder": "Platshållare", + "DE.Views.FormSettings.textRadiobox": "Radio Button", + "DE.Views.FormSettings.textRequired": "Obligatoriskt", + "DE.Views.FormSettings.textScale": "När ska skalas", + "DE.Views.FormSettings.textSelectImage": "Välj bild", + "DE.Views.FormSettings.textTip": "Tips", + "DE.Views.FormSettings.textTipAdd": "Lägg till nytt värde", + "DE.Views.FormSettings.textTipDelete": "Radera värde", + "DE.Views.FormSettings.textTipDown": "Flytta ner", + "DE.Views.FormSettings.textTipUp": "Flytta upp", + "DE.Views.FormSettings.textTooBig": "Bilden är för stor", + "DE.Views.FormSettings.textTooSmall": "Bilden är för liten", + "DE.Views.FormSettings.textUnlock": "Lås upp", + "DE.Views.FormSettings.textValue": "Värdealternativ", + "DE.Views.FormSettings.textWidth": "Cell-bredd", + "DE.Views.FormsTab.capBtnCheckBox": "Kryssruta", + "DE.Views.FormsTab.capBtnComboBox": "Combo box", + "DE.Views.FormsTab.capBtnDropDown": "Dropdown", + "DE.Views.FormsTab.capBtnImage": "Bild", + "DE.Views.FormsTab.capBtnNext": "Nästa fält", + "DE.Views.FormsTab.capBtnPrev": "Föregående fält", + "DE.Views.FormsTab.capBtnRadioBox": "Radio Button", + "DE.Views.FormsTab.capBtnSubmit": "Verkställ", + "DE.Views.FormsTab.capBtnText": "Textfält", + "DE.Views.FormsTab.capBtnView": "Visa formulär", + "DE.Views.FormsTab.textClear": "Rensa fält", + "DE.Views.FormsTab.textClearFields": "Rensa fält", + "DE.Views.FormsTab.textHighlight": "Markera inställningar", + "DE.Views.FormsTab.textNewColor": "Anpassad färg", + "DE.Views.FormsTab.textNoHighlight": "Ingen markering", + "DE.Views.FormsTab.textRequired": "Fyll i alla fält för att skicka formulär.", + "DE.Views.FormsTab.textSubmited": "Formuläret skickades framgångsrikt", + "DE.Views.FormsTab.tipCheckBox": "Infoga checkbox", + "DE.Views.FormsTab.tipComboBox": "Infoga combobox", + "DE.Views.FormsTab.tipDropDown": "Insert dropdown list", + "DE.Views.FormsTab.tipImageField": "Infoga bild", + "DE.Views.FormsTab.tipNextForm": "Gå till nästa fält", + "DE.Views.FormsTab.tipPrevForm": "Gå till föregående fält", + "DE.Views.FormsTab.tipRadioBox": "Insert radio button", + "DE.Views.FormsTab.tipSubmit": "Kunde ej verkställa formulär", + "DE.Views.FormsTab.tipTextField": "Infoga textfält", + "DE.Views.FormsTab.tipViewForm": "Visa formulär", "DE.Views.HeaderFooterSettings.textBottomCenter": "Nederst centrerad", "DE.Views.HeaderFooterSettings.textBottomLeft": "Nederst vänster", "DE.Views.HeaderFooterSettings.textBottomPage": "Nederkant på sidan", @@ -1458,6 +1835,7 @@ "DE.Views.HyperlinkSettingsDialog.txtEmpty": "Detta fält är obligatoriskt", "DE.Views.HyperlinkSettingsDialog.txtHeadings": "Rubriker", "DE.Views.HyperlinkSettingsDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"", + "DE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Detta fält är begränsat till 2083 tecken", "DE.Views.ImageSettings.textAdvanced": "Visa avancerade inställningar", "DE.Views.ImageSettings.textCrop": "Beskär", "DE.Views.ImageSettings.textCropFill": "Fylla", @@ -1467,6 +1845,7 @@ "DE.Views.ImageSettings.textFitMargins": "Anpassa till marginal", "DE.Views.ImageSettings.textFlip": "Vänd", "DE.Views.ImageSettings.textFromFile": "Från fil", + "DE.Views.ImageSettings.textFromStorage": "Från lagring", "DE.Views.ImageSettings.textFromUrl": "Från URL", "DE.Views.ImageSettings.textHeight": "Höjd", "DE.Views.ImageSettings.textHint270": "Rotera 90° moturs", @@ -1497,6 +1876,7 @@ "DE.Views.ImageSettingsAdvanced.textAngle": "Vinkel", "DE.Views.ImageSettingsAdvanced.textArrows": "Pilar", "DE.Views.ImageSettingsAdvanced.textAspectRatio": "Lås bildformat", + "DE.Views.ImageSettingsAdvanced.textAutofit": "Anpassa automatiskt", "DE.Views.ImageSettingsAdvanced.textBeginSize": "Starta storlek", "DE.Views.ImageSettingsAdvanced.textBeginStyle": "Startstil", "DE.Views.ImageSettingsAdvanced.textBelow": "under", @@ -1534,6 +1914,7 @@ "DE.Views.ImageSettingsAdvanced.textPositionPc": "Relative position", "DE.Views.ImageSettingsAdvanced.textRelative": "relativ till", "DE.Views.ImageSettingsAdvanced.textRelativeWH": "Relativ", + "DE.Views.ImageSettingsAdvanced.textResizeFit": "Ändra storlek så den passar texten", "DE.Views.ImageSettingsAdvanced.textRight": "Höger", "DE.Views.ImageSettingsAdvanced.textRightMargin": "Höger marginal", "DE.Views.ImageSettingsAdvanced.textRightOf": "till höger om", @@ -1569,28 +1950,57 @@ "DE.Views.LeftMenu.tipSupport": "Feedback & support", "DE.Views.LeftMenu.tipTitles": "Titlar", "DE.Views.LeftMenu.txtDeveloper": "Utvecklarläge", + "DE.Views.LeftMenu.txtLimit": "Begränsad åtkomst", "DE.Views.LeftMenu.txtTrial": "TESTLÄGE", + "DE.Views.LeftMenu.txtTrialDev": "Testutvecklarläge", + "DE.Views.LineNumbersDialog.textAddLineNumbering": "Lägg till radnumrering", + "DE.Views.LineNumbersDialog.textApplyTo": "Tillämpa ändringar", + "DE.Views.LineNumbersDialog.textContinuous": "Kontinuerlig", + "DE.Views.LineNumbersDialog.textCountBy": "Count by", + "DE.Views.LineNumbersDialog.textDocument": "Hela dokumentet", + "DE.Views.LineNumbersDialog.textForward": "Hädanefter", + "DE.Views.LineNumbersDialog.textFromText": "Från text", + "DE.Views.LineNumbersDialog.textNumbering": "Numrering", + "DE.Views.LineNumbersDialog.textRestartEachPage": "Gör om för varje sida", + "DE.Views.LineNumbersDialog.textRestartEachSection": "Gör om för varje sektion", + "DE.Views.LineNumbersDialog.textSection": "Nuvarande sektion", + "DE.Views.LineNumbersDialog.textStartAt": "Börja på", + "DE.Views.LineNumbersDialog.textTitle": "Radnummer", + "DE.Views.LineNumbersDialog.txtAutoText": "Auto", "DE.Views.Links.capBtnBookmarks": "Bokmärke", "DE.Views.Links.capBtnCaption": "Rubrik", "DE.Views.Links.capBtnContentsUpdate": "Uppdatera", + "DE.Views.Links.capBtnCrossRef": "Korsreferens", "DE.Views.Links.capBtnInsContents": "Innehållsförteckning", "DE.Views.Links.capBtnInsFootnote": "Fotnot", "DE.Views.Links.capBtnInsLink": "Hyperlänk", + "DE.Views.Links.capBtnTOF": "tabell över siffror", "DE.Views.Links.confirmDeleteFootnotes": "Vill du radera alla fotnoter?", + "DE.Views.Links.confirmReplaceTOF": "Vill du ersätta denna", + "DE.Views.Links.mniConvertNote": "Konvertera alla noter", "DE.Views.Links.mniDelFootnote": "Radera alla fotnoter", + "DE.Views.Links.mniInsEndnote": "Infoga slutnot", "DE.Views.Links.mniInsFootnote": "Infoga fotnot", "DE.Views.Links.mniNoteSettings": "Inställning anteckningar", "DE.Views.Links.textContentsRemove": "Ta bort innehållsförteckningen", "DE.Views.Links.textContentsSettings": "Inställningar", + "DE.Views.Links.textConvertToEndnotes": "Konvertera alla fotnoter till slutnoter", + "DE.Views.Links.textConvertToFootnotes": "Konvertera alla slutnoter till fotnoter", + "DE.Views.Links.textGotoEndnote": "Gå till slutnoter", "DE.Views.Links.textGotoFootnote": "Gå till fotnoter", + "DE.Views.Links.textSwapNotes": "Byt fotnoter och slutnoter", "DE.Views.Links.textUpdateAll": "Uppdatera hela tabellen", "DE.Views.Links.textUpdatePages": "Uppdatera endast sidnummer", "DE.Views.Links.tipBookmarks": "Skapa ett bokmärke", "DE.Views.Links.tipCaption": "Infoga rubrik", "DE.Views.Links.tipContents": "Infoga innehållsförteckning", "DE.Views.Links.tipContentsUpdate": "Uppdatera innehållsförteckningen", + "DE.Views.Links.tipCrossRef": "Infoga korsreferens", "DE.Views.Links.tipInsertHyperlink": "Lägg till länk", "DE.Views.Links.tipNotes": "Infoga eller redigera fotnoter", + "DE.Views.Links.tipTableFigures": "Infoga siffertabell", + "DE.Views.Links.tipTableFiguresUpdate": "Uppdatera tabellen med siffror", + "DE.Views.Links.titleUpdateTOF": "Uppdatera tabellen med siffror", "DE.Views.ListSettingsDialog.textAuto": "Automatisk", "DE.Views.ListSettingsDialog.textCenter": "Centrera", "DE.Views.ListSettingsDialog.textLeft": "Vänster", @@ -1598,11 +2008,15 @@ "DE.Views.ListSettingsDialog.textPreview": "Förhandsgranska", "DE.Views.ListSettingsDialog.textRight": "Höger", "DE.Views.ListSettingsDialog.txtAlign": "Justering", + "DE.Views.ListSettingsDialog.txtBullet": "Bullet", "DE.Views.ListSettingsDialog.txtColor": "Färg", "DE.Views.ListSettingsDialog.txtFont": "Teckensnitt och symbol", + "DE.Views.ListSettingsDialog.txtLikeText": "Som en text", + "DE.Views.ListSettingsDialog.txtNewBullet": "New bullet", "DE.Views.ListSettingsDialog.txtNone": "Ingen", "DE.Views.ListSettingsDialog.txtSize": "Storlek", "DE.Views.ListSettingsDialog.txtSymbol": "Symbol", + "DE.Views.ListSettingsDialog.txtTitle": "Listinställningar", "DE.Views.ListSettingsDialog.txtType": "Typ", "DE.Views.MailMergeEmailDlg.filePlaceholder": "PDF", "DE.Views.MailMergeEmailDlg.okButtonText": "Skicka", @@ -1666,9 +2080,11 @@ "DE.Views.NoteSettingsDialog.textApplyTo": "Tillämpa ändringar", "DE.Views.NoteSettingsDialog.textContinue": "Kontinuerlig", "DE.Views.NoteSettingsDialog.textCustom": "Anpassad markering", + "DE.Views.NoteSettingsDialog.textDocEnd": "Dokumentslut", "DE.Views.NoteSettingsDialog.textDocument": "Hela dokumentet", "DE.Views.NoteSettingsDialog.textEachPage": "Gör om för varje sida", "DE.Views.NoteSettingsDialog.textEachSection": "Gör om för varje sektion", + "DE.Views.NoteSettingsDialog.textEndnote": "Slutnot", "DE.Views.NoteSettingsDialog.textFootnote": "Fotnot", "DE.Views.NoteSettingsDialog.textFormat": "Format", "DE.Views.NoteSettingsDialog.textInsert": "Infoga", @@ -1676,14 +2092,22 @@ "DE.Views.NoteSettingsDialog.textNumbering": "Numrering", "DE.Views.NoteSettingsDialog.textNumFormat": "Sifferformat", "DE.Views.NoteSettingsDialog.textPageBottom": "Nederkant på sidan", + "DE.Views.NoteSettingsDialog.textSectEnd": "Slut på sektion", "DE.Views.NoteSettingsDialog.textSection": "Nuvarande sektion", "DE.Views.NoteSettingsDialog.textStart": "Starta", "DE.Views.NoteSettingsDialog.textTextBottom": "Under texten", "DE.Views.NoteSettingsDialog.textTitle": "Anteckningar inställningar", + "DE.Views.NotesRemoveDialog.textEnd": "Radera alla slutnoter", + "DE.Views.NotesRemoveDialog.textFoot": "Radera alla fotnoter", + "DE.Views.NotesRemoveDialog.textTitle": "Radera anteckningar", "DE.Views.PageMarginsDialog.notcriticalErrorTitle": "Varning", "DE.Views.PageMarginsDialog.textBottom": "Nederst", + "DE.Views.PageMarginsDialog.textGutter": "Gutter", + "DE.Views.PageMarginsDialog.textGutterPosition": "Gutter position", + "DE.Views.PageMarginsDialog.textInside": "Inuti", "DE.Views.PageMarginsDialog.textLandscape": "Landskap", "DE.Views.PageMarginsDialog.textLeft": "Vänster", + "DE.Views.PageMarginsDialog.textMirrorMargins": "Spegelmarginaler", "DE.Views.PageMarginsDialog.textMultiplePages": "Flera sidor", "DE.Views.PageMarginsDialog.textNormal": "Normal", "DE.Views.PageMarginsDialog.textOrientation": "Orientering", @@ -1700,6 +2124,10 @@ "DE.Views.PageSizeDialog.textTitle": "Sidstorlek", "DE.Views.PageSizeDialog.textWidth": "Bredd", "DE.Views.PageSizeDialog.txtCustom": "Anpassad", + "DE.Views.ParagraphSettings.strIndent": "Indrag", + "DE.Views.ParagraphSettings.strIndentsLeftText": "Vänster", + "DE.Views.ParagraphSettings.strIndentsRightText": "Höger", + "DE.Views.ParagraphSettings.strIndentsSpecial": "Special", "DE.Views.ParagraphSettings.strLineHeight": "Radavstånd", "DE.Views.ParagraphSettings.strParagraphSpacing": "Styckets avstånd", "DE.Views.ParagraphSettings.strSomeParagraphSpace": "Lägg inte till mellanrum mellan stycken med samma formatmall", @@ -1711,6 +2139,9 @@ "DE.Views.ParagraphSettings.textAuto": "Flera", "DE.Views.ParagraphSettings.textBackColor": "Bakgrundsfärg", "DE.Views.ParagraphSettings.textExact": "Exakt", + "DE.Views.ParagraphSettings.textFirstLine": "Första raden", + "DE.Views.ParagraphSettings.textHanging": "Hängande", + "DE.Views.ParagraphSettings.textNoneSpecial": "(ingen)", "DE.Views.ParagraphSettings.txtAutoText": "auto", "DE.Views.ParagraphSettingsAdvanced.noTabs": "De angivna flikarna kommer att visas i det här fältet", "DE.Views.ParagraphSettingsAdvanced.strAllCaps": "Alla versaler", @@ -1739,6 +2170,7 @@ "DE.Views.ParagraphSettingsAdvanced.strStrike": "Genomstruken", "DE.Views.ParagraphSettingsAdvanced.strSubscript": "Nedsänkt", "DE.Views.ParagraphSettingsAdvanced.strSuperscript": "Upphöjd", + "DE.Views.ParagraphSettingsAdvanced.strSuppressLineNumbers": "Undertrycka radnummer", "DE.Views.ParagraphSettingsAdvanced.strTabs": "Tabbar", "DE.Views.ParagraphSettingsAdvanced.textAlign": "Justera", "DE.Views.ParagraphSettingsAdvanced.textAtLeast": "Minst", @@ -1785,6 +2217,7 @@ "DE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", "DE.Views.ParagraphSettingsAdvanced.txtNoBorders": "Inga ramar", "DE.Views.RightMenu.txtChartSettings": "Diagram inställningar", + "DE.Views.RightMenu.txtFormSettings": "Inställningar formulär", "DE.Views.RightMenu.txtHeaderFooterSettings": "Inställningar för sidhuvud och sidfot", "DE.Views.RightMenu.txtImageSettings": "Bildinställningar", "DE.Views.RightMenu.txtMailMergeSettings": "Slå ihop e-postinställningar", @@ -1805,12 +2238,14 @@ "DE.Views.ShapeSettings.strTransparency": "Opacitet", "DE.Views.ShapeSettings.strType": "Typ", "DE.Views.ShapeSettings.textAdvanced": "Visa avancerade inställningar", + "DE.Views.ShapeSettings.textAngle": "Vinkel", "DE.Views.ShapeSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.
    Vänligen ange ett värde mellan 0 och 1584 pt.", "DE.Views.ShapeSettings.textColor": "Färgfyllnad", "DE.Views.ShapeSettings.textDirection": "Riktning", "DE.Views.ShapeSettings.textEmptyPattern": "Inget mönster", "DE.Views.ShapeSettings.textFlip": "Vänd", "DE.Views.ShapeSettings.textFromFile": "Från fil", + "DE.Views.ShapeSettings.textFromStorage": "Från lagring", "DE.Views.ShapeSettings.textFromUrl": "Från URL", "DE.Views.ShapeSettings.textGradient": "Fyllning", "DE.Views.ShapeSettings.textGradientFill": "Fyllning", @@ -1822,15 +2257,19 @@ "DE.Views.ShapeSettings.textLinear": "Linjär", "DE.Views.ShapeSettings.textNoFill": "Ingen fyllning", "DE.Views.ShapeSettings.textPatternFill": "Mönster", + "DE.Views.ShapeSettings.textPosition": "Position", "DE.Views.ShapeSettings.textRadial": "Radiell", "DE.Views.ShapeSettings.textRotate90": "Rotera 90°", "DE.Views.ShapeSettings.textRotation": "Rotation", + "DE.Views.ShapeSettings.textSelectImage": "Välj bild", "DE.Views.ShapeSettings.textSelectTexture": "Välj", "DE.Views.ShapeSettings.textStretch": "Sträck", "DE.Views.ShapeSettings.textStyle": "Stil", "DE.Views.ShapeSettings.textTexture": "Från mönster", "DE.Views.ShapeSettings.textTile": "Bricka", "DE.Views.ShapeSettings.textWrap": "Figursättning", + "DE.Views.ShapeSettings.tipAddGradientPoint": "Lägg till lutningspunkt", + "DE.Views.ShapeSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", "DE.Views.ShapeSettings.txtBehind": "Bakom", "DE.Views.ShapeSettings.txtBrownPaper": "Brunt papper", "DE.Views.ShapeSettings.txtCanvas": "Canvas", @@ -1862,6 +2301,7 @@ "DE.Views.SignatureSettings.strValid": "Giltiga signaturer", "DE.Views.SignatureSettings.txtContinueEditing": "Redigera ändå", "DE.Views.SignatureSettings.txtEditWarning": "Redigering tar bort signaturerna från dokumentet.
    Är du säker på att du vill fortsätta?", + "DE.Views.SignatureSettings.txtRemoveWarning": "Vill du radera denna", "DE.Views.SignatureSettings.txtRequestedSignatures": "Detta dokument behöver undertecknas.", "DE.Views.SignatureSettings.txtSigned": "Giltiga signaturer har lagts till i dokumentet. Dokumentet är skyddat från redigering.", "DE.Views.SignatureSettings.txtSignedInvalid": "Några av de digitala signaturerna i dokumentet är ogiltiga eller kunde inte verifieras. Dokumentet är skyddat från redigering.", @@ -1879,27 +2319,39 @@ "DE.Views.StyleTitleDialog.textTitle": "Titel", "DE.Views.StyleTitleDialog.txtEmpty": "Detta fält är obligatoriskt", "DE.Views.StyleTitleDialog.txtNotEmpty": "Fälten får inte vara tomma", + "DE.Views.StyleTitleDialog.txtSameAs": "Samma som skapad ny stil", "DE.Views.TableFormulaDialog.textBookmark": "Klistra in bokmärke", "DE.Views.TableFormulaDialog.textFormat": "Sifferformat", "DE.Views.TableFormulaDialog.textFormula": "Formel", "DE.Views.TableFormulaDialog.textInsertFunction": "Klistra in funktion", "DE.Views.TableFormulaDialog.textTitle": "Formelinställningar", "DE.Views.TableOfContentsSettings.strAlign": "Högerjustera sidnummer", + "DE.Views.TableOfContentsSettings.strFullCaption": "Inkludera etikett och nummer", "DE.Views.TableOfContentsSettings.strLinks": "Formatera innehållsförteckning som länkar", + "DE.Views.TableOfContentsSettings.strLinksOF": "Formatera tabell med figurer som länkar", "DE.Views.TableOfContentsSettings.strShowPages": "Visa sidnummer", "DE.Views.TableOfContentsSettings.textBuildTable": "Skapa innehållsförteckning från", + "DE.Views.TableOfContentsSettings.textBuildTableOF": "Bygg tabell med siffror från", + "DE.Views.TableOfContentsSettings.textEquation": "Ekvation", "DE.Views.TableOfContentsSettings.textFigure": "Figur", "DE.Views.TableOfContentsSettings.textLeader": "Ledare", "DE.Views.TableOfContentsSettings.textLevel": "Nivå", "DE.Views.TableOfContentsSettings.textLevels": "Nivåer", "DE.Views.TableOfContentsSettings.textNone": "Ingen", + "DE.Views.TableOfContentsSettings.textRadioCaption": "Rubrik", "DE.Views.TableOfContentsSettings.textRadioLevels": "Översiktsnivåer", + "DE.Views.TableOfContentsSettings.textRadioStyle": "Stil", "DE.Views.TableOfContentsSettings.textRadioStyles": "Valda stilar", "DE.Views.TableOfContentsSettings.textStyle": "Stil", "DE.Views.TableOfContentsSettings.textStyles": "Stiler", + "DE.Views.TableOfContentsSettings.textTable": "Tabell", "DE.Views.TableOfContentsSettings.textTitle": "Innehållsförteckning", + "DE.Views.TableOfContentsSettings.textTitleTOF": "tabell över siffror", + "DE.Views.TableOfContentsSettings.txtCentered": "Centrerad", "DE.Views.TableOfContentsSettings.txtClassic": "Klassisk", "DE.Views.TableOfContentsSettings.txtCurrent": "Aktuell", + "DE.Views.TableOfContentsSettings.txtDistinctive": "Distinkt", + "DE.Views.TableOfContentsSettings.txtFormal": "Formell", "DE.Views.TableOfContentsSettings.txtModern": "Modern", "DE.Views.TableOfContentsSettings.txtOnline": "Uppkopplad", "DE.Views.TableOfContentsSettings.txtSimple": "Enkel", @@ -1927,6 +2379,7 @@ "DE.Views.TableSettings.textBorders": "Ramens stil", "DE.Views.TableSettings.textCellSize": "Cellstorlek", "DE.Views.TableSettings.textColumns": "Kolumner", + "DE.Views.TableSettings.textConvert": "Konvertera tabell till text", "DE.Views.TableSettings.textDistributeCols": "Distribuera kolumner", "DE.Views.TableSettings.textDistributeRows": "Distribuera rader", "DE.Views.TableSettings.textEdit": "Rader & kolumner", @@ -1954,7 +2407,9 @@ "DE.Views.TableSettings.txtTable_Accent": "Accent", "DE.Views.TableSettings.txtTable_Colorful": "Färgrik", "DE.Views.TableSettings.txtTable_Dark": "Mörk", + "DE.Views.TableSettings.txtTable_GridTable": "Tabell", "DE.Views.TableSettings.txtTable_Light": "Ljus", + "DE.Views.TableSettings.txtTable_ListTable": "Listtabell", "DE.Views.TableSettings.txtTable_PlainTable": "Vanlig tabell", "DE.Views.TableSettings.txtTable_TableGrid": "Tabellnät", "DE.Views.TableSettingsAdvanced.textAlign": "Justera", @@ -2029,12 +2484,21 @@ "DE.Views.TableSettingsAdvanced.txtNoBorders": "Inga ramar", "DE.Views.TableSettingsAdvanced.txtPercent": "Procent", "DE.Views.TableSettingsAdvanced.txtPt": "Punkt", + "DE.Views.TableToTextDialog.textEmpty": "Du måste skriva ett tecken för den anpassade avgränsaren.", + "DE.Views.TableToTextDialog.textNested": "Konvertera kapslade tabeller", + "DE.Views.TableToTextDialog.textOther": "Annat", + "DE.Views.TableToTextDialog.textPara": "Punktmärken", + "DE.Views.TableToTextDialog.textSemicolon": "Semikolon", + "DE.Views.TableToTextDialog.textSeparator": "Separera text med", + "DE.Views.TableToTextDialog.textTab": "Tabbar", + "DE.Views.TableToTextDialog.textTitle": "Konvertera tabell till text", "DE.Views.TextArtSettings.strColor": "Färg", "DE.Views.TextArtSettings.strFill": "Fylla", "DE.Views.TextArtSettings.strSize": "Storlek", "DE.Views.TextArtSettings.strStroke": "Genomslag", "DE.Views.TextArtSettings.strTransparency": "Opacitet", "DE.Views.TextArtSettings.strType": "Typ", + "DE.Views.TextArtSettings.textAngle": "Vinkel", "DE.Views.TextArtSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.
    Vänligen ange ett värde mellan 0 och 1584 pt.", "DE.Views.TextArtSettings.textColor": "Färgfyllnad", "DE.Views.TextArtSettings.textDirection": "Riktning", @@ -2042,12 +2506,30 @@ "DE.Views.TextArtSettings.textGradientFill": "Fyllning", "DE.Views.TextArtSettings.textLinear": "Linjär", "DE.Views.TextArtSettings.textNoFill": "Ingen fyllning", + "DE.Views.TextArtSettings.textPosition": "Position", "DE.Views.TextArtSettings.textRadial": "Radiell", "DE.Views.TextArtSettings.textSelectTexture": "Välj", "DE.Views.TextArtSettings.textStyle": "Stil", "DE.Views.TextArtSettings.textTemplate": "Mall", "DE.Views.TextArtSettings.textTransform": "Omvandla", + "DE.Views.TextArtSettings.tipAddGradientPoint": "Lägg till lutningspunkt", + "DE.Views.TextArtSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", "DE.Views.TextArtSettings.txtNoBorders": "Ingen rad", + "DE.Views.TextToTableDialog.textAutofit": "Automatiskt beteende", + "DE.Views.TextToTableDialog.textColumns": "Kolumner", + "DE.Views.TextToTableDialog.textContents": "Anpassa till innehållet", + "DE.Views.TextToTableDialog.textEmpty": "Du måste skriva ett tecken för den anpassade avgränsaren.", + "DE.Views.TextToTableDialog.textFixed": "Fast kolumnbredd", + "DE.Views.TextToTableDialog.textOther": "Annat", + "DE.Views.TextToTableDialog.textPara": "Stycken", + "DE.Views.TextToTableDialog.textRows": "Rader", + "DE.Views.TextToTableDialog.textSemicolon": "Semikolon", + "DE.Views.TextToTableDialog.textSeparator": "Separat text på", + "DE.Views.TextToTableDialog.textTab": "Tabbar", + "DE.Views.TextToTableDialog.textTableSize": "Tabellstorlek", + "DE.Views.TextToTableDialog.textTitle": "Konvertera text till tabell", + "DE.Views.TextToTableDialog.textWindow": "Anpassa till fönster", + "DE.Views.TextToTableDialog.txtAutoText": "Auto", "DE.Views.Toolbar.capBtnAddComment": "Lägg till kommentar", "DE.Views.Toolbar.capBtnBlankPage": "Tom sida", "DE.Views.Toolbar.capBtnColumns": "Kolumner", @@ -2065,6 +2547,7 @@ "DE.Views.Toolbar.capBtnInsTable": "Tabell", "DE.Views.Toolbar.capBtnInsTextart": "TextArt", "DE.Views.Toolbar.capBtnInsTextbox": "Textruta", + "DE.Views.Toolbar.capBtnLineNumbers": "Radnummer", "DE.Views.Toolbar.capBtnMargins": "Marginaler", "DE.Views.Toolbar.capBtnPageOrient": "Orientering", "DE.Views.Toolbar.capBtnPageSize": "Storlek", @@ -2074,6 +2557,7 @@ "DE.Views.Toolbar.capImgForward": "Flytta framåt", "DE.Views.Toolbar.capImgGroup": "Grupp", "DE.Views.Toolbar.capImgWrapping": "Brytning", + "DE.Views.Toolbar.mniCapitalizeWords": "Stor bokstav varje ord", "DE.Views.Toolbar.mniCustomTable": "Infoga egen tabell", "DE.Views.Toolbar.mniDrawTable": "Rita tabell", "DE.Views.Toolbar.mniEditControls": "Kontrollinställningar", @@ -2087,10 +2571,16 @@ "DE.Views.Toolbar.mniImageFromFile": "Bild från fil", "DE.Views.Toolbar.mniImageFromStorage": "Bild från lagring", "DE.Views.Toolbar.mniImageFromUrl": "Bild från URL", + "DE.Views.Toolbar.mniLowerCase": "Integraler", + "DE.Views.Toolbar.mniSentenceCase": "Stor bokstav varje mening", + "DE.Views.Toolbar.mniTextToTable": "Konvertera text till tabell", + "DE.Views.Toolbar.mniToggleCase": "vÄXLA vERSALER", + "DE.Views.Toolbar.mniUpperCase": "VERSALER", "DE.Views.Toolbar.strMenuNoFill": "Ingen fyllning", "DE.Views.Toolbar.textAutoColor": "Automatisk", "DE.Views.Toolbar.textBold": "Fet", "DE.Views.Toolbar.textBottom": "Nederst:", + "DE.Views.Toolbar.textChangeLevel": "Ändra listnivå", "DE.Views.Toolbar.textCheckboxControl": "Kryssruta", "DE.Views.Toolbar.textColumnsCustom": "Anpassade kolumner", "DE.Views.Toolbar.textColumnsLeft": "Vänster", @@ -2099,7 +2589,9 @@ "DE.Views.Toolbar.textColumnsThree": "Tre", "DE.Views.Toolbar.textColumnsTwo": "Två", "DE.Views.Toolbar.textComboboxControl": "Kombinationsruta", + "DE.Views.Toolbar.textContinuous": "Kontinuerlig", "DE.Views.Toolbar.textContPage": "Kontinuerliga sidor", + "DE.Views.Toolbar.textCustomLineNumbers": "Alternativ för radnumrering", "DE.Views.Toolbar.textDateControl": "Datum", "DE.Views.Toolbar.textDropdownControl": "Nedrullningsbar listruta", "DE.Views.Toolbar.textEditWatermark": "Anpassad vattenstämpel", @@ -2114,10 +2606,12 @@ "DE.Views.Toolbar.textItalic": "Kursiv", "DE.Views.Toolbar.textLandscape": "Landskap", "DE.Views.Toolbar.textLeft": "Vänster:", + "DE.Views.Toolbar.textListSettings": "Listinställningar", "DE.Views.Toolbar.textMarginsLast": "Senaste anpassade", "DE.Views.Toolbar.textMarginsModerate": "Måttlig", "DE.Views.Toolbar.textMarginsNarrow": "Smal", "DE.Views.Toolbar.textMarginsNormal": "Normal", + "DE.Views.Toolbar.textMarginsUsNormal": "US Normal", "DE.Views.Toolbar.textMarginsWide": "Bred", "DE.Views.Toolbar.textNewColor": "Lägg till ny egen färg", "DE.Views.Toolbar.textNextPage": "Nästa sida", @@ -2131,6 +2625,8 @@ "DE.Views.Toolbar.textPortrait": "Porträtt", "DE.Views.Toolbar.textRemoveControl": "Ta bort innehållskontrollen", "DE.Views.Toolbar.textRemWatermark": "Ta bort vattenstämpel", + "DE.Views.Toolbar.textRestartEachPage": "Gör om för varje sida", + "DE.Views.Toolbar.textRestartEachSection": "Gör om för varje sektion", "DE.Views.Toolbar.textRichControl": "Infoga innehållskontroll för utökad text", "DE.Views.Toolbar.textRight": "Höger:", "DE.Views.Toolbar.textStrikeout": "Genomstruken", @@ -2142,6 +2638,7 @@ "DE.Views.Toolbar.textStyleMenuUpdate": "Uppdatera från markering", "DE.Views.Toolbar.textSubscript": "Nedsänkt", "DE.Views.Toolbar.textSuperscript": "Upphöjd", + "DE.Views.Toolbar.textSuppressForCurrentParagraph": "Undertryck för nuvarande stycke", "DE.Views.Toolbar.textTabCollaboration": "Samarbeta", "DE.Views.Toolbar.textTabFile": "Arkiv", "DE.Views.Toolbar.textTabHome": "Hem", @@ -2160,6 +2657,7 @@ "DE.Views.Toolbar.tipAlignRight": "Högerjustera", "DE.Views.Toolbar.tipBack": "Tillbaka", "DE.Views.Toolbar.tipBlankPage": "Infoga tom sida", + "DE.Views.Toolbar.tipChangeCase": "Ändra skiftläge", "DE.Views.Toolbar.tipChangeChart": "Ändra diagramtyp", "DE.Views.Toolbar.tipClearStyle": "Rensa stil", "DE.Views.Toolbar.tipColorSchemas": "Ändra färgschema", @@ -2167,6 +2665,7 @@ "DE.Views.Toolbar.tipControls": "Infoga innehållskontroller", "DE.Views.Toolbar.tipCopy": "Kopiera", "DE.Views.Toolbar.tipCopyStyle": "Hämta stil", + "DE.Views.Toolbar.tipDateTime": "Infoga aktuellt datum och tid", "DE.Views.Toolbar.tipDecFont": "Minska fontstorlek", "DE.Views.Toolbar.tipDecPrLeft": "Minska indrag", "DE.Views.Toolbar.tipDropCap": "Infoga anfang", @@ -2189,6 +2688,7 @@ "DE.Views.Toolbar.tipInsertTable": "Infoga tabell", "DE.Views.Toolbar.tipInsertText": "Infoga text", "DE.Views.Toolbar.tipInsertTextArt": "Infoga TextArt", + "DE.Views.Toolbar.tipLineNumbers": "Visa radnummer", "DE.Views.Toolbar.tipLineSpace": "Styckets radavstånd", "DE.Views.Toolbar.tipMailRecepients": "Slå ihop e-post", "DE.Views.Toolbar.tipMarkers": "Punktlista", @@ -2226,8 +2726,11 @@ "DE.Views.Toolbar.txtScheme16": "Papper", "DE.Views.Toolbar.txtScheme17": "Solstånd", "DE.Views.Toolbar.txtScheme18": "Teknik", + "DE.Views.Toolbar.txtScheme19": "Vandra", "DE.Views.Toolbar.txtScheme2": "Gråskala", + "DE.Views.Toolbar.txtScheme20": "Urban", "DE.Views.Toolbar.txtScheme21": "Fart", + "DE.Views.Toolbar.txtScheme22": "New Office", "DE.Views.Toolbar.txtScheme3": "Apex", "DE.Views.Toolbar.txtScheme4": "Aspekt", "DE.Views.Toolbar.txtScheme5": "Medborgerlig", @@ -2241,6 +2744,7 @@ "DE.Views.WatermarkSettingsDialog.textDiagonal": "Diagonal", "DE.Views.WatermarkSettingsDialog.textFont": "Font", "DE.Views.WatermarkSettingsDialog.textFromFile": "Från fil", + "DE.Views.WatermarkSettingsDialog.textFromStorage": "Från lagring", "DE.Views.WatermarkSettingsDialog.textFromUrl": "Från URL", "DE.Views.WatermarkSettingsDialog.textHor": "Horisontal", "DE.Views.WatermarkSettingsDialog.textImageW": "Bild vattenstämpel", @@ -2250,6 +2754,7 @@ "DE.Views.WatermarkSettingsDialog.textNewColor": "Lägg till ny egen färg", "DE.Views.WatermarkSettingsDialog.textNone": "Ingen", "DE.Views.WatermarkSettingsDialog.textScale": "Skala", + "DE.Views.WatermarkSettingsDialog.textSelect": "Välj bild", "DE.Views.WatermarkSettingsDialog.textStrikeout": "Genomstruken", "DE.Views.WatermarkSettingsDialog.textText": "Text", "DE.Views.WatermarkSettingsDialog.textTextW": "Text vattenstämpel", diff --git a/apps/documenteditor/main/resources/less/filemenu.less b/apps/documenteditor/main/resources/less/filemenu.less index 03ffa0600..edd7f44ef 100644 --- a/apps/documenteditor/main/resources/less/filemenu.less +++ b/apps/documenteditor/main/resources/less/filemenu.less @@ -194,8 +194,8 @@ hr { margin: 0; border-bottom: none; - border-color: @border-toolbar-ie; - border-color: @border-toolbar; + border-top: @scaled-one-px-value-ie solid @border-divider-ie; + border-top: @scaled-one-px-value solid @border-divider; } .thumb-list { diff --git a/apps/documenteditor/main/resources/less/rightmenu.less b/apps/documenteditor/main/resources/less/rightmenu.less index dfd274f36..7f10975b7 100644 --- a/apps/documenteditor/main/resources/less/rightmenu.less +++ b/apps/documenteditor/main/resources/less/rightmenu.less @@ -161,3 +161,40 @@ background-color: @background-normal-ie; background-color: @background-normal; } + +#form-cnt-position { + position: relative; + .row { + display: flex; + justify-content: flex-start; + } + #form-img-position-preview { + position: relative; + height: 130px; + width: 130px; + border: 1px solid @border-regular-control; + #form-img-example { + position: absolute; + top: 24px; + left: 24px; + display: flex; + justify-content: center; + align-items: center; + height: 80px; + width: 80px; + border: 1px solid @border-regular-control; + } + } + #form-img-slider-position-x { + margin-top: 4px; + margin-left: 7px; + } + #form-img-slider-position-y { + margin-top: 7px; + margin-left: 4px; + } + #form-img-slider-value { + margin-left: 10px; + margin-top: 4px; + } +} diff --git a/apps/documenteditor/mobile/locale/backup/ru.json b/apps/documenteditor/mobile/locale/backup/ru.json index f4e130890..380cefb70 100644 --- a/apps/documenteditor/mobile/locale/backup/ru.json +++ b/apps/documenteditor/mobile/locale/backup/ru.json @@ -106,7 +106,7 @@ "DE.Controllers.DocumentHolder.menuSplit": "Разделить ячейку", "DE.Controllers.DocumentHolder.sheetCancel": "Отмена", "DE.Controllers.DocumentHolder.textCancel": "Отмена", - "DE.Controllers.DocumentHolder.textColumns": "Колонки", + "DE.Controllers.DocumentHolder.textColumns": "Столбцы", "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Операции копирования, вырезания и вставки", "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Больше не показывать", "DE.Controllers.DocumentHolder.textGuest": "Гость", @@ -394,7 +394,7 @@ "DE.Views.EditShape.textFromText": "Расстояние до текста", "DE.Views.EditShape.textInFront": "Перед текстом", "DE.Views.EditShape.textInline": "В тексте", - "DE.Views.EditShape.textOpacity": "Прозрачность", + "DE.Views.EditShape.textOpacity": "Непрозрачность", "DE.Views.EditShape.textOverlap": "Разрешить перекрытие", "DE.Views.EditShape.textRemoveShape": "Удалить фигуру", "DE.Views.EditShape.textReorder": "Порядок", diff --git a/apps/documenteditor/mobile/locale/be.json b/apps/documenteditor/mobile/locale/be.json index f163020f1..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/be.json +++ b/apps/documenteditor/mobile/locale/be.json @@ -1,595 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Дадаць адказ", - "Common.Controllers.Collaboration.textAtLeast": "мінімум", - "Common.Controllers.Collaboration.textAuto": "аўта", - "Common.Controllers.Collaboration.textBaseline": "Базавая лінія", - "Common.Controllers.Collaboration.textBold": "Тоўсты", - "Common.Controllers.Collaboration.textBreakBefore": "З новай старонкі", - "Common.Controllers.Collaboration.textCancel": "Скасаваць", - "Common.Controllers.Collaboration.textCaps": "Усе ў верхнім рэгістры", - "Common.Controllers.Collaboration.textCenter": "Выраўноўванне па цэнтры", - "Common.Controllers.Collaboration.textChart": "Дыяграма", - "Common.Controllers.Collaboration.textColor": "Колер шрыфту", - "Common.Controllers.Collaboration.textContextual": "Не дадаваць прамежак паміж абзацамі аднаго стылю", - "Common.Controllers.Collaboration.textDelete": "Выдаліць", - "Common.Controllers.Collaboration.textDeleteComment": "Выдаліць каментар", - "Common.Controllers.Collaboration.textDeleted": "Выдалена:", - "Common.Controllers.Collaboration.textDeleteReply": "Выдаліць адказ", - "Common.Controllers.Collaboration.textDone": "Завершана", - "Common.Controllers.Collaboration.textDStrikeout": "Падвойнае закрэсліванне", - "Common.Controllers.Collaboration.textEdit": "Рэдагаваць", - "Common.Controllers.Collaboration.textEditUser": "Дакумент рэдагуецца карыстальнікамі:", - "Common.Controllers.Collaboration.textEquation": "Раўнанне", - "Common.Controllers.Collaboration.textExact": "дакладна", - "Common.Controllers.Collaboration.textFirstLine": "Першы радок", - "Common.Controllers.Collaboration.textFormatted": "Адфарматавана", - "Common.Controllers.Collaboration.textHighlight": "Колер падсвятлення", - "Common.Controllers.Collaboration.textImage": "Выява", - "Common.Controllers.Collaboration.textIndentLeft": "Водступ злева", - "Common.Controllers.Collaboration.textIndentRight": "Водступ справа", - "Common.Controllers.Collaboration.textInserted": "Устаўлена:", - "Common.Controllers.Collaboration.textItalic": "Курсіў", - "Common.Controllers.Collaboration.textJustify": "Па шырыні", - "Common.Controllers.Collaboration.textKeepLines": "Не падзяляць абзац", - "Common.Controllers.Collaboration.textKeepNext": "Не адасобліваць ад наступнага", - "Common.Controllers.Collaboration.textLeft": "Выраўнаваць па леваму краю", - "Common.Controllers.Collaboration.textLineSpacing": "Прамежак паміж радкамі:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Сапраўды хочаце выдаліць гэты каментар?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Сапраўды хочаце выдаліць гэты адказ?", - "Common.Controllers.Collaboration.textMultiple": "множнік", - "Common.Controllers.Collaboration.textNoBreakBefore": "Не з новай старонкі", - "Common.Controllers.Collaboration.textNoChanges": "Змен няма.", - "Common.Controllers.Collaboration.textNoContextual": "Дадаваць прамежак паміж абзацамі аднаго стылю", - "Common.Controllers.Collaboration.textNoKeepLines": "Дазволіць разрыў абзаца ", - "Common.Controllers.Collaboration.textNoKeepNext": "Дазволіць адрываць ад наступнага", - "Common.Controllers.Collaboration.textNot": "Не", - "Common.Controllers.Collaboration.textNoWidow": "Без кіравання акном", - "Common.Controllers.Collaboration.textNum": "Змяніць нумарацыю", - "Common.Controllers.Collaboration.textParaDeleted": "Абзац выдалены", - "Common.Controllers.Collaboration.textParaFormatted": "Абзац адфарматаваны", - "Common.Controllers.Collaboration.textParaInserted": "Абзац дададзены", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Перамешчана ўніз:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Перамешчана ўверх:", - "Common.Controllers.Collaboration.textParaMoveTo": "Перамешчана:", - "Common.Controllers.Collaboration.textPosition": "Пазіцыя", - "Common.Controllers.Collaboration.textReopen": "Адкрыць зноў", - "Common.Controllers.Collaboration.textResolve": "Вырашыць", - "Common.Controllers.Collaboration.textRight": "Выраўнаваць па праваму краю", - "Common.Controllers.Collaboration.textShape": "Фігура", - "Common.Controllers.Collaboration.textShd": "Колер фону", - "Common.Controllers.Collaboration.textSmallCaps": "Малыя прапісныя", - "Common.Controllers.Collaboration.textSpacing": "Прамежак", - "Common.Controllers.Collaboration.textSpacingAfter": "Прамежак пасля", - "Common.Controllers.Collaboration.textSpacingBefore": "Прамежак перад", - "Common.Controllers.Collaboration.textStrikeout": "Закрэслены", - "Common.Controllers.Collaboration.textSubScript": "Падрадковыя", - "Common.Controllers.Collaboration.textSuperScript": "Надрадковыя", - "Common.Controllers.Collaboration.textTableChanged": "Налады табліцы змененыя", - "Common.Controllers.Collaboration.textTableRowsAdd": "Радкі дададзеныя ў табліцу", - "Common.Controllers.Collaboration.textTableRowsDel": "Радкі выдаленыя з табліцы", - "Common.Controllers.Collaboration.textTabs": "Змяніць табуляцыі", - "Common.Controllers.Collaboration.textUnderline": "Падкрэслены", - "Common.Controllers.Collaboration.textWidow": "Кіраванне акном", - "Common.Controllers.Collaboration.textYes": "Так", - "Common.UI.ThemeColorPalette.textCustomColors": "Адвольныя колеры", - "Common.UI.ThemeColorPalette.textStandartColors": "Стандартныя колеры", - "Common.UI.ThemeColorPalette.textThemeColors": "Колеры тэмы", - "Common.Utils.Metric.txtCm": "см", - "Common.Utils.Metric.txtPt": "пт", - "Common.Views.Collaboration.textAccept": "Ухваліць", - "Common.Views.Collaboration.textAcceptAllChanges": "Ухваліць усе змены", - "Common.Views.Collaboration.textAddReply": "Дадаць адказ", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Усе змены ўхваленыя (папярэдні прагляд)", - "Common.Views.Collaboration.textAllChangesEditing": "Усе змены (рэдагаванне)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Усе змены адкінутыя (папярэдні прагляд)", - "Common.Views.Collaboration.textBack": "Назад", - "Common.Views.Collaboration.textCancel": "Скасаваць", - "Common.Views.Collaboration.textChange": "Прагляд змен", - "Common.Views.Collaboration.textCollaboration": "Сумесная праца", - "Common.Views.Collaboration.textDisplayMode": "Адлюстраванне", - "Common.Views.Collaboration.textDone": "Завершана", - "Common.Views.Collaboration.textEditReply": "Рэдагаваць адказ", - "Common.Views.Collaboration.textEditUsers": "Карыстальнікі", - "Common.Views.Collaboration.textEditСomment": "Рэдагаваць каментар", - "Common.Views.Collaboration.textFinal": "Выніковы дакумент", - "Common.Views.Collaboration.textMarkup": "Змены", - "Common.Views.Collaboration.textNoComments": "Да гэтага дакумента няма каментароў", - "Common.Views.Collaboration.textOriginal": "Зыходны дакумент", - "Common.Views.Collaboration.textReject": "Адхіліць", - "Common.Views.Collaboration.textRejectAllChanges": "Адхіліць усе змены", - "Common.Views.Collaboration.textReview": "Адсочванне змен", - "Common.Views.Collaboration.textReviewing": "Перагляд", - "Common.Views.Collaboration.textСomments": "Каментары", - "DE.Controllers.AddContainer.textImage": "Выява", - "DE.Controllers.AddContainer.textOther": "Іншае", - "DE.Controllers.AddContainer.textShape": "Фігура", - "DE.Controllers.AddContainer.textTable": "Табліца", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Увага", - "DE.Controllers.AddImage.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", - "DE.Controllers.AddImage.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Увага", - "DE.Controllers.AddOther.textBelowText": "Пад тэкстам", - "DE.Controllers.AddOther.textBottomOfPage": "Унізе старонкі", - "DE.Controllers.AddOther.textCancel": "Скасаваць", - "DE.Controllers.AddOther.textContinue": "Працягнуць", - "DE.Controllers.AddOther.textDelete": "Выдаліць", - "DE.Controllers.AddOther.textDeleteDraft": "Сапраўды хочаце выдаліць чарнавік?", - "DE.Controllers.AddOther.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "DE.Controllers.AddTable.textCancel": "Скасаваць", - "DE.Controllers.AddTable.textColumns": "Слупкі", - "DE.Controllers.AddTable.textRows": "Радкі", - "DE.Controllers.AddTable.textTableSize": "Памеры табліцы", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Аперацыі капіявання, выразання і ўстаўкі праз кантэкстнае меню будуць выконвацца толькі ў бягучым файле.", - "DE.Controllers.DocumentHolder.menuAddComment": "Дадаць каментар", - "DE.Controllers.DocumentHolder.menuAddLink": "Дадаць спасылку", - "DE.Controllers.DocumentHolder.menuCopy": "Капіяваць", - "DE.Controllers.DocumentHolder.menuCut": "Выразаць", - "DE.Controllers.DocumentHolder.menuDelete": "Выдаліць", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Выдаліць табліцу", - "DE.Controllers.DocumentHolder.menuEdit": "Рэдагаваць", - "DE.Controllers.DocumentHolder.menuMerge": "Аб’яднаць ячэйкі", - "DE.Controllers.DocumentHolder.menuMore": "Больш", - "DE.Controllers.DocumentHolder.menuOpenLink": "Адкрыць спасылку", - "DE.Controllers.DocumentHolder.menuPaste": "Уставіць", - "DE.Controllers.DocumentHolder.menuReview": "Перагляд", - "DE.Controllers.DocumentHolder.menuReviewChange": "Прагляд змен", - "DE.Controllers.DocumentHolder.menuSplit": "Падзяліць ячэйку", - "DE.Controllers.DocumentHolder.menuViewComment": "Праглядзець каментар", - "DE.Controllers.DocumentHolder.sheetCancel": "Скасаваць", - "DE.Controllers.DocumentHolder.textCancel": "Скасаваць", - "DE.Controllers.DocumentHolder.textColumns": "Слупкі", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Скапіяваць, выразаць, уставіць", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Больш не паказваць", - "DE.Controllers.DocumentHolder.textGuest": "Госць", - "DE.Controllers.DocumentHolder.textRows": "Радкі", - "DE.Controllers.EditContainer.textChart": "Дыяграма", - "DE.Controllers.EditContainer.textFooter": "Ніжні калантытул", - "DE.Controllers.EditContainer.textHeader": "Верхні калантытул", - "DE.Controllers.EditContainer.textHyperlink": "Гіперспасылка", - "DE.Controllers.EditContainer.textImage": "Выява", - "DE.Controllers.EditContainer.textParagraph": "Абзац", - "DE.Controllers.EditContainer.textSettings": "Налады", - "DE.Controllers.EditContainer.textShape": "Фігура", - "DE.Controllers.EditContainer.textTable": "Табліца", - "DE.Controllers.EditContainer.textText": "Тэкст", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Увага", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Увага", - "DE.Controllers.EditImage.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", - "DE.Controllers.EditImage.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "DE.Controllers.EditText.textAuto": "Аўта", - "DE.Controllers.EditText.textFonts": "Шрыфты", - "DE.Controllers.EditText.textPt": "пт", - "DE.Controllers.Main.advDRMEnterPassword": "Увядзіце ваш пароль:", - "DE.Controllers.Main.advDRMOptions": "Абаронены файл", - "DE.Controllers.Main.advDRMPassword": "Пароль", - "DE.Controllers.Main.advTxtOptions": "Абраць параметры TXT", - "DE.Controllers.Main.applyChangesTextText": "Загрузка даных…", - "DE.Controllers.Main.applyChangesTitleText": "Загрузка даных", - "DE.Controllers.Main.closeButtonText": "Закрыць файл", - "DE.Controllers.Main.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", - "DE.Controllers.Main.criticalErrorExtText": "Націсніце \"Добра\", каб вярнуцца да спіса дакументаў.", - "DE.Controllers.Main.criticalErrorTitle": "Памылка", - "DE.Controllers.Main.downloadErrorText": "Не атрымалася спампаваць.", - "DE.Controllers.Main.downloadMergeText": "Спампоўванне...", - "DE.Controllers.Main.downloadMergeTitle": "Спампоўванне", - "DE.Controllers.Main.downloadTextText": "Спампоўванне дакумента...", - "DE.Controllers.Main.downloadTitleText": "Спампоўванне дакумента", - "DE.Controllers.Main.errorAccessDeny": "Вы спрабуеце выканаць дзеянне, на якое не маеце правоў.
    Калі ласка, звярніцеся да адміністратара сервера дакументаў.", - "DE.Controllers.Main.errorBadImageUrl": "Хібны URL-адрас выявы", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Злучэнне з серверам страчана. Рэдагаваць немагчыма.", - "DE.Controllers.Main.errorConnectToServer": "Не атрымалася захаваць дакумент. Праверце налады злучэння альбо звярніцеся да вашага адміністратара.
    Калі вы націснеце кнопку \"Добра\", вам прапануецца спампаваць дакумент.", - "DE.Controllers.Main.errorDatabaseConnection": "Вонкавая памылка.
    Памылка злучэння з базай даных. Калі ласка, звярніцеся ў службу падтрымкі.", - "DE.Controllers.Main.errorDataEncrypted": "Атрыманы зашыфраваныя змены, іх немагчыма расшыфраваць.", - "DE.Controllers.Main.errorDataRange": "Хібны дыяпазон даных.", - "DE.Controllers.Main.errorDefaultMessage": "Код памылкі: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Падчас працы з дакументам адбылася памылка.
    Выкарыстайце \"Спампаваць\", каб захаваць рэзервовую копію файла на цвёрдым дыску камп’ютара.", - "DE.Controllers.Main.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", - "DE.Controllers.Main.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
    Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", - "DE.Controllers.Main.errorKeyEncrypt": "Невядомы дэскрыптар ключа", - "DE.Controllers.Main.errorKeyExpire": "Тэрмін дзеяння ключа дэскрыптара сышоў", - "DE.Controllers.Main.errorMailMergeLoadFile": "Не атрымалася загрузіць. Абярыце іншы файл.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Не атрымалася аб’яднаць.", - "DE.Controllers.Main.errorOpensource": "Выкарыстоўваючы бясплатную версію вы можаце адкрываць дакументы толькі для прагляду. Для доступу да мабільных сеціўных рэдактараў патрабуецца камерцыйная ліцэнзія.", - "DE.Controllers.Main.errorProcessSaveResult": "Не атрымалася захаваць.", - "DE.Controllers.Main.errorServerVersion": "Рэдактар быў абноўлены. Старонка перазагрузіцца, каб ужыць змены.", - "DE.Controllers.Main.errorSessionAbsolute": "Час сеанса рэдагавання дакумента сышоў. Калі ласка, абнавіце старонку.", - "DE.Controllers.Main.errorSessionIdle": "Дакумент працяглы час не рэдагаваўся. Калі ласка, абнавіце старонку.", - "DE.Controllers.Main.errorSessionToken": "Злучэнне з серверам перарванае. Калі ласка, абнавіце старонку.", - "DE.Controllers.Main.errorStockChart": "Хібны парадак радкоў. Каб стварыць біржавую дыяграму размясціце даныя ў наступным парадку:
    кошт адкрыцця, максімальны кошт, мінімальны кошт, кошт закрыцця.", - "DE.Controllers.Main.errorUpdateVersion": "Версія файла была змененая. Старонка будзе перазагружаная.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
    Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", - "DE.Controllers.Main.errorUserDrop": "На дадзены момант файл недаступны.", - "DE.Controllers.Main.errorUsersExceed": "Перасягнута колькасць карыстальнікаў", - "DE.Controllers.Main.errorViewerDisconnect": "Злучэнне страчана. Вы зможаце праглядаць дакумент,
    але не зможаце спампаваць яго да аднаўлення злучэння і абнаўлення старонкі.", - "DE.Controllers.Main.leavePageText": "У дакуменце засталіся незахаваныя змены. Націсніце \"Застацца на старонцы\", каб дачакацца аўтазахавання дакумента. Націсніце \"Сысці са старонкі\", каб адкінуць змены.", - "DE.Controllers.Main.loadFontsTextText": "Загрузка даных…", - "DE.Controllers.Main.loadFontsTitleText": "Загрузка даных", - "DE.Controllers.Main.loadFontTextText": "Загрузка даных…", - "DE.Controllers.Main.loadFontTitleText": "Загрузка даных", - "DE.Controllers.Main.loadImagesTextText": "Загрузка выяў…", - "DE.Controllers.Main.loadImagesTitleText": "Загрузка выяў", - "DE.Controllers.Main.loadImageTextText": "Загрузка выявы…", - "DE.Controllers.Main.loadImageTitleText": "Загрузка выявы", - "DE.Controllers.Main.loadingDocumentTextText": "Загрузка дакумента…", - "DE.Controllers.Main.loadingDocumentTitleText": "Загрузка дакумента", - "DE.Controllers.Main.mailMergeLoadFileText": "Загрузка крыніцы даных…", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Загрузка крыніцы даных", - "DE.Controllers.Main.notcriticalErrorTitle": "Увага", - "DE.Controllers.Main.openErrorText": "Падчас адкрыцця файла адбылася памылка.", - "DE.Controllers.Main.openTextText": "Адкрыццё дакумента…", - "DE.Controllers.Main.openTitleText": "Адкрыццё дакумента", - "DE.Controllers.Main.printTextText": "Друкаванне дакумента…", - "DE.Controllers.Main.printTitleText": "Друкаванне дакумента", - "DE.Controllers.Main.saveErrorText": "Падчас захавання файла адбылася памылка.", - "DE.Controllers.Main.savePreparingText": "Падрыхтоўка да захавання", - "DE.Controllers.Main.savePreparingTitle": "Падрыхтоўка да захавання. Калі ласка, пачакайце…", - "DE.Controllers.Main.saveTextText": "Захаванне дакумента…", - "DE.Controllers.Main.saveTitleText": "Захаванне дакумента", - "DE.Controllers.Main.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", - "DE.Controllers.Main.sendMergeText": "Адпраўленне вынікаў аб’яднання…", - "DE.Controllers.Main.sendMergeTitle": "Адпраўленне вынікаў аб’яднання", - "DE.Controllers.Main.splitDividerErrorText": "Колькасць радкоў мусіць быць дзельнікам для %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Колькасць слупкоў павінна быць меншай за %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Колькасць радкоў павінна быць меншай за %1", - "DE.Controllers.Main.textAnonymous": "Ананімны карыстальнік", - "DE.Controllers.Main.textBack": "Назад", - "DE.Controllers.Main.textBuyNow": "Наведаць сайт", - "DE.Controllers.Main.textCancel": "Скасаваць", - "DE.Controllers.Main.textClose": "Закрыць", - "DE.Controllers.Main.textContactUs": "Аддзел продажаў", - "DE.Controllers.Main.textCustomLoader": "Звярніце ўвагу, што па ўмовах ліцэнзіі вы не можаце змяняць экран загрузкі.
    Калі ласка, звярніцеся ў аддзел продажу.", - "DE.Controllers.Main.textDone": "Завершана", - "DE.Controllers.Main.textHasMacros": "Файл змяшчае макрасы з аўтазапускам.
    Хочаце запусціць макрасы?", - "DE.Controllers.Main.textLoadingDocument": "Загрузка дакумента", - "DE.Controllers.Main.textNo": "Не", - "DE.Controllers.Main.textNoLicenseTitle": "Ліцэнзійнае абмежаванне", - "DE.Controllers.Main.textOK": "Добра", - "DE.Controllers.Main.textPaidFeature": "Платная функцыя", - "DE.Controllers.Main.textPassword": "Пароль", - "DE.Controllers.Main.textPreloader": "Загрузка…", - "DE.Controllers.Main.textRemember": "Запомніць мой выбар", - "DE.Controllers.Main.textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.", - "DE.Controllers.Main.textUsername": "Імя карыстальніка", - "DE.Controllers.Main.textYes": "Так", - "DE.Controllers.Main.titleLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў", - "DE.Controllers.Main.titleServerVersion": "Рэдактар абноўлены", - "DE.Controllers.Main.titleUpdateVersion": "Версія змянілася", - "DE.Controllers.Main.txtArt": "Увядзіце ваш тэкст", - "DE.Controllers.Main.txtDiagramTitle": "Загаловак дыяграмы", - "DE.Controllers.Main.txtEditingMode": "Актывацыя рэжыму рэдагавання…", - "DE.Controllers.Main.txtFooter": "Ніжні калантытул", - "DE.Controllers.Main.txtHeader": "Верхні калантытул", - "DE.Controllers.Main.txtProtected": "Калі вы ўвядзеце пароль і адкрыеце файл, бягучы пароль да файла скінецца", - "DE.Controllers.Main.txtSeries": "Шэраг", - "DE.Controllers.Main.txtStyle_footnote_text": "Тэкст калантытула", - "DE.Controllers.Main.txtStyle_Heading_1": "Загаловак 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Загаловак 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Загаловак 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Загаловак 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Загаловак 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Загаловак 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Загаловак 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Загаловак 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Загаловак 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Вылучаная цытата", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Абзац спіса", - "DE.Controllers.Main.txtStyle_No_Spacing": "Без прамежку", - "DE.Controllers.Main.txtStyle_Normal": "Звычайны", - "DE.Controllers.Main.txtStyle_Quote": "Цытата", - "DE.Controllers.Main.txtStyle_Subtitle": "Падзагаловак", - "DE.Controllers.Main.txtStyle_Title": "Назва", - "DE.Controllers.Main.txtXAxis": "Вось Х", - "DE.Controllers.Main.txtYAxis": "Вось Y", - "DE.Controllers.Main.unknownErrorText": "Невядомая памылка.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", - "DE.Controllers.Main.uploadImageExtMessage": "Невядомы фармат выявы.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Выяў не запампавана.", - "DE.Controllers.Main.uploadImageSizeMessage": "Перасягнуты максімальны памер выявы.", - "DE.Controllers.Main.uploadImageTextText": "Запампоўванне выявы…", - "DE.Controllers.Main.uploadImageTitleText": "Запампоўванне выявы", - "DE.Controllers.Main.waitText": "Калі ласка, пачакайце...", - "DE.Controllers.Main.warnLicenseExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
    Звяжыцеся з адміністратарам, каб даведацца больш.", - "DE.Controllers.Main.warnLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў.
    Калі ласка, абнавіце ліцэнзію, пасля абнавіце старонку.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
    Звяжыцеся з адміністратарам, каб даведацца больш.", - "DE.Controllers.Main.warnNoLicense": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
    Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", - "DE.Controllers.Main.warnNoLicenseUsers": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
    Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", - "DE.Controllers.Main.warnProcessRightsChange": "Вам адмоўлена ў правах на рэдагаванне гэтага файла.", - "DE.Controllers.Search.textNoTextFound": "Тэкст не знойдзены", - "DE.Controllers.Search.textReplaceAll": "Замяніць усе", - "DE.Controllers.Settings.notcriticalErrorTitle": "Увага", - "DE.Controllers.Settings.textCustomSize": "Адвольны памер", - "DE.Controllers.Settings.txtLoading": "Загрузка…", - "DE.Controllers.Settings.unknownText": "Невядома", - "DE.Controllers.Settings.warnDownloadAs": "Калі вы працягнеце захаванне ў гэты фармат, усе функцыі, апроч тэксту страцяцца.
    Сапраўды хочаце працягнуць?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Калі вы працягнеце захаванне ў гэты фармат, то частка фарматавання страціцца.
    Сапраўды працягнуць?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "У дакуменце засталіся незахаваныя змены. Націсніце \"Застацца на старонцы\", каб дачакацца аўтазахавання дакумента. Націсніце \"Сысці са старонкі\", каб адкінуць змены.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Вы выходзіце з праграмы", - "DE.Controllers.Toolbar.leaveButtonText": "Сысці са старонкі", - "DE.Controllers.Toolbar.stayButtonText": "Застацца на старонцы", - "DE.Views.AddImage.textAddress": "Адрас", - "DE.Views.AddImage.textBack": "Назад", - "DE.Views.AddImage.textFromLibrary": "Выява з бібліятэкі", - "DE.Views.AddImage.textFromURL": "Выява па URL", - "DE.Views.AddImage.textImageURL": "URL выявы", - "DE.Views.AddImage.textInsertImage": "Уставіць выяву", - "DE.Views.AddImage.textLinkSettings": "Налады спасылкі", - "DE.Views.AddOther.textAddComment": "Дадаць каментар", - "DE.Views.AddOther.textAddLink": "Дадаць спасылку", - "DE.Views.AddOther.textBack": "Назад", - "DE.Views.AddOther.textBreak": "Разрыў", - "DE.Views.AddOther.textCenterBottom": "Знізу па цэнтры", - "DE.Views.AddOther.textCenterTop": "Зверху па цэнтры", - "DE.Views.AddOther.textColumnBreak": "Перарыванне слупка", - "DE.Views.AddOther.textComment": "Каментар", - "DE.Views.AddOther.textContPage": "На бягучай старонцы", - "DE.Views.AddOther.textCurrentPos": "Бягучая пазіцыя", - "DE.Views.AddOther.textDisplay": "Паказаць", - "DE.Views.AddOther.textDone": "Завершана", - "DE.Views.AddOther.textEvenPage": "З цотнай старонкі", - "DE.Views.AddOther.textFootnote": "Зноска", - "DE.Views.AddOther.textFormat": "Фарматаванне", - "DE.Views.AddOther.textInsert": "Уставіць", - "DE.Views.AddOther.textInsertFootnote": "Уставіць зноску", - "DE.Views.AddOther.textLeftBottom": "Злева знізу", - "DE.Views.AddOther.textLeftTop": "Злева зверху", - "DE.Views.AddOther.textLink": "Спасылка", - "DE.Views.AddOther.textLocation": "Размяшчэнне", - "DE.Views.AddOther.textNextPage": "Наступная старонка", - "DE.Views.AddOther.textOddPage": "З няцотнай старонкі", - "DE.Views.AddOther.textPageBreak": "Разрыў старонкі", - "DE.Views.AddOther.textPageNumber": "Нумар старонкі", - "DE.Views.AddOther.textPosition": "Пазіцыя", - "DE.Views.AddOther.textRightBottom": "Знізу справа", - "DE.Views.AddOther.textRightTop": "Зверху справа", - "DE.Views.AddOther.textSectionBreak": "Разрыў раздзела", - "DE.Views.AddOther.textStartFrom": "Пачаць з", - "DE.Views.AddOther.textTip": "Падказка", - "DE.Views.EditChart.textAddCustomColor": "Дадаць адвольны колер", - "DE.Views.EditChart.textAlign": "Выраўноўванне", - "DE.Views.EditChart.textBack": "Назад", - "DE.Views.EditChart.textBackward": "Перамясціць назад", - "DE.Views.EditChart.textBehind": "За", - "DE.Views.EditChart.textBorder": "Мяжа", - "DE.Views.EditChart.textColor": "Колер", - "DE.Views.EditChart.textCustomColor": "Адвольны колер", - "DE.Views.EditChart.textDistanceText": "Адлегласць да тэксту", - "DE.Views.EditChart.textFill": "Заліўка", - "DE.Views.EditChart.textForward": "Перамясціць уперад", - "DE.Views.EditChart.textInFront": "Перад тэкстам", - "DE.Views.EditChart.textInline": "У тэксце", - "DE.Views.EditChart.textMoveText": "Перамяшчаць з тэкстам", - "DE.Views.EditChart.textOverlap": "Дазволіць перакрыццё", - "DE.Views.EditChart.textRemoveChart": "Выдаліць дыяграму", - "DE.Views.EditChart.textReorder": "Перапарадкаваць", - "DE.Views.EditChart.textSize": "Памер", - "DE.Views.EditChart.textSquare": "Вакол", - "DE.Views.EditChart.textStyle": "Стыль", - "DE.Views.EditChart.textThrough": "Скразное", - "DE.Views.EditChart.textTight": "Па межах", - "DE.Views.EditChart.textToBackground": "Перамясціць у фон", - "DE.Views.EditChart.textToForeground": "Перанесці на пярэдні план", - "DE.Views.EditChart.textTopBottom": "Уверсе і ўнізе", - "DE.Views.EditChart.textType": "Тып", - "DE.Views.EditChart.textWrap": "Абцяканне", - "DE.Views.EditHeader.textDiffFirst": "Асобны для першай старонкі", - "DE.Views.EditHeader.textDiffOdd": "Асобныя для цотных і няцотных", - "DE.Views.EditHeader.textFrom": "Пачаць з", - "DE.Views.EditHeader.textPageNumbering": "Нумарацыя старонак", - "DE.Views.EditHeader.textPrev": "Працягнуць", - "DE.Views.EditHeader.textSameAs": "Звязаць з папярэднім", - "DE.Views.EditHyperlink.textDisplay": "Паказаць", - "DE.Views.EditHyperlink.textEdit": "Рэдагаваць спасылку", - "DE.Views.EditHyperlink.textLink": "Спасылка", - "DE.Views.EditHyperlink.textRemove": "Выдаліць спасылку", - "DE.Views.EditHyperlink.textTip": "Падказка", - "DE.Views.EditImage.textAddress": "Адрас", - "DE.Views.EditImage.textAlign": "Выраўноўванне", - "DE.Views.EditImage.textBack": "Назад", - "DE.Views.EditImage.textBackward": "Перамясціць назад", - "DE.Views.EditImage.textBehind": "За", - "DE.Views.EditImage.textDefault": "Актуальны памер", - "DE.Views.EditImage.textDistanceText": "Адлегласць да тэксту", - "DE.Views.EditImage.textForward": "Перамясціць уперад", - "DE.Views.EditImage.textFromLibrary": "Выява з бібліятэкі", - "DE.Views.EditImage.textFromURL": "Выява па URL", - "DE.Views.EditImage.textImageURL": "URL выявы", - "DE.Views.EditImage.textInFront": "Перад тэкстам", - "DE.Views.EditImage.textInline": "У тэксце", - "DE.Views.EditImage.textLinkSettings": "Гіперспасылка", - "DE.Views.EditImage.textMoveText": "Перамяшчаць з тэкстам", - "DE.Views.EditImage.textOverlap": "Дазволіць перакрыццё", - "DE.Views.EditImage.textRemove": "Выдаліць выяву", - "DE.Views.EditImage.textReorder": "Перапарадкаваць", - "DE.Views.EditImage.textReplace": "Замяніць", - "DE.Views.EditImage.textReplaceImg": "Замяніць выяву", - "DE.Views.EditImage.textSquare": "Вакол", - "DE.Views.EditImage.textThrough": "Скразное", - "DE.Views.EditImage.textTight": "Па межах", - "DE.Views.EditImage.textToBackground": "Перамясціць у фон", - "DE.Views.EditImage.textToForeground": "Перанесці на пярэдні план", - "DE.Views.EditImage.textTopBottom": "Уверсе і ўнізе", - "DE.Views.EditImage.textWrap": "Абцяканне", - "DE.Views.EditParagraph.textAddCustomColor": "Дадаць адвольны колер", - "DE.Views.EditParagraph.textAdvanced": "Дадаткова", - "DE.Views.EditParagraph.textAdvSettings": "Дадатковыя налады", - "DE.Views.EditParagraph.textAfter": "Пасля", - "DE.Views.EditParagraph.textAuto": "Аўта", - "DE.Views.EditParagraph.textBack": "Назад", - "DE.Views.EditParagraph.textBackground": "Фон", - "DE.Views.EditParagraph.textBefore": "Перад", - "DE.Views.EditParagraph.textCustomColor": "Адвольны колер", - "DE.Views.EditParagraph.textFirstLine": "Першы радок", - "DE.Views.EditParagraph.textFromText": "Адлегласць да тэксту", - "DE.Views.EditParagraph.textKeepLines": "Не падзяляць абзац", - "DE.Views.EditParagraph.textKeepNext": "Не адасобліваць ад наступнага", - "DE.Views.EditParagraph.textOrphan": "Кіраванне вісячымі радкамі", - "DE.Views.EditParagraph.textPageBreak": "З новай старонкі", - "DE.Views.EditParagraph.textPrgStyles": "Стылі абзаца", - "DE.Views.EditParagraph.textSpaceBetween": "Прамежак паміж абзацамі", - "DE.Views.EditShape.textAddCustomColor": "Дадаць адвольны колер", - "DE.Views.EditShape.textAlign": "Выраўноўванне", - "DE.Views.EditShape.textBack": "Назад", - "DE.Views.EditShape.textBackward": "Перамясціць назад", - "DE.Views.EditShape.textBehind": "За", - "DE.Views.EditShape.textBorder": "Мяжа", - "DE.Views.EditShape.textColor": "Колер", - "DE.Views.EditShape.textCustomColor": "Адвольны колер", - "DE.Views.EditShape.textEffects": "Эфекты", - "DE.Views.EditShape.textFill": "Заліўка", - "DE.Views.EditShape.textForward": "Перамясціць уперад", - "DE.Views.EditShape.textFromText": "Адлегласць да тэксту", - "DE.Views.EditShape.textInFront": "Перад тэкстам", - "DE.Views.EditShape.textInline": "У тэксце", - "DE.Views.EditShape.textOpacity": "Непразрыстасць", - "DE.Views.EditShape.textOverlap": "Дазволіць перакрыццё", - "DE.Views.EditShape.textRemoveShape": "Выдаліць фігуру", - "DE.Views.EditShape.textReorder": "Перапарадкаваць", - "DE.Views.EditShape.textReplace": "Замяніць", - "DE.Views.EditShape.textSize": "Памер", - "DE.Views.EditShape.textSquare": "Вакол", - "DE.Views.EditShape.textStyle": "Стыль", - "DE.Views.EditShape.textThrough": "Скразное", - "DE.Views.EditShape.textTight": "Па межах", - "DE.Views.EditShape.textToBackground": "Перамясціць у фон", - "DE.Views.EditShape.textToForeground": "Перанесці на пярэдні план", - "DE.Views.EditShape.textTopAndBottom": "Уверсе і ўнізе", - "DE.Views.EditShape.textWithText": "Перамяшчаць з тэкстам", - "DE.Views.EditShape.textWrap": "Абцяканне", - "DE.Views.EditTable.textAddCustomColor": "Дадаць адвольны колер", - "DE.Views.EditTable.textAlign": "Выраўноўванне", - "DE.Views.EditTable.textBack": "Назад", - "DE.Views.EditTable.textBandedColumn": "Чаргаваць слупкі", - "DE.Views.EditTable.textBandedRow": "Чаргаваць радкі", - "DE.Views.EditTable.textBorder": "Мяжа", - "DE.Views.EditTable.textCellMargins": "Палі ячэйкі", - "DE.Views.EditTable.textColor": "Колер", - "DE.Views.EditTable.textCustomColor": "Адвольны колер", - "DE.Views.EditTable.textFill": "Заліўка", - "DE.Views.EditTable.textFirstColumn": "Першы слупок", - "DE.Views.EditTable.textFlow": "Плаваючая", - "DE.Views.EditTable.textFromText": "Адлегласць да тэксту", - "DE.Views.EditTable.textHeaderRow": "Радок загалоўка", - "DE.Views.EditTable.textInline": "У тэксце", - "DE.Views.EditTable.textLastColumn": "Апошні слупок", - "DE.Views.EditTable.textOptions": "Параметры", - "DE.Views.EditTable.textRemoveTable": "Выдаліць табліцу", - "DE.Views.EditTable.textRepeatHeader": "Паўтараць як загаловак", - "DE.Views.EditTable.textResizeFit": "Расцягнуць да памераў змесціва", - "DE.Views.EditTable.textSize": "Памер", - "DE.Views.EditTable.textStyle": "Стыль", - "DE.Views.EditTable.textStyleOptions": "Параметры стылю", - "DE.Views.EditTable.textTableOptions": "Параметры табліцы", - "DE.Views.EditTable.textTotalRow": "Радок вынікаў", - "DE.Views.EditTable.textWithText": "Перамяшчаць з тэкстам", - "DE.Views.EditTable.textWrap": "Абцяканне", - "DE.Views.EditText.textAddCustomColor": "Дадаць адвольны колер", - "DE.Views.EditText.textAdditional": "Дадаткова", - "DE.Views.EditText.textAdditionalFormat": "Дадатковае фарматаванне", - "DE.Views.EditText.textAllCaps": "Усе ў верхнім рэгістры", - "DE.Views.EditText.textAutomatic": "Аўтаматычна", - "DE.Views.EditText.textBack": "Назад", - "DE.Views.EditText.textBullets": "Адзнакі", - "DE.Views.EditText.textCharacterBold": "Т", - "DE.Views.EditText.textCharacterItalic": "К", - "DE.Views.EditText.textCharacterStrikethrough": "З", - "DE.Views.EditText.textCharacterUnderline": "П", - "DE.Views.EditText.textCustomColor": "Адвольны колер", - "DE.Views.EditText.textDblStrikethrough": "Падвойнае закрэсліванне", - "DE.Views.EditText.textDblSuperscript": "Надрадковыя", - "DE.Views.EditText.textFontColor": "Колер шрыфту", - "DE.Views.EditText.textFontColors": "Колеры шрыфту", - "DE.Views.EditText.textFonts": "Шрыфты", - "DE.Views.EditText.textHighlightColor": "Колер падсвятлення", - "DE.Views.EditText.textHighlightColors": "Колеры падсвятлення", - "DE.Views.EditText.textLetterSpacing": "Прамежак", - "DE.Views.EditText.textLineSpacing": "Прамежак паміж радкамі", - "DE.Views.EditText.textNone": "Няма", - "DE.Views.EditText.textNumbers": "Нумарацыя", - "DE.Views.EditText.textSize": "Памер", - "DE.Views.EditText.textSmallCaps": "Малыя прапісныя", - "DE.Views.EditText.textStrikethrough": "Закрэслены", - "DE.Views.EditText.textSubscript": "Падрадковыя", - "DE.Views.Search.textCase": "Улічваць рэгістр", - "DE.Views.Search.textDone": "Завершана", - "DE.Views.Search.textFind": "Пошук", - "DE.Views.Search.textFindAndReplace": "Пошук і замена", - "DE.Views.Search.textHighlight": "Падсвятліць вынікі", - "DE.Views.Search.textReplace": "Замяніць", - "DE.Views.Search.textSearch": "Пошук", - "DE.Views.Settings.textAbout": "Пра праграму", - "DE.Views.Settings.textAddress": "адрас", - "DE.Views.Settings.textAdvancedSettings": "Налады праграмы", - "DE.Views.Settings.textApplication": "Праграма", - "DE.Views.Settings.textAuthor": "Аўтар", - "DE.Views.Settings.textBack": "Назад", - "DE.Views.Settings.textBottom": "Ніжняе", - "DE.Views.Settings.textCentimeter": "Сантыметр", - "DE.Views.Settings.textCollaboration": "Сумесная праца", - "DE.Views.Settings.textColorSchemes": "Каляровыя схемы", - "DE.Views.Settings.textComment": "Каментар", - "DE.Views.Settings.textCommentingDisplay": "Адлюстраванне каментароў", - "DE.Views.Settings.textCreated": "Створаны", - "DE.Views.Settings.textCreateDate": "Дата стварэння", - "DE.Views.Settings.textCustom": "Адвольны", - "DE.Views.Settings.textCustomSize": "Адвольны памер", - "DE.Views.Settings.textDisableAll": "Адключыць усе", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Адключыць усе макрасы з апавяшчэннем", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Адключыць усе макрасы без апавяшчэння", - "DE.Views.Settings.textDisplayComments": "Каментары", - "DE.Views.Settings.textDisplayResolvedComments": "Вырашаныя каментары", - "DE.Views.Settings.textDocInfo": "Інфармацыя аб дакуменце", - "DE.Views.Settings.textDocTitle": "Назва дакумента", - "DE.Views.Settings.textDocumentFormats": "Памеры старонкі", - "DE.Views.Settings.textDocumentSettings": "Налады дакумента", - "DE.Views.Settings.textDone": "Завершана", - "DE.Views.Settings.textDownload": "Спампаваць", - "DE.Views.Settings.textDownloadAs": "Спампаваць як...", - "DE.Views.Settings.textEditDoc": "Рэдагаваць дакумент", - "DE.Views.Settings.textEmail": "электронная пошта", - "DE.Views.Settings.textEnableAll": "Уключыць усе", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Уключыць усе макрасы без апавяшчэння", - "DE.Views.Settings.textFind": "Пошук", - "DE.Views.Settings.textFindAndReplace": "Пошук і замена", - "DE.Views.Settings.textFormat": "Фармат", - "DE.Views.Settings.textHelp": "Даведка", - "DE.Views.Settings.textHiddenTableBorders": "Схаваныя межы табліц", - "DE.Views.Settings.textInch": "Цаля", - "DE.Views.Settings.textLandscape": "Альбомная", - "DE.Views.Settings.textLastModified": "Апошняя змена", - "DE.Views.Settings.textLastModifiedBy": "Аўтар апошняй змены", - "DE.Views.Settings.textLeft": "Левае", - "DE.Views.Settings.textLoading": "Загрузка…", - "DE.Views.Settings.textLocation": "Размяшчэнне", - "DE.Views.Settings.textMacrosSettings": "Налады макрасаў", - "DE.Views.Settings.textMargins": "Палі", - "DE.Views.Settings.textNoCharacters": "Недрукуемыя сімвалы", - "DE.Views.Settings.textOrientation": "Арыентацыя", - "DE.Views.Settings.textOwner": "Уладальнік", - "DE.Views.Settings.textPages": "Старонкі", - "DE.Views.Settings.textParagraphs": "Абзацы", - "DE.Views.Settings.textPoint": "Пункт", - "DE.Views.Settings.textPortrait": "Кніжная", - "DE.Views.Settings.textPoweredBy": "Распрацавана", - "DE.Views.Settings.textPrint": "Друк", - "DE.Views.Settings.textReader": "Рэжым чытання", - "DE.Views.Settings.textReview": "Адсочваць змены", - "DE.Views.Settings.textRight": "Правае", - "DE.Views.Settings.textSettings": "Налады", - "DE.Views.Settings.textShowNotification": "Паказваць апавяшчэнне", - "DE.Views.Settings.textSpaces": "Прагалы", - "DE.Views.Settings.textSpellcheck": "Праверка правапісу", - "DE.Views.Settings.textStatistic": "Статыстыка", - "DE.Views.Settings.textSubject": "Тэма", - "DE.Views.Settings.textSymbols": "Сімвалы", - "DE.Views.Settings.textTel": "Тэлефон", - "DE.Views.Settings.textTitle": "Назва", - "DE.Views.Settings.textTop": "Верхняе", - "DE.Views.Settings.textUnitOfMeasurement": "Адзінкі вымярэння", - "DE.Views.Settings.textUploaded": "Запампавана", - "DE.Views.Settings.textVersion": "Версія", - "DE.Views.Settings.textWords": "Словы", - "DE.Views.Settings.unknownText": "Невядома", - "DE.Views.Toolbar.textBack": "Назад" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/bg.json b/apps/documenteditor/mobile/locale/bg.json index 5bf04ed0e..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/bg.json +++ b/apps/documenteditor/mobile/locale/bg.json @@ -1,536 +1,577 @@ { - "Common.Controllers.Collaboration.textAtLeast": "Поне", - "Common.Controllers.Collaboration.textAuto": "Автоматичен", - "Common.Controllers.Collaboration.textBaseline": "Изходна", - "Common.Controllers.Collaboration.textBold": "Удебелен", - "Common.Controllers.Collaboration.textBreakBefore": "Прекъсване на страницата преди", - "Common.Controllers.Collaboration.textCaps": "All caps", - "Common.Controllers.Collaboration.textCenter": "Подравняване на центъра", - "Common.Controllers.Collaboration.textChart": "Диаграма", - "Common.Controllers.Collaboration.textColor": "Цвят на шрифта", - "Common.Controllers.Collaboration.textContextual": "Не добавяйте интервал между параграфите от същия стил", - "Common.Controllers.Collaboration.textDeleted": "Изтрито:", - "Common.Controllers.Collaboration.textDStrikeout": "Двойно подчертаване", - "Common.Controllers.Collaboration.textEditUser": "Понастоящем документът се редактира от няколко потребители.", - "Common.Controllers.Collaboration.textEquation": "Уравнение", - "Common.Controllers.Collaboration.textExact": "точно", - "Common.Controllers.Collaboration.textFirstLine": "Първа линия", - "Common.Controllers.Collaboration.textFormatted": "Форматиран", - "Common.Controllers.Collaboration.textHighlight": "Цвят за осветляване", - "Common.Controllers.Collaboration.textImage": "Изображение", - "Common.Controllers.Collaboration.textIndentLeft": "Отстъп вляво", - "Common.Controllers.Collaboration.textIndentRight": "Отстъп надясно", - "Common.Controllers.Collaboration.textInserted": "Добавено:", - "Common.Controllers.Collaboration.textItalic": "Курсив/Италик", - "Common.Controllers.Collaboration.textJustify": "Изравняване по ширина", - "Common.Controllers.Collaboration.textKeepLines": "Поддържайте линиите заедно", - "Common.Controllers.Collaboration.textKeepNext": "Продължете със следващия", - "Common.Controllers.Collaboration.textLeft": "Подравняване вляво", - "Common.Controllers.Collaboration.textLineSpacing": "Разстояние между редовете: ", - "Common.Controllers.Collaboration.textMultiple": "множество", - "Common.Controllers.Collaboration.textNoBreakBefore": "Няма прекъсване на страница преди това", - "Common.Controllers.Collaboration.textNoContextual": "Добавете интервал между абзаците от същия стил", - "Common.Controllers.Collaboration.textNoKeepLines": "Не поддържайте линиите заедно", - "Common.Controllers.Collaboration.textNoKeepNext": "Не продължавайте със следващия", - "Common.Controllers.Collaboration.textNot": "Не", - "Common.Controllers.Collaboration.textNoWidow": "No widow control", - "Common.Controllers.Collaboration.textNum": "Промяна на номерацията", - "Common.Controllers.Collaboration.textParaDeleted": "Изтрит абзац ", - "Common.Controllers.Collaboration.textParaFormatted": "Формат на абзаца", - "Common.Controllers.Collaboration.textParaInserted": "Вмъкнат е параграф", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Преместени надолу:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Преместени нагоре:", - "Common.Controllers.Collaboration.textParaMoveTo": "Преместен", - "Common.Controllers.Collaboration.textPosition": "Позиция", - "Common.Controllers.Collaboration.textRight": "Подравняване в дясно", - "Common.Controllers.Collaboration.textShape": "Форма", - "Common.Controllers.Collaboration.textShd": "Цвят на фона", - "Common.Controllers.Collaboration.textSmallCaps": "Малки букви", - "Common.Controllers.Collaboration.textSpacing": "Разстояние", - "Common.Controllers.Collaboration.textSpacingAfter": "Разстояние след", - "Common.Controllers.Collaboration.textSpacingBefore": "Разстояние преди", - "Common.Controllers.Collaboration.textStrikeout": "Подчертан", - "Common.Controllers.Collaboration.textSubScript": "Subscript", - "Common.Controllers.Collaboration.textSuperScript": "Superscript", - "Common.Controllers.Collaboration.textTableChanged": "Промените в табличните настройки", - "Common.Controllers.Collaboration.textTableRowsAdd": "Добавени редове на таблицата", - "Common.Controllers.Collaboration.textTableRowsDel": "Изтрити редове в таблицата", - "Common.Controllers.Collaboration.textTabs": "Промяна на разделите", - "Common.Controllers.Collaboration.textUnderline": "Подчертано", - "Common.Controllers.Collaboration.textWidow": "Widow control", - "Common.UI.ThemeColorPalette.textCustomColors": "Цветове по избор", - "Common.UI.ThemeColorPalette.textStandartColors": "Стандартни цветове", - "Common.UI.ThemeColorPalette.textThemeColors": "Цветовете на темата", - "Common.Utils.Metric.txtCm": "см", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAcceptAllChanges": "Приеми Всички Промени", - "Common.Views.Collaboration.textBack": "Обратно", - "Common.Views.Collaboration.textChange": "Преглед на промяната", - "Common.Views.Collaboration.textCollaboration": "Сътрудничество", - "Common.Views.Collaboration.textDisplayMode": "Режим на дисплея", - "Common.Views.Collaboration.textEditUsers": "Потребители", - "Common.Views.Collaboration.textFinal": "Финал", - "Common.Views.Collaboration.textMarkup": "Markup", - "Common.Views.Collaboration.textNoComments": "Този документ не съдържа коментари", - "Common.Views.Collaboration.textOriginal": "Оригинал", - "Common.Views.Collaboration.textRejectAllChanges": "Отхвърляне на всички промени", - "Common.Views.Collaboration.textReview": "Проследяване на промените", - "Common.Views.Collaboration.textReviewing": "Преглед", - "Common.Views.Collaboration.textСomments": "Коментари", - "DE.Controllers.AddContainer.textImage": "Изображение", - "DE.Controllers.AddContainer.textOther": "Друг", - "DE.Controllers.AddContainer.textShape": "Форма", - "DE.Controllers.AddContainer.textTable": "Таблица", - "DE.Controllers.AddImage.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", - "DE.Controllers.AddImage.txtNotUrl": "Това поле трябва да бъде URL адрес във формата „http://www.example.com“", - "DE.Controllers.AddOther.textBelowText": "Под текста", - "DE.Controllers.AddOther.textBottomOfPage": "В долната част на страницата", - "DE.Controllers.AddOther.txtNotUrl": "Това поле трябва да бъде URL адрес във формата „http://www.example.com“", - "DE.Controllers.AddTable.textCancel": "Отказ", - "DE.Controllers.AddTable.textColumns": "Колони", - "DE.Controllers.AddTable.textRows": "Редове", - "DE.Controllers.AddTable.textTableSize": "Размер на таблицата", - "DE.Controllers.DocumentHolder.menuAddLink": "Добавяне на връзка", - "DE.Controllers.DocumentHolder.menuCopy": "Копие", - "DE.Controllers.DocumentHolder.menuCut": "Изрежи", - "DE.Controllers.DocumentHolder.menuDelete": "Изтрий", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Изтриване на таблицата", - "DE.Controllers.DocumentHolder.menuEdit": "Редактиране", - "DE.Controllers.DocumentHolder.menuMerge": "Сливане на клетки", - "DE.Controllers.DocumentHolder.menuMore": "Повече", - "DE.Controllers.DocumentHolder.menuOpenLink": "Отвори линк", - "DE.Controllers.DocumentHolder.menuPaste": "Паста", - "DE.Controllers.DocumentHolder.menuReview": "Преглед", - "DE.Controllers.DocumentHolder.menuReviewChange": "Преглед на промяната", - "DE.Controllers.DocumentHolder.menuSplit": "Разделена клетка", - "DE.Controllers.DocumentHolder.sheetCancel": "Отказ", - "DE.Controllers.DocumentHolder.textCancel": "Откажи", - "DE.Controllers.DocumentHolder.textColumns": "Колони", - "DE.Controllers.DocumentHolder.textGuest": "Гост", - "DE.Controllers.DocumentHolder.textRows": "Редове", - "DE.Controllers.EditContainer.textChart": "Диаграма", - "DE.Controllers.EditContainer.textFooter": "Долния", - "DE.Controllers.EditContainer.textHeader": "Заглавие", - "DE.Controllers.EditContainer.textHyperlink": "Хипервръзка", - "DE.Controllers.EditContainer.textImage": "Изображение", - "DE.Controllers.EditContainer.textParagraph": "Параграф", - "DE.Controllers.EditContainer.textSettings": "Настройки", - "DE.Controllers.EditContainer.textShape": "Форма", - "DE.Controllers.EditContainer.textTable": "Таблица", - "DE.Controllers.EditContainer.textText": "Текст", - "DE.Controllers.EditImage.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", - "DE.Controllers.EditImage.txtNotUrl": "Това поле трябва да бъде URL адрес във формата „http://www.example.com“", - "DE.Controllers.EditText.textAuto": "Автоматичен", - "DE.Controllers.EditText.textFonts": "Шрифт", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Въведете паролата си:", - "DE.Controllers.Main.advDRMOptions": "Защитен файл", - "DE.Controllers.Main.advDRMPassword": "Парола", - "DE.Controllers.Main.advTxtOptions": "Изберете опциите за TXT", - "DE.Controllers.Main.applyChangesTextText": "Данните се зареждат ...", - "DE.Controllers.Main.applyChangesTitleText": "Зареждане на данни", - "DE.Controllers.Main.closeButtonText": "Затвори файла", - "DE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализация.", - "DE.Controllers.Main.criticalErrorExtText": "Натиснете 'OK', за да се върнете към списъка с документи.", - "DE.Controllers.Main.criticalErrorTitle": "Грешка", - "DE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.", - "DE.Controllers.Main.downloadMergeText": "Изтегля се ...", - "DE.Controllers.Main.downloadMergeTitle": "Изтеглянето", - "DE.Controllers.Main.downloadTextText": "Документът се изтегли ...", - "DE.Controllers.Main.downloadTitleText": "Изтегляне на документ", - "DE.Controllers.Main.errorAccessDeny": "Опитвате се да извършите действие, за което нямате права.
    Моля, свържете се с администратора на сървъра за документи.", - "DE.Controllers.Main.errorBadImageUrl": "URL адресът на изображението е неправилен", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Вече не можете да редактирате.", - "DE.Controllers.Main.errorConnectToServer": "Документът не може да бъде запасен. Моля, проверете настройките за връзка или се свържете с администратора си.
    Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа.", - "DE.Controllers.Main.errorDatabaseConnection": "Външна грешка.
    Грешка при свързване към база данни. Моля, свържете се с екипа за поддръжка.", - "DE.Controllers.Main.errorDataEncrypted": "Получени са криптирани промени, които не могат да се дефинират.", - "DE.Controllers.Main.errorDataRange": "Неправилен обхват от данни.", - "DE.Controllers.Main.errorDefaultMessage": "Код на грешка: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Възникна грешка по време на работата с документа.
    Използвайте опцията 'Download', за да запишете архивното копие на файла на твърдия диск на компютъра.", - "DE.Controllers.Main.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.", - "DE.Controllers.Main.errorFileSizeExceed": "Размерът на файла надвишава ограничението, зададено за вашия сървър.
    Моля, свържете се с вашия администратор на Document Server за подробности.", - "DE.Controllers.Main.errorKeyEncrypt": "Дескриптор на неизвестен ключ", - "DE.Controllers.Main.errorKeyExpire": "Дескрипторът на ключовете е изтекъл", - "DE.Controllers.Main.errorMailMergeLoadFile": "Неуспешно зареждане", - "DE.Controllers.Main.errorMailMergeSaveFile": "Сливането не бе успешно.", - "DE.Controllers.Main.errorProcessSaveResult": "Запазването е неуспешно.", - "DE.Controllers.Main.errorServerVersion": "Версията на редактора е актуализирана. Страницата ще бъде презаредена, за да приложи промените.", - "DE.Controllers.Main.errorStockChart": "Неправилен ред на ред. За изграждане на борсова карта поставете данните на листа в следния ред:
    цена на отваряне, максимална цена, мин. цена, цена на затваряне.", - "DE.Controllers.Main.errorUpdateVersion": "Версията на файла е променена. Страницата ще бъде презаредена.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Интернет връзката е възстановена и версията на файла е променена.
    Преди да продължите да работите, трябва да изтеглите файла или да копирате съдържанието му, за да сте сигурни, че нищо не е загубено, и след това да презаредите тази страница.", - "DE.Controllers.Main.errorUserDrop": "Файлът не може да бъде достъпен в момента.", - "DE.Controllers.Main.errorUsersExceed": "Превишен е броят на потребителите", - "DE.Controllers.Main.errorViewerDisconnect": "Връзката е загубена. Все още можете да прегледате документа, но не можете да го изтеглите, докато връзката не бъде възстановена.", - "DE.Controllers.Main.leavePageText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", - "DE.Controllers.Main.loadFontsTextText": "Данните се зареждат ...", - "DE.Controllers.Main.loadFontsTitleText": "Зареждане на данни", - "DE.Controllers.Main.loadFontTextText": "Данните се зареждат ...", - "DE.Controllers.Main.loadFontTitleText": "Зареждане на данни", - "DE.Controllers.Main.loadImagesTextText": "Изображенията се зареждат ...", - "DE.Controllers.Main.loadImagesTitleText": "Зареждане на изображения", - "DE.Controllers.Main.loadImageTextText": "Изображението се зарежда ...", - "DE.Controllers.Main.loadImageTitleText": "Зареждане на изображението", - "DE.Controllers.Main.loadingDocumentTextText": "Документът се зарежда ...", - "DE.Controllers.Main.loadingDocumentTitleText": "Зареждане на документ", - "DE.Controllers.Main.mailMergeLoadFileText": "Зареждане на източници на данни ...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Зареждане на източници на данни", - "DE.Controllers.Main.notcriticalErrorTitle": "Внимание", - "DE.Controllers.Main.openErrorText": "Възникна грешка при отварянето на файла", - "DE.Controllers.Main.openTextText": "Отваряне на документа ...", - "DE.Controllers.Main.openTitleText": "Отваряне на документ", - "DE.Controllers.Main.printTextText": "Отпечатване на документ ...", - "DE.Controllers.Main.printTitleText": "Отпечатване на документ", - "DE.Controllers.Main.saveErrorText": "Възникна грешка при запазването на файла.", - "DE.Controllers.Main.savePreparingText": "Подготовка за запазване", - "DE.Controllers.Main.savePreparingTitle": "Подготовка за запазване. Моля Изчакай ... ", - "DE.Controllers.Main.saveTextText": "Документът се запазва ...", - "DE.Controllers.Main.saveTitleText": "Запазване на документа", - "DE.Controllers.Main.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.", - "DE.Controllers.Main.sendMergeText": "Сливането се изпраща ...", - "DE.Controllers.Main.sendMergeTitle": "Изпращане на обединяване", - "DE.Controllers.Main.splitDividerErrorText": "Брой на редовете трябва да бъде делител на %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Броят на колоните трябва да бъде по-малък от %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Брой на редовете трябва да бъде по-малък от %1", - "DE.Controllers.Main.textAnonymous": "Анонимен", - "DE.Controllers.Main.textBack": "Обратно", - "DE.Controllers.Main.textBuyNow": "Посетете уебсайта", - "DE.Controllers.Main.textCancel": "Отказ", - "DE.Controllers.Main.textClose": "Затвори", - "DE.Controllers.Main.textContactUs": "Търговски отдел", - "DE.Controllers.Main.textCustomLoader": "Моля, имайте предвид, че според условията на лиценза нямате право да сменяте товарача.
    Моля, свържете се с нашия отдел Продажби, за да получите оферта.", - "DE.Controllers.Main.textDone": "Завършен", - "DE.Controllers.Main.textLoadingDocument": "Зареждане на документ", - "DE.Controllers.Main.textNoLicenseTitle": "%1 Ограничение за връзка", - "DE.Controllers.Main.textOK": "Добре", - "DE.Controllers.Main.textPaidFeature": "Платена функция", - "DE.Controllers.Main.textPassword": "Парола", - "DE.Controllers.Main.textPreloader": "Зареждане ...", - "DE.Controllers.Main.textTryUndoRedo": "Функциите Undo/Redo са забранени за режима Fast co-edit.", - "DE.Controllers.Main.textUsername": "Потребител", - "DE.Controllers.Main.titleLicenseExp": "Лицензът е изтекъл", - "DE.Controllers.Main.titleServerVersion": "Редакторът е актуализиран", - "DE.Controllers.Main.titleUpdateVersion": "Версията е променена", - "DE.Controllers.Main.txtArt": "Вашият текст тук", - "DE.Controllers.Main.txtDiagramTitle": "Заглавие на диаграмата", - "DE.Controllers.Main.txtEditingMode": "Задаване на режим на редактиране ...", - "DE.Controllers.Main.txtFooter": "Долния", - "DE.Controllers.Main.txtHeader": "Заглавие", - "DE.Controllers.Main.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана", - "DE.Controllers.Main.txtSeries": "Серия", - "DE.Controllers.Main.txtStyle_footnote_text": "Текст на бележка", - "DE.Controllers.Main.txtStyle_Heading_1": "Заглавие 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Функция 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Функция 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Функция 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Функция 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Функция 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Функция 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Функция 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Функция 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Интензивен цитат", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Параграф Списък", - "DE.Controllers.Main.txtStyle_No_Spacing": "Без интервал", - "DE.Controllers.Main.txtStyle_Normal": "Нормален", - "DE.Controllers.Main.txtStyle_Quote": "Цитат", - "DE.Controllers.Main.txtStyle_Subtitle": "Подзаглавие", - "DE.Controllers.Main.txtStyle_Title": "Заглавие", - "DE.Controllers.Main.txtXAxis": "X ос", - "DE.Controllers.Main.txtYAxis": "Y ос", - "DE.Controllers.Main.unknownErrorText": "Неизвестна грешка.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Вашият браузър не се поддържа.", - "DE.Controllers.Main.uploadImageExtMessage": "Неизвестен формат на изображението.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Няма качени изображения.", - "DE.Controllers.Main.uploadImageSizeMessage": "Превишено е ограничението за максимален размер на изображението.", - "DE.Controllers.Main.uploadImageTextText": "Качва се изображението ...", - "DE.Controllers.Main.uploadImageTitleText": "Качване на изображение", - "DE.Controllers.Main.waitText": "Моля, изчакайте...", - "DE.Controllers.Main.warnLicenseExceeded": "Броят на едновременните връзки към сървъра за документи е превишен и документът ще бъде отворен само за преглед.
    За повече информация се обърнете към администратора.", - "DE.Controllers.Main.warnLicenseExp": "Вашият лиценз е изтекъл.
    Моля, актуализирайте лиценза си и опреснете страницата.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Броят на едновременните потребители е надхвърлен и документът ще бъде отворен само за преглед.
    За повече информация се свържете с администратора си.", - "DE.Controllers.Main.warnNoLicense": "Тази версия на редакторите на %1 има някои ограничения за едновременни връзки към сървъра за документи.
    Ако имате нужда от повече, моля обмислете закупуването на търговски лиценз.", - "DE.Controllers.Main.warnNoLicenseUsers": "Тази версия на редакторите на %1 има някои ограничения за едновременни потребители.
    Ако имате нужда от повече, моля обмислете закупуването на търговски лиценз.", - "DE.Controllers.Main.warnProcessRightsChange": "На вас е отказано правото да редактирате файла.", - "DE.Controllers.Search.textNoTextFound": "Текстът не е намерен", - "DE.Controllers.Search.textReplaceAll": "Замяна на всички", - "DE.Controllers.Settings.notcriticalErrorTitle": "Внимание", - "DE.Controllers.Settings.txtLoading": "Зареждане ...", - "DE.Controllers.Settings.unknownText": "Неизвестен", - "DE.Controllers.Settings.warnDownloadAs": "Ако продължите да записвате в този формат, всички функции, с изключение на текста, ще бъдат загубени.
    Сигурни ли сте, че искате да продължите?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Ако продължите да записвате в този формат, някои от форматирането може да се загубят.
    Наистина ли искате да продължите?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Оставяте заявлението", - "DE.Controllers.Toolbar.leaveButtonText": "Излезете от тази страница", - "DE.Controllers.Toolbar.stayButtonText": "Остани на тази страница", - "DE.Views.AddImage.textAddress": "Адрес", - "DE.Views.AddImage.textBack": "Обратно", - "DE.Views.AddImage.textFromLibrary": "Картина от библиотеката", - "DE.Views.AddImage.textFromURL": "Картина от URL адрес", - "DE.Views.AddImage.textImageURL": "URL адрес на изображение", - "DE.Views.AddImage.textInsertImage": "Вмъкване на изображение", - "DE.Views.AddImage.textLinkSettings": "Настройки на връзката", - "DE.Views.AddOther.textAddLink": "Добавяне на връзка", - "DE.Views.AddOther.textBack": "Обратно", - "DE.Views.AddOther.textCenterBottom": "Централно доло", - "DE.Views.AddOther.textCenterTop": "Център горе", - "DE.Views.AddOther.textColumnBreak": "Прекъсване на колони", - "DE.Views.AddOther.textContPage": "Непрекъсната страница", - "DE.Views.AddOther.textCurrentPos": "Текущата позиция", - "DE.Views.AddOther.textDisplay": "Показ", - "DE.Views.AddOther.textEvenPage": "Дори страница", - "DE.Views.AddOther.textFootnote": "Бележка под линия", - "DE.Views.AddOther.textFormat": "Формат", - "DE.Views.AddOther.textInsert": "Вмъкни", - "DE.Views.AddOther.textInsertFootnote": "Поставете бележка под линия", - "DE.Views.AddOther.textLeftBottom": "Ляво долу", - "DE.Views.AddOther.textLeftTop": "Ляво отгоре", - "DE.Views.AddOther.textLink": "Връзка", - "DE.Views.AddOther.textLocation": "Местоположение", - "DE.Views.AddOther.textNextPage": "Следваща страница", - "DE.Views.AddOther.textOddPage": "Нечетна страница", - "DE.Views.AddOther.textPageBreak": "Разделител на страница", - "DE.Views.AddOther.textPageNumber": "Номер на страницата", - "DE.Views.AddOther.textPosition": "Позиция", - "DE.Views.AddOther.textRightBottom": "Отдясно долу", - "DE.Views.AddOther.textRightTop": "Вдясно отгоре", - "DE.Views.AddOther.textSectionBreak": "Разделителна секция", - "DE.Views.AddOther.textStartFrom": "Започни от", - "DE.Views.AddOther.textTip": "Съвет на екрана", - "DE.Views.EditChart.textAddCustomColor": "Добавяне на цвят по избор", - "DE.Views.EditChart.textAlign": "Изравнете", - "DE.Views.EditChart.textBack": "Обратно", - "DE.Views.EditChart.textBackward": "Преместване назад", - "DE.Views.EditChart.textBehind": "Зад", - "DE.Views.EditChart.textBorder": "Граница", - "DE.Views.EditChart.textColor": "Цвят", - "DE.Views.EditChart.textCustomColor": "Цвят по избор", - "DE.Views.EditChart.textDistanceText": "Разстояние от текста", - "DE.Views.EditChart.textFill": "Напълнете", - "DE.Views.EditChart.textForward": "Продължавай напред", - "DE.Views.EditChart.textInFront": "Отпред", - "DE.Views.EditChart.textInline": "В текста", - "DE.Views.EditChart.textMoveText": "Преместване с текст", - "DE.Views.EditChart.textOverlap": "Разрешаване на припокриване", - "DE.Views.EditChart.textRemoveChart": "Премахване на диаграмата", - "DE.Views.EditChart.textReorder": "Пренареждане", - "DE.Views.EditChart.textSize": "Размер", - "DE.Views.EditChart.textSquare": "Квадрат", - "DE.Views.EditChart.textStyle": "Стил", - "DE.Views.EditChart.textThrough": "През", - "DE.Views.EditChart.textTight": "Стегнат", - "DE.Views.EditChart.textToBackground": "Изпращане до фона", - "DE.Views.EditChart.textToForeground": "Доведете до преден план", - "DE.Views.EditChart.textTopBottom": "Отгоре и отдолу", - "DE.Views.EditChart.textType": "Тип", - "DE.Views.EditChart.textWrap": "Обвивка", - "DE.Views.EditHeader.textDiffFirst": "Различна първа страница", - "DE.Views.EditHeader.textDiffOdd": "Различни страници", - "DE.Views.EditHeader.textFrom": "Започни от", - "DE.Views.EditHeader.textPageNumbering": "Номериране на страници", - "DE.Views.EditHeader.textPrev": "Продължете от предишния раздел", - "DE.Views.EditHeader.textSameAs": "Връзка към предишна", - "DE.Views.EditHyperlink.textDisplay": "Показ", - "DE.Views.EditHyperlink.textEdit": "Редактиране на връзката", - "DE.Views.EditHyperlink.textLink": "Връзка", - "DE.Views.EditHyperlink.textRemove": "Премахване на връзката", - "DE.Views.EditHyperlink.textTip": "Съвет на екрана", - "DE.Views.EditImage.textAddress": "Адрес", - "DE.Views.EditImage.textAlign": "Изравнете", - "DE.Views.EditImage.textBack": "Обратно", - "DE.Views.EditImage.textBackward": "Преместване назад", - "DE.Views.EditImage.textBehind": "Зад", - "DE.Views.EditImage.textDefault": "Действителен размер", - "DE.Views.EditImage.textDistanceText": "Разстояние от текста", - "DE.Views.EditImage.textForward": "Продължавай напред", - "DE.Views.EditImage.textFromLibrary": "Картина от библиотеката", - "DE.Views.EditImage.textFromURL": "Картина от URL адрес", - "DE.Views.EditImage.textImageURL": "URL адрес на изображението", - "DE.Views.EditImage.textInFront": "Отпред", - "DE.Views.EditImage.textInline": "В текста", - "DE.Views.EditImage.textLinkSettings": "Настройки на връзката", - "DE.Views.EditImage.textMoveText": "Преместване с текст", - "DE.Views.EditImage.textOverlap": "Разрешаване на припокриване", - "DE.Views.EditImage.textRemove": "Премахване на изображението", - "DE.Views.EditImage.textReorder": "Пренареждане", - "DE.Views.EditImage.textReplace": "Заменете", - "DE.Views.EditImage.textReplaceImg": "Замяна на изображението", - "DE.Views.EditImage.textSquare": "Квадрат", - "DE.Views.EditImage.textThrough": "През", - "DE.Views.EditImage.textTight": "Стегнат", - "DE.Views.EditImage.textToBackground": "Изпращане до фона", - "DE.Views.EditImage.textToForeground": "Доведете до преден план", - "DE.Views.EditImage.textTopBottom": "Отгоре и отдолу", - "DE.Views.EditImage.textWrap": "Обвивка", - "DE.Views.EditParagraph.textAddCustomColor": "Добавяне на цвят по избор", - "DE.Views.EditParagraph.textAdvanced": "Напреднал", - "DE.Views.EditParagraph.textAdvSettings": "Разширени настройки", - "DE.Views.EditParagraph.textAfter": "След", - "DE.Views.EditParagraph.textAuto": "Автоматичен", - "DE.Views.EditParagraph.textBack": "Обратно", - "DE.Views.EditParagraph.textBackground": "Заден план", - "DE.Views.EditParagraph.textBefore": "Преди", - "DE.Views.EditParagraph.textCustomColor": "Цвят по избор", - "DE.Views.EditParagraph.textFirstLine": "Първа линия", - "DE.Views.EditParagraph.textFromText": "Разстояние от текста", - "DE.Views.EditParagraph.textKeepLines": "Поддържайте линиите заедно", - "DE.Views.EditParagraph.textKeepNext": "Продължете със следващия", - "DE.Views.EditParagraph.textOrphan": "Контрол на сираци", - "DE.Views.EditParagraph.textPageBreak": "Страницата е прекъсната преди", - "DE.Views.EditParagraph.textPrgStyles": "Стилове на абзаци", - "DE.Views.EditParagraph.textSpaceBetween": "Пространство между параграфи", - "DE.Views.EditShape.textAddCustomColor": "Добавяне на цвят по избор", - "DE.Views.EditShape.textAlign": "Изравнете", - "DE.Views.EditShape.textBack": "Обратно", - "DE.Views.EditShape.textBackward": "Преместване назад", - "DE.Views.EditShape.textBehind": "Зад", - "DE.Views.EditShape.textBorder": "Граница", - "DE.Views.EditShape.textColor": "Цвят", - "DE.Views.EditShape.textCustomColor": "Цвят по избор", - "DE.Views.EditShape.textEffects": "Ефекти", - "DE.Views.EditShape.textFill": "Напълнете", - "DE.Views.EditShape.textForward": "Продължавай напред", - "DE.Views.EditShape.textFromText": "Разстояние от текста", - "DE.Views.EditShape.textInFront": "Отпред", - "DE.Views.EditShape.textInline": "В текста", - "DE.Views.EditShape.textOpacity": "Непрозрачност", - "DE.Views.EditShape.textOverlap": "Разрешаване на припокриване", - "DE.Views.EditShape.textRemoveShape": "Премахване на формата", - "DE.Views.EditShape.textReorder": "Пренареждане", - "DE.Views.EditShape.textReplace": "Заменете", - "DE.Views.EditShape.textSize": "Размер", - "DE.Views.EditShape.textSquare": "Квадрат", - "DE.Views.EditShape.textStyle": "Стил", - "DE.Views.EditShape.textThrough": "През", - "DE.Views.EditShape.textTight": "Стегнат", - "DE.Views.EditShape.textToBackground": "Изпращане до фона", - "DE.Views.EditShape.textToForeground": "Доведете до преден план", - "DE.Views.EditShape.textTopAndBottom": "Отгоре и отдолу", - "DE.Views.EditShape.textWithText": "Преместване с текст", - "DE.Views.EditShape.textWrap": "Обвивка", - "DE.Views.EditTable.textAddCustomColor": "Добавяне на цвят по избор", - "DE.Views.EditTable.textAlign": "Изравнете", - "DE.Views.EditTable.textBack": "Обратно", - "DE.Views.EditTable.textBandedColumn": "Колонна лента", - "DE.Views.EditTable.textBandedRow": "Обвързан ред", - "DE.Views.EditTable.textBorder": "Граница", - "DE.Views.EditTable.textCellMargins": "Маржове на клетките", - "DE.Views.EditTable.textColor": "Цвят", - "DE.Views.EditTable.textCustomColor": "Цвят по избор", - "DE.Views.EditTable.textFill": "Напълнете", - "DE.Views.EditTable.textFirstColumn": "Първа колона", - "DE.Views.EditTable.textFlow": "Поток", - "DE.Views.EditTable.textFromText": "Разстояние от текста", - "DE.Views.EditTable.textHeaderRow": "Ред", - "DE.Views.EditTable.textInline": "В текста", - "DE.Views.EditTable.textLastColumn": "Последна колона", - "DE.Views.EditTable.textOptions": "Настроики", - "DE.Views.EditTable.textRemoveTable": "Премахване на таблицата", - "DE.Views.EditTable.textRepeatHeader": "Повторете като ред ред", - "DE.Views.EditTable.textResizeFit": "Преоразмерете, за да поберете съдържанието", - "DE.Views.EditTable.textSize": "Размер", - "DE.Views.EditTable.textStyle": "Стил", - "DE.Views.EditTable.textStyleOptions": "Опции за стил", - "DE.Views.EditTable.textTableOptions": "Опции на таблицата", - "DE.Views.EditTable.textTotalRow": "Общо ред", - "DE.Views.EditTable.textWithText": "Преместване с текст", - "DE.Views.EditTable.textWrap": "Обвивка", - "DE.Views.EditText.textAddCustomColor": "Добавяне на цвят по избор", - "DE.Views.EditText.textAdditional": "Допълнителен", - "DE.Views.EditText.textAdditionalFormat": "Допълнително форматиране", - "DE.Views.EditText.textAllCaps": "Всички шапки", - "DE.Views.EditText.textAutomatic": "Автоматичен", - "DE.Views.EditText.textBack": "Обратно", - "DE.Views.EditText.textBullets": "Маркиран списък", - "DE.Views.EditText.textCharacterBold": "П", - "DE.Views.EditText.textCharacterItalic": "К", - "DE.Views.EditText.textCharacterStrikethrough": "З", - "DE.Views.EditText.textCharacterUnderline": "У", - "DE.Views.EditText.textCustomColor": "Цвят по избор", - "DE.Views.EditText.textDblStrikethrough": "Двойно зачертаване", - "DE.Views.EditText.textDblSuperscript": "Горен индекс", - "DE.Views.EditText.textFontColor": "Цвят на шрифта", - "DE.Views.EditText.textFontColors": "Цветове на шрифта", - "DE.Views.EditText.textFonts": "Шрифт", - "DE.Views.EditText.textHighlightColor": "Маркирайте Цвят", - "DE.Views.EditText.textHighlightColors": "Маркирайте Цветове", - "DE.Views.EditText.textLetterSpacing": "Разстояние между буквите", - "DE.Views.EditText.textLineSpacing": "Интервал между редовете", - "DE.Views.EditText.textNone": "Нито един", - "DE.Views.EditText.textNumbers": "Численост", - "DE.Views.EditText.textSize": "Размер", - "DE.Views.EditText.textSmallCaps": "Малки букви", - "DE.Views.EditText.textStrikethrough": "Зачеркнато", - "DE.Views.EditText.textSubscript": "Долен", - "DE.Views.Search.textCase": "Различаващ главни от малки букви", - "DE.Views.Search.textDone": "Завършен", - "DE.Views.Search.textFind": "Намирам", - "DE.Views.Search.textFindAndReplace": "Намерете и заменете", - "DE.Views.Search.textHighlight": "Маркирайте резултатите", - "DE.Views.Search.textReplace": "Заменете", - "DE.Views.Search.textSearch": "Търсене", - "DE.Views.Settings.textAbout": "Относно", - "DE.Views.Settings.textAddress": "адрес", - "DE.Views.Settings.textAdvancedSettings": "Настройки на приложението", - "DE.Views.Settings.textApplication": "Приложение", - "DE.Views.Settings.textAuthor": "Автор", - "DE.Views.Settings.textBack": "Обратно", - "DE.Views.Settings.textBottom": "Отдоло", - "DE.Views.Settings.textCentimeter": "Сантиметър", - "DE.Views.Settings.textCollaboration": "Сътрудничество", - "DE.Views.Settings.textColorSchemes": "Цветова схема", - "DE.Views.Settings.textComment": "Коментар", - "DE.Views.Settings.textCommentingDisplay": "Дисплей с коментари", - "DE.Views.Settings.textCreated": "Създаден", - "DE.Views.Settings.textCreateDate": "Дата на създаване ", - "DE.Views.Settings.textCustom": "Персонализиран", - "DE.Views.Settings.textCustomSize": "Потребителски размер", - "DE.Views.Settings.textDisplayComments": "Коментари", - "DE.Views.Settings.textDisplayResolvedComments": "Решени коментари", - "DE.Views.Settings.textDocInfo": "Информация за документа", - "DE.Views.Settings.textDocTitle": "Заглавие на документ", - "DE.Views.Settings.textDocumentFormats": "Формати на документа", - "DE.Views.Settings.textDocumentSettings": "Настройки на документа", - "DE.Views.Settings.textDone": "Завършен", - "DE.Views.Settings.textDownload": "Изтегли", - "DE.Views.Settings.textDownloadAs": "Изтеглете като ...", - "DE.Views.Settings.textEditDoc": "Редактиране на документ", - "DE.Views.Settings.textEmail": "електронна поща", - "DE.Views.Settings.textFind": "Намирам", - "DE.Views.Settings.textFindAndReplace": "Намерете и заменете", - "DE.Views.Settings.textFormat": "Формат", - "DE.Views.Settings.textHelp": "Помощ", - "DE.Views.Settings.textInch": "Инч", - "DE.Views.Settings.textLandscape": "Пейзаж", - "DE.Views.Settings.textLastModified": "Последно модифициран", - "DE.Views.Settings.textLastModifiedBy": "Последно модифициран от", - "DE.Views.Settings.textLeft": "Наляво", - "DE.Views.Settings.textLoading": "Зареждане ...", - "DE.Views.Settings.textLocation": "местоположение", - "DE.Views.Settings.textMargins": "Полета", - "DE.Views.Settings.textNoCharacters": "Неотпечатващи се знаци", - "DE.Views.Settings.textOrientation": "Ориентация", - "DE.Views.Settings.textOwner": "собственик", - "DE.Views.Settings.textPages": "Страници", - "DE.Views.Settings.textParagraphs": "Параграфи", - "DE.Views.Settings.textPoint": "Точка", - "DE.Views.Settings.textPortrait": "Портрет", - "DE.Views.Settings.textPoweredBy": "Задвижвани от", - "DE.Views.Settings.textPrint": "Печат", - "DE.Views.Settings.textReader": "Режим на четене", - "DE.Views.Settings.textReview": "Проследяване на промените", - "DE.Views.Settings.textRight": "Прав", - "DE.Views.Settings.textSettings": "Настройки", - "DE.Views.Settings.textSpaces": "Spaces", - "DE.Views.Settings.textSpellcheck": "Проверка на правописа", - "DE.Views.Settings.textStatistic": "Статистика", - "DE.Views.Settings.textSubject": "Относно", - "DE.Views.Settings.textSymbols": "Символи", - "DE.Views.Settings.textTel": "тел", - "DE.Views.Settings.textTitle": "Заглавие", - "DE.Views.Settings.textTop": "Отгоре", - "DE.Views.Settings.textUnitOfMeasurement": "Единица за измерване", - "DE.Views.Settings.textUploaded": "Качено", - "DE.Views.Settings.textVersion": "Версия", - "DE.Views.Settings.textWords": "Думи", - "DE.Views.Settings.unknownText": "Неизвестен", - "DE.Views.Toolbar.textBack": "Обратно" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ca.json b/apps/documenteditor/mobile/locale/ca.json index 79a51b0bf..70c383f72 100644 --- a/apps/documenteditor/mobile/locale/ca.json +++ b/apps/documenteditor/mobile/locale/ca.json @@ -205,6 +205,7 @@ "textBehind": "Darrere", "textBorder": "Vora", "textBringToForeground": "Portar a primer pla", + "textBullets": "Vinyetes", "textBulletsAndNumbers": "Vinyetes i números", "textCellMargins": "Marges de cel·la", "textChart": "Gràfic", @@ -250,6 +251,7 @@ "textNone": "cap", "textNoStyles": "No hi ha estils per a aquest tipus de diagrames.", "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "textNumbers": "Nombres", "textOpacity": "Opacitat", "textOptions": "Opcions", "textOrphanControl": "Control de línies Orfes", @@ -379,7 +381,22 @@ "leavePageText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", "notcriticalErrorTitle": "Advertiment", "SDK": { + " -Section ": "-Secció", + "above": "Damunt", + "below": "Sota", + "Caption": "Llegenda", + "Choose an item": "Tria un element", + "Click to load image": "Clicar per carregar la imatge", + "Current Document": "Document Actual", "Diagram Title": "Títol del Gràfic", + "endnote text": "Final de Nota de Text", + "Enter a date": "Introduïu una data", + "Error! Bookmark not defined": "Error! Marcador no definit.", + "Error! Main Document Only": "Error! Només Document Principal.", + "Error! No text of specified style in document": "Error! No hi ha cap text de l'estil especificat al document.", + "Error! Not a valid bookmark self-reference": "Error! No és una autoreferència vàlida d'adreces d'interès.", + "Even Page ": "Pàgina parell", + "First Page ": "Primera Pàgina", "Footer": "Peu de pàgina", "footnote text": "Text de Nota al Peu de Pàgina", "Header": "Capçalera", @@ -392,17 +409,38 @@ "Heading 7": "Títol 7", "Heading 8": "Títol 8", "Heading 9": "Títol 9", + "Hyperlink": "Hiperenllaç", + "Index Too Large": "L'índex és Massa Gran", "Intense Quote": "Cita Destacada", + "Is Not In Table": "No És a la Taula", "List Paragraph": "Paràgraf de la Llista", + "Missing Argument": "Falta Argument", + "Missing Operator": "Falta Operador", "No Spacing": "Sense Espai", + "No table of contents entries found": "No hi ha capçaleres en el document. Aplica un estil d'encapçalament al text perquè aparegui a la taula de continguts.", + "No table of figures entries found": "No s'ha trobat cap entrada a la taula de figures.", + "None": "Cap", "Normal": "Normal", + "Number Too Large To Format": "Nombre Massa Gran Per Formatar", + "Odd Page ": "Pàgina Sanar.", "Quote": "Cita", + "Same as Previous": "Igual al Anterior", "Series": "Sèrie", "Subtitle": "Subtítol", + "Syntax Error": "Error de Sintaxi", + "Table Index Cannot be Zero": "L'índex de la Taula No pot ser Zero", + "Table of Contents": "Taula de Continguts", + "table of figures": "Taula de figures", + "The Formula Not In Table": "La Fórmula No es a la Taula", "Title": "Nom", + "TOC Heading": "Capçalera de la taula de continguts", + "Type equation here": "Escriu l'equació aquí", + "Undefined Bookmark": "Marcador no definit", + "Unexpected End of Formula": "Final inesperat de la fórmula", "X Axis": "Eix X XAS", "Y Axis": "Eix Y", - "Your text here": "El seu text aquí" + "Your text here": "El seu text aquí", + "Zero Divide": "Divideix per zero" }, "textAnonymous": "Anònim", "textBuyNow": "Visita lloc web", @@ -481,7 +519,7 @@ "textMacrosSettings": "Configuració de Macros", "textMargins": "Marges", "textMarginsH": "Els marges superior i inferior són massa alts per a una alçada de pàgina determinada", - "textMarginsW": "Els marges esquerre i dret són massa alts per a una amplada de pàgina donada", + "textMarginsW": "Els marges esquerre i dret són massa amplis per a un ample de pàgina determinat", "textNoCharacters": "Caràcters no Imprimibles", "textNoTextFound": "Text no Trobat", "textOpenFile": "Introduïu una contrasenya per obrir el fitxer", @@ -506,7 +544,29 @@ "textUnitOfMeasurement": "Unitat de Mesura", "textUploaded": "Penjat", "txtIncorrectPwd": "La contrasenya és incorrecta", - "txtProtected": "Una vegada entreu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual" + "txtProtected": "Una vegada entreu la contrasenya i obriu el fitxer, es restablirà la contrasenya actual", + "txtScheme1": "Oficina", + "txtScheme10": "Mitjana", + "txtScheme11": "Metro", + "txtScheme12": "Mòdul", + "txtScheme13": "Opulent", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Paper", + "txtScheme17": "Solstici", + "txtScheme18": "Tècnic", + "txtScheme19": "Excursió", + "txtScheme2": "Escala de grisos", + "txtScheme20": "Urbà", + "txtScheme21": "Empenta", + "txtScheme22": "Nova Oficina", + "txtScheme3": "Vèrtex", + "txtScheme4": "Aspecte", + "txtScheme5": "Cívic", + "txtScheme6": "Concurs", + "txtScheme7": "Patrimoni net", + "txtScheme8": "Flux", + "txtScheme9": "Fosa" }, "Toolbar": { "dlgLeaveMsgText": "Teniu canvis sense desar. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixar aquesta pàgina\" per descartar tots els canvis no desats.", diff --git a/apps/documenteditor/mobile/locale/cs.json b/apps/documenteditor/mobile/locale/cs.json index 4dca9f204..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/cs.json +++ b/apps/documenteditor/mobile/locale/cs.json @@ -1,589 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Přidat odpověď", - "Common.Controllers.Collaboration.textAtLeast": "alespoň", - "Common.Controllers.Collaboration.textAuto": "automaticky", - "Common.Controllers.Collaboration.textBaseline": "Základ", - "Common.Controllers.Collaboration.textBold": "Tučné", - "Common.Controllers.Collaboration.textBreakBefore": "Rozdělit stránku před", - "Common.Controllers.Collaboration.textCancel": "Zrušit", - "Common.Controllers.Collaboration.textCaps": "Všechno velkými", - "Common.Controllers.Collaboration.textCenter": "Zarovnat na střed", - "Common.Controllers.Collaboration.textChart": "Graf", - "Common.Controllers.Collaboration.textColor": "Barva písma", - "Common.Controllers.Collaboration.textContextual": "Nepřidávejte interval mezi odstavce se stejným stylem", - "Common.Controllers.Collaboration.textDelete": "Smazat", - "Common.Controllers.Collaboration.textDeleteComment": "Smazat komentář", - "Common.Controllers.Collaboration.textDeleted": "Smazáno:", - "Common.Controllers.Collaboration.textDeleteReply": "Smazat odpověď", - "Common.Controllers.Collaboration.textDone": "Hotovo", - "Common.Controllers.Collaboration.textDStrikeout": "Dvojité přeškrtnutí", - "Common.Controllers.Collaboration.textEdit": "Upravit", - "Common.Controllers.Collaboration.textEditUser": "Uživatelé, kteří soubor právě upravují:", - "Common.Controllers.Collaboration.textEquation": "Rovnice", - "Common.Controllers.Collaboration.textExact": "přesně", - "Common.Controllers.Collaboration.textFirstLine": "První řádek", - "Common.Controllers.Collaboration.textFormatted": "Formátované", - "Common.Controllers.Collaboration.textHighlight": "Barva zvýraznění", - "Common.Controllers.Collaboration.textImage": "Obrázek", - "Common.Controllers.Collaboration.textIndentLeft": "Odsadit vlevo", - "Common.Controllers.Collaboration.textIndentRight": "Odsadit vpravo", - "Common.Controllers.Collaboration.textInserted": "Vloženo:", - "Common.Controllers.Collaboration.textItalic": "Skloněné", - "Common.Controllers.Collaboration.textJustify": "Zarovnat do bloku", - "Common.Controllers.Collaboration.textKeepLines": "Ponechat řádky pohromadě", - "Common.Controllers.Collaboration.textKeepNext": "Svázat s následujícím", - "Common.Controllers.Collaboration.textLeft": "Zarovnat vlevo", - "Common.Controllers.Collaboration.textLineSpacing": "Rozestupy řádků:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Opravdu chcete smazat tento komentář?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Opravdu chcete smazat tuto odpověď?", - "Common.Controllers.Collaboration.textMultiple": "vícero", - "Common.Controllers.Collaboration.textNoBreakBefore": "Nezalamovat stránku před", - "Common.Controllers.Collaboration.textNoChanges": "Žádné změny.", - "Common.Controllers.Collaboration.textNoContextual": "Přidat interval mezi odstavce stejného stylu", - "Common.Controllers.Collaboration.textNoKeepLines": "Neudržovat řádky u sebe", - "Common.Controllers.Collaboration.textNoKeepNext": "Neudržovat s následující", - "Common.Controllers.Collaboration.textNot": "Ne", - "Common.Controllers.Collaboration.textNoWidow": "Žádný ovládací prvek okna", - "Common.Controllers.Collaboration.textNum": "Změnit číslování", - "Common.Controllers.Collaboration.textParaDeleted": "Odstavec smazán ", - "Common.Controllers.Collaboration.textParaFormatted": "Odstavec zformátován", - "Common.Controllers.Collaboration.textParaInserted": "Odstavec vložen ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Přesunuto dolů:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Přesunuto nahoru:", - "Common.Controllers.Collaboration.textParaMoveTo": "Přesunuto:", - "Common.Controllers.Collaboration.textPosition": "Pozice", - "Common.Controllers.Collaboration.textReopen": "Znovu otevřít", - "Common.Controllers.Collaboration.textResolve": "Vyřešit", - "Common.Controllers.Collaboration.textRight": "Zarovnat vpravo", - "Common.Controllers.Collaboration.textShape": "Tvar", - "Common.Controllers.Collaboration.textShd": "Barva pozadí", - "Common.Controllers.Collaboration.textSmallCaps": "Malá písmena", - "Common.Controllers.Collaboration.textSpacing": "Rozestupy", - "Common.Controllers.Collaboration.textSpacingAfter": "Mezera za", - "Common.Controllers.Collaboration.textSpacingBefore": "Mezera před", - "Common.Controllers.Collaboration.textStrikeout": "Přeškrnuté", - "Common.Controllers.Collaboration.textSubScript": "Dolní index", - "Common.Controllers.Collaboration.textSuperScript": "Horní index", - "Common.Controllers.Collaboration.textTableChanged": "Nastavení tabulky změněna", - "Common.Controllers.Collaboration.textTableRowsAdd": "Řádky tabulky vloženy", - "Common.Controllers.Collaboration.textTableRowsDel": "Řádky tabulky smazány", - "Common.Controllers.Collaboration.textTabs": "Změnit záložky", - "Common.Controllers.Collaboration.textUnderline": "Podtržené", - "Common.Controllers.Collaboration.textWidow": "Ovládací prvek okna", - "Common.Controllers.Collaboration.textYes": "Ano", - "Common.UI.ThemeColorPalette.textCustomColors": "Uživatelsky určené barvy", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", - "Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Přijmout", - "Common.Views.Collaboration.textAcceptAllChanges": "Přijmout všechny změny", - "Common.Views.Collaboration.textAddReply": "Přidat odpověď", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Všechny změny přijaty", - "Common.Views.Collaboration.textAllChangesEditing": "Všechny změny (Upravení)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Všechny změny zamítnuty", - "Common.Views.Collaboration.textBack": "Zpět", - "Common.Views.Collaboration.textCancel": "Zrušit", - "Common.Views.Collaboration.textChange": "Zrevidovat změnu", - "Common.Views.Collaboration.textCollaboration": "Spolupráce", - "Common.Views.Collaboration.textDisplayMode": "Režim zobrazení", - "Common.Views.Collaboration.textDone": "Hotovo", - "Common.Views.Collaboration.textEditReply": "Upravit odpověď", - "Common.Views.Collaboration.textEditUsers": "Uživatelé", - "Common.Views.Collaboration.textEditСomment": "Upravit komentář", - "Common.Views.Collaboration.textFinal": "Konečné", - "Common.Views.Collaboration.textMarkup": "Značka", - "Common.Views.Collaboration.textNoComments": "Tento dokument neobsahuje komentáře", - "Common.Views.Collaboration.textOriginal": "Původní", - "Common.Views.Collaboration.textReject": "Odmítnout", - "Common.Views.Collaboration.textRejectAllChanges": "Odmítnout všechny změny", - "Common.Views.Collaboration.textReview": "Sledovat změny", - "Common.Views.Collaboration.textReviewing": "Revize", - "Common.Views.Collaboration.textСomments": "Komentáře", - "DE.Controllers.AddContainer.textImage": "Obrázek", - "DE.Controllers.AddContainer.textOther": "Ostatní", - "DE.Controllers.AddContainer.textShape": "Tvar", - "DE.Controllers.AddContainer.textTable": "Tabulka", - "DE.Controllers.AddImage.textEmptyImgUrl": "Musíte upřesnit URL obrázku.", - "DE.Controllers.AddImage.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "DE.Controllers.AddOther.textBelowText": "Pod textem", - "DE.Controllers.AddOther.textBottomOfPage": "Spodní část stránky", - "DE.Controllers.AddOther.textCancel": "Zrušit", - "DE.Controllers.AddOther.textContinue": "Pokračovat", - "DE.Controllers.AddOther.textDelete": "Smazat", - "DE.Controllers.AddOther.textDeleteDraft": "Opravdu chcete návrh smazat?", - "DE.Controllers.AddOther.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "DE.Controllers.AddTable.textCancel": "Zrušit", - "DE.Controllers.AddTable.textColumns": "Sloupce", - "DE.Controllers.AddTable.textRows": "Řádky", - "DE.Controllers.AddTable.textTableSize": "Velikost tabulky", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Akce kopírovat, vyjmout a vložit použitím kontextové nabídky budou prováděny pouze v rámci právě otevřeného souboru.", - "DE.Controllers.DocumentHolder.menuAddComment": "Přidat komentář", - "DE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz", - "DE.Controllers.DocumentHolder.menuCopy": "Kopírovat", - "DE.Controllers.DocumentHolder.menuCut": "Vyjmout", - "DE.Controllers.DocumentHolder.menuDelete": "Odstranit", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Odstranit tabulku", - "DE.Controllers.DocumentHolder.menuEdit": "Upravit", - "DE.Controllers.DocumentHolder.menuMerge": "Sloučit buňky", - "DE.Controllers.DocumentHolder.menuMore": "Více", - "DE.Controllers.DocumentHolder.menuOpenLink": "Otevřít odkaz", - "DE.Controllers.DocumentHolder.menuPaste": "Vložit", - "DE.Controllers.DocumentHolder.menuReview": "Revize", - "DE.Controllers.DocumentHolder.menuReviewChange": "Zrevidovat změnu", - "DE.Controllers.DocumentHolder.menuSplit": "Rozdělit buňku", - "DE.Controllers.DocumentHolder.menuViewComment": "Zobrazit komentář", - "DE.Controllers.DocumentHolder.sheetCancel": "Zrušit", - "DE.Controllers.DocumentHolder.textCancel": "Storno", - "DE.Controllers.DocumentHolder.textColumns": "Sloupce", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Akce kopírovat, vyjmout a vložit", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Znovu už nezobrazovat", - "DE.Controllers.DocumentHolder.textGuest": "Návštěvník", - "DE.Controllers.DocumentHolder.textRows": "Řádky", - "DE.Controllers.EditContainer.textChart": "Graf", - "DE.Controllers.EditContainer.textFooter": "Zápatí", - "DE.Controllers.EditContainer.textHeader": "Záhlaví", - "DE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz", - "DE.Controllers.EditContainer.textImage": "Obrázek", - "DE.Controllers.EditContainer.textParagraph": "Odstavec", - "DE.Controllers.EditContainer.textSettings": "Nastavení", - "DE.Controllers.EditContainer.textShape": "Tvar", - "DE.Controllers.EditContainer.textTable": "Tabulka", - "DE.Controllers.EditContainer.textText": "Text", - "DE.Controllers.EditImage.textEmptyImgUrl": "Musíte upřesnit URL obrázku.", - "DE.Controllers.EditImage.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "DE.Controllers.EditText.textAuto": "Automaticky", - "DE.Controllers.EditText.textFonts": "Fonty", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Zadejte vaše heslo:", - "DE.Controllers.Main.advDRMOptions": "Chráněný soubor", - "DE.Controllers.Main.advDRMPassword": "Heslo", - "DE.Controllers.Main.advTxtOptions": "Zvolte TXT možnosti", - "DE.Controllers.Main.applyChangesTextText": "Načítání dat...", - "DE.Controllers.Main.applyChangesTitleText": "Načítání dat", - "DE.Controllers.Main.closeButtonText": "Zavřít soubor", - "DE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.", - "DE.Controllers.Main.criticalErrorExtText": "Stisknutím tlačítka \"OK\" se vrátíte do seznamu dokumentů.", - "DE.Controllers.Main.criticalErrorTitle": "Chyba", - "DE.Controllers.Main.downloadErrorText": "Stahování selhalo.", - "DE.Controllers.Main.downloadMergeText": "Stahování...", - "DE.Controllers.Main.downloadMergeTitle": "Stahuji", - "DE.Controllers.Main.downloadTextText": "Stahování dokumentu...", - "DE.Controllers.Main.downloadTitleText": "Stahování dokumentu", - "DE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.
    Prosím, kontaktujte administrátora vašeho Dokumentového serveru.", - "DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové připojení bylo ztraceno. Nadále nemůžete editovat.", - "DE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.
    Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.", - "DE.Controllers.Main.errorDatabaseConnection": "Externí chyba.
    Chyba připojení k databázi. Prosím, kontaktujte podporu.", - "DE.Controllers.Main.errorDataEncrypted": "Obdrženy šifrované změny – bez hesla je není možné zobrazit.", - "DE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.", - "DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Při práci na dokumentu došlo k chybě.
    Použijte volbu „Stáhnout“ a uložte si soubor jako zálohu na svůj počítač.", - "DE.Controllers.Main.errorFilePassProtect": "Soubor je chráněn heslem, bez kterého jej 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.errorKeyEncrypt": "Neznámý klíč deskriptoru", - "DE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel", - "DE.Controllers.Main.errorMailMergeLoadFile": "Načítání dokumentu se nezdařilo. Vyberte jiný soubor.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Spojování selhalo.", - "DE.Controllers.Main.errorOpensource": "Použitím volné komunitní verze můžete otevřít dokumenty pouze pro čtení. Pro přístup k mobilním editorům je vyžadována komerční licence.", - "DE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo.", - "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. Prosím, načtete stránku znovu.", - "DE.Controllers.Main.errorSessionIdle": "Dokument nebyl po dlouhou dobu upravován. Prosím, znovu načtěte stránku.", - "DE.Controllers.Main.errorSessionToken": "Připojení k serveru bylo přerušeno. Prosím, znovu načtěte stránku.", - "DE.Controllers.Main.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:
    otevírací cena, maximální cena, minimální cena, uzavírací cena.", - "DE.Controllers.Main.errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.
    Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.", - "DE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.", - "DE.Controllers.Main.errorUsersExceed": "Počet uživatelů byl překročen", - "DE.Controllers.Main.errorViewerDisconnect": "Spojení je přerušeno. Stále můžete zobrazit dokument,
    ale nebudete moci stahovat, dokud neobnovíte připojení a nenačtete stránku znovu.", - "DE.Controllers.Main.leavePageText": "V tomto dokumentu máte neuložené změny. Pokud o ně nechcete přijít, klikněte na „Zůstat na této stránce“, poté vyčkejte na automatické uložení dokumentu. V opačném případě klikněte na „Opustit tuto stránku“ a všechny neuložené změny budou zahozeny.", - "DE.Controllers.Main.loadFontsTextText": "Načítání dat...", - "DE.Controllers.Main.loadFontsTitleText": "Načítání dat", - "DE.Controllers.Main.loadFontTextText": "Načítání dat...", - "DE.Controllers.Main.loadFontTitleText": "Načítání dat", - "DE.Controllers.Main.loadImagesTextText": "Načítání obrázků...", - "DE.Controllers.Main.loadImagesTitleText": "Načítání obrázků", - "DE.Controllers.Main.loadImageTextText": "Načítání obrázku...", - "DE.Controllers.Main.loadImageTitleText": "Načítání obrázku", - "DE.Controllers.Main.loadingDocumentTextText": "Načítám dokument...", - "DE.Controllers.Main.loadingDocumentTitleText": "Načítání dokumentu", - "DE.Controllers.Main.mailMergeLoadFileText": "Načítání datového zdroje...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Načítání datového zdroje", - "DE.Controllers.Main.notcriticalErrorTitle": "Varování", - "DE.Controllers.Main.openErrorText": "Při otevírání souboru došlo k chybě.", - "DE.Controllers.Main.openTextText": "Otevírání dokumentu...", - "DE.Controllers.Main.openTitleText": "Otevírání dokumentu", - "DE.Controllers.Main.printTextText": "Tisknutí dokumentu...", - "DE.Controllers.Main.printTitleText": "Tisknutí dokumentu", - "DE.Controllers.Main.saveErrorText": "Během ukládání souboru došlo k chybě.", - "DE.Controllers.Main.savePreparingText": "Příprava na ukládání", - "DE.Controllers.Main.savePreparingTitle": "Příprava ukládání. Prosím čekejte...", - "DE.Controllers.Main.saveTextText": "Ukládání dokumentu...", - "DE.Controllers.Main.saveTitleText": "Ukládání dokumentu", - "DE.Controllers.Main.scriptLoadError": "Připojení je příliš pomalé, některé součásti se nepodařilo načíst. Načtěte stránku znovu.", - "DE.Controllers.Main.sendMergeText": "Odesílaní hromadné zprávy...", - "DE.Controllers.Main.sendMergeTitle": "Odesílaní hromadné zprávy", - "DE.Controllers.Main.splitDividerErrorText": "Počet řádků musí být dělitelem 1%", - "DE.Controllers.Main.splitMaxColsErrorText": "Počet sloupců musí být menší než 1%", - "DE.Controllers.Main.splitMaxRowsErrorText": "Počet řádků musí být menší než 1%", - "DE.Controllers.Main.textAnonymous": "Anonymní", - "DE.Controllers.Main.textBack": "Zpět", - "DE.Controllers.Main.textBuyNow": "Navštívit webovou stránku", - "DE.Controllers.Main.textCancel": "Zrušit", - "DE.Controllers.Main.textClose": "Zavřít", - "DE.Controllers.Main.textContactUs": "Obchodní oddělení", - "DE.Controllers.Main.textCustomLoader": "Mějte na paměti, že dle podmínek licence nejste oprávněni měnit načítač.
    Pro získání nabídky se obraťte na naše obchodní oddělení.", - "DE.Controllers.Main.textDone": "Hotovo", - "DE.Controllers.Main.textHasMacros": "Soubor obsahuje automatická makra.
    Chcete spustit makra?", - "DE.Controllers.Main.textLoadingDocument": "Načítání dokumentu", - "DE.Controllers.Main.textNo": "Ne", - "DE.Controllers.Main.textNoLicenseTitle": "omezení na %1 spojení", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Placená funkce", - "DE.Controllers.Main.textPassword": "Heslo", - "DE.Controllers.Main.textPreloader": "Nahrávám ...", - "DE.Controllers.Main.textRemember": "Zapamatovat mou volbu", - "DE.Controllers.Main.textTryUndoRedo": "Funkce zpět/zopakovat jsou vypnuty pro rychlý co-editační režim.", - "DE.Controllers.Main.textUsername": "Uživatelské jméno ", - "DE.Controllers.Main.textYes": "Ano", - "DE.Controllers.Main.titleLicenseExp": "Platnost licence vypršela", - "DE.Controllers.Main.titleServerVersion": "Editor byl aktualizován", - "DE.Controllers.Main.titleUpdateVersion": "Verze změněna", - "DE.Controllers.Main.txtArt": "Zde napište text", - "DE.Controllers.Main.txtDiagramTitle": "Nadpis grafu", - "DE.Controllers.Main.txtEditingMode": "Nastavit editační režim...", - "DE.Controllers.Main.txtFooter": "Zápatí", - "DE.Controllers.Main.txtHeader": "Záhlaví", - "DE.Controllers.Main.txtProtected": "Jakmile zadáte heslo a soubor otevřete, stávající heslo k souboru bude resetováno", - "DE.Controllers.Main.txtSeries": "Řady", - "DE.Controllers.Main.txtStyle_footnote_text": "Text poznámky pod čarou", - "DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Nadpis 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Nadpis 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Nadpis 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Nadpis 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Nadpis 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Výrazný citát", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Seznam odstavce", - "DE.Controllers.Main.txtStyle_No_Spacing": "Žádné mezery", - "DE.Controllers.Main.txtStyle_Normal": "Normální", - "DE.Controllers.Main.txtStyle_Quote": "Citát", - "DE.Controllers.Main.txtStyle_Subtitle": "Podtitul", - "DE.Controllers.Main.txtStyle_Title": "Název", - "DE.Controllers.Main.txtXAxis": "Osa X", - "DE.Controllers.Main.txtYAxis": "Osa Y", - "DE.Controllers.Main.unknownErrorText": "Neznámá chyba.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Váš prohlížeč není podporován.", - "DE.Controllers.Main.uploadImageExtMessage": "Neznámý formát obrázku.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Žádné obrázky nenahrány.", - "DE.Controllers.Main.uploadImageSizeMessage": "Překročen maximální limit velikosti obrázku.", - "DE.Controllers.Main.uploadImageTextText": "Nahrávání obrázku...", - "DE.Controllers.Main.uploadImageTitleText": "Nahrávání obrázku", - "DE.Controllers.Main.waitText": "Čekejte prosím ...", - "DE.Controllers.Main.warnLicenseExceeded": "Počet souběžných spojení na dokumentový server byl překročen a dokument bude otevřen pouze pro prohlížení.
    Ohledně podrobností se obraťte na svého správce.", - "DE.Controllers.Main.warnLicenseExp": "Platnost vaší licence vypršela.
    Prosím, aktualizujte vaší licenci a obnovte stránku.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Počet souběžných uživatelů byl překročen a dokument bude otevřen pouze pro čtení.
    Ohledně podrobností se obraťte na svého správce.", - "DE.Controllers.Main.warnNoLicense": "Používáte verzi open source %1. Verze má omezení pro souběžné připojení k dokumentovému serveru (20 připojení najednou).
    Pokud budete potřebovat více, tak prosím zvažte koupi komerční licence.", - "DE.Controllers.Main.warnNoLicenseUsers": "Tato verze editorů %1 má určitá omezení ohledně souběžně připojených uživatelů.
    Pokud potřebujete více, zvažte zakoupení komerční licence.", - "DE.Controllers.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor.", - "DE.Controllers.Search.textNoTextFound": "Text nebyl nalezen", - "DE.Controllers.Search.textReplaceAll": "Nahradit vše", - "DE.Controllers.Settings.notcriticalErrorTitle": "Varování", - "DE.Controllers.Settings.textCustomSize": "Vlastní velikost", - "DE.Controllers.Settings.txtLoading": "Nahrávám ...", - "DE.Controllers.Settings.unknownText": "Neznámý", - "DE.Controllers.Settings.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
    Opravdu chcete pokračovat?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Uložením v tomto formátu může být ztracena část formátování dokumentu.
    Opravdu chcete pokračovat?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Pokud o ně nechcete přijít, klikněte na „Zůstat na této stránce“, poté vyčkejte na automatické uložení dokumentu. V opačném případě klikněte na „Opustit tuto stránku“ a všechny neuložené změny budou zahozeny.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Opouštíte aplikaci", - "DE.Controllers.Toolbar.leaveButtonText": "Opustit tuto stránku", - "DE.Controllers.Toolbar.stayButtonText": "Zůstat na této stránce", - "DE.Views.AddImage.textAddress": "Adresa", - "DE.Views.AddImage.textBack": "Zpět", - "DE.Views.AddImage.textFromLibrary": "Obrázek z knihovny", - "DE.Views.AddImage.textFromURL": "Obrázek z adresy URL", - "DE.Views.AddImage.textImageURL": "URL obrázku", - "DE.Views.AddImage.textInsertImage": "Vložit obrázek", - "DE.Views.AddImage.textLinkSettings": "Nastavení odkazů", - "DE.Views.AddOther.textAddComment": "Přidat komentář", - "DE.Views.AddOther.textAddLink": "Přidat odkaz", - "DE.Views.AddOther.textBack": "Zpět", - "DE.Views.AddOther.textBreak": "Přestávka", - "DE.Views.AddOther.textCenterBottom": "Uprostřed", - "DE.Views.AddOther.textCenterTop": "Nahoře uprostřed", - "DE.Views.AddOther.textColumnBreak": "Zalomení sloupce", - "DE.Views.AddOther.textComment": "Komentář", - "DE.Views.AddOther.textContPage": "Souvislá stránka", - "DE.Views.AddOther.textCurrentPos": "Aktuální pozice", - "DE.Views.AddOther.textDisplay": "Zobrazit", - "DE.Views.AddOther.textDone": "Hotovo", - "DE.Views.AddOther.textEvenPage": "Sudá stránka", - "DE.Views.AddOther.textFootnote": "Poznámka pod čarou", - "DE.Views.AddOther.textFormat": "Formát", - "DE.Views.AddOther.textInsert": "Vložit", - "DE.Views.AddOther.textInsertFootnote": "Vložit poznámku pod čarou", - "DE.Views.AddOther.textLeftBottom": "Vlevo dole", - "DE.Views.AddOther.textLeftTop": "Vlevo nahoře", - "DE.Views.AddOther.textLink": "Odkaz", - "DE.Views.AddOther.textLocation": "Umístění", - "DE.Views.AddOther.textNextPage": "Další stránka", - "DE.Views.AddOther.textOddPage": "Lichá stránka", - "DE.Views.AddOther.textPageBreak": "Rozdělení stránky", - "DE.Views.AddOther.textPageNumber": "Číslo stránky", - "DE.Views.AddOther.textPosition": "Pozice", - "DE.Views.AddOther.textRightBottom": "Vpravo dole", - "DE.Views.AddOther.textRightTop": "Vpravo nahoře", - "DE.Views.AddOther.textSectionBreak": "Konec oddílu", - "DE.Views.AddOther.textStartFrom": "Začít na", - "DE.Views.AddOther.textTip": "Nápověda", - "DE.Views.EditChart.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "DE.Views.EditChart.textAlign": "Zarovnat", - "DE.Views.EditChart.textBack": "Zpět", - "DE.Views.EditChart.textBackward": "Posunout zpět", - "DE.Views.EditChart.textBehind": "Za", - "DE.Views.EditChart.textBorder": "Ohraničení", - "DE.Views.EditChart.textColor": "Barva", - "DE.Views.EditChart.textCustomColor": "Uživatelsky určená barva", - "DE.Views.EditChart.textDistanceText": "Vzdálenost od textu", - "DE.Views.EditChart.textFill": "Výplň", - "DE.Views.EditChart.textForward": "Posunout vpřed", - "DE.Views.EditChart.textInFront": "Vpředu", - "DE.Views.EditChart.textInline": "Rovnoběžně s textem", - "DE.Views.EditChart.textMoveText": "Přemístit s textem", - "DE.Views.EditChart.textOverlap": "Povolit překrytí", - "DE.Views.EditChart.textRemoveChart": "Odstranit graf", - "DE.Views.EditChart.textReorder": "Přerovnat", - "DE.Views.EditChart.textSize": "Velikost", - "DE.Views.EditChart.textSquare": "Čtverec", - "DE.Views.EditChart.textStyle": "Styl", - "DE.Views.EditChart.textThrough": "Přes", - "DE.Views.EditChart.textTight": "Těsný", - "DE.Views.EditChart.textToBackground": "Přesunout do pozadí", - "DE.Views.EditChart.textToForeground": "Přenést do popředí", - "DE.Views.EditChart.textTopBottom": "Nahoře a dole", - "DE.Views.EditChart.textType": "Typ", - "DE.Views.EditChart.textWrap": "Zabalit", - "DE.Views.EditHeader.textDiffFirst": "Odlišná první stránka", - "DE.Views.EditHeader.textDiffOdd": "Rozdílné liché a sudé stránky", - "DE.Views.EditHeader.textFrom": "Začít na", - "DE.Views.EditHeader.textPageNumbering": "Číslování stránek", - "DE.Views.EditHeader.textPrev": "Pokračovat od předchozí sekce", - "DE.Views.EditHeader.textSameAs": "Odkázat na předchozí", - "DE.Views.EditHyperlink.textDisplay": "Zobrazit", - "DE.Views.EditHyperlink.textEdit": "Upravit odkaz", - "DE.Views.EditHyperlink.textLink": "Odkaz", - "DE.Views.EditHyperlink.textRemove": "Odstranit odkaz", - "DE.Views.EditHyperlink.textTip": "Nápověda", - "DE.Views.EditImage.textAddress": "Adresa", - "DE.Views.EditImage.textAlign": "Zarovnat", - "DE.Views.EditImage.textBack": "Zpět", - "DE.Views.EditImage.textBackward": "Posunout zpět", - "DE.Views.EditImage.textBehind": "Za", - "DE.Views.EditImage.textDefault": "Skutečná velikost", - "DE.Views.EditImage.textDistanceText": "Vzdálenost od textu", - "DE.Views.EditImage.textForward": "Posunout vpřed", - "DE.Views.EditImage.textFromLibrary": "Obrázek z knihovny", - "DE.Views.EditImage.textFromURL": "Obrázek z adresy URL", - "DE.Views.EditImage.textImageURL": "URL obrázku", - "DE.Views.EditImage.textInFront": "Vpředu", - "DE.Views.EditImage.textInline": "Rovnoběžně s textem", - "DE.Views.EditImage.textLinkSettings": "Nastavení odkazů", - "DE.Views.EditImage.textMoveText": "Přemístit s textem", - "DE.Views.EditImage.textOverlap": "Povolit překrytí", - "DE.Views.EditImage.textRemove": "Odstranit obrázek", - "DE.Views.EditImage.textReorder": "Přerovnat", - "DE.Views.EditImage.textReplace": "Nahradit", - "DE.Views.EditImage.textReplaceImg": "Nahradit obrázek", - "DE.Views.EditImage.textSquare": "Čtverec", - "DE.Views.EditImage.textThrough": "Přes", - "DE.Views.EditImage.textTight": "Těsný", - "DE.Views.EditImage.textToBackground": "Přesunout do pozadí", - "DE.Views.EditImage.textToForeground": "Přenést do popředí", - "DE.Views.EditImage.textTopBottom": "Nahoře a dole", - "DE.Views.EditImage.textWrap": "Zabalit", - "DE.Views.EditParagraph.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "DE.Views.EditParagraph.textAdvanced": "Pokročilý", - "DE.Views.EditParagraph.textAdvSettings": "Pokročilé nastavení", - "DE.Views.EditParagraph.textAfter": "za", - "DE.Views.EditParagraph.textAuto": "Automaticky", - "DE.Views.EditParagraph.textBack": "Zpět", - "DE.Views.EditParagraph.textBackground": "Pozadí", - "DE.Views.EditParagraph.textBefore": "Před", - "DE.Views.EditParagraph.textCustomColor": "Uživatelsky určená barva", - "DE.Views.EditParagraph.textFirstLine": "První řádek", - "DE.Views.EditParagraph.textFromText": "Vzdálenost od textu", - "DE.Views.EditParagraph.textKeepLines": "Ponechat řádky pohromadě", - "DE.Views.EditParagraph.textKeepNext": "Zachovat s dalším", - "DE.Views.EditParagraph.textOrphan": "Kontrola osamocených řádků", - "DE.Views.EditParagraph.textPageBreak": "Rozdělit stránku před", - "DE.Views.EditParagraph.textPrgStyles": "Styly odstavce", - "DE.Views.EditParagraph.textSpaceBetween": "Mezera mezi odstavci", - "DE.Views.EditShape.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "DE.Views.EditShape.textAlign": "Zarovnat", - "DE.Views.EditShape.textBack": "Zpět", - "DE.Views.EditShape.textBackward": "Posunout zpět", - "DE.Views.EditShape.textBehind": "Za", - "DE.Views.EditShape.textBorder": "Ohraničení", - "DE.Views.EditShape.textColor": "Barva", - "DE.Views.EditShape.textCustomColor": "Uživatelsky určená barva", - "DE.Views.EditShape.textEffects": "Efekty", - "DE.Views.EditShape.textFill": "Výplň", - "DE.Views.EditShape.textForward": "Posunout vpřed", - "DE.Views.EditShape.textFromText": "Vzdálenost od textu", - "DE.Views.EditShape.textInFront": "Vpředu", - "DE.Views.EditShape.textInline": "Rovnoběžně s textem", - "DE.Views.EditShape.textOpacity": "Průhlednost", - "DE.Views.EditShape.textOverlap": "Povolit překrytí", - "DE.Views.EditShape.textRemoveShape": "Odstranit formu", - "DE.Views.EditShape.textReorder": "Přerovnat", - "DE.Views.EditShape.textReplace": "Nahradit", - "DE.Views.EditShape.textSize": "Velikost", - "DE.Views.EditShape.textSquare": "Čtverec", - "DE.Views.EditShape.textStyle": "Styl", - "DE.Views.EditShape.textThrough": "Přes", - "DE.Views.EditShape.textTight": "Těsný", - "DE.Views.EditShape.textToBackground": "Přesunout do pozadí", - "DE.Views.EditShape.textToForeground": "Přenést do popředí", - "DE.Views.EditShape.textTopAndBottom": "Nahoře a dole", - "DE.Views.EditShape.textWithText": "Přemístit s textem", - "DE.Views.EditShape.textWrap": "Zabalit", - "DE.Views.EditTable.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "DE.Views.EditTable.textAlign": "Zarovnat", - "DE.Views.EditTable.textBack": "Zpět", - "DE.Views.EditTable.textBandedColumn": "Pruhovaný sloupec", - "DE.Views.EditTable.textBandedRow": "Pruhovaný řádek", - "DE.Views.EditTable.textBorder": "Ohraničení", - "DE.Views.EditTable.textCellMargins": "Okraje buňky", - "DE.Views.EditTable.textColor": "Barva", - "DE.Views.EditTable.textCustomColor": "Uživatelsky určená barva", - "DE.Views.EditTable.textFill": "Výplň", - "DE.Views.EditTable.textFirstColumn": "První sloupec", - "DE.Views.EditTable.textFlow": "Flow", - "DE.Views.EditTable.textFromText": "Vzdálenost od textu", - "DE.Views.EditTable.textHeaderRow": "Řádek záhlaví", - "DE.Views.EditTable.textInline": "Rovnoběžně s textem", - "DE.Views.EditTable.textLastColumn": "Poslední sloupec", - "DE.Views.EditTable.textOptions": "Možnosti", - "DE.Views.EditTable.textRemoveTable": "Odstranit tabulku", - "DE.Views.EditTable.textRepeatHeader": "Opakujte jako řádek záhlaví", - "DE.Views.EditTable.textResizeFit": "Změnit velikost pro přizpůsobení obsahu", - "DE.Views.EditTable.textSize": "Velikost", - "DE.Views.EditTable.textStyle": "Styl", - "DE.Views.EditTable.textStyleOptions": "Možnosti stylu", - "DE.Views.EditTable.textTableOptions": "Možnosti tabulky", - "DE.Views.EditTable.textTotalRow": "Řádek souhrnů", - "DE.Views.EditTable.textWithText": "Přemístit s textem", - "DE.Views.EditTable.textWrap": "Zabalit", - "DE.Views.EditText.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "DE.Views.EditText.textAdditional": "Další", - "DE.Views.EditText.textAdditionalFormat": "Další formátování", - "DE.Views.EditText.textAllCaps": "Všechno velkým", - "DE.Views.EditText.textAutomatic": "Automaticky", - "DE.Views.EditText.textBack": "Zpět", - "DE.Views.EditText.textBullets": "Odrážky", - "DE.Views.EditText.textCharacterBold": "T", - "DE.Views.EditText.textCharacterItalic": "S", - "DE.Views.EditText.textCharacterStrikethrough": "P", - "DE.Views.EditText.textCharacterUnderline": "PO", - "DE.Views.EditText.textCustomColor": "Uživatelsky určená barva", - "DE.Views.EditText.textDblStrikethrough": "Dvojité přeškrtnutí", - "DE.Views.EditText.textDblSuperscript": "Horní index", - "DE.Views.EditText.textFontColor": "Barva písma", - "DE.Views.EditText.textFontColors": "Barvy písma", - "DE.Views.EditText.textFonts": "Fonty", - "DE.Views.EditText.textHighlightColor": "Barva zvýraznění", - "DE.Views.EditText.textHighlightColors": "Barvy zvíraznění", - "DE.Views.EditText.textLetterSpacing": "Rozestup mezi písmeny", - "DE.Views.EditText.textLineSpacing": "Řádkování", - "DE.Views.EditText.textNone": "žádný", - "DE.Views.EditText.textNumbers": "Čísla", - "DE.Views.EditText.textSize": "Velikost", - "DE.Views.EditText.textSmallCaps": "Malá písmena", - "DE.Views.EditText.textStrikethrough": "Přeškrtnutí", - "DE.Views.EditText.textSubscript": "Dolní index", - "DE.Views.Search.textCase": "Rozlišovat malá a velká písmena", - "DE.Views.Search.textDone": "Hotovo", - "DE.Views.Search.textFind": "Najít", - "DE.Views.Search.textFindAndReplace": "Najít a nahradit", - "DE.Views.Search.textHighlight": "Zvýraznit výsledky", - "DE.Views.Search.textReplace": "Nahradit", - "DE.Views.Search.textSearch": "Hledat", - "DE.Views.Settings.textAbout": "O", - "DE.Views.Settings.textAddress": "Adresa", - "DE.Views.Settings.textAdvancedSettings": "Nastavení aplikace", - "DE.Views.Settings.textApplication": "Aplikace", - "DE.Views.Settings.textAuthor": "Autor", - "DE.Views.Settings.textBack": "Zpět", - "DE.Views.Settings.textBottom": "Dole", - "DE.Views.Settings.textCentimeter": "Centimetr", - "DE.Views.Settings.textCollaboration": "Spolupráce", - "DE.Views.Settings.textColorSchemes": "Schémata barev", - "DE.Views.Settings.textComment": "Komentář", - "DE.Views.Settings.textCommentingDisplay": "Zobrazování komentářů", - "DE.Views.Settings.textCreated": "Vytvořeno", - "DE.Views.Settings.textCreateDate": "Datum vytvoření", - "DE.Views.Settings.textCustom": "Vlastní", - "DE.Views.Settings.textCustomSize": "Vlastní velikost", - "DE.Views.Settings.textDisableAll": "Vypnout vše", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Vypnout všechna makra s oznámením", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Vypnout všechna makra bez oznámení", - "DE.Views.Settings.textDisplayComments": "Komentáře", - "DE.Views.Settings.textDisplayResolvedComments": "Vyřešené komentáře", - "DE.Views.Settings.textDocInfo": "Informace dokumentu", - "DE.Views.Settings.textDocTitle": "Titulek dokumentu", - "DE.Views.Settings.textDocumentFormats": "Formáty dokumentu", - "DE.Views.Settings.textDocumentSettings": "Nastavení dokumentu", - "DE.Views.Settings.textDone": "Hotovo", - "DE.Views.Settings.textDownload": "Stáhnout", - "DE.Views.Settings.textDownloadAs": "Stáhnout jako...", - "DE.Views.Settings.textEditDoc": "Upravit dokument", - "DE.Views.Settings.textEmail": "E-mail", - "DE.Views.Settings.textEnableAll": "Zapnout vše", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Zapnout všechna makra bez oznámení", - "DE.Views.Settings.textFind": "Najít", - "DE.Views.Settings.textFindAndReplace": "Najít a nahradit", - "DE.Views.Settings.textFormat": "Formát", - "DE.Views.Settings.textHelp": "Nápověda", - "DE.Views.Settings.textHiddenTableBorders": "Skryté ohraničení tabulky", - "DE.Views.Settings.textInch": "Palec", - "DE.Views.Settings.textLandscape": "Na šířku", - "DE.Views.Settings.textLastModified": "Naposledy upraveno", - "DE.Views.Settings.textLastModifiedBy": "Naposledy upravil(a)", - "DE.Views.Settings.textLeft": "Vlevo", - "DE.Views.Settings.textLoading": "Nahrávám ...", - "DE.Views.Settings.textLocation": "Umístění", - "DE.Views.Settings.textMacrosSettings": "Nastavení maker", - "DE.Views.Settings.textMargins": "Okraje", - "DE.Views.Settings.textNoCharacters": "Netisknutelné znaky", - "DE.Views.Settings.textOrientation": "Orientace", - "DE.Views.Settings.textOwner": "Vlastník", - "DE.Views.Settings.textPages": "Stránky", - "DE.Views.Settings.textParagraphs": "Odstavce", - "DE.Views.Settings.textPoint": "Bod", - "DE.Views.Settings.textPortrait": "Na výšku", - "DE.Views.Settings.textPoweredBy": "Poháněno", - "DE.Views.Settings.textPrint": "Tisk", - "DE.Views.Settings.textReader": "Čtecí režim", - "DE.Views.Settings.textReview": "Sledovat změny", - "DE.Views.Settings.textRight": "Vpravo", - "DE.Views.Settings.textSettings": "Nastavení", - "DE.Views.Settings.textShowNotification": "Zobrazit oznámení", - "DE.Views.Settings.textSpaces": "Mezery", - "DE.Views.Settings.textSpellcheck": "Kontrola pravopisu", - "DE.Views.Settings.textStatistic": "Statistika", - "DE.Views.Settings.textSubject": "Předmět", - "DE.Views.Settings.textSymbols": "Symboly", - "DE.Views.Settings.textTel": "Sdělit", - "DE.Views.Settings.textTitle": "Nadpis", - "DE.Views.Settings.textTop": "Nahoře", - "DE.Views.Settings.textUnitOfMeasurement": "Měřit v jednotkách", - "DE.Views.Settings.textUploaded": "Nahráno", - "DE.Views.Settings.textVersion": "Verze", - "DE.Views.Settings.textWords": "Slova", - "DE.Views.Settings.unknownText": "Neznámý", - "DE.Views.Toolbar.textBack": "Zpět" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/da.json b/apps/documenteditor/mobile/locale/da.json index 3a0de085e..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/da.json +++ b/apps/documenteditor/mobile/locale/da.json @@ -1,607 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Tilføj Svar", - "Common.Controllers.Collaboration.textAtLeast": "mindst", - "Common.Controllers.Collaboration.textAuto": "auto", - "Common.Controllers.Collaboration.textBaseline": "Grundlinje", - "Common.Controllers.Collaboration.textBold": "Fed", - "Common.Controllers.Collaboration.textBreakBefore": "Sideskift før", - "Common.Controllers.Collaboration.textCancel": "Annuller", - "Common.Controllers.Collaboration.textCaps": "Alle caps", - "Common.Controllers.Collaboration.textCenter": "Tilpas til midten", - "Common.Controllers.Collaboration.textChart": "Diagram", - "Common.Controllers.Collaboration.textColor": "Skriftfarve", - "Common.Controllers.Collaboration.textContextual": "Tilføj ikke interval mellem afsnit med samme stil", - "Common.Controllers.Collaboration.textDelete": "Slet", - "Common.Controllers.Collaboration.textDeleteComment": "Slet kommentar", - "Common.Controllers.Collaboration.textDeleted": "Slettet:", - "Common.Controllers.Collaboration.textDeleteReply": "Slet svar", - "Common.Controllers.Collaboration.textDone": "Afsluttet", - "Common.Controllers.Collaboration.textDStrikeout": "Dobbelt overstregning", - "Common.Controllers.Collaboration.textEdit": "Redigér", - "Common.Controllers.Collaboration.textEditUser": "Brugere som redigerer dokumentet:", - "Common.Controllers.Collaboration.textEquation": "Formel", - "Common.Controllers.Collaboration.textExact": "præcis", - "Common.Controllers.Collaboration.textFirstLine": "Første linie", - "Common.Controllers.Collaboration.textFormatted": "Formatteret", - "Common.Controllers.Collaboration.textHighlight": "Fremhæv farve", - "Common.Controllers.Collaboration.textImage": "Billede", - "Common.Controllers.Collaboration.textIndentLeft": "Indryk fra venstre", - "Common.Controllers.Collaboration.textIndentRight": "Indryk højre", - "Common.Controllers.Collaboration.textInserted": "Sat ind:", - "Common.Controllers.Collaboration.textItalic": "Kursiv", - "Common.Controllers.Collaboration.textJustify": "Juster berettiget", - "Common.Controllers.Collaboration.textKeepLines": "Hold linjerne samlet", - "Common.Controllers.Collaboration.textKeepNext": "Hold sammen med næste", - "Common.Controllers.Collaboration.textLeft": "Tilpas til venstre", - "Common.Controllers.Collaboration.textLineSpacing": "Linjeafstand", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Ønsker du at slette denne kommentar?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Ønsker du at slette dette svar?", - "Common.Controllers.Collaboration.textMultiple": "flere", - "Common.Controllers.Collaboration.textNoBreakBefore": "Ingen sideskift før", - "Common.Controllers.Collaboration.textNoChanges": "Der er ingen ændringer.", - "Common.Controllers.Collaboration.textNoContextual": "Interval toevoegen tussen", - "Common.Controllers.Collaboration.textNoKeepLines": "Hold ikke linjer samlet", - "Common.Controllers.Collaboration.textNoKeepNext": "Hold ikke med tekst", - "Common.Controllers.Collaboration.textNot": "Ikke", - "Common.Controllers.Collaboration.textNoWidow": "Ingen enke kontrol", - "Common.Controllers.Collaboration.textNum": "Skift nummering", - "Common.Controllers.Collaboration.textParaDeleted": "Afsnit slettet", - "Common.Controllers.Collaboration.textParaFormatted": "Sætning formatteret", - "Common.Controllers.Collaboration.textParaInserted": "Afsnit sat ind ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Flyttet ned:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Flyttet op:", - "Common.Controllers.Collaboration.textParaMoveTo": "Flyttet:", - "Common.Controllers.Collaboration.textPosition": "Placering", - "Common.Controllers.Collaboration.textReopen": "Genåbn", - "Common.Controllers.Collaboration.textResolve": "Løs", - "Common.Controllers.Collaboration.textRight": "Tilpas til højre", - "Common.Controllers.Collaboration.textShape": "Figur", - "Common.Controllers.Collaboration.textShd": "Baggrundsfarve", - "Common.Controllers.Collaboration.textSmallCaps": "Små bogstaver", - "Common.Controllers.Collaboration.textSpacing": "Afstand", - "Common.Controllers.Collaboration.textSpacingAfter": "Afstand efter", - "Common.Controllers.Collaboration.textSpacingBefore": "Afstand før", - "Common.Controllers.Collaboration.textStrikeout": "Overstreg", - "Common.Controllers.Collaboration.textSubScript": "Sænket", - "Common.Controllers.Collaboration.textSuperScript": "Hævet", - "Common.Controllers.Collaboration.textTableChanged": "Tabel indstillinger ændret", - "Common.Controllers.Collaboration.textTableRowsAdd": "Tabel-rækker tilføjet", - "Common.Controllers.Collaboration.textTableRowsDel": "Tabel rækker slettet", - "Common.Controllers.Collaboration.textTabs": "Skift faner", - "Common.Controllers.Collaboration.textUnderline": "Understreg", - "Common.Controllers.Collaboration.textWidow": "Enke kontrol", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Brugerdefineret Farver", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardfarver", - "Common.UI.ThemeColorPalette.textThemeColors": "Temafarver", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Accepter", - "Common.Views.Collaboration.textAcceptAllChanges": "Acceptér alle ændringer", - "Common.Views.Collaboration.textAddReply": "Tilføj Svar", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Alle ændringer accepteret", - "Common.Views.Collaboration.textAllChangesEditing": "Alle ændringer (redigering)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Alle ændringer afvist", - "Common.Views.Collaboration.textBack": "Tilbage", - "Common.Views.Collaboration.textCancel": "Annuller", - "Common.Views.Collaboration.textChange": "Gennemse ændring", - "Common.Views.Collaboration.textCollaboration": "Samarbejde", - "Common.Views.Collaboration.textDisplayMode": "Visningstilstand", - "Common.Views.Collaboration.textDone": "Afsluttet", - "Common.Views.Collaboration.textEditReply": "Redigér svar", - "Common.Views.Collaboration.textEditUsers": "Brugere", - "Common.Views.Collaboration.textEditСomment": "Redigér kommentar", - "Common.Views.Collaboration.textFinal": "Endelig", - "Common.Views.Collaboration.textMarkup": "Markup", - "Common.Views.Collaboration.textNoComments": "Dokumentet indeholder ikke kommentarer.", - "Common.Views.Collaboration.textOriginal": "Orginal", - "Common.Views.Collaboration.textReject": "Afvis", - "Common.Views.Collaboration.textRejectAllChanges": "Afvis alle ændringer", - "Common.Views.Collaboration.textReview": "Spor ændringer", - "Common.Views.Collaboration.textReviewing": "Gennemse", - "Common.Views.Collaboration.textСomments": "Kommentarer", - "DE.Controllers.AddContainer.textImage": "Billede", - "DE.Controllers.AddContainer.textOther": "Anden", - "DE.Controllers.AddContainer.textShape": "Form", - "DE.Controllers.AddContainer.textTable": "Tabel", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Advarsel", - "DE.Controllers.AddImage.textEmptyImgUrl": "Du skal angive en billed-URL.", - "DE.Controllers.AddImage.txtNotUrl": "Der skal indtastes en URL i formatet 'http://www.example.com'", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Advarsel", - "DE.Controllers.AddOther.textBelowText": "Under Teksten", - "DE.Controllers.AddOther.textBottomOfPage": "Bunden Af Siden", - "DE.Controllers.AddOther.textCancel": "Annuller", - "DE.Controllers.AddOther.textContinue": "Fortsæt", - "DE.Controllers.AddOther.textDelete": "Slet", - "DE.Controllers.AddOther.textDeleteDraft": "Bekræft at du vil slette kladden?", - "DE.Controllers.AddOther.txtNotUrl": "Der skal indtastes en URL i formatet 'http://www.example.com'", - "DE.Controllers.AddTable.textCancel": "Annuller", - "DE.Controllers.AddTable.textColumns": "Kolonner", - "DE.Controllers.AddTable.textRows": "Rækker", - "DE.Controllers.AddTable.textTableSize": "Tabelstørrelse", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Kopier, klip og indsæt handlinger", - "DE.Controllers.DocumentHolder.menuAddComment": "Tilføj kommentar", - "DE.Controllers.DocumentHolder.menuAddLink": "Tilføj Link", - "DE.Controllers.DocumentHolder.menuCopy": "Kopier", - "DE.Controllers.DocumentHolder.menuCut": "Klip", - "DE.Controllers.DocumentHolder.menuDelete": "Slet", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Slet Tabel", - "DE.Controllers.DocumentHolder.menuEdit": "Redigér", - "DE.Controllers.DocumentHolder.menuMerge": "Fusioner celler", - "DE.Controllers.DocumentHolder.menuMore": "Mere", - "DE.Controllers.DocumentHolder.menuOpenLink": "Åbn link", - "DE.Controllers.DocumentHolder.menuPaste": "Indsæt", - "DE.Controllers.DocumentHolder.menuReview": "Gennemse", - "DE.Controllers.DocumentHolder.menuReviewChange": "Gennemse ændring", - "DE.Controllers.DocumentHolder.menuSplit": "Dele celle", - "DE.Controllers.DocumentHolder.menuViewComment": "Se kommentar", - "DE.Controllers.DocumentHolder.sheetCancel": "Annuller", - "DE.Controllers.DocumentHolder.textCancel": "Annuller", - "DE.Controllers.DocumentHolder.textColumns": "Kolonner", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Kopier, Klip og Indsæt", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Vis ikke igen", - "DE.Controllers.DocumentHolder.textGuest": "Gæst", - "DE.Controllers.DocumentHolder.textRows": "Rækker", - "DE.Controllers.EditContainer.textChart": "Diagram", - "DE.Controllers.EditContainer.textFooter": "Sidefod", - "DE.Controllers.EditContainer.textHeader": "Sidehoved", - "DE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "DE.Controllers.EditContainer.textImage": "Billede", - "DE.Controllers.EditContainer.textParagraph": "Afsnit", - "DE.Controllers.EditContainer.textSettings": "Indstillinger", - "DE.Controllers.EditContainer.textShape": "Figur", - "DE.Controllers.EditContainer.textTable": "Tabel", - "DE.Controllers.EditContainer.textText": "Tekst", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Advarsel", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Du skal angive en billed-URL.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Der skal indtastes en URL i formatet 'http://www.example.com'", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Advarsel", - "DE.Controllers.EditImage.textEmptyImgUrl": "Du skal angive en billed-URL.", - "DE.Controllers.EditImage.txtNotUrl": "Der skal indtastes en URL i formatet 'http://www.example.com'", - "DE.Controllers.EditText.textAuto": "Auto", - "DE.Controllers.EditText.textFonts": "Skrifttyper", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Indtast kodeord:", - "DE.Controllers.Main.advDRMOptions": "Beskyttet fil", - "DE.Controllers.Main.advDRMPassword": "Kodeord", - "DE.Controllers.Main.advTxtOptions": "Vælg tekstoptioner", - "DE.Controllers.Main.applyChangesTextText": "Indlæser data...", - "DE.Controllers.Main.applyChangesTitleText": "Indlæser data", - "DE.Controllers.Main.closeButtonText": "Luk Fil", - "DE.Controllers.Main.convertationTimeoutText": "Konverteringstidsfrist er overskredet", - "DE.Controllers.Main.criticalErrorExtText": "Tryk \"OK\" for a vende tilbage til dokumentlisten.", - "DE.Controllers.Main.criticalErrorTitle": "Fejl", - "DE.Controllers.Main.downloadErrorText": "Hentning fejlede.", - "DE.Controllers.Main.downloadMergeText": "Henter...", - "DE.Controllers.Main.downloadMergeTitle": "Henter", - "DE.Controllers.Main.downloadTextText": "Henter dokument...", - "DE.Controllers.Main.downloadTitleText": "Henter dokument", - "DE.Controllers.Main.errorAccessDeny": "Du prøver at foretage en handling, som du ikke har rettigheder til.
    Kontakt venligst din administrator for hjælp.", - "DE.Controllers.Main.errorBadImageUrl": "Billed-URL er forkert", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Forbindelse til server tabt. Du kan ikke redigere længere.", - "DE.Controllers.Main.errorConnectToServer": "Dokumentet kunne ikke gemmes. Tjek venligst din netværksforbindelse eller kontakt din administrator.
    Når du klikker på 'OK', vil du blive bedt om at hente dokumentet.", - "DE.Controllers.Main.errorDatabaseConnection": "Ekstern fejl.
    Fejl i databaseforbindelse. Kontakt venligst support.", - "DE.Controllers.Main.errorDataEncrypted": "Krypterede ændringer er blevet modtaget, men de kan ikke dekrypteres. ", - "DE.Controllers.Main.errorDataRange": "Forkert datainterval", - "DE.Controllers.Main.errorDefaultMessage": "Fejlkode: %1", - "DE.Controllers.Main.errorEditingDownloadas": "En fejl er opstået", - "DE.Controllers.Main.errorFilePassProtect": "Dokumentet er beskyttet af et kodeord og kan ikke åbnes.", - "DE.Controllers.Main.errorFileSizeExceed": "Filens størrelse overstiger grænsen, som er sat for din server.
    Kontakt venligst din administrator for hjælp.", - "DE.Controllers.Main.errorKeyEncrypt": "Ukendte nøglebeskrivelse", - "DE.Controllers.Main.errorKeyExpire": "Nøglebeskrivelse udløbet", - "DE.Controllers.Main.errorMailMergeLoadFile": "Indlæsning fejlede. Vælg en anden fil.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Fusionering fejlede.", - "DE.Controllers.Main.errorOpensource": "Ved brug af den gratis community-version, kn man kun læse dokumenter. For a bruge de mobile redigeringsværktøj, skal man have en kommerciel licens.", - "DE.Controllers.Main.errorProcessSaveResult": "Gem fejlede.", - "DE.Controllers.Main.errorServerVersion": "Programmet er blevet opdateret. Siden vil blive genindlæst for at anvende ændringerne. ", - "DE.Controllers.Main.errorSessionAbsolute": "Sessionen for dokumentredigering er udløbet. Genindlæs venligst siden. ", - "DE.Controllers.Main.errorSessionIdle": "Dokumentet er ikke blevet redigeret i et stykke tid. Genindlæs venligst siden.", - "DE.Controllers.Main.errorSessionToken": "Forbindelsen til serveren er blevet afbrudt. Venligst genindlæs siden.", - "DE.Controllers.Main.errorStockChart": "Forkert rækkefølge. For at bygge et aktiediagram, placér da data på arket i følgende rækkefølge:
    Åbningspris, maks. pris, min. pris, lukkepris. ", - "DE.Controllers.Main.errorUpdateVersion": "Filversionen er blevet ændret. Siden genindlæses.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internetforbindelsen er blevet genoprettet, og filversionen er blevet ændret.
    Før du kan fortsætte arbejdet, skal du hente filen eller kopiere indholdet for at sikre, at intet vil blive tabt - og derefter genindlæse denne side.", - "DE.Controllers.Main.errorUserDrop": "Der kan ikke opnås adgang til filen lige nu. ", - "DE.Controllers.Main.errorUsersExceed": "Antal brugere overskredet", - "DE.Controllers.Main.errorViewerDisconnect": "Forbindelsen blev afbrudt. Du kan se dokumentet,
    men du kan ikke hente det før forbindelsen er genetableret og siden er genindlæst.", - "DE.Controllers.Main.leavePageText": "Du har foretaget ændring i dokumentet som ikke er gemt. Klik på 'Bliv på siden\" for at afvente automatisk gem af dokument. Klik på 'Forlad siden' for at kassere alle ændringer som ikke er gemt.", - "DE.Controllers.Main.loadFontsTextText": "Indlæser data...", - "DE.Controllers.Main.loadFontsTitleText": "Indlæser data", - "DE.Controllers.Main.loadFontTextText": "Indlæser data...", - "DE.Controllers.Main.loadFontTitleText": "Indlæser data", - "DE.Controllers.Main.loadImagesTextText": "Indlæser billeder...", - "DE.Controllers.Main.loadImagesTitleText": "Indlæser billeder", - "DE.Controllers.Main.loadImageTextText": "Indlæser billede...", - "DE.Controllers.Main.loadImageTitleText": "Indlæser billede", - "DE.Controllers.Main.loadingDocumentTextText": "Indlæser dokument...", - "DE.Controllers.Main.loadingDocumentTitleText": "Indlæser dokument", - "DE.Controllers.Main.mailMergeLoadFileText": "Indlæser datakilde...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Indlæser datakilde", - "DE.Controllers.Main.notcriticalErrorTitle": "Advarsel", - "DE.Controllers.Main.openErrorText": "Der skete en fejl under åbningen af filen", - "DE.Controllers.Main.openTextText": "Åbner dokument...", - "DE.Controllers.Main.openTitleText": "Åbner dokument", - "DE.Controllers.Main.printTextText": "Udskriver dokument...", - "DE.Controllers.Main.printTitleText": "Udskriver dokument", - "DE.Controllers.Main.saveErrorText": "Der skete en fejl da filen blev forsøgt gemt", - "DE.Controllers.Main.savePreparingText": "Forbereder at gemme", - "DE.Controllers.Main.savePreparingTitle": "Forbereder at gemme. Vent venligst...", - "DE.Controllers.Main.saveTextText": "Gemmer dokument...", - "DE.Controllers.Main.saveTitleText": "Gemmer dokument", - "DE.Controllers.Main.scriptLoadError": "Forbindelsen er for langsom, og nogle komponenter kunne ikke indlæses. Indlæs venligst siden igen.", - "DE.Controllers.Main.sendMergeText": "Sender fletning...", - "DE.Controllers.Main.sendMergeTitle": "Sender fletning", - "DE.Controllers.Main.splitDividerErrorText": "Antal rækker skal kunne deles med %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Antal kolonner skal være mindre end %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Antal rækker skal være mindre end %1", - "DE.Controllers.Main.textAnonymous": "Anonym", - "DE.Controllers.Main.textBack": "Tilbage", - "DE.Controllers.Main.textBuyNow": "Besøg hjemmeside", - "DE.Controllers.Main.textCancel": "Annuller", - "DE.Controllers.Main.textClose": "Luk", - "DE.Controllers.Main.textContactUs": "Kontakt salg", - "DE.Controllers.Main.textCustomLoader": "Bemærk, at du i henhold til licensbetingelserne ikke har ret til at ændre loaderen.
    Kontakt venligt vores salgsafdeling for at fået tilbud.", - "DE.Controllers.Main.textDone": "Afsluttet", - "DE.Controllers.Main.textGuest": "Gæst", - "DE.Controllers.Main.textHasMacros": "Filen indeholder makroer.
    Ønsker du at køre makroer?", - "DE.Controllers.Main.textLoadingDocument": "Indlæser dokument", - "DE.Controllers.Main.textNo": "Nej", - "DE.Controllers.Main.textNoLicenseTitle": "Licensbegrænsning nået.", - "DE.Controllers.Main.textOK": "Ok", - "DE.Controllers.Main.textPaidFeature": "Betalt funktion", - "DE.Controllers.Main.textPassword": "Kodeord", - "DE.Controllers.Main.textPreloader": "Indlæser...", - "DE.Controllers.Main.textRemember": "Husk mit valg til alle filer", - "DE.Controllers.Main.textTryUndoRedo": "Fortryd/omgør-funktionen er deaktiveret for hurtig medredigeringstilstand.", - "DE.Controllers.Main.textUsername": "Brugernavn", - "DE.Controllers.Main.textYes": "Ja", - "DE.Controllers.Main.titleLicenseExp": "Licens er udløbet", - "DE.Controllers.Main.titleServerVersion": "Redigeringsværktøj opdateret", - "DE.Controllers.Main.titleUpdateVersion": "Version ændret", - "DE.Controllers.Main.txtAbove": "over", - "DE.Controllers.Main.txtArt": "Din tekst her", - "DE.Controllers.Main.txtBelow": "under", - "DE.Controllers.Main.txtCurrentDocument": "Nuværende dokument", - "DE.Controllers.Main.txtDiagramTitle": "Diagramtitel", - "DE.Controllers.Main.txtEditingMode": "Vælg redigeringstilstand...", - "DE.Controllers.Main.txtEvenPage": "Lige side", - "DE.Controllers.Main.txtFirstPage": "Første side", - "DE.Controllers.Main.txtFooter": "Sidefod", - "DE.Controllers.Main.txtHeader": "Sidehoved", - "DE.Controllers.Main.txtOddPage": "Ulige side", - "DE.Controllers.Main.txtOnPage": "på siden", - "DE.Controllers.Main.txtProtected": "Når du indtaster kodeordet og åbner filen, vil det nuværende kodeord til filen blive nulstillet.", - "DE.Controllers.Main.txtSameAsPrev": "Magen til foregående", - "DE.Controllers.Main.txtSection": "-Sektion", - "DE.Controllers.Main.txtSeries": "Serie", - "DE.Controllers.Main.txtStyle_footnote_text": "Fodnotetekst", - "DE.Controllers.Main.txtStyle_Heading_1": "Overskrift 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Overskrift 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Overskrift 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Overskrift 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Overskrift 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Overskrift 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Overskrift 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Overskrift 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Overskrift 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Intense citering", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Liste afsnit", - "DE.Controllers.Main.txtStyle_No_Spacing": "Ingen afstand", - "DE.Controllers.Main.txtStyle_Normal": "Normal", - "DE.Controllers.Main.txtStyle_Quote": "Citat", - "DE.Controllers.Main.txtStyle_Subtitle": "Undertitel", - "DE.Controllers.Main.txtStyle_Title": "Titel", - "DE.Controllers.Main.txtXAxis": "X akse", - "DE.Controllers.Main.txtYAxis": "Y akse", - "DE.Controllers.Main.unknownErrorText": "Ukendt fejl.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Din browser er ikke understøttet.", - "DE.Controllers.Main.uploadImageExtMessage": "Ukendt billedformat.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Ingen billeder uploadet.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maksimal billedstørrelse overskredet.", - "DE.Controllers.Main.uploadImageTextText": "Overfører billede...", - "DE.Controllers.Main.uploadImageTitleText": "Overfør billede", - "DE.Controllers.Main.waitText": "Vent venligst...", - "DE.Controllers.Main.warnLicenseExceeded": "Antallet af samtidige forbindelser til dokument serveren er oversteget det maksimale antal, og dokumentet vil blive åbnet i visningstilstand.
    Kontakt venligst din administrator for mere information. ", - "DE.Controllers.Main.warnLicenseExp": "Din licens er udløbet
    Venligst opdatér din licens og genindlæs siden.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licens udløbet.
    Du har ikke adgang til at redigere.
    Kontakt venligst din administrator.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Licens skal fornyes.
    Du har begrænset adgang til at redigere dokumenter.
    Kontakt venligst din administrator for at få fuld adgang.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Det maksimale antal af samtidige brugere er oversteget, og dokumentet vil blive åbnet i visningstilstand.
    Kontakt venligst din administrator for mere information. ", - "DE.Controllers.Main.warnNoLicense": "Denne version af %1 redigeringsværktøj har bestemte begrænsninger for samtidige forbindelser til dokumentet serveren.
    hvis du har brug for flere, overvej venligst at købe en kommerciel licens.", - "DE.Controllers.Main.warnNoLicenseUsers": "Du har nået grænsen for brugere af %1 redigeringsværktøj. Kontakt %1 salgsafdeling for at høre om dine opgraderingsmuligheder.", - "DE.Controllers.Main.warnProcessRightsChange": "Du har ikke rettigheder til at redigere denne fil.", - "DE.Controllers.Search.textNoTextFound": "Tekst ej fundet", - "DE.Controllers.Search.textReplaceAll": "Erstat alle", - "DE.Controllers.Settings.notcriticalErrorTitle": "Advarsel", - "DE.Controllers.Settings.textCustomSize": "Brugerdefineret Størrelse", - "DE.Controllers.Settings.txtLoading": "Indlæser...", - "DE.Controllers.Settings.unknownText": "Ukendt", - "DE.Controllers.Settings.warnDownloadAs": "Hvis du fortsætter med at gemme i dette format, vil alle funktioner på nær teksten blive tabt.
    Er du sikker på at du vil fortsætte?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Hvis du fortsætter med at gemme i dette format, kan noget af den nuværende formattering gå tabt.
    Er du sikker på at du vil fortsætte?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Du har foretaget ændring i dokumentet som ikke er gemt. Klik på 'Bliv på siden\" for at afvente automatisk gem af dokument. Klik på 'Forlad siden' for at kassere alle ændringer som ikke er gemt.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Du forlader programmet", - "DE.Controllers.Toolbar.leaveButtonText": "Forlad siden", - "DE.Controllers.Toolbar.stayButtonText": "Bliv på siden", - "DE.Views.AddImage.textAddress": "Adresse", - "DE.Views.AddImage.textBack": "Tilbage", - "DE.Views.AddImage.textFromLibrary": "Billede fra bibliotek", - "DE.Views.AddImage.textFromURL": "Billede fra URL", - "DE.Views.AddImage.textImageURL": "Billed-URL", - "DE.Views.AddImage.textInsertImage": "Indsæt billede", - "DE.Views.AddImage.textLinkSettings": "Linkindstillinger", - "DE.Views.AddOther.textAddComment": "Tilføj kommentar", - "DE.Views.AddOther.textAddLink": "Tilføj Link", - "DE.Views.AddOther.textBack": "Tilbage", - "DE.Views.AddOther.textBreak": "Skift", - "DE.Views.AddOther.textCenterBottom": "Center Bund", - "DE.Views.AddOther.textCenterTop": "Center Top", - "DE.Views.AddOther.textColumnBreak": "Kolonneskift", - "DE.Views.AddOther.textComment": "Kommentar", - "DE.Views.AddOther.textContPage": "Kontinuerlig side", - "DE.Views.AddOther.textCurrentPos": "Nuværende position", - "DE.Views.AddOther.textDisplay": "Visning", - "DE.Views.AddOther.textDone": "Afsluttet", - "DE.Views.AddOther.textEvenPage": "Lige side", - "DE.Views.AddOther.textFootnote": "Fodnote", - "DE.Views.AddOther.textFormat": "Format", - "DE.Views.AddOther.textInsert": "Indsæt", - "DE.Views.AddOther.textInsertFootnote": "Indsæt fodnote", - "DE.Views.AddOther.textLeftBottom": "Venstre bund", - "DE.Views.AddOther.textLeftTop": "Venstre top", - "DE.Views.AddOther.textLink": "Link", - "DE.Views.AddOther.textLocation": "Lokation", - "DE.Views.AddOther.textNextPage": "Næste side", - "DE.Views.AddOther.textOddPage": "Ulige side", - "DE.Views.AddOther.textPageBreak": "Sideskift", - "DE.Views.AddOther.textPageNumber": "Sidetal", - "DE.Views.AddOther.textPosition": "Placering", - "DE.Views.AddOther.textRightBottom": "Højre nederst", - "DE.Views.AddOther.textRightTop": "Højre øverst", - "DE.Views.AddOther.textSectionBreak": "Sektion skift", - "DE.Views.AddOther.textStartFrom": "Start ved", - "DE.Views.AddOther.textTip": "Skærmtip", - "DE.Views.EditChart.textAddCustomColor": "Tilføj Speciel Farve", - "DE.Views.EditChart.textAlign": "Tilpas", - "DE.Views.EditChart.textBack": "Tilbage", - "DE.Views.EditChart.textBackward": "Ryk tilbage", - "DE.Views.EditChart.textBehind": "Bagved", - "DE.Views.EditChart.textBorder": "Kant", - "DE.Views.EditChart.textColor": "Farve", - "DE.Views.EditChart.textCustomColor": "Brugerdefineret farve", - "DE.Views.EditChart.textDistanceText": "Afstand fra tekst", - "DE.Views.EditChart.textFill": "Fyld", - "DE.Views.EditChart.textForward": "Ryk frem", - "DE.Views.EditChart.textInFront": "Foran", - "DE.Views.EditChart.textInline": "inline", - "DE.Views.EditChart.textMoveText": "Flyt med tekst", - "DE.Views.EditChart.textOverlap": "Tillad overlapning", - "DE.Views.EditChart.textRemoveChart": "Fjern diagram", - "DE.Views.EditChart.textReorder": "Arrangér", - "DE.Views.EditChart.textSize": "Størrelse", - "DE.Views.EditChart.textSquare": "Kvadrat", - "DE.Views.EditChart.textStyle": "Stilart", - "DE.Views.EditChart.textThrough": "Gennem", - "DE.Views.EditChart.textTight": "Stram", - "DE.Views.EditChart.textToBackground": "Flyt bagud", - "DE.Views.EditChart.textToForeground": "Bring fremad", - "DE.Views.EditChart.textTopBottom": "Top og bund", - "DE.Views.EditChart.textType": "Type", - "DE.Views.EditChart.textWrap": "Indpak", - "DE.Views.EditHeader.textDiffFirst": "Anden forreste side", - "DE.Views.EditHeader.textDiffOdd": "Forskellige ulige og lige sider", - "DE.Views.EditHeader.textFrom": "Start ved", - "DE.Views.EditHeader.textPageNumbering": "Sidenummering", - "DE.Views.EditHeader.textPrev": "Fortsæt fra foregående sektion", - "DE.Views.EditHeader.textSameAs": "Link til forrige", - "DE.Views.EditHyperlink.textDisplay": "Visning", - "DE.Views.EditHyperlink.textEdit": "Redigér link", - "DE.Views.EditHyperlink.textLink": "Link", - "DE.Views.EditHyperlink.textRemove": "Fjern link", - "DE.Views.EditHyperlink.textTip": "Skærmtip", - "DE.Views.EditImage.textAddress": "Adresse", - "DE.Views.EditImage.textAlign": "Tilpas", - "DE.Views.EditImage.textBack": "Tilbage", - "DE.Views.EditImage.textBackward": "Ryk tilbage", - "DE.Views.EditImage.textBehind": "Bagved", - "DE.Views.EditImage.textDefault": "Faktisk størrelse", - "DE.Views.EditImage.textDistanceText": "Afstand fra tekst", - "DE.Views.EditImage.textForward": "Ryk frem", - "DE.Views.EditImage.textFromLibrary": "Billede fra bibliotek", - "DE.Views.EditImage.textFromURL": "Billede fra URL", - "DE.Views.EditImage.textImageURL": "Billed-URL", - "DE.Views.EditImage.textInFront": "Foran", - "DE.Views.EditImage.textInline": "inline", - "DE.Views.EditImage.textLinkSettings": "Linkindstillinger", - "DE.Views.EditImage.textMoveText": "Flyt med tekst", - "DE.Views.EditImage.textOverlap": "Tillad overlapning", - "DE.Views.EditImage.textRemove": "Fjern billede", - "DE.Views.EditImage.textReorder": "Arrangér", - "DE.Views.EditImage.textReplace": "Erstat", - "DE.Views.EditImage.textReplaceImg": "Erstat billede", - "DE.Views.EditImage.textSquare": "Kvadrat", - "DE.Views.EditImage.textThrough": "Gennem", - "DE.Views.EditImage.textTight": "Stram", - "DE.Views.EditImage.textToBackground": "Flyt bagud", - "DE.Views.EditImage.textToForeground": "Bring fremad", - "DE.Views.EditImage.textTopBottom": "Top og bund", - "DE.Views.EditImage.textWrap": "Indpak", - "DE.Views.EditParagraph.textAddCustomColor": "Tilføj Speciel Farve", - "DE.Views.EditParagraph.textAdvanced": "Avanceret", - "DE.Views.EditParagraph.textAdvSettings": "Avancerede indstillinger", - "DE.Views.EditParagraph.textAfter": "efter", - "DE.Views.EditParagraph.textAuto": "Auto", - "DE.Views.EditParagraph.textBack": "Tilbage", - "DE.Views.EditParagraph.textBackground": "Baggrund", - "DE.Views.EditParagraph.textBefore": "Før", - "DE.Views.EditParagraph.textCustomColor": "Brugerdefineret farve", - "DE.Views.EditParagraph.textFirstLine": "Første linie", - "DE.Views.EditParagraph.textFromText": "Afstand fra tekst", - "DE.Views.EditParagraph.textKeepLines": "Hold linjerne samlet", - "DE.Views.EditParagraph.textKeepNext": "Hold sammen med næste", - "DE.Views.EditParagraph.textOrphan": "Horeunge kontrol", - "DE.Views.EditParagraph.textPageBreak": "Sideskift før", - "DE.Views.EditParagraph.textPrgStyles": "Afsnits-layout", - "DE.Views.EditParagraph.textSpaceBetween": "Mellemrum mellem afsnit", - "DE.Views.EditShape.textAddCustomColor": "Tilføj Speciel Farve", - "DE.Views.EditShape.textAlign": "Tilpas", - "DE.Views.EditShape.textBack": "Tilbage", - "DE.Views.EditShape.textBackward": "Ryk tilbage", - "DE.Views.EditShape.textBehind": "Bagved", - "DE.Views.EditShape.textBorder": "Kant", - "DE.Views.EditShape.textColor": "Farve", - "DE.Views.EditShape.textCustomColor": "Brugerdefineret Farve", - "DE.Views.EditShape.textEffects": "Effekter", - "DE.Views.EditShape.textFill": "Fyld", - "DE.Views.EditShape.textForward": "Ryk frem", - "DE.Views.EditShape.textFromText": "Afstand fra tekst", - "DE.Views.EditShape.textInFront": "Foran", - "DE.Views.EditShape.textInline": "inline", - "DE.Views.EditShape.textOpacity": "Gennemsigtighed", - "DE.Views.EditShape.textOverlap": "Tillad overlapning", - "DE.Views.EditShape.textRemoveShape": "Fjern figur", - "DE.Views.EditShape.textReorder": "Arrangér", - "DE.Views.EditShape.textReplace": "Erstat", - "DE.Views.EditShape.textSize": "Størrelse", - "DE.Views.EditShape.textSquare": "Kvadrat", - "DE.Views.EditShape.textStyle": "Stilart", - "DE.Views.EditShape.textThrough": "Gennem", - "DE.Views.EditShape.textTight": "Stram", - "DE.Views.EditShape.textToBackground": "Flyt bagud", - "DE.Views.EditShape.textToForeground": "Bring fremad", - "DE.Views.EditShape.textTopAndBottom": "Top og bund", - "DE.Views.EditShape.textWithText": "Flyt med tekst", - "DE.Views.EditShape.textWrap": "Indpak", - "DE.Views.EditTable.textAddCustomColor": "Tilføj Speciel Farve", - "DE.Views.EditTable.textAlign": "Tilpas", - "DE.Views.EditTable.textBack": "Tilbage", - "DE.Views.EditTable.textBandedColumn": "Forbundet kolonne", - "DE.Views.EditTable.textBandedRow": "Forbundet række", - "DE.Views.EditTable.textBorder": "Kant", - "DE.Views.EditTable.textCellMargins": "Cellemargener", - "DE.Views.EditTable.textColor": "Farve", - "DE.Views.EditTable.textCustomColor": "Brugerdefineret Farve", - "DE.Views.EditTable.textFill": "Fyld", - "DE.Views.EditTable.textFirstColumn": "Første kolonne", - "DE.Views.EditTable.textFlow": "Flow", - "DE.Views.EditTable.textFromText": "Afstand fra tekst", - "DE.Views.EditTable.textHeaderRow": "Overskriftsrække", - "DE.Views.EditTable.textInline": "inline", - "DE.Views.EditTable.textLastColumn": "Sidste kolonne", - "DE.Views.EditTable.textOptions": "Valgmuligheder", - "DE.Views.EditTable.textRemoveTable": "Fjern tabel", - "DE.Views.EditTable.textRepeatHeader": "Gentag som overskriftsrække", - "DE.Views.EditTable.textResizeFit": "Tilpas størrelse til indhold", - "DE.Views.EditTable.textSize": "Størrelse", - "DE.Views.EditTable.textStyle": "Stilart", - "DE.Views.EditTable.textStyleOptions": "Stilart valgmuligheder", - "DE.Views.EditTable.textTableOptions": "Valgmuligheder for tabel", - "DE.Views.EditTable.textTotalRow": "Hele rækken", - "DE.Views.EditTable.textWithText": "Flyt med tekst", - "DE.Views.EditTable.textWrap": "Indpak", - "DE.Views.EditText.textAddCustomColor": "Tilføj Speciel Farve", - "DE.Views.EditText.textAdditional": "Ekstra", - "DE.Views.EditText.textAdditionalFormat": "Yderligere formattering", - "DE.Views.EditText.textAllCaps": "Alle caps", - "DE.Views.EditText.textAutomatic": "Automatisk", - "DE.Views.EditText.textBack": "Tilbage", - "DE.Views.EditText.textBullets": "Punkter", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "|", - "DE.Views.EditText.textCharacterStrikethrough": "S", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Brugerdefineret Farve", - "DE.Views.EditText.textDblStrikethrough": "Dobbelt gennemstregning", - "DE.Views.EditText.textDblSuperscript": "Hævet", - "DE.Views.EditText.textFontColor": "Skriftfarve", - "DE.Views.EditText.textFontColors": "Skriftfarver", - "DE.Views.EditText.textFonts": "Skrifttyper", - "DE.Views.EditText.textHighlightColor": "Fremhæv farve", - "DE.Views.EditText.textHighlightColors": "Fremhæv farver", - "DE.Views.EditText.textLetterSpacing": "Mellemrum", - "DE.Views.EditText.textLineSpacing": "Linjeafstand", - "DE.Views.EditText.textNone": "Ingen", - "DE.Views.EditText.textNumbers": "Cifre", - "DE.Views.EditText.textSize": "Størrelse", - "DE.Views.EditText.textSmallCaps": "Små bogstaver", - "DE.Views.EditText.textStrikethrough": "Gennemstregning", - "DE.Views.EditText.textSubscript": "Sænket", - "DE.Views.Search.textCase": "Afhængigt af store og små bogstaver", - "DE.Views.Search.textDone": "Afsluttet", - "DE.Views.Search.textFind": "Find", - "DE.Views.Search.textFindAndReplace": "Find og erstat", - "DE.Views.Search.textHighlight": "Fremhæv resultater", - "DE.Views.Search.textReplace": "Erstat", - "DE.Views.Search.textSearch": "Søg", - "DE.Views.Settings.textAbout": "Om", - "DE.Views.Settings.textAddress": "adresse", - "DE.Views.Settings.textAdvancedSettings": "Program indstillinger", - "DE.Views.Settings.textApplication": "Applikation", - "DE.Views.Settings.textAuthor": "Forfatter", - "DE.Views.Settings.textBack": "Tilbage", - "DE.Views.Settings.textBottom": "Bund", - "DE.Views.Settings.textCentimeter": "Centimeter", - "DE.Views.Settings.textCollaboration": "Samarbejde", - "DE.Views.Settings.textColorSchemes": "Farveskema", - "DE.Views.Settings.textComment": "Kommentar", - "DE.Views.Settings.textCommentingDisplay": "Kommentarvisning", - "DE.Views.Settings.textCreated": "Oprettet", - "DE.Views.Settings.textCreateDate": "Oprettelsesdato", - "DE.Views.Settings.textCustom": "Brugerdefineret", - "DE.Views.Settings.textCustomSize": "Brugerdefineret Størrelse", - "DE.Views.Settings.textDisableAll": "Deaktiver Alle", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Deaktiver alle makroer med en notifikation", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Deaktiver alle makroer uden en notifikation", - "DE.Views.Settings.textDisplayComments": "Kommentarer", - "DE.Views.Settings.textDisplayResolvedComments": "Løste kommentarer", - "DE.Views.Settings.textDocInfo": "Dokumentoplysninger", - "DE.Views.Settings.textDocTitle": "Dokumenttitel", - "DE.Views.Settings.textDocumentFormats": "Dokumentformater", - "DE.Views.Settings.textDocumentSettings": "Dokumentindstillinger", - "DE.Views.Settings.textDone": "Afsluttet", - "DE.Views.Settings.textDownload": "Hent", - "DE.Views.Settings.textDownloadAs": "Hent som..", - "DE.Views.Settings.textEditDoc": "Redigér dokument", - "DE.Views.Settings.textEmail": "e-mail", - "DE.Views.Settings.textEnableAll": "Aktivér alle", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Aktivér alle makroer uden meddelelse", - "DE.Views.Settings.textFind": "Find", - "DE.Views.Settings.textFindAndReplace": "Find og erstat", - "DE.Views.Settings.textFormat": "Format", - "DE.Views.Settings.textHelp": "Hjælp", - "DE.Views.Settings.textHiddenTableBorders": "Skjulte tabelrammer", - "DE.Views.Settings.textInch": "Tomme", - "DE.Views.Settings.textLandscape": "Landskab", - "DE.Views.Settings.textLastModified": "Sidst redigeret", - "DE.Views.Settings.textLastModifiedBy": "Sidst redigeret af", - "DE.Views.Settings.textLeft": "Venstre", - "DE.Views.Settings.textLoading": "Indlæser...", - "DE.Views.Settings.textLocation": "Lokation", - "DE.Views.Settings.textMacrosSettings": "Makroindstillinger", - "DE.Views.Settings.textMargins": "Margener", - "DE.Views.Settings.textNoCharacters": "Ikkeprintende tegn", - "DE.Views.Settings.textOrientation": "Orientering", - "DE.Views.Settings.textOwner": "Ejer", - "DE.Views.Settings.textPages": "Sider", - "DE.Views.Settings.textParagraphs": "Afsnit", - "DE.Views.Settings.textPoint": "Punkt", - "DE.Views.Settings.textPortrait": "Portræt", - "DE.Views.Settings.textPoweredBy": "Drevet af", - "DE.Views.Settings.textPrint": "Udskriv", - "DE.Views.Settings.textReader": "Læsningstilstand", - "DE.Views.Settings.textReview": "Spor ændringer", - "DE.Views.Settings.textRight": "Højre", - "DE.Views.Settings.textSettings": "Indstillinger", - "DE.Views.Settings.textShowNotification": "Vis besked", - "DE.Views.Settings.textSpaces": "Mellemrum", - "DE.Views.Settings.textSpellcheck": "Stavekontrol", - "DE.Views.Settings.textStatistic": "Statistik", - "DE.Views.Settings.textSubject": "Emne", - "DE.Views.Settings.textSymbols": "Symboler", - "DE.Views.Settings.textTel": "tel", - "DE.Views.Settings.textTitle": "Titel", - "DE.Views.Settings.textTop": "Top", - "DE.Views.Settings.textUnitOfMeasurement": "Måleenhed", - "DE.Views.Settings.textUploaded": "Overført", - "DE.Views.Settings.textVersion": "Version", - "DE.Views.Settings.textWords": "Ord", - "DE.Views.Settings.unknownText": "Ukendt", - "DE.Views.Toolbar.textBack": "Tilbage" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/de.json b/apps/documenteditor/mobile/locale/de.json index 43623f7f9..48050b14f 100644 --- a/apps/documenteditor/mobile/locale/de.json +++ b/apps/documenteditor/mobile/locale/de.json @@ -205,6 +205,7 @@ "textBehind": "Hinten", "textBorder": "Rahmen", "textBringToForeground": "In den Vordergrund bringen", + "textBullets": "Aufzählungszeichen", "textBulletsAndNumbers": "Aufzählungszeichen und Nummern", "textCellMargins": "Zellenränder", "textChart": "Diagramm", @@ -250,6 +251,7 @@ "textNone": "Kein(e)", "textNoStyles": "Keine Stile für diesen Typ von Diagrammen.", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "textNumbers": "Nummern", "textOpacity": "Undurchsichtigkeit", "textOptions": "Optionen", "textOrphanControl": "Absatzkontrolle", @@ -379,7 +381,22 @@ "leavePageText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", "notcriticalErrorTitle": "Warnung", "SDK": { + " -Section ": "-Abschnitt", + "above": "Oben", + "below": "Unten", + "Caption": "Beschriftung", + "Choose an item": "Wählen Sie ein Element aus", + "Click to load image": "Klicken Sie, um das Bild herunterzuladen", + "Current Document": "Aktuelles Dokument", "Diagram Title": "Diagrammtitel", + "endnote text": "Endnotentext", + "Enter a date": "Datum einfügen", + "Error! Bookmark not defined": "Fehler! Textmarke nicht definiert.", + "Error! Main Document Only": "Fehler! Nur Hauptdokument.", + "Error! No text of specified style in document": "Fehler! Im Dokument gibt es keinen Text des angegebenen Stils.", + "Error! Not a valid bookmark self-reference": "Fehler! Ungültiger Lesezeichen-Link.", + "Even Page ": "Gerade Seite", + "First Page ": "Erste Seite", "Footer": "Fußzeile", "footnote text": "Fußnotentext", "Header": "Kopfzeile", @@ -392,17 +409,38 @@ "Heading 7": "Überschrift 7", "Heading 8": "Überschrift 8", "Heading 9": "Überschrift 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Zu großer Index", "Intense Quote": "Intensives Zitat", + "Is Not In Table": "Nicht in Tabelle", "List Paragraph": "Listenabsatz", + "Missing Argument": "Fehlendes Argument", + "Missing Operator": "Fehlender Operator", "No Spacing": "Kein Abstand", + "No table of contents entries found": "Im Dokument sind keine Überschriften vorhanden. Wenden Sie einen Überschriftenstil auf den Text an, damit er im Inhaltsverzeichnis erscheint.", + "No table of figures entries found": "Es konnten keine Einträge für ein Abbildungsverzeichnis gefunden werden.", + "None": "Kein(e)", "Normal": "Normal", + "Number Too Large To Format": "Nummer zu groß zum Formatieren", + "Odd Page ": "Ungerade Seite", "Quote": "Zitat", + "Same as Previous": "Wie vorherige", "Series": "Reihen", "Subtitle": "Untertitel", + "Syntax Error": "Syntaxfehler", + "Table Index Cannot be Zero": "Tabellenindex darf nicht Null sein", + "Table of Contents": "Inhaltsverzeichnis", + "table of figures": "Abbildungsverzeichnis", + "The Formula Not In Table": "Die Formel steht nicht in einer Tabelle", "Title": "Titel", + "TOC Heading": "Inhaltsverzeichnisüberschrift", + "Type equation here": "Gleichung hier eingeben", + "Undefined Bookmark": "Undefiniertes Lesezeichen", + "Unexpected End of Formula": "Unerwartetes Ende der Formel", "X Axis": "Achse X (XAS)", "Y Axis": "Achse Y", - "Your text here": "Text hier eingeben" + "Your text here": "Text hier eingeben", + "Zero Divide": "Nullteilung" }, "textAnonymous": "Anonym", "textBuyNow": "Webseite besuchen", @@ -506,7 +544,29 @@ "textUnitOfMeasurement": "Maßeinheit", "textUploaded": "Hochgeladen", "txtIncorrectPwd": "Passwort ist falsch", - "txtProtected": "Wenn Sie das Password eingeben und die Datei öffnen, wird das aktive Password zurückgesetzt" + "txtProtected": "Wenn Sie das Password eingeben und die Datei öffnen, wird das aktive Password zurückgesetzt", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Modul", + "txtScheme13": "Reichhaltig", + "txtScheme14": "Erker", + "txtScheme15": "Herkunft", + "txtScheme16": "Papier", + "txtScheme17": "Sonnenwende", + "txtScheme18": "Technik", + "txtScheme19": "Wanderung", + "txtScheme2": "Graustufe", + "txtScheme20": "Rhea", + "txtScheme21": "Telesto", + "txtScheme22": "Neues Office", + "txtScheme3": "Apex", + "txtScheme4": "Bildseitenverhältnis", + "txtScheme5": "bürgerlich", + "txtScheme6": "Halle", + "txtScheme7": "Kapital", + "txtScheme8": "Fluss", + "txtScheme9": "Gießerei" }, "Toolbar": { "dlgLeaveMsgText": "Sie haben nicht gespeicherte Änderungen. Klicken Sie auf \"Auf dieser Seite bleiben\" und warten Sie, bis die Datei automatisch gespeichert wird. Klicken Sie auf \"Die Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", diff --git a/apps/documenteditor/mobile/locale/el.json b/apps/documenteditor/mobile/locale/el.json index 65fed4c28..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/el.json +++ b/apps/documenteditor/mobile/locale/el.json @@ -1,607 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Προσθήκη Απάντησης", - "Common.Controllers.Collaboration.textAtLeast": "τουλάχιστον", - "Common.Controllers.Collaboration.textAuto": "αυτόματα", - "Common.Controllers.Collaboration.textBaseline": "Γραμμή Αναφοράς", - "Common.Controllers.Collaboration.textBold": "Έντονα", - "Common.Controllers.Collaboration.textBreakBefore": "Αλλαγή σελίδας πριν", - "Common.Controllers.Collaboration.textCancel": "Ακύρωση", - "Common.Controllers.Collaboration.textCaps": "Όλα κεφαλαία", - "Common.Controllers.Collaboration.textCenter": "Στοίχιση στο κέντρο", - "Common.Controllers.Collaboration.textChart": "Διάγραμμα", - "Common.Controllers.Collaboration.textColor": "Χρώμα γραμματοσειράς", - "Common.Controllers.Collaboration.textContextual": "Μην προσθέσετε ένα διάστημα μεταξύ παραγράφων της ίδιας τεχνοτροπίας", - "Common.Controllers.Collaboration.textDelete": "Διαγραφή", - "Common.Controllers.Collaboration.textDeleteComment": "Διαγραφή σχολίου", - "Common.Controllers.Collaboration.textDeleted": "Διαγράφηκαν:", - "Common.Controllers.Collaboration.textDeleteReply": "Διαγραφή απάντησης", - "Common.Controllers.Collaboration.textDone": "Ολοκληρώθηκε", - "Common.Controllers.Collaboration.textDStrikeout": "Διπλή διαγραφή", - "Common.Controllers.Collaboration.textEdit": "Επεξεργασία", - "Common.Controllers.Collaboration.textEditUser": "Οι χρήστες που επεξεργάζονται το αρχείο:", - "Common.Controllers.Collaboration.textEquation": "Εξίσωση", - "Common.Controllers.Collaboration.textExact": "ακριβώς", - "Common.Controllers.Collaboration.textFirstLine": "Πρώτη γραμμή", - "Common.Controllers.Collaboration.textFormatted": "Διαμορφώθηκε", - "Common.Controllers.Collaboration.textHighlight": "Χρώμα επισήμανσης", - "Common.Controllers.Collaboration.textImage": "Εικόνα", - "Common.Controllers.Collaboration.textIndentLeft": "Εσοχή αριστερά", - "Common.Controllers.Collaboration.textIndentRight": "Εσοχή δεξιά", - "Common.Controllers.Collaboration.textInserted": "Εισήχθησαν:", - "Common.Controllers.Collaboration.textItalic": "Πλάγια", - "Common.Controllers.Collaboration.textJustify": "Στοίχιση πλήρης", - "Common.Controllers.Collaboration.textKeepLines": "Διατήρηση γραμμών μαζί", - "Common.Controllers.Collaboration.textKeepNext": "Διατήρηση με επόμενο", - "Common.Controllers.Collaboration.textLeft": "Στοίχιση αριστερά", - "Common.Controllers.Collaboration.textLineSpacing": "Διάστιχο:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Θέλετε πραγματικά να διαγράψετε αυτό το σχόλιο;", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Θέλετε πραγματικά να διαγράψετε αυτήν την απάντηση;", - "Common.Controllers.Collaboration.textMultiple": "πολλαπλό", - "Common.Controllers.Collaboration.textNoBreakBefore": "Όχι αλλαγή σελίδας πριν", - "Common.Controllers.Collaboration.textNoChanges": "Δεν υπάρχουν αλλαγές.", - "Common.Controllers.Collaboration.textNoContextual": "Προσθήκη διαστήματος μεταξύ παραγράφων της ίδιας τεχνοτροπίας", - "Common.Controllers.Collaboration.textNoKeepLines": "Μην διατηρείτε τις γραμμές μαζί", - "Common.Controllers.Collaboration.textNoKeepNext": "Να μην διατηρηθεί με επόμενο", - "Common.Controllers.Collaboration.textNot": "Όχι", - "Common.Controllers.Collaboration.textNoWidow": "Χωρίς έλεγχο παραθύρου", - "Common.Controllers.Collaboration.textNum": "Αλλαγή αρίθμησης", - "Common.Controllers.Collaboration.textParaDeleted": "Παράγραφος Διαγράφηκε", - "Common.Controllers.Collaboration.textParaFormatted": "Παράγραφος Μορφοποιήθηκε", - "Common.Controllers.Collaboration.textParaInserted": "Παράγραφος Εισήχθη", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Μετακινήθηκαν Κάτω:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Μετακινήθηκαν Πάνω:", - "Common.Controllers.Collaboration.textParaMoveTo": "Μετακινήθηκαν:", - "Common.Controllers.Collaboration.textPosition": "Θέση", - "Common.Controllers.Collaboration.textReopen": "Άνοιγμα ξανά", - "Common.Controllers.Collaboration.textResolve": "Επίλυση", - "Common.Controllers.Collaboration.textRight": "Στοίχιση δεξιά", - "Common.Controllers.Collaboration.textShape": "Σχήμα", - "Common.Controllers.Collaboration.textShd": "Χρώμα παρασκηνίου", - "Common.Controllers.Collaboration.textSmallCaps": "Μικρά κεφαλαία", - "Common.Controllers.Collaboration.textSpacing": "Διάστημα", - "Common.Controllers.Collaboration.textSpacingAfter": "Διάστημα μετά", - "Common.Controllers.Collaboration.textSpacingBefore": "Διάστημα πριν", - "Common.Controllers.Collaboration.textStrikeout": "Διαγραφή", - "Common.Controllers.Collaboration.textSubScript": "Δείκτης", - "Common.Controllers.Collaboration.textSuperScript": "Εκθέτης", - "Common.Controllers.Collaboration.textTableChanged": "Άλλαξαν οι Ρυθμίσεις Πίνακα", - "Common.Controllers.Collaboration.textTableRowsAdd": "Προστέθηκαν Γραμμές Πίνακα", - "Common.Controllers.Collaboration.textTableRowsDel": "Διαγράφηκαν Γραμμές Του Πίνακα", - "Common.Controllers.Collaboration.textTabs": "Αλλαγή καρτελών", - "Common.Controllers.Collaboration.textUnderline": "Υπογράμμιση", - "Common.Controllers.Collaboration.textWidow": "Έλεγχος παραθύρου", - "Common.Controllers.Collaboration.textYes": "Ναι", - "Common.UI.ThemeColorPalette.textCustomColors": "Προσαρμοσμένα χρώματα", - "Common.UI.ThemeColorPalette.textStandartColors": "Τυπικά χρώματα", - "Common.UI.ThemeColorPalette.textThemeColors": "Χρώματα θέματος", - "Common.Utils.Metric.txtCm": "εκ", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Αποδοχή", - "Common.Views.Collaboration.textAcceptAllChanges": "Αποδοχή Όλων των Αλλαγών", - "Common.Views.Collaboration.textAddReply": "Προσθήκη Απάντησης", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Όλες οι αλλαγές έγιναν αποδεκτές (Προεπισκόπηση)", - "Common.Views.Collaboration.textAllChangesEditing": "Όλες οι αλλαγές (Επεξεργασία)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Όλες οι αλλαγές απορρίφθηκαν (Προεπισκόπηση)", - "Common.Views.Collaboration.textBack": "Πίσω", - "Common.Views.Collaboration.textCancel": "Ακύρωση", - "Common.Views.Collaboration.textChange": "Επισκόπηση αλλαγής", - "Common.Views.Collaboration.textCollaboration": "Συνεργασία", - "Common.Views.Collaboration.textDisplayMode": "Κατάσταση Προβολής", - "Common.Views.Collaboration.textDone": "Ολοκληρώθηκε", - "Common.Views.Collaboration.textEditReply": "Επεξεργασία απάντησης", - "Common.Views.Collaboration.textEditUsers": "Χρήστες", - "Common.Views.Collaboration.textEditСomment": "Επεξεργασία σχολίου", - "Common.Views.Collaboration.textFinal": "Τελικός", - "Common.Views.Collaboration.textMarkup": "Markup", - "Common.Views.Collaboration.textNoComments": "Αυτό το έγγραφο δεν περιέχει σχόλια", - "Common.Views.Collaboration.textOriginal": "Πρωτότυπο", - "Common.Views.Collaboration.textReject": "Απόρριψη", - "Common.Views.Collaboration.textRejectAllChanges": "Απόρριψη όλων των αλλαγών", - "Common.Views.Collaboration.textReview": "Παρακολούθηση αλλαγών", - "Common.Views.Collaboration.textReviewing": "Επισκόπηση", - "Common.Views.Collaboration.textСomments": "Σχόλια", - "DE.Controllers.AddContainer.textImage": "Εικόνα", - "DE.Controllers.AddContainer.textOther": "Άλλο", - "DE.Controllers.AddContainer.textShape": "Σχήμα", - "DE.Controllers.AddContainer.textTable": "Πίνακας", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Προειδοποίηση", - "DE.Controllers.AddImage.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", - "DE.Controllers.AddImage.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Προειδοποίηση", - "DE.Controllers.AddOther.textBelowText": "Κάτω Από Το Κείμενο", - "DE.Controllers.AddOther.textBottomOfPage": "Κάτω Μέρος Της Σελίδας", - "DE.Controllers.AddOther.textCancel": "Ακύρωση", - "DE.Controllers.AddOther.textContinue": "Συνέχεια", - "DE.Controllers.AddOther.textDelete": "Διαγραφή", - "DE.Controllers.AddOther.textDeleteDraft": "Θέλετε πραγματικά να διαγράψετε το πρόχειρο;", - "DE.Controllers.AddOther.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", - "DE.Controllers.AddTable.textCancel": "Ακύρωση", - "DE.Controllers.AddTable.textColumns": "Στήλες", - "DE.Controllers.AddTable.textRows": "Γραμμές", - "DE.Controllers.AddTable.textTableSize": "Μέγεθος πίνακα", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Οι ενέργειες αντιγραφής, αποκοπής και επικόλλησης μέσω του μενού περιβάλλοντος θα εκτελούνται μόνο στο τρέχον αρχείο.", - "DE.Controllers.DocumentHolder.menuAddComment": "Προσθήκη Σχολίου", - "DE.Controllers.DocumentHolder.menuAddLink": "Προσθήκη Συνδέσμου", - "DE.Controllers.DocumentHolder.menuCopy": "Αντιγραφή", - "DE.Controllers.DocumentHolder.menuCut": "Αποκοπή", - "DE.Controllers.DocumentHolder.menuDelete": "Διαγραφή", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Διαγραφή πίνακα", - "DE.Controllers.DocumentHolder.menuEdit": "Επεξεργασία", - "DE.Controllers.DocumentHolder.menuMerge": "Συγχώνευση κελιών", - "DE.Controllers.DocumentHolder.menuMore": "Περισσότερα", - "DE.Controllers.DocumentHolder.menuOpenLink": "Άνοιγμα συνδέσμου", - "DE.Controllers.DocumentHolder.menuPaste": "Επικόλληση", - "DE.Controllers.DocumentHolder.menuReview": "Επισκόπηση", - "DE.Controllers.DocumentHolder.menuReviewChange": "Επισκόπηση αλλαγής", - "DE.Controllers.DocumentHolder.menuSplit": "Διαίρεση κελιού", - "DE.Controllers.DocumentHolder.menuViewComment": "Προβολή σχολίου", - "DE.Controllers.DocumentHolder.sheetCancel": "Ακύρωση", - "DE.Controllers.DocumentHolder.textCancel": "Ακύρωση", - "DE.Controllers.DocumentHolder.textColumns": "Στήλες", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Ενέργειες αντιγραφής, αποκοπής και επικόλλησης", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Να μην εμφανίζεται ξανά", - "DE.Controllers.DocumentHolder.textGuest": "Επισκέπτης", - "DE.Controllers.DocumentHolder.textRows": "Γραμμές", - "DE.Controllers.EditContainer.textChart": "Διάγραμμα", - "DE.Controllers.EditContainer.textFooter": "Υποσέλιδο", - "DE.Controllers.EditContainer.textHeader": "Κεφαλίδα", - "DE.Controllers.EditContainer.textHyperlink": "Υπερσύνδεσμος", - "DE.Controllers.EditContainer.textImage": "Εικόνα", - "DE.Controllers.EditContainer.textParagraph": "Παράγραφος", - "DE.Controllers.EditContainer.textSettings": "Ρυθμίσεις", - "DE.Controllers.EditContainer.textShape": "Σχήμα", - "DE.Controllers.EditContainer.textTable": "Πίνακας", - "DE.Controllers.EditContainer.textText": "Κείμενο", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Προειδοποίηση", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Προειδοποίηση", - "DE.Controllers.EditImage.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", - "DE.Controllers.EditImage.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", - "DE.Controllers.EditText.textAuto": "Αυτόματα", - "DE.Controllers.EditText.textFonts": "Γραμματοσειρές", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Εισάγετε το συνθηματικό σας:", - "DE.Controllers.Main.advDRMOptions": "Προστατευμένο αρχείο", - "DE.Controllers.Main.advDRMPassword": "Συνθηματικό", - "DE.Controllers.Main.advTxtOptions": "Διαλέξτε TXT Επιλογές", - "DE.Controllers.Main.applyChangesTextText": "Γίνεται φόρτωση δεδομένων...", - "DE.Controllers.Main.applyChangesTitleText": "Γίνεται φόρτωση δεδομένων", - "DE.Controllers.Main.closeButtonText": "Κλείσιμο αρχείου", - "DE.Controllers.Main.convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", - "DE.Controllers.Main.criticalErrorExtText": "Πατήστε «OK» για να επιστρέψετε στη λίστα εγγράφων.", - "DE.Controllers.Main.criticalErrorTitle": "Σφάλμα", - "DE.Controllers.Main.downloadErrorText": "Αποτυχία λήψης.", - "DE.Controllers.Main.downloadMergeText": "Γίνεται λήψη...", - "DE.Controllers.Main.downloadMergeTitle": "Γίνεται λήψη", - "DE.Controllers.Main.downloadTextText": "Γίνεται λήψη εγγράφου...", - "DE.Controllers.Main.downloadTitleText": "Γίνεται λήψη εγγράφου", - "DE.Controllers.Main.errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.
    Παρακαλούμε να επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων.", - "DE.Controllers.Main.errorBadImageUrl": "Εσφαλμένος σύνδεσμος εικόνας", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Η επικοινωνία με τον εξυπηρετητή διακόπηκε. Δεν μπορείτε να συνεχίσετε την επεξεργασία.", - "DE.Controllers.Main.errorConnectToServer": "Δεν ήταν δυνατή η αποθήκευση του εγγράφου. Παρακαλούμε ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή σας.
    Όταν κάνετε κλικ στο κουμπί «OK», θα σας ζητηθεί να πραγματοποιήσετε λήψη του εγγράφου.", - "DE.Controllers.Main.errorDatabaseConnection": "Εξωτερικό σφάλμα
    Σφάλμα σύνδεσης βάσης δεδομένων. Παρακαλούμε, επικοινωνήστε με την υποστήριξη.", - "DE.Controllers.Main.errorDataEncrypted": "Οι κρυπτογραφημένες αλλαγές έχουν ληφθεί, δεν μπορούν να αποκρυπτογραφηθούν.", - "DE.Controllers.Main.errorDataRange": "Εσφαλμένο εύρος δεδομένων.", - "DE.Controllers.Main.errorDefaultMessage": "Κωδικός σφάλματος: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.
    Χρησιμοποιήστε την επιλογή «Λήψη» για να αποθηκεύσετε το αντίγραφο ασφαλείας του αρχείου στον σκληρό δίσκο του υπολογιστή σας.", - "DE.Controllers.Main.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", - "DE.Controllers.Main.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
    Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", - "DE.Controllers.Main.errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού", - "DE.Controllers.Main.errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει", - "DE.Controllers.Main.errorMailMergeLoadFile": "Η φόρτωση του εγγράφου απέτυχε. Παρακαλούμε επιλέξτε ένα διαφορετικό αρχείο.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Η συγχώνευση απέτυχε.", - "DE.Controllers.Main.errorOpensource": "Χρησιμοποιώντας τη δωρεάν έκδοση κοινότητας, μπορείτε να ανοίξετε έγγραφα μόνο για προβολή. Για πρόσβαση σε επεξεργαστές ιστού για κινητά, απαιτείται εμπορική άδεια.", - "DE.Controllers.Main.errorProcessSaveResult": "Αποτυχία αποθήκευσης.", - "DE.Controllers.Main.errorServerVersion": "Η έκδοση του προγράμματος επεξεργασίας έχει ενημερωθεί. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.", - "DE.Controllers.Main.errorSessionAbsolute": "Η σύνοδος επεξεργασίας εγγράφου έχει λήξει. Παρακαλούμε ανανεώστε τη σελίδα.", - "DE.Controllers.Main.errorSessionIdle": "Το έγγραφο δεν έχει επεξεργαστεί εδώ και πολύ ώρα. Παρακαλούμε φορτώστε ξανά τη σελίδα.", - "DE.Controllers.Main.errorSessionToken": "Η επικοινωνία με τον εξυπηρετητή διακόπηκε. Παρακαλούμε ανανεώστε τη σελίδα.", - "DE.Controllers.Main.errorStockChart": "Λανθασμένη σειρά της γραμμής. Για να δημιουργήσετε ένα γράφημα μετοχών τοποθετήστε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:
    τιμή ανοίγματος, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.", - "DE.Controllers.Main.errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
    Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", - "DE.Controllers.Main.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", - "DE.Controllers.Main.errorUsersExceed": "Υπέρβαση του αριθμού χρηστών", - "DE.Controllers.Main.errorViewerDisconnect": "Η σύνδεση έχει χαθεί. Μπορείτε να δείτε το έγγραφο,
    αλλά δεν μπορείτε να κάνετε λήψη μέχρι να αποκατασταθεί η σύνδεση και να φορτωθεί ξανά η σελίδα.", - "DE.Controllers.Main.leavePageText": "Έχετε μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο. Κάντε κλικ στο «Παραμονή σε αυτήν τη σελίδα» για να περιμένετε την αυτόματη αποθήκευση του εγγράφου. Κάντε κλικ στο «Έξοδος από τη σελίδα» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", - "DE.Controllers.Main.loadFontsTextText": "Γίνεται φόρτωση δεδομένων...", - "DE.Controllers.Main.loadFontsTitleText": "Γίνεται φόρτωση δεδομένων", - "DE.Controllers.Main.loadFontTextText": "Γίνεται φόρτωση δεδομένων...", - "DE.Controllers.Main.loadFontTitleText": "Γίνεται φόρτωση δεδομένων", - "DE.Controllers.Main.loadImagesTextText": "Γίνεται φόρτωση εικόνων...", - "DE.Controllers.Main.loadImagesTitleText": "Γίνεται φόρτωση εικόνων", - "DE.Controllers.Main.loadImageTextText": "Γίνεται φόρτωση εικόνας...", - "DE.Controllers.Main.loadImageTitleText": "Γίνεται φόρτωση εικόνας", - "DE.Controllers.Main.loadingDocumentTextText": "Γίνεται φόρτωση εγγράφου...", - "DE.Controllers.Main.loadingDocumentTitleText": "Γίνεται φόρτωση εγγράφου", - "DE.Controllers.Main.mailMergeLoadFileText": "Γίνεται φόρτωση της πηγής δεδομένων...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Γίνεται φόρτωση της πηγής δεδομένων", - "DE.Controllers.Main.notcriticalErrorTitle": "Προειδοποίηση", - "DE.Controllers.Main.openErrorText": "Παρουσιάστηκε σφάλμα κατά το άνοιγμα του αρχείου.", - "DE.Controllers.Main.openTextText": "Γίνεται άνοιγμα εγγράφου...", - "DE.Controllers.Main.openTitleText": "Άνοιγμα εγγράφου", - "DE.Controllers.Main.printTextText": "Γίνεται εκτύπωση εγγράφου...", - "DE.Controllers.Main.printTitleText": "Εκτύπωση εγγράφου", - "DE.Controllers.Main.saveErrorText": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου.", - "DE.Controllers.Main.savePreparingText": "Προετοιμασία για αποθήκευση", - "DE.Controllers.Main.savePreparingTitle": "Προετοιμασία για αποθήκευση. Παρακαλούμε περιμένετε...", - "DE.Controllers.Main.saveTextText": "Γίνεται αποθήκευση εγγράφου...", - "DE.Controllers.Main.saveTitleText": "Αποθήκευση εγγράφου", - "DE.Controllers.Main.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", - "DE.Controllers.Main.sendMergeText": "Αποστολή Συγχώνευσης...", - "DE.Controllers.Main.sendMergeTitle": "Αποστολή Συγχώνευσης", - "DE.Controllers.Main.splitDividerErrorText": "Ο αριθμός των σειρών πρέπει να είναι διαιρέτης του %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Ο αριθμός στηλών πρέπει να είναι μικρότερος από %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Ο αριθμός των σειρών πρέπει να είναι μικρότερος από %1", - "DE.Controllers.Main.textAnonymous": "Ανώνυμος", - "DE.Controllers.Main.textBack": "Πίσω", - "DE.Controllers.Main.textBuyNow": "Επισκεφθείτε την ιστοσελίδα", - "DE.Controllers.Main.textCancel": "Ακύρωση", - "DE.Controllers.Main.textClose": "Κλείσιμο", - "DE.Controllers.Main.textContactUs": "Επικοινωνήστε με τις πωλήσεις", - "DE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.
    Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.", - "DE.Controllers.Main.textDone": "Ολοκληρώθηκε", - "DE.Controllers.Main.textGuest": "Επισκέπτης", - "DE.Controllers.Main.textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
    Θέλετε να εκτελέσετε μακροεντολές;", - "DE.Controllers.Main.textLoadingDocument": "Γίνεται φόρτωση εγγράφου", - "DE.Controllers.Main.textNo": "Όχι", - "DE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.", - "DE.Controllers.Main.textOK": "Εντάξει", - "DE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή", - "DE.Controllers.Main.textPassword": "Συνθηματικό", - "DE.Controllers.Main.textPreloader": "Φόρτωση ...", - "DE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία", - "DE.Controllers.Main.textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη απενεργοποιούνται για τη λειτουργία γρήγορης συν-επεξεργασίας.", - "DE.Controllers.Main.textUsername": "Όνομα χρήστη", - "DE.Controllers.Main.textYes": "Ναι", - "DE.Controllers.Main.titleLicenseExp": "Η άδεια έληξε", - "DE.Controllers.Main.titleServerVersion": "Το πρόγραμμα επεξεργασίας ενημερώθηκε", - "DE.Controllers.Main.titleUpdateVersion": "Η έκδοση άλλαξε", - "DE.Controllers.Main.txtAbove": "από πάνω", - "DE.Controllers.Main.txtArt": "Το κείμενό σας εδώ", - "DE.Controllers.Main.txtBelow": "από κάτω", - "DE.Controllers.Main.txtCurrentDocument": "Τρέχον Έγγραφο", - "DE.Controllers.Main.txtDiagramTitle": "Τίτλος διαγράμματος", - "DE.Controllers.Main.txtEditingMode": "Ορισμός κατάστασης επεξεργασίας...", - "DE.Controllers.Main.txtEvenPage": "Ζυγή Σελίδα", - "DE.Controllers.Main.txtFirstPage": "Πρώτη Σελίδα", - "DE.Controllers.Main.txtFooter": "Υποσέλιδο", - "DE.Controllers.Main.txtHeader": "Κεφαλίδα", - "DE.Controllers.Main.txtOddPage": "Μονή Σελίδα", - "DE.Controllers.Main.txtOnPage": "στη σελίδα", - "DE.Controllers.Main.txtProtected": "Μόλις εισαγάγετε το συνθηματικό και ανοίξετε το αρχείο, θα γίνει επαναφορά του τρέχοντος συνθηματικού του αρχείου", - "DE.Controllers.Main.txtSameAsPrev": "Ίδιο με το Προηγούμενο", - "DE.Controllers.Main.txtSection": "-Τμήμα", - "DE.Controllers.Main.txtSeries": "Σειρά", - "DE.Controllers.Main.txtStyle_footnote_text": "Κείμενο υποσημείωσης", - "DE.Controllers.Main.txtStyle_Heading_1": "Επικεφαλίδα 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Επικεφαλίδα 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Επικεφαλίδα 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Επικεφαλίδα 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Επικεφαλίδα 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Επικεφαλίδα 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Επικεφαλίδα 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Επικεφαλίδα 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Επικεφαλίδα 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Έντονη Παράθεση", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Παράγραφος λίστα", - "DE.Controllers.Main.txtStyle_No_Spacing": "Χωρίς απόσταση", - "DE.Controllers.Main.txtStyle_Normal": "Κανονικό", - "DE.Controllers.Main.txtStyle_Quote": "Παράθεση", - "DE.Controllers.Main.txtStyle_Subtitle": "Υπότιτλος", - "DE.Controllers.Main.txtStyle_Title": "Τίτλος", - "DE.Controllers.Main.txtXAxis": "Άξονας Χ", - "DE.Controllers.Main.txtYAxis": "Άξονας Υ", - "DE.Controllers.Main.unknownErrorText": "Άγνωστο σφάλμα.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", - "DE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "DE.Controllers.Main.uploadImageSizeMessage": "Υπέρβαση μέγιστου ορίου μεγέθους εικόνας.", - "DE.Controllers.Main.uploadImageTextText": "Γίνεται μεταφόρτωση εικόνας...", - "DE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση εικόνας", - "DE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", - "DE.Controllers.Main.warnLicenseExceeded": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με %1 επεξεργαστές. Αυτό το έγγραφο θα ανοίχτεί μόνο για προβολή.​​
    Παρακαλούμε επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", - "DE.Controllers.Main.warnLicenseExp": "Η άδειά σας έχει λήξει.
    Παρακαλούμε ενημερώστε την άδεια χρήσης σας και ανανεώστε τη σελίδα.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Η άδεια έληξε.
    Δεν έχετε πρόσβαση σε δυνατότητες επεξεργασίας εγγράφων.
    Επικοινωνήστε με τον διαχειριστή σας.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί.
    Έχετε περιορισμένη πρόσβαση στη λειτουργία επεξεργασίας εγγράφων.
    Επικοινωνήστε με τον διαχειριστή σας για πλήρη πρόσβαση", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για %1 επεξεργαστές.
    Παρακαλούμε επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", - "DE.Controllers.Main.warnNoLicense": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με %1 επεξεργαστές. Αυτό το έγγραφο θα ανοίχτεί μόνο για προβολή.​​
    Παρακαλούμε επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "DE.Controllers.Main.warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για %1 επεξεργαστές.
    Παρακαλούμε επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "DE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.", - "DE.Controllers.Search.textNoTextFound": "Δεν βρέθηκε κείμενο", - "DE.Controllers.Search.textReplaceAll": "Αντικατάσταση Όλων", - "DE.Controllers.Settings.notcriticalErrorTitle": "Προειδοποίηση", - "DE.Controllers.Settings.textCustomSize": "Προσαρμοσμένο μέγεθος", - "DE.Controllers.Settings.txtLoading": "Φόρτωση ...", - "DE.Controllers.Settings.unknownText": "Άγνωστο", - "DE.Controllers.Settings.warnDownloadAs": "Εάν συνεχίσετε να αποθηκεύετε σε αυτήν τη μορφή, όλες οι λειτουργίες εκτός από το κείμενο θα χαθούν.
    Είστε βέβαιοι ότι θέλετε να συνεχίσετε;", - "DE.Controllers.Settings.warnDownloadAsRTF": "Εάν συνεχίσετε να αποθηκεύετε σε αυτήν τη μορφή, ενδέχεται να χαθούν ορισμένες μορφές.
    Είστε βέβαιοι ότι θέλετε να συνεχίσετε;", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο. Κάντε κλικ στο «Παραμονή σε αυτήν τη σελίδα» για να περιμένετε την αυτόματη αποθήκευση του εγγράφου. Κάντε κλικ στο «Έξοδος από τη σελίδα» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Έξοδος από την εφαρμογή", - "DE.Controllers.Toolbar.leaveButtonText": "Έξοδος από τη σελίδα", - "DE.Controllers.Toolbar.stayButtonText": "Παραμονή σε αυτήν τη σελίδα", - "DE.Views.AddImage.textAddress": "Διεύθυνση", - "DE.Views.AddImage.textBack": "Πίσω", - "DE.Views.AddImage.textFromLibrary": "Εικόνα από τη βιβλιοθήκη", - "DE.Views.AddImage.textFromURL": "Εικόνα από σύνδεσμο", - "DE.Views.AddImage.textImageURL": "Διεύθυνση εικόνας", - "DE.Views.AddImage.textInsertImage": "Εισαγωγή εικόνας", - "DE.Views.AddImage.textLinkSettings": "Ρυθμίσεις συνδέσμου", - "DE.Views.AddOther.textAddComment": "Προσθήκη Σχολίου", - "DE.Views.AddOther.textAddLink": "Προσθήκη συνδέσμου", - "DE.Views.AddOther.textBack": "Πίσω", - "DE.Views.AddOther.textBreak": "Αλλαγή σελίδας", - "DE.Views.AddOther.textCenterBottom": "Κέντρο Κάτω", - "DE.Views.AddOther.textCenterTop": "Κέντρο Πάνω", - "DE.Views.AddOther.textColumnBreak": "Αλλαγή στήλης", - "DE.Views.AddOther.textComment": "Σχόλιο", - "DE.Views.AddOther.textContPage": "Συνεχόμενη Σελίδα", - "DE.Views.AddOther.textCurrentPos": "Τρέχουσα θέση", - "DE.Views.AddOther.textDisplay": "Προβολή", - "DE.Views.AddOther.textDone": "Ολοκληρώθηκε", - "DE.Views.AddOther.textEvenPage": "Ζυγή σελίδα", - "DE.Views.AddOther.textFootnote": "Υποσημείωση", - "DE.Views.AddOther.textFormat": "Μορφή", - "DE.Views.AddOther.textInsert": "Εισαγωγή", - "DE.Views.AddOther.textInsertFootnote": "Εισαγωγή υποσημείωσης", - "DE.Views.AddOther.textLeftBottom": "Κάτω αριστερά", - "DE.Views.AddOther.textLeftTop": "Πάνω αριστερά", - "DE.Views.AddOther.textLink": "Σύνδεσμος", - "DE.Views.AddOther.textLocation": "Τοποθεσία", - "DE.Views.AddOther.textNextPage": "Επόμενη σελίδα", - "DE.Views.AddOther.textOddPage": "Μονή σελίδα", - "DE.Views.AddOther.textPageBreak": "Αλλαγή σελίδας", - "DE.Views.AddOther.textPageNumber": "Αριθμός σελίδας", - "DE.Views.AddOther.textPosition": "Θέση", - "DE.Views.AddOther.textRightBottom": "Δεξιά κάτω", - "DE.Views.AddOther.textRightTop": "Δεξιά επάνω", - "DE.Views.AddOther.textSectionBreak": "Αλλαγή Τμήματος", - "DE.Views.AddOther.textStartFrom": "Έναρξη Από", - "DE.Views.AddOther.textTip": "Συμβουλή οθόνης", - "DE.Views.EditChart.textAddCustomColor": "Προσθήκη Προσαρμοσμένου Χρώματος", - "DE.Views.EditChart.textAlign": "Στοίχιση", - "DE.Views.EditChart.textBack": "Πίσω", - "DE.Views.EditChart.textBackward": "Μετακίνηση προς τα πίσω", - "DE.Views.EditChart.textBehind": "Πίσω", - "DE.Views.EditChart.textBorder": "Περίγραμμα", - "DE.Views.EditChart.textColor": "Χρώμα", - "DE.Views.EditChart.textCustomColor": "Προσαρμοσμένο χρώμα", - "DE.Views.EditChart.textDistanceText": "Απόσταση από το κείμενο", - "DE.Views.EditChart.textFill": "Γέμισμα", - "DE.Views.EditChart.textForward": "Μετακίνηση προς τα εμπρός", - "DE.Views.EditChart.textInFront": "Μπροστά", - "DE.Views.EditChart.textInline": "Εντός γραμμής κειμένου", - "DE.Views.EditChart.textMoveText": "Μετακίνηση με κείμενο", - "DE.Views.EditChart.textOverlap": "Να Επιτρέπεται η Επικάλυψη", - "DE.Views.EditChart.textRemoveChart": "Αφαίρεση διαγράμματος", - "DE.Views.EditChart.textReorder": "Επανατακτοποίηση", - "DE.Views.EditChart.textSize": "Μέγεθος", - "DE.Views.EditChart.textSquare": "Τετράγωνο", - "DE.Views.EditChart.textStyle": "Τεχνοτροπία", - "DE.Views.EditChart.textThrough": "Διά μέσου", - "DE.Views.EditChart.textTight": "Σφιχτό", - "DE.Views.EditChart.textToBackground": "Μεταφορά στο Παρασκήνιο", - "DE.Views.EditChart.textToForeground": "Μεταφορά στο προσκήνιο", - "DE.Views.EditChart.textTopBottom": "Πάνω και Κάτω Μέρος", - "DE.Views.EditChart.textType": "Τύπος", - "DE.Views.EditChart.textWrap": "Αναδίπλωση", - "DE.Views.EditHeader.textDiffFirst": "Διαφορετική πρώτη σελίδα", - "DE.Views.EditHeader.textDiffOdd": "Διαφορετικές μονές και ζυγές σελίδες", - "DE.Views.EditHeader.textFrom": "Έναρξη από", - "DE.Views.EditHeader.textPageNumbering": "Αρίθμηση σελίδας", - "DE.Views.EditHeader.textPrev": "Συνέχεια από το προηγούμενο τμήμα", - "DE.Views.EditHeader.textSameAs": "Σύνδεσμος προς το προηγούμενο", - "DE.Views.EditHyperlink.textDisplay": "Προβολή", - "DE.Views.EditHyperlink.textEdit": "Επεξεργασία συνδέσμου", - "DE.Views.EditHyperlink.textLink": "Σύνδεσμος", - "DE.Views.EditHyperlink.textRemove": "Αφαίρεση συνδέσμου", - "DE.Views.EditHyperlink.textTip": "Συμβουλή οθόνης", - "DE.Views.EditImage.textAddress": "Διεύθυνση", - "DE.Views.EditImage.textAlign": "Στοίχιση", - "DE.Views.EditImage.textBack": "Πίσω", - "DE.Views.EditImage.textBackward": "Μετακίνηση προς τα πίσω", - "DE.Views.EditImage.textBehind": "Πίσω", - "DE.Views.EditImage.textDefault": "Πραγματικό Μέγεθος", - "DE.Views.EditImage.textDistanceText": "Απόσταση από το κείμενο", - "DE.Views.EditImage.textForward": "Μετακίνηση προς τα εμπρός", - "DE.Views.EditImage.textFromLibrary": "Εικόνα από τη βιβλιοθήκη", - "DE.Views.EditImage.textFromURL": "Εικόνα από σύνδεσμο", - "DE.Views.EditImage.textImageURL": "Διεύθυνση εικόνας", - "DE.Views.EditImage.textInFront": "Μπροστά", - "DE.Views.EditImage.textInline": "Εντός γραμμής κειμένου", - "DE.Views.EditImage.textLinkSettings": "Ρυθμίσεις συνδέσμου", - "DE.Views.EditImage.textMoveText": "Μετακίνηση με κείμενο", - "DE.Views.EditImage.textOverlap": "Να Επιτρέπεται η Επικάλυψη", - "DE.Views.EditImage.textRemove": "Αφαίρεση εικόνας", - "DE.Views.EditImage.textReorder": "Επανατακτοποίηση", - "DE.Views.EditImage.textReplace": "Αντικατάσταση", - "DE.Views.EditImage.textReplaceImg": "Αντικατάσταση Εικόνας", - "DE.Views.EditImage.textSquare": "Τετράγωνο", - "DE.Views.EditImage.textThrough": "Διά μέσου", - "DE.Views.EditImage.textTight": "Σφιχτό", - "DE.Views.EditImage.textToBackground": "Μεταφορά στο Παρασκήνιο", - "DE.Views.EditImage.textToForeground": "Μεταφορά στο προσκήνιο", - "DE.Views.EditImage.textTopBottom": "Πάνω και Κάτω Μέρος", - "DE.Views.EditImage.textWrap": "Αναδίπλωση", - "DE.Views.EditParagraph.textAddCustomColor": "Προσθήκη Προσαρμοσμένου Χρώματος", - "DE.Views.EditParagraph.textAdvanced": "Για προχωρημένους", - "DE.Views.EditParagraph.textAdvSettings": "Ρυθμίσεις για Προχωρημένους", - "DE.Views.EditParagraph.textAfter": "Μετά", - "DE.Views.EditParagraph.textAuto": "Αυτόματα", - "DE.Views.EditParagraph.textBack": "Πίσω", - "DE.Views.EditParagraph.textBackground": "Παρασκήνιο", - "DE.Views.EditParagraph.textBefore": "Πριν", - "DE.Views.EditParagraph.textCustomColor": "Προσαρμοσμένο χρώμα", - "DE.Views.EditParagraph.textFirstLine": "Πρώτη γραμμή", - "DE.Views.EditParagraph.textFromText": "Απόσταση από το κείμενο", - "DE.Views.EditParagraph.textKeepLines": "Διατήρηση γραμμών μαζί", - "DE.Views.EditParagraph.textKeepNext": "Διατήρηση με Επόμενο", - "DE.Views.EditParagraph.textOrphan": "Έλεγχος ορφανών", - "DE.Views.EditParagraph.textPageBreak": "Αλλαγή σελίδας πριν", - "DE.Views.EditParagraph.textPrgStyles": "Τεχνοτροπίες παραγράφου", - "DE.Views.EditParagraph.textSpaceBetween": "Διάστημα Μεταξύ Παραγράφων", - "DE.Views.EditShape.textAddCustomColor": "Προσθήκη Προσαρμοσμένου Χρώματος", - "DE.Views.EditShape.textAlign": "Στοίχιση", - "DE.Views.EditShape.textBack": "Πίσω", - "DE.Views.EditShape.textBackward": "Μετακίνηση προς τα πίσω", - "DE.Views.EditShape.textBehind": "Πίσω", - "DE.Views.EditShape.textBorder": "Περίγραμμα", - "DE.Views.EditShape.textColor": "Χρώμα", - "DE.Views.EditShape.textCustomColor": "Προσαρμοσμένο χρώμα", - "DE.Views.EditShape.textEffects": "Εφέ", - "DE.Views.EditShape.textFill": "Γέμισμα", - "DE.Views.EditShape.textForward": "Μετακίνηση προς τα εμπρός", - "DE.Views.EditShape.textFromText": "Απόσταση από το κείμενο", - "DE.Views.EditShape.textInFront": "Μπροστά", - "DE.Views.EditShape.textInline": "Εντός γραμμής κειμένου", - "DE.Views.EditShape.textOpacity": "Αδιαφάνεια", - "DE.Views.EditShape.textOverlap": "Να Επιτρέπεται η Επικάλυψη", - "DE.Views.EditShape.textRemoveShape": "Αφαίρεση σχήματος", - "DE.Views.EditShape.textReorder": "Επανατακτοποίηση", - "DE.Views.EditShape.textReplace": "Αντικατάσταση", - "DE.Views.EditShape.textSize": "Μέγεθος", - "DE.Views.EditShape.textSquare": "Τετράγωνο", - "DE.Views.EditShape.textStyle": "Τεχνοτροπία", - "DE.Views.EditShape.textThrough": "Διά μέσου", - "DE.Views.EditShape.textTight": "Σφιχτό", - "DE.Views.EditShape.textToBackground": "Μεταφορά στο Παρασκήνιο", - "DE.Views.EditShape.textToForeground": "Μεταφορά στο προσκήνιο", - "DE.Views.EditShape.textTopAndBottom": "Πάνω και Κάτω Μέρος", - "DE.Views.EditShape.textWithText": "Μετακίνηση με κείμενο", - "DE.Views.EditShape.textWrap": "Αναδίπλωση", - "DE.Views.EditTable.textAddCustomColor": "Προσθήκη Προσαρμοσμένου Χρώματος", - "DE.Views.EditTable.textAlign": "Στοίχιση", - "DE.Views.EditTable.textBack": "Πίσω", - "DE.Views.EditTable.textBandedColumn": "Στήλη Εναλλαγής Σκίασης", - "DE.Views.EditTable.textBandedRow": "Γραμμή Εναλλαγής Σκίασης", - "DE.Views.EditTable.textBorder": "Περίγραμμα", - "DE.Views.EditTable.textCellMargins": "Περιθώρια κελιού", - "DE.Views.EditTable.textColor": "Χρώμα", - "DE.Views.EditTable.textCustomColor": "Προσαρμοσμένο χρώμα", - "DE.Views.EditTable.textFill": "Γέμισμα", - "DE.Views.EditTable.textFirstColumn": "Πρώτη στήλη", - "DE.Views.EditTable.textFlow": "Ροή", - "DE.Views.EditTable.textFromText": "Απόσταση από το κείμενο", - "DE.Views.EditTable.textHeaderRow": "Σειρά κεφαλίδας", - "DE.Views.EditTable.textInline": "Εντός γραμμής κειμένου", - "DE.Views.EditTable.textLastColumn": "Τελευταία στήλη", - "DE.Views.EditTable.textOptions": "Επιλογές", - "DE.Views.EditTable.textRemoveTable": "Αφαίρεση πίνακα", - "DE.Views.EditTable.textRepeatHeader": "Επανάληψη ως σειράς κεφαλίδας", - "DE.Views.EditTable.textResizeFit": "Αλλαγή μεγέθους για προσαρμογή περιεχομένου", - "DE.Views.EditTable.textSize": "Μέγεθος", - "DE.Views.EditTable.textStyle": "Τεχνοτροπία", - "DE.Views.EditTable.textStyleOptions": "Επιλογές τεχνοτροπίας", - "DE.Views.EditTable.textTableOptions": "Επιλογές πίνακα", - "DE.Views.EditTable.textTotalRow": "Συνολική γραμμή", - "DE.Views.EditTable.textWithText": "Μετακίνηση με κείμενο", - "DE.Views.EditTable.textWrap": "Αναδίπλωση", - "DE.Views.EditText.textAddCustomColor": "Προσθήκη Προσαρμοσμένου Χρώματος", - "DE.Views.EditText.textAdditional": "Επιπρόσθετα", - "DE.Views.EditText.textAdditionalFormat": "Πρόσθετη Μορφοποίηση", - "DE.Views.EditText.textAllCaps": "Όλα Κεφαλαία", - "DE.Views.EditText.textAutomatic": "Αυτόματα", - "DE.Views.EditText.textBack": "Πίσω", - "DE.Views.EditText.textBullets": "Κουκκίδες", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "S", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Προσαρμοσμένο χρώμα", - "DE.Views.EditText.textDblStrikethrough": "Διπλή Διαγραφή", - "DE.Views.EditText.textDblSuperscript": "Εκθέτης", - "DE.Views.EditText.textFontColor": "Χρώμα γραμματοσειράς", - "DE.Views.EditText.textFontColors": "Χρώματα γραμματοσειράς", - "DE.Views.EditText.textFonts": "Γραμματοσειρές", - "DE.Views.EditText.textHighlightColor": "Χρώμα επισήμανσης", - "DE.Views.EditText.textHighlightColors": "Χρώματα επισήμανσης", - "DE.Views.EditText.textLetterSpacing": "Διάστημα γραμμάτων", - "DE.Views.EditText.textLineSpacing": "Διάστιχο", - "DE.Views.EditText.textNone": "Κανένα", - "DE.Views.EditText.textNumbers": "Αριθμοί", - "DE.Views.EditText.textSize": "Μέγεθος", - "DE.Views.EditText.textSmallCaps": "Μικρά Κεφαλαία", - "DE.Views.EditText.textStrikethrough": "Διακριτική διαγραφή", - "DE.Views.EditText.textSubscript": "Δείκτης", - "DE.Views.Search.textCase": "Με διάκριση πεζών - κεφαλαίων γραμμάτων", - "DE.Views.Search.textDone": "Ολοκληρώθηκε", - "DE.Views.Search.textFind": "Εύρεση", - "DE.Views.Search.textFindAndReplace": "Εύρεση και Αντικατάσταση", - "DE.Views.Search.textHighlight": "Επισήμανση αποτελεσμάτων", - "DE.Views.Search.textReplace": "Αντικατάσταση", - "DE.Views.Search.textSearch": "Αναζήτηση", - "DE.Views.Settings.textAbout": "Περί", - "DE.Views.Settings.textAddress": "διεύθυνση", - "DE.Views.Settings.textAdvancedSettings": "Ρυθμίσεις εφαρμογής", - "DE.Views.Settings.textApplication": "Εφαρμογή", - "DE.Views.Settings.textAuthor": "Συγγραφέας", - "DE.Views.Settings.textBack": "Πίσω", - "DE.Views.Settings.textBottom": "Κάτω", - "DE.Views.Settings.textCentimeter": "Εκατοστό", - "DE.Views.Settings.textCollaboration": "Συνεργασία", - "DE.Views.Settings.textColorSchemes": "Χρωματικός συνδυασμός", - "DE.Views.Settings.textComment": "Σχόλιο", - "DE.Views.Settings.textCommentingDisplay": "Εμφάνιση σχολίων", - "DE.Views.Settings.textCreated": "Δημιουργήθηκε", - "DE.Views.Settings.textCreateDate": "Ημερομηνία δημιουργίας", - "DE.Views.Settings.textCustom": "Προσαρμοσμένο", - "DE.Views.Settings.textCustomSize": "Προσαρμοσμένο μέγεθος", - "DE.Views.Settings.textDisableAll": "Απενεργοποίηση όλων", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Απενεργοποίηση όλων των μακροεντολών με μια ειδοποίηση", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", - "DE.Views.Settings.textDisplayComments": "Σχόλια", - "DE.Views.Settings.textDisplayResolvedComments": "Επίλυση σχολίων", - "DE.Views.Settings.textDocInfo": "Πληροφορίες εγγράφου", - "DE.Views.Settings.textDocTitle": "Τίτλος εγγράφου", - "DE.Views.Settings.textDocumentFormats": "Μορφές εγγράφων", - "DE.Views.Settings.textDocumentSettings": "Ρυθμίσεις εγγράφου", - "DE.Views.Settings.textDone": "Ολοκληρώθηκε", - "DE.Views.Settings.textDownload": "Λήψη", - "DE.Views.Settings.textDownloadAs": "Λήψη ως...", - "DE.Views.Settings.textEditDoc": "Επεξεργασία εγγράφου", - "DE.Views.Settings.textEmail": "ηλεκτρονική διεύθυνση", - "DE.Views.Settings.textEnableAll": "Ενεργοποίηση όλων", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Ενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", - "DE.Views.Settings.textFind": "Εύρεση", - "DE.Views.Settings.textFindAndReplace": "Εύρεση και Αντικατάσταση", - "DE.Views.Settings.textFormat": "Μορφή", - "DE.Views.Settings.textHelp": "Βοήθεια", - "DE.Views.Settings.textHiddenTableBorders": "Κρυμμένα Όρια Πίνακα", - "DE.Views.Settings.textInch": "Ίντσα", - "DE.Views.Settings.textLandscape": "Οριζόντια", - "DE.Views.Settings.textLastModified": "Τελευταία τροποποίηση", - "DE.Views.Settings.textLastModifiedBy": "Τελευταία τροποποίηση από", - "DE.Views.Settings.textLeft": "Αριστερά", - "DE.Views.Settings.textLoading": "Φόρτωση ...", - "DE.Views.Settings.textLocation": "Τοποθεσία", - "DE.Views.Settings.textMacrosSettings": "Ρυθμίσεις μακροεντολών", - "DE.Views.Settings.textMargins": "Περιθώρια", - "DE.Views.Settings.textNoCharacters": "Μη εκτυπώσιμοι χαρακτήρες", - "DE.Views.Settings.textOrientation": "Προσανατολισμός", - "DE.Views.Settings.textOwner": "Ιδιοκτήτης", - "DE.Views.Settings.textPages": "Σελίδες", - "DE.Views.Settings.textParagraphs": "Παράγραφοι", - "DE.Views.Settings.textPoint": "Σημείο", - "DE.Views.Settings.textPortrait": "Κατακόρυφα", - "DE.Views.Settings.textPoweredBy": "Υποστηρίζεται από", - "DE.Views.Settings.textPrint": "Εκτύπωση", - "DE.Views.Settings.textReader": "Κατάσταση Αναγνώστη", - "DE.Views.Settings.textReview": "Παρακολούθηση αλλαγών", - "DE.Views.Settings.textRight": "Δεξιά", - "DE.Views.Settings.textSettings": "Ρυθμίσεις", - "DE.Views.Settings.textShowNotification": "Εμφάνιση ειδοποίησης", - "DE.Views.Settings.textSpaces": "Κενά", - "DE.Views.Settings.textSpellcheck": "Έλεγχος ορθογραφίας", - "DE.Views.Settings.textStatistic": "Στατιστικά", - "DE.Views.Settings.textSubject": "Θέμα", - "DE.Views.Settings.textSymbols": "Σύμβολα", - "DE.Views.Settings.textTel": "τηλ", - "DE.Views.Settings.textTitle": "Τίτλος", - "DE.Views.Settings.textTop": "Επάνω", - "DE.Views.Settings.textUnitOfMeasurement": "Μονάδα μέτρησης", - "DE.Views.Settings.textUploaded": "Μεταφορτώθηκε", - "DE.Views.Settings.textVersion": "Έκδοση", - "DE.Views.Settings.textWords": "Λέξεις", - "DE.Views.Settings.unknownText": "Άγνωστο", - "DE.Views.Toolbar.textBack": "Πίσω" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/en.json b/apps/documenteditor/mobile/locale/en.json index 2c38f5860..def47747a 100644 --- a/apps/documenteditor/mobile/locale/en.json +++ b/apps/documenteditor/mobile/locale/en.json @@ -205,6 +205,7 @@ "textBehind": "Behind", "textBorder": "Border", "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", "textBulletsAndNumbers": "Bullets & Numbers", "textCellMargins": "Cell Margins", "textChart": "Chart", @@ -250,6 +251,7 @@ "textNone": "None", "textNoStyles": "No styles for this type of charts.", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", "textOpacity": "Opacity", "textOptions": "Options", "textOrphanControl": "Orphan Control", @@ -297,7 +299,7 @@ }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to back to the document list.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "downloadErrorText": "Download failed.", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", @@ -379,7 +381,22 @@ "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", "notcriticalErrorTitle": "Warning", "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", "Footer": "Footer", "footnote text": "Footnote Text", "Header": "Header", @@ -392,17 +409,38 @@ "Heading 7": "Heading 7", "Heading 8": "Heading 8", "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", "Quote": "Quote", + "Same as Previous": "Same as Previous", "Series": "Series", "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", "X Axis": "X Axis XAS", "Y Axis": "Y Axis", - "Your text here": "Your text here" + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" }, "textAnonymous": "Anonymous", "textBuyNow": "Visit website", @@ -481,7 +519,7 @@ "textMacrosSettings": "Macros Settings", "textMargins": "Margins", "textMarginsH": "Top and bottom margins are too high for a given page height", - "textMarginsW": "Left and right margins are too high for a given page width", + "textMarginsW": "Left and right margins are too wide for a given page width", "textNoCharacters": "Nonprinting Characters", "textNoTextFound": "Text not found", "textOpenFile": "Enter a password to open the file", @@ -506,7 +544,33 @@ "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password will be reset" + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "textChooseTxtOptions": "Choose TXT Options", + "txtDownloadTxt": "Download TXT", + "textChooseEncoding": "Choose Encoding", + "txtOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", diff --git a/apps/documenteditor/mobile/locale/es.json b/apps/documenteditor/mobile/locale/es.json index c3a5d6163..f9fb33af9 100644 --- a/apps/documenteditor/mobile/locale/es.json +++ b/apps/documenteditor/mobile/locale/es.json @@ -205,6 +205,7 @@ "textBehind": "Detrás", "textBorder": "Borde", "textBringToForeground": "Traer al primer plano", + "textBullets": "Viñetas", "textBulletsAndNumbers": "Viñetas y números", "textCellMargins": "Márgenes de celda", "textChart": "Gráfico", @@ -250,6 +251,7 @@ "textNone": "Ninguno", "textNoStyles": "No hay estilos para este tipo de gráficos.", "textNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", + "textNumbers": "Números", "textOpacity": "Opacidad ", "textOptions": "Opciones", "textOrphanControl": "Control de líneas huérfanas", @@ -379,7 +381,22 @@ "leavePageText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", "notcriticalErrorTitle": "Advertencia", "SDK": { + " -Section ": "-Sección ", + "above": "encima", + "below": "debajo", + "Caption": "Título", + "Choose an item": "Elija un elemento", + "Click to load image": "Haga clic para cargar la imagen", + "Current Document": "Documento actual", "Diagram Title": "Título del gráfico", + "endnote text": "Texto de nota al final", + "Enter a date": "Introduzca una fecha", + "Error! Bookmark not defined": "¡Error! El marcador no se ha definido", + "Error! Main Document Only": "¡Error! Sólo el documento principal.", + "Error! No text of specified style in document": "¡Error! No hay texto del estilo especificado en el documento.", + "Error! Not a valid bookmark self-reference": "¡Error! No es una auto-referencia de marcador válida.", + "Even Page ": "Página par", + "First Page ": "Primera página", "Footer": "Pie de página", "footnote text": "Texto de pie de página", "Header": "Encabezado", @@ -392,17 +409,38 @@ "Heading 7": "Título 7", "Heading 8": "Título 8", "Heading 9": "Título 9", + "Hyperlink": "Hiperenlace", + "Index Too Large": "El índice es demasiado grande", "Intense Quote": "Cita destacada", + "Is Not In Table": "No está en la tabla", "List Paragraph": "Párrafo de la lista", + "Missing Argument": "Falta argumento", + "Missing Operator": "Falta operador", "No Spacing": "Sin espacio", + "No table of contents entries found": "No hay títulos en el documento. Aplique un estilo de título al texto para que aparezca en la tabla de contenido.", + "No table of figures entries found": "No se han encontrado los elementos de tabla de ilustraciones.", + "None": "Ninguno", "Normal": "Normal", + "Number Too Large To Format": "El número es demasiado grande para darle formato", + "Odd Page ": "Página impar", "Quote": "Cita", + "Same as Previous": "Igual al anterior", "Series": "Serie", "Subtitle": "Subtítulo", + "Syntax Error": "Error de sintaxis", + "Table Index Cannot be Zero": "El índice de la tabla no puede ser cero", + "Table of Contents": "Tabla de contenidos", + "table of figures": "Tabla de ilustraciones", + "The Formula Not In Table": "La fórmula no está en la tabla", "Title": "Título", + "TOC Heading": "Título TDC", + "Type equation here": "Escriba aquí la ecuación", + "Undefined Bookmark": "Marcador no definido", + "Unexpected End of Formula": "Fin de fórmula inesperado", "X Axis": "Eje X XAS", "Y Axis": "Eje Y", - "Your text here": "Su texto aquí" + "Your text here": "Su texto aquí", + "Zero Divide": "División por cero" }, "textAnonymous": "Anónimo", "textBuyNow": "Visitar sitio web", @@ -481,7 +519,7 @@ "textMacrosSettings": "Ajustes de macros", "textMargins": "Márgenes", "textMarginsH": "Márgenes superior e inferior son demasiado altos para una altura de página determinada ", - "textMarginsW": "Los márgenes izquierdo y derecho son demasiado altos para un ancho de página determinado", + "textMarginsW": "Los márgenes izquierdo y derecho son demasiado amplios para un ancho de página determinado", "textNoCharacters": "Caracteres no imprimibles", "textNoTextFound": "Texto no encontrado", "textOpenFile": "Introduzca la contraseña para abrir el archivo", @@ -506,7 +544,29 @@ "textUnitOfMeasurement": "Unidad de medida", "textUploaded": "Cargado", "txtIncorrectPwd": "La contraseña es incorrecta", - "txtProtected": "Una vez que introduzca la contraseña y abra el archivo, se restablecerá la contraseña actual" + "txtProtected": "Una vez que introduzca la contraseña y abra el archivo, se restablecerá la contraseña actual", + "txtScheme1": "Oficina", + "txtScheme10": "Medio", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Papel", + "txtScheme17": "Solsticio", + "txtScheme18": "Técnico", + "txtScheme19": "Viajes", + "txtScheme2": "Escala de grises", + "txtScheme20": "Urbano", + "txtScheme21": "Brío", + "txtScheme22": "Nueva oficina", + "txtScheme3": "Vértice", + "txtScheme4": "Aspecto", + "txtScheme5": "Civil", + "txtScheme6": "Concurrencia", + "txtScheme7": "Equidad ", + "txtScheme8": "Flujo", + "txtScheme9": "Fundición" }, "Toolbar": { "dlgLeaveMsgText": "Tiene cambios sin guardar. Haga clic en \"Permanecer en esta página\" para esperar a que se guarde automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", diff --git a/apps/documenteditor/mobile/locale/fi.json b/apps/documenteditor/mobile/locale/fi.json index c2c44afc2..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/fi.json +++ b/apps/documenteditor/mobile/locale/fi.json @@ -1,360 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Lisää vastaus", - "Common.Controllers.Collaboration.textAtLeast": "vähintään", - "Common.Controllers.Collaboration.textAuto": "Automaattinen", - "Common.Controllers.Collaboration.textBaseline": "Lähtötaso", - "Common.Controllers.Collaboration.textBold": "Lihavoitu", - "Common.Controllers.Collaboration.textCaps": "Kaikki isoilla kirjaimilla", - "Common.Controllers.Collaboration.textCenter": "Keskitä", - "Common.Controllers.Collaboration.textDeleted": "Poistettu:", - "Common.Controllers.Collaboration.textInserted": "Asetettu:", - "Common.Controllers.Collaboration.textJustify": "Tasaa", - "Common.Controllers.Collaboration.textLeft": "Tasaa vasemmalle", - "Common.Controllers.Collaboration.textNoContextual": "Lisää samantyylinen kappaleväli", - "Common.Controllers.Collaboration.textParaDeleted": "Kappale poistettu ", - "Common.Controllers.Collaboration.textParaFormatted": "Kappale muotoiltu", - "Common.Controllers.Collaboration.textParaInserted": "Kappale sijoitettu ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Siirretty alas:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Siirretty ylös:", - "Common.Controllers.Collaboration.textParaMoveTo": "Siirretty:", - "Common.Controllers.Collaboration.textRight": "Tasaa oikealle", - "Common.Controllers.Collaboration.textShd": "Taustaväri", - "Common.Controllers.Collaboration.textTableChanged": "Taulukon asetuksia muutettu", - "Common.Controllers.Collaboration.textTableRowsAdd": "Taulukkorivit lisätty", - "Common.Controllers.Collaboration.textTableRowsDel": "Taulukkorivit poistettu", - "Common.UI.ThemeColorPalette.textStandartColors": "Vakiovärit", - "Common.UI.ThemeColorPalette.textThemeColors": "Teeman värit", - "Common.Views.Collaboration.textAccept": "Hyväksy", - "Common.Views.Collaboration.textAcceptAllChanges": "Hyväksy kaikki muutokset", - "Common.Views.Collaboration.textAddReply": "Lisää vastaus", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Kaikki muutokset hyväksytty (Esikatsele)", - "Common.Views.Collaboration.textAllChangesEditing": "Kaikki muutokset (muokkaukset)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Kaikki muutokset hylätty (Esikatsele)", - "Common.Views.Collaboration.textBack": "Takaisin", - "DE.Controllers.AddContainer.textImage": "Kuva", - "DE.Controllers.AddContainer.textOther": "Muu", - "DE.Controllers.AddContainer.textShape": "Muoto", - "DE.Controllers.AddContainer.textTable": "Taulukko", - "DE.Controllers.AddImage.textEmptyImgUrl": "Sinun tulee määritellä kuvan verkko-osoite", - "DE.Controllers.AddImage.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'", - "DE.Controllers.AddOther.textBelowText": "Tekstin alapuolella", - "DE.Controllers.AddOther.textBottomOfPage": "Sivun alaosassa", - "DE.Controllers.AddOther.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'", - "DE.Controllers.AddTable.textCancel": "Peruuta", - "DE.Controllers.AddTable.textColumns": "Sarakkeet", - "DE.Controllers.AddTable.textRows": "Rivit", - "DE.Controllers.AddTable.textTableSize": "Taulukon koko", - "DE.Controllers.DocumentHolder.menuAddComment": "Lisää kommentti", - "DE.Controllers.DocumentHolder.menuAddLink": "Lisää linkki", - "DE.Controllers.DocumentHolder.menuCopy": "Kopio", - "DE.Controllers.DocumentHolder.menuCut": "Leikkaa", - "DE.Controllers.DocumentHolder.menuDelete": "Poista", - "DE.Controllers.DocumentHolder.menuEdit": "Muokkaa", - "DE.Controllers.DocumentHolder.menuOpenLink": "Avoin linkki", - "DE.Controllers.DocumentHolder.menuPaste": "Liitä", - "DE.Controllers.EditContainer.textChart": "Kaavio", - "DE.Controllers.EditContainer.textHyperlink": "Linkki", - "DE.Controllers.EditContainer.textImage": "Kuva", - "DE.Controllers.EditContainer.textParagraph": "Kappale", - "DE.Controllers.EditContainer.textSettings": "Asetukset", - "DE.Controllers.EditContainer.textShape": "Muoto", - "DE.Controllers.EditContainer.textTable": "Taulukko", - "DE.Controllers.EditContainer.textText": "Teksti", - "DE.Controllers.EditImage.textEmptyImgUrl": "Sinun tulee määritellä kuvan verkko-osoite", - "DE.Controllers.EditImage.txtNotUrl": "Tämä kenttä tulisi olla verkko-osoite muodossa: 'http://www.esimerkki.com'", - "DE.Controllers.EditText.textAuto": "Automaattinen", - "DE.Controllers.EditText.textFonts": "Fontit", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Syötä salasanasi", - "DE.Controllers.Main.advDRMOptions": "Suojattu tiedosto", - "DE.Controllers.Main.advDRMPassword": "Salasana", - "DE.Controllers.Main.advTxtOptions": "Valitse TXT vaihtoehdot", - "DE.Controllers.Main.applyChangesTextText": "Ladataan tietoa...", - "DE.Controllers.Main.applyChangesTitleText": "Ladataan tietoja", - "DE.Controllers.Main.convertationTimeoutText": "Muunnoksen aikaraja saavutettiin.", - "DE.Controllers.Main.criticalErrorExtText": "Klikkaa 'OK' siirtyäksesi takaisin asiakirjojen luetteloon.", - "DE.Controllers.Main.criticalErrorTitle": "Virhe", - "DE.Controllers.Main.downloadErrorText": "Lataus epäonnistui.", - "DE.Controllers.Main.downloadMergeText": "Ladataan...", - "DE.Controllers.Main.downloadMergeTitle": "Ladataan", - "DE.Controllers.Main.downloadTextText": "Ladataan asiakirjaa...", - "DE.Controllers.Main.downloadTitleText": "Ladataan asiakirjaa", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Palvelimen yhteys menetetty. Et voi enää muokata.", - "DE.Controllers.Main.errorConnectToServer": "Asiakirjaa ei voitu tallentaa. Ole hyvä ja tarkista yhteysasetukset tai ota yhteyttä pääkäyttäjään.
    Kun klikkaat 'OK' painiketta, sinua pyydetään lataamaan asiakirja.", - "DE.Controllers.Main.errorDatabaseConnection": "Ulkoinen virhe.
    Tietokannan yhteysvirhe. Ole hyvä ja ota yhteyttä asiakaspalveluun.", - "DE.Controllers.Main.errorDataRange": "Virheellinen tietoalue", - "DE.Controllers.Main.errorDefaultMessage": "Virhekoodi: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Asiakirjan käsittelyssä on tapahtunut virhe.
    Käytä 'Lataa' -vaihtoehtoa tallentaaksesi tiedoston varmuuskopion tietokoneen kiintolevylle. ", - "DE.Controllers.Main.errorFilePassProtect": "Asiakirja on salasanalla suojattu.", - "DE.Controllers.Main.errorKeyEncrypt": "Tuntematon avainsana", - "DE.Controllers.Main.errorKeyExpire": "Avainsana erääntynyt", - "DE.Controllers.Main.errorMailMergeLoadFile": "Lataaminen epäonnistui", - "DE.Controllers.Main.errorMailMergeSaveFile": "Yhdistäminen epäonnistui.", - "DE.Controllers.Main.errorProcessSaveResult": "Tallennus epäonnistui.", - "DE.Controllers.Main.errorStockChart": "Virheellinen rivin järjestys. Jotta voit luoda pörssikaavion, niin aseta tiedot seuraavassa järjestyksessä:
    avaushinta, korkein hinta, halvin hinta, sulkuhinta.", - "DE.Controllers.Main.errorUpdateVersion": "Tiedoston versio on muuttunut. Sivu ladataan uudelleen.", - "DE.Controllers.Main.errorUserDrop": "Tiedostoon ei ole pääsyä tällä hetkellä.", - "DE.Controllers.Main.errorUsersExceed": "Käyttäjien määrä ylitettiin", - "DE.Controllers.Main.errorViewerDisconnect": "Yhteys on menetetty. Voit vielä selailla asiakirjaa,
    mutta et pysty lataamaan sitä ennenkuin yhteys on palautettu.", - "DE.Controllers.Main.leavePageText": "Sinulla on tallentamattomia muutoksia tässä asiakirjassa. Klikkaa 'Jää tälle sivulle' ja voit odottaa asiakirjan automaattista tallennusta. Klikkaa 'Jätä tämä sivu' niin voit jättää huomioimatta tallentamattomat muutokset. ", - "DE.Controllers.Main.loadFontsTextText": "Ladataan tietoa...", - "DE.Controllers.Main.loadFontsTitleText": "Ladataan tietoja", - "DE.Controllers.Main.loadFontTextText": "Ladataan tietoa...", - "DE.Controllers.Main.loadFontTitleText": "Ladataan tietoja", - "DE.Controllers.Main.loadImagesTextText": "Ladataan kuvia...", - "DE.Controllers.Main.loadImagesTitleText": "Ladataan kuvia", - "DE.Controllers.Main.loadImageTextText": "Ladataan kuvaa...", - "DE.Controllers.Main.loadImageTitleText": "Ladataan kuvaa", - "DE.Controllers.Main.loadingDocumentTextText": "Ladataan asiakirjaa...", - "DE.Controllers.Main.loadingDocumentTitleText": "Ladataan asiakirjaa", - "DE.Controllers.Main.mailMergeLoadFileText": "Ladataan tietolähdettä...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Ladataan tietolähdettä", - "DE.Controllers.Main.notcriticalErrorTitle": "Varoitus", - "DE.Controllers.Main.openErrorText": "Virhe tapahtui avattaessa tiedostoa", - "DE.Controllers.Main.openTextText": "Avataan asiakirjaa...", - "DE.Controllers.Main.openTitleText": "Avataan asiakirjaa", - "DE.Controllers.Main.printTextText": "Tulostetaan asiakirjaa...", - "DE.Controllers.Main.printTitleText": "Tulostetaan Asiakirjaa", - "DE.Controllers.Main.saveErrorText": "Virhe tapahtui tallennettaessa tiedostoa", - "DE.Controllers.Main.savePreparingText": "Valmistetaan tallennusta", - "DE.Controllers.Main.savePreparingTitle": "Valmistellaan talletusta. Ole hyvä ja odota...", - "DE.Controllers.Main.saveTextText": "Tallennetaan asiakirjaa...", - "DE.Controllers.Main.saveTitleText": "Tallennetaan asiakirjaa", - "DE.Controllers.Main.sendMergeText": "Lähetetään yhdistettynä...", - "DE.Controllers.Main.sendMergeTitle": "Lähetä yhdistettynä", - "DE.Controllers.Main.splitDividerErrorText": "Rivien määrä tulee olla arvon %1 jakaja ", - "DE.Controllers.Main.splitMaxColsErrorText": "Sarakkeiden määrä tulee olla vähemmän kuin %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Rivien määrä tulee olla vähemmän kuin %1", - "DE.Controllers.Main.textAnonymous": "Anonyymi", - "DE.Controllers.Main.textBack": "Takaisin", - "DE.Controllers.Main.textBuyNow": "Vieraile sivustossa", - "DE.Controllers.Main.textContactUs": "Myyntiosasto", - "DE.Controllers.Main.textLoadingDocument": "Ladataan asiakirjaa", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE avoimen lähdekoodin versio", - "DE.Controllers.Main.textTryUndoRedo": "Peruutus/tee uudestaan toiminnot eivät ole käytössä yhteisessä pikamuokkaus tilassa.", - "DE.Controllers.Main.titleLicenseExp": "Lisenssi erääntynyt", - "DE.Controllers.Main.titleUpdateVersion": "Versio muutettu", - "DE.Controllers.Main.txtAbove": "Yllä", - "DE.Controllers.Main.txtArt": "Tekstisi tähän", - "DE.Controllers.Main.txtBelow": "alla", - "DE.Controllers.Main.txtDiagramTitle": "Kaavion otsikko", - "DE.Controllers.Main.txtEditingMode": "Aseta muokkauksen tila...", - "DE.Controllers.Main.txtSeries": "Sarja", - "DE.Controllers.Main.txtXAxis": "X akseli", - "DE.Controllers.Main.txtYAxis": "Y akseli", - "DE.Controllers.Main.unknownErrorText": "Tuntematon virhe.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Selaintasi ei ole tuettu", - "DE.Controllers.Main.uploadImageExtMessage": "Tuntematon kuvan muoto.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Ei ladattuja kuvia.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maksimi kuvan koon rajoitus ylitettiin.", - "DE.Controllers.Main.uploadImageTextText": "Ladataan kuvaa...", - "DE.Controllers.Main.uploadImageTitleText": "Ladataan kuvaa", - "DE.Controllers.Main.warnLicenseExp": "Lisenssisi on erääntynyt.
    Ole hyvä ja päivitä lisenssisi ja virkistä sivu.", - "DE.Controllers.Main.warnNoLicense": "Olet käyttämässä %1 avoimen lähdekoodin versiota. Versiolla on rajoituksia yhtäaikaisten yhteyksien määrän suhteen asiakirjan palvelimelle (20 yhteyttä samaan aikaan).
    Jos haluat lisää, niin voit harkita kaupallista lisenssiä.", - "DE.Controllers.Main.warnProcessRightsChange": "Sinulla ei ole riittävästi oikeuksia muokata tiedostoa.", - "DE.Controllers.Search.textNoTextFound": "Tekstiä ei löytynyt", - "DE.Controllers.Search.textReplaceAll": "Korvaa Kaikki", - "DE.Controllers.Settings.notcriticalErrorTitle": "Varoitus", - "DE.Controllers.Settings.txtLoading": "Ladataan...", - "DE.Controllers.Settings.warnDownloadAs": "Jos jatkat tässä muodossa talletusta, niin kaikki ominaisuudet, paitsi teksti, menetetään.
    Oletko varma että haluat jatkaa?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Sinulla on tallentamattomia muutoksia tässä asiakirjassa. Klikkaa 'Jää tälle sivulle' ja voit odottaa asiakirjan automaattista tallennusta. Klikkaa 'Jätä tämä sivu' niin voit jättää huomioimatta tallentamattomat muutokset. ", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Jätät sovelluksen", - "DE.Controllers.Toolbar.leaveButtonText": "Jätä tämä sivu", - "DE.Controllers.Toolbar.stayButtonText": "Jää tälle sivulle", - "DE.Views.AddImage.textAddress": "Osoite", - "DE.Views.AddImage.textBack": "Takaisin", - "DE.Views.AddImage.textFromLibrary": "Kuva kirjastosta", - "DE.Views.AddImage.textFromURL": "Kuva verkko-osoitteesta", - "DE.Views.AddImage.textImageURL": "Kuvan verkko-osoite", - "DE.Views.AddImage.textInsertImage": "Lisää kuva", - "DE.Views.AddImage.textLinkSettings": "Linkin asetukset", - "DE.Views.AddOther.textAddComment": "Kommentoi", - "DE.Views.AddOther.textAddLink": "Lisää linkki", - "DE.Views.AddOther.textBack": "Takaisin", - "DE.Views.AddOther.textCenterBottom": "Keskellä alhaalla", - "DE.Views.AddOther.textCenterTop": "Keskellä ylhäällä", - "DE.Views.AddOther.textContPage": "Jatkuva sivu", - "DE.Views.AddOther.textCurrentPos": "Nykyinen asema", - "DE.Views.AddOther.textDisplay": "Näyttö", - "DE.Views.AddOther.textEvenPage": "Parillinen sivu", - "DE.Views.AddOther.textInsert": "Lisää", - "DE.Views.AddOther.textLeftBottom": "Vasen alhaalla", - "DE.Views.AddOther.textLeftTop": "Vasen ylhäällä", - "DE.Views.AddOther.textLink": "Linkki", - "DE.Views.AddOther.textNextPage": "Seuraava sivu", - "DE.Views.AddOther.textOddPage": "Pariton sivu", - "DE.Views.AddOther.textPageBreak": "Sivukatkaisu", - "DE.Views.AddOther.textPageNumber": "Sivunumero", - "DE.Views.AddOther.textPosition": "Asema", - "DE.Views.AddOther.textRightBottom": "Oikea alhaalla", - "DE.Views.AddOther.textRightTop": "Oikea ylhäällä", - "DE.Views.AddOther.textSectionBreak": "Osion katkaisu", - "DE.Views.AddOther.textTip": "Näyttövinkki", - "DE.Views.EditChart.textAddCustomColor": "Lisää mukautettu väri", - "DE.Views.EditChart.textAlign": "Tasaa", - "DE.Views.EditChart.textBack": "Takaisin", - "DE.Views.EditChart.textBackward": "Siirry takaisin", - "DE.Views.EditChart.textBehind": "Takana", - "DE.Views.EditChart.textBorder": "Reunus", - "DE.Views.EditChart.textColor": "Väri", - "DE.Views.EditChart.textDistanceText": "Etäisyys tekstistä", - "DE.Views.EditChart.textFill": "Täytä", - "DE.Views.EditChart.textForward": "Siirry eteenpäin", - "DE.Views.EditChart.textInFront": "Edessä", - "DE.Views.EditChart.textInline": "Linjassa", - "DE.Views.EditChart.textMoveText": "Siirrä tekstillä", - "DE.Views.EditChart.textOverlap": "Salli päällekkäisyys", - "DE.Views.EditChart.textRemoveChart": "Poista kuvio", - "DE.Views.EditChart.textReorder": "Järjestä uudelleen", - "DE.Views.EditChart.textSize": "Koko", - "DE.Views.EditChart.textSquare": "Neliö", - "DE.Views.EditChart.textStyle": "Tyyli", - "DE.Views.EditChart.textThrough": "Kautta", - "DE.Views.EditChart.textTight": "Tiukka", - "DE.Views.EditChart.textToBackground": "Lähetä taustalle", - "DE.Views.EditChart.textToForeground": "Tuo etupuolelle", - "DE.Views.EditChart.textTopBottom": "Ylös ja alas", - "DE.Views.EditChart.textType": "Tyyppi", - "DE.Views.EditChart.textWrap": "Rivittäminen", - "DE.Views.EditHyperlink.textDisplay": "Näyttö", - "DE.Views.EditHyperlink.textEdit": "Muokkaa linkkiä", - "DE.Views.EditHyperlink.textLink": "Linkki", - "DE.Views.EditHyperlink.textRemove": "Poista linkki", - "DE.Views.EditHyperlink.textTip": "Näyttövinkki", - "DE.Views.EditImage.textAddress": "Osoite", - "DE.Views.EditImage.textAlign": "Tasaa", - "DE.Views.EditImage.textBack": "Takaisin", - "DE.Views.EditImage.textBackward": "Siirry takaisin", - "DE.Views.EditImage.textBehind": "Takana", - "DE.Views.EditImage.textDefault": "Oletuskoko", - "DE.Views.EditImage.textDistanceText": "Etäisyys tekstistä", - "DE.Views.EditImage.textForward": "Siirry eteenpäin", - "DE.Views.EditImage.textFromLibrary": "Kuva kirjastosta", - "DE.Views.EditImage.textFromURL": "Kuva verkko-osoitteesta", - "DE.Views.EditImage.textImageURL": "Kuvan verkko-osoite", - "DE.Views.EditImage.textInFront": "Edessä", - "DE.Views.EditImage.textInline": "Linjassa", - "DE.Views.EditImage.textLinkSettings": "Linkin asetukset", - "DE.Views.EditImage.textMoveText": "Siirrä tekstillä", - "DE.Views.EditImage.textOverlap": "Salli päällekkäisyys", - "DE.Views.EditImage.textRemove": "Poista kuva", - "DE.Views.EditImage.textReorder": "Järjestä uudelleen", - "DE.Views.EditImage.textReplace": "Korvaa", - "DE.Views.EditImage.textReplaceImg": "Korvaa kuva", - "DE.Views.EditImage.textSquare": "Neliö", - "DE.Views.EditImage.textThrough": "Kautta", - "DE.Views.EditImage.textTight": "Tiukka", - "DE.Views.EditImage.textToBackground": "Lähetä taustalle", - "DE.Views.EditImage.textToForeground": "Tuo etupuolelle", - "DE.Views.EditImage.textTopBottom": "Ylös ja alas", - "DE.Views.EditImage.textWrap": "Rivittäminen", - "DE.Views.EditParagraph.textAddCustomColor": "Lisää mukautettu väri", - "DE.Views.EditParagraph.textAdvanced": "Laajennetut asetukset", - "DE.Views.EditParagraph.textAdvSettings": "Laajennetut asetukset", - "DE.Views.EditParagraph.textAfter": "Jälkeen", - "DE.Views.EditParagraph.textAuto": "Automaattinen", - "DE.Views.EditParagraph.textBack": "Takaisin", - "DE.Views.EditParagraph.textBackground": "Tausta", - "DE.Views.EditParagraph.textBefore": "Ennen", - "DE.Views.EditParagraph.textFromText": "Etäisyys tekstistä", - "DE.Views.EditParagraph.textKeepLines": "Pidä viivat yhdessä", - "DE.Views.EditParagraph.textKeepNext": "Pidä seuraavalla", - "DE.Views.EditParagraph.textOrphan": "Orporivien hallinta", - "DE.Views.EditParagraph.textPageBreak": "Sivun katko ennen", - "DE.Views.EditParagraph.textPrgStyles": "Kappaleen tyyli", - "DE.Views.EditParagraph.textSpaceBetween": "Kappaleväli", - "DE.Views.EditShape.textAddCustomColor": "Lisää mukautettu väri", - "DE.Views.EditShape.textAlign": "Tasaa", - "DE.Views.EditShape.textBack": "Takaisin", - "DE.Views.EditShape.textBackward": "Siirry takaisin", - "DE.Views.EditShape.textBehind": "Takana", - "DE.Views.EditShape.textBorder": "Reunus", - "DE.Views.EditShape.textColor": "Väri", - "DE.Views.EditShape.textEffects": "Efektit", - "DE.Views.EditShape.textFill": "Täytä", - "DE.Views.EditShape.textForward": "Siirry eteenpäin", - "DE.Views.EditShape.textFromText": "Etäisyys tekstistä", - "DE.Views.EditShape.textInFront": "Edessä", - "DE.Views.EditShape.textInline": "Linjassa", - "DE.Views.EditShape.textOpacity": "Läpikuultamattomuus", - "DE.Views.EditShape.textOverlap": "Salli päällekkäisyys", - "DE.Views.EditShape.textRemoveShape": "Poista muoto", - "DE.Views.EditShape.textReorder": "Järjestä uudelleen", - "DE.Views.EditShape.textReplace": "Korvaa", - "DE.Views.EditShape.textSize": "Koko", - "DE.Views.EditShape.textSquare": "Neliö", - "DE.Views.EditShape.textStyle": "Tyyli", - "DE.Views.EditShape.textThrough": "Kautta", - "DE.Views.EditShape.textTight": "Tiukka", - "DE.Views.EditShape.textToBackground": "Lähetä taustalle", - "DE.Views.EditShape.textToForeground": "Tuo etupuolelle", - "DE.Views.EditShape.textTopAndBottom": "Ylös ja alas", - "DE.Views.EditShape.textWithText": "Siirrä tekstillä", - "DE.Views.EditShape.textWrap": "Rivittäminen", - "DE.Views.EditTable.textAddCustomColor": "Lisää mukautettu väri", - "DE.Views.EditTable.textAlign": "Tasaa", - "DE.Views.EditTable.textBack": "Takaisin", - "DE.Views.EditTable.textBandedColumn": "Raidallinen sarake", - "DE.Views.EditTable.textBandedRow": "Raidallinen rivi", - "DE.Views.EditTable.textBorder": "Reunus", - "DE.Views.EditText.textAddCustomColor": "Lisää mukautettu väri", - "DE.Views.EditText.textAdditional": "Lisä", - "DE.Views.EditText.textAdditionalFormat": "Lisämuotoilu", - "DE.Views.EditText.textAllCaps": "Kaikki isoilla kirjaimilla", - "DE.Views.EditText.textAutomatic": "Automaattinen", - "DE.Views.EditText.textBack": "Takaisin", - "DE.Views.EditText.textBullets": "Pallukat", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textDblStrikethrough": "Kaksois yliviivaus", - "DE.Views.EditText.textDblSuperscript": "Yläindeksi", - "DE.Views.EditText.textFontColor": "Fontin väri", - "DE.Views.EditText.textFontColors": "Fontin värit", - "DE.Views.EditText.textFonts": "Fontit", - "DE.Views.EditText.textHighlightColor": "Korosta väriä", - "DE.Views.EditText.textHighlightColors": "Korosta värejä", - "DE.Views.EditText.textLetterSpacing": "Kirjainväli", - "DE.Views.EditText.textLineSpacing": "Viivan väli", - "DE.Views.EditText.textNone": "Ei mitään", - "DE.Views.EditText.textNumbers": "Numerot", - "DE.Views.EditText.textSize": "Koko", - "DE.Views.EditText.textSmallCaps": "Kapiteelit", - "DE.Views.EditText.textStrikethrough": "Yliviivaus", - "DE.Views.EditText.textSubscript": "Alaindeksi", - "DE.Views.Search.textCase": "Isojen/pienten kirjainten mukaan", - "DE.Views.Search.textDone": "Valmis", - "DE.Views.Search.textFind": "Etsi", - "DE.Views.Search.textFindAndReplace": "Etsi ja Korvaa", - "DE.Views.Search.textHighlight": "Korosta tuloksia", - "DE.Views.Search.textReplace": "Korvaa", - "DE.Views.Settings.textAbout": "Tietoa", - "DE.Views.Settings.textAddress": "osoite", - "DE.Views.Settings.textAdvancedSettings": "Sovellusasetukset", - "DE.Views.Settings.textApplication": "Sovellus", - "DE.Views.Settings.textAuthor": "Kirjoittaja", - "DE.Views.Settings.textBack": "Takaisin", - "DE.Views.Settings.textBottom": "Alhaalla", - "DE.Views.Settings.textCreateDate": "Luontipäivä", - "DE.Views.Settings.textDocInfo": "Asiakirjan tiedot", - "DE.Views.Settings.textDocTitle": "Asiakirjan otsikko", - "DE.Views.Settings.textDone": "Valmis", - "DE.Views.Settings.textDownload": "Lataa", - "DE.Views.Settings.textDownloadAs": "Lataa kuten...", - "DE.Views.Settings.textEditDoc": "Muokkaa asiakirjaa", - "DE.Views.Settings.textEmail": "sähköposti", - "DE.Views.Settings.textFind": "Etsi", - "DE.Views.Settings.textFindAndReplace": "Etsi ja Korvaa", - "DE.Views.Settings.textHelp": "Apua", - "DE.Views.Settings.textLoading": "Ladataan...", - "DE.Views.Settings.textPages": "Sivua", - "DE.Views.Settings.textParagraphs": "Kappaleet", - "DE.Views.Settings.textReader": "Lukutila", - "DE.Views.Settings.textSettings": "Asetukset", - "DE.Views.Settings.textSpaces": "Välit", - "DE.Views.Settings.textStatistic": "Tilasto", - "DE.Views.Settings.textSymbols": "Symbolit", - "DE.Views.Settings.textTel": "Puh.", - "DE.Views.Settings.textVersion": "Versio", - "DE.Views.Settings.textWords": "Sanoja", - "DE.Views.Settings.unknownText": "Tuntematon", - "DE.Views.Toolbar.textBack": "Takaisin" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/fr.json b/apps/documenteditor/mobile/locale/fr.json index f185378f7..86d3a23f4 100644 --- a/apps/documenteditor/mobile/locale/fr.json +++ b/apps/documenteditor/mobile/locale/fr.json @@ -1,10 +1,577 @@ { + "About": { + "textAbout": "À propos", + "textAddress": "Adresse", + "textBack": "Retour", + "textEmail": "E-mail", + "textPoweredBy": "Réalisation", + "textTel": "Tél.", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Avertissement", + "textAddLink": "Ajouter un lien", + "textAddress": "Adresse", + "textBack": "Retour", + "textBelowText": "Sous le texte", + "textBottomOfPage": "Bas de page", + "textBreak": "Saut", + "textCancel": "Annuler", + "textCenterBottom": "En bas au centre", + "textCenterTop": "En haut au centre", + "textColumnBreak": "Saut de colonne", + "textColumns": "Colonnes", + "textComment": "Commentaire", + "textContinuousPage": "Page continue", + "textCurrentPosition": "Position actuelle", + "textDisplay": "Afficher", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textEvenPage": "Page paire", + "textFootnote": "Note de bas de page", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "URL d'image", + "textInsert": "Insertion", + "textInsertFootnote": "Insérer une note de bas de page", + "textInsertImage": "Insérer une image", + "textLeftBottom": "À gauche en bas", + "textLeftTop": "À gauche en haut", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLocation": "Emplacement", + "textNextPage": "Page suivante", + "textOddPage": "Page impaire", + "textOther": "Autre", + "textPageBreak": "Saut de page", + "textPageNumber": "Numéro de page", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image depuis URL", + "textPosition": "Position", + "textRightBottom": "À droite en bas", + "textRightTop": "À droite en haut", + "textRows": "Lignes", + "textScreenTip": "Info-bulle", + "textSectionBreak": "Saut de section", + "textShape": "Forme", + "textStartAt": "Commencer par", + "textTable": "Tableau", + "textTableSize": "Taille du tableau", + "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"" + }, "Common": { "Collaboration": { - "textAddComment": "Ajouter un commentaire" + "notcriticalErrorTitle": "Avertissement", + "textAccept": "Accepter", + "textAcceptAllChanges": "Accepter toutes les modifications", + "textAddComment": "Ajouter un commentaire", + "textAddReply": "Ajouter une réponse", + "textAllChangesAcceptedPreview": "Toutes les modifications acceptées (aperçu)", + "textAllChangesEditing": "Toutes les modifications (édition)", + "textAllChangesRejectedPreview": "Toutes les modifications rejetées (Aperçu)", + "textAtLeast": "au moins ", + "textAuto": "Auto", + "textBack": "Retour", + "textBaseline": "Ligne de base", + "textBold": "Gras", + "textBreakBefore": "Saut de page avant", + "textCancel": "Annuler", + "textCaps": "Majuscules", + "textCenter": "Aligner au centre", + "textChart": "Graphique", + "textCollaboration": "Collaboration", + "textColor": "Couleur de police", + "textComments": "Commentaires", + "textContextual": "Ne pas ajouter d'intervalle entre paragraphes du même style", + "textDelete": "Supprimer", + "textDeleteComment": "Supprimer commentaire", + "textDeleted": "Supprimé:", + "textDeleteReply": "Supprimer réponse", + "textDisplayMode": "Mode d'affichage", + "textDone": "Terminé", + "textDStrikeout": "Double-barré", + "textEdit": "Modifier", + "textEditComment": "Modifier le commentaire", + "textEditReply": "Modifier la réponse", + "textEditUser": "Le document est en cours de modification par les utilisateurs suivants:", + "textEquation": "Équation", + "textExact": "exactement", + "textFinal": "Final", + "textFirstLine": "Première ligne", + "textFormatted": "Formaté", + "textHighlight": "Couleur de surlignage", + "textImage": "Image", + "textIndentLeft": "Retrait à gauche", + "textIndentRight": "Retrait à droite", + "textInserted": "Inséré:", + "textItalic": "Italique", + "textJustify": "Justifier ", + "textKeepLines": "Lignes solidaires", + "textKeepNext": "Paragraphes solidaires", + "textLeft": "Aligner à gauche", + "textLineSpacing": "Interligne:", + "textMarkup": "Balisage", + "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", + "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", + "textMultiple": "multiple ", + "textNoBreakBefore": "Pas de saut de page avant", + "textNoChanges": "Aucune modification", + "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textNoContextual": "Ajouter un intervalle entre les paragraphes du même style", + "textNoKeepLines": "Ne gardez pas de lignes ensemble", + "textNoKeepNext": "Ne gardez pas avec la prochaine", + "textNot": "Non", + "textNoWidow": "Pas de contrôle des veuves", + "textNum": "Changer la numérotation", + "textOriginal": "Original", + "textParaDeleted": "Paragraphe supprimé", + "textParaFormatted": "Paragraphe formaté", + "textParaInserted": "Paragraphe inséré", + "textParaMoveFromDown": "Déplacé vers le bas:", + "textParaMoveFromUp": "Déplacé vers le haut:", + "textParaMoveTo": "Déplacé:", + "textPosition": "Position", + "textReject": "Rejeter", + "textRejectAllChanges": "Rejeter toutes les modifications", + "textReopen": "Rouvrir", + "textResolve": "Résoudre", + "textReview": "Révision", + "textReviewChange": "Réviser modifications", + "textRight": "Aligner à droite", + "textShape": "Forme", + "textShd": "Couleur d'arrière-plan", + "textSmallCaps": "Petites majuscules", + "textSpacing": "Espacement", + "textSpacingAfter": "Espacement après", + "textSpacingBefore": "Espacement avant", + "textStrikeout": "Barré", + "textSubScript": "Indice", + "textSuperScript": "Exposant", + "textTableChanged": "Paramètres du tableau modifiés", + "textTableRowsAdd": "Les lignes sont ajoutées au tableau", + "textTableRowsDel": "Les lignes du tableau sont supprimées", + "textTabs": "Changer les tabulations", + "textTrackChanges": "Suivi des modifications", + "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", + "textUnderline": "Souligné", + "textUsers": "Utilisateurs", + "textWidow": "Contrôle des veuves" + }, + "ThemeColorPalette": { + "textCustomColors": "Couleurs personnalisées", + "textStandartColors": "Couleurs standard", + "textThemeColors": "Couleurs de thème" } }, + "ContextMenu": { + "errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", + "menuAddComment": "Ajouter un commentaire", + "menuAddLink": "Ajouter un lien", + "menuCancel": "Annuler", + "menuDelete": "Supprimer", + "menuDeleteTable": "Supprimer le tableau", + "menuEdit": "Modifier", + "menuMerge": "Fusionner", + "menuMore": "Plus", + "menuOpenLink": "Ouvrir le lien", + "menuReview": "Révision", + "menuReviewChange": "Réviser modifications", + "menuSplit": "Fractionner", + "menuViewComment": "Voir le commentaire", + "textColumns": "Colonnes", + "textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", + "textDoNotShowAgain": "Ne plus afficher", + "textRows": "Lignes" + }, + "Edit": { + "notcriticalErrorTitle": "Avertissement", + "textActualSize": "Taille réelle", + "textAddCustomColor": "Ajouter une couleur personnalisée", + "textAdditional": "Supplémentaire", + "textAdditionalFormatting": "Mise en forme supplémentaire", + "textAddress": "Adresse", + "textAdvanced": "Avancé", + "textAdvancedSettings": "Paramètres avancés", + "textAfter": "Après", + "textAlign": "Aligner", + "textAllCaps": "Majuscules", + "textAllowOverlap": "Autoriser le chevauchement", + "textAuto": "Auto", + "textAutomatic": "Automatique", + "textBack": "Retour", + "textBackground": "Arrière-plan", + "textBandedColumn": "Colonne à bandes", + "textBandedRow": "Ligne à bandes", + "textBefore": "Avant", + "textBehind": "Derrière", + "textBorder": "Bordure", + "textBringToForeground": "Mettre au premier plan", + "textBullets": "Puces", + "textBulletsAndNumbers": "Puces et numérotation", + "textCellMargins": "Marges de la cellule", + "textChart": "Graphique", + "textClose": "Fermer", + "textColor": "Couleur", + "textContinueFromPreviousSection": "Continuer à partir de la section précédente", + "textCustomColor": "Couleur personnalisée", + "textDifferentFirstPage": "Première page différente", + "textDifferentOddAndEvenPages": "Pages paires et impaires différentes", + "textDisplay": "Afficher", + "textDistanceFromText": "Distance du texte", + "textDoubleStrikethrough": "Barré double", + "textEditLink": "Modifier le lien", + "textEffects": "Effets", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textFill": "Remplissage", + "textFirstColumn": "Première colonne", + "textFirstLine": "Première ligne", + "textFlow": "Flux", + "textFontColor": "Couleur de police", + "textFontColors": "Couleurs de police", + "textFonts": "Polices", + "textFooter": "Pied de page", + "textHeader": "En-tête", + "textHeaderRow": "Ligne d’en-tête", + "textHighlightColor": "Couleur de surlignage", + "textHyperlink": "Lien hypertexte", + "textImage": "Image", + "textImageURL": "URL d'image", + "textInFront": "Devant", + "textInline": "En ligne", + "textKeepLinesTogether": "Lignes solidaires", + "textKeepWithNext": "Paragraphes solidaires", + "textLastColumn": "Dernière colonne", + "textLetterSpacing": "Espacement entre les lettres", + "textLineSpacing": "Interligne", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkToPrevious": "Lier au précédent", + "textMoveBackward": "Déplacer vers l'arrière", + "textMoveForward": "Avancer", + "textMoveWithText": "Déplacer avec le texte", + "textNone": "Aucun", + "textNoStyles": "Aucun style pour ce type de graphique.", + "textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "textNumbers": "Numérotation", + "textOpacity": "Opacité", + "textOptions": "Options", + "textOrphanControl": "Éviter orphelines", + "textPageBreakBefore": "Saut de page avant", + "textPageNumbering": "Numérotation des pages", + "textParagraph": "Paragraphe", + "textParagraphStyles": "Styles de paragraphe", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image depuis URL", + "textPt": "pt", + "textRemoveChart": "Supprimer le graphique", + "textRemoveImage": "Supprimer l'image", + "textRemoveLink": "Supprimer le lien", + "textRemoveShape": "Supprimer la forme", + "textRemoveTable": "Supprimer le tableau", + "textReorder": "Réorganiser", + "textRepeatAsHeaderRow": "Répéter la ligne d'en-tête", + "textReplace": "Remplacer", + "textReplaceImage": "Remplacer l’image", + "textResizeToFitContent": "Redimensionner pour adapter au contenu", + "textScreenTip": "Info-bulle", + "textSelectObjectToEdit": "Sélectionnez l'objet à modifier", + "textSendToBackground": "Mettre en arrière-plan", + "textSettings": "Paramètres", + "textShape": "Forme", + "textSize": "Taille", + "textSmallCaps": "Petites majuscules", + "textSpaceBetweenParagraphs": "Espace entre les paragraphes", + "textSquare": "Carré", + "textStartAt": "Commencer par", + "textStrikethrough": "Barré", + "textStyle": "Style", + "textStyleOptions": "Options de style", + "textSubscript": "Indice", + "textSuperscript": "Exposant", + "textTable": "Tableau", + "textTableOptions": "Options du tableau", + "textText": "Texte", + "textThrough": "Au travers", + "textTight": "Rapproché", + "textTopAndBottom": "Haut et bas", + "textTotalRow": "Ligne de total", + "textType": "Type", + "textWrap": "Renvoi à la ligne" + }, + "Error": { + "convertationTimeoutText": "Délai de conversion expiré.", + "criticalErrorExtText": "Appuyez sur OK pour revenir à la liste de documents", + "criticalErrorTitle": "Erreur", + "downloadErrorText": "Téléchargement echoué.", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorBadImageUrl": "L'URL de l'image est incorrecte", + "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton OK, vous serez invité à télécharger le document.", + "errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Contactez le support.", + "errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", + "errorDataRange": "Plage de données incorrecte.", + "errorDefaultMessage": "Code d'erreur: %1", + "errorEditingDownloadas": "Une erreure s'est produite lors du travail avec le document.
    Téléchargez le document pour enregistrer une copie locale de sauvegarde du fichier.", + "errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.", + "errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Veuillez contacter votre administrateur. ", + "errorKeyEncrypt": "Descripteur de clé inconnu", + "errorKeyExpire": "Descripteur de clés expiré", + "errorMailMergeLoadFile": "Échec du chargement", + "errorMailMergeSaveFile": "Fusion a échoué.", + "errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", + "errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", + "errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", + "errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
    Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.", + "errorUserDrop": "Le fichier ne peut pas être accédé tout de suite.", + "errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", + "errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
    mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.", + "notcriticalErrorTitle": "Avertissement", + "openErrorText": "Une erreur s’est produite lors de l'ouverture du fichier", + "saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier", + "scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "splitDividerErrorText": "Le nombre de lignes doit être un diviseur de %1", + "splitMaxColsErrorText": "Le nombre de colonnes doit être moins que %1", + "splitMaxRowsErrorText": "Le nombre de lignes doit être moins que %1", + "unknownErrorText": "Erreur inconnue.", + "uploadImageExtMessage": "Format d'image inconnu.", + "uploadImageFileCountMessage": "Aucune image chargée.", + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + }, + "LongActions": { + "applyChangesTextText": "Chargement des données en cours...", + "applyChangesTitleText": "Chargement des données", + "downloadMergeText": "Téléchargement en cours...", + "downloadMergeTitle": "Téléchargement en cours", + "downloadTextText": "Téléchargement du document...", + "downloadTitleText": "Téléchargement du document", + "loadFontsTextText": "Chargement des données en cours...", + "loadFontsTitleText": "Chargement des données", + "loadFontTextText": "Chargement des données en cours...", + "loadFontTitleText": "Chargement des données", + "loadImagesTextText": "Chargement des images en cours...", + "loadImagesTitleText": "Chargement des images", + "loadImageTextText": "Chargement d'une image en cours...", + "loadImageTitleText": "Chargement d'une image", + "loadingDocumentTextText": "Chargement du document...", + "loadingDocumentTitleText": "Chargement du document", + "mailMergeLoadFileText": "Chargement de la source des données...", + "mailMergeLoadFileTitle": "Chargement de la source des données", + "openTextText": "Ouverture du document...", + "openTitleText": "Ouverture document", + "printTextText": "Impression du document en cours...", + "printTitleText": "Impression du document", + "savePreparingText": "Préparation à l'enregistrement ", + "savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...", + "saveTextText": "Enregistrement document en cours...", + "saveTitleText": "Enregistrement du document", + "sendMergeText": "Envoie du résultat de la fusion...", + "sendMergeTitle": "Envoie du résultat de la fusion", + "textLoadingDocument": "Chargement du document", + "txtEditingMode": "Réglage mode d'édition...", + "uploadImageTextText": "Chargement d'une image en cours...", + "uploadImageTitleText": "Chargement d'une image", + "waitText": "Veuillez patienter..." + }, + "Main": { + "criticalErrorTitle": "Erreur", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorOpensource": "Sous version gratuite Community, le document est disponible en lecture seule. Pour accéder aux éditeurs mobiles web vous avez besoin d'une licence payante.", + "errorProcessSaveResult": "Échec de l'enregistrement", + "errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", + "errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", + "leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "notcriticalErrorTitle": "Avertissement", + "SDK": { + " -Section ": "- Section", + "above": "au-dessus", + "below": "en dessous", + "Caption": "Légende", + "Choose an item": "Choisir un élément", + "Click to load image": "Cliquez pour charger une image", + "Current Document": "Document actuel", + "Diagram Title": "Titre du graphique", + "endnote text": "Texte de note de fin", + "Enter a date": "Entrer une date", + "Error! Bookmark not defined": "Erreur! Marque-page non défini.", + "Error! Main Document Only": "Erreur ! Document principal seulement.", + "Error! No text of specified style in document": "Erreur ! Il n'y a pas de texte répondant à ce style dans ce document.", + "Error! Not a valid bookmark self-reference": "Erreur ! Référence non valide pour un signet.", + "Even Page ": "Page paire", + "First Page ": "Première Page", + "Footer": "Pied de page", + "footnote text": "Texte de la note de bas de page", + "Header": "En-tête", + "Heading 1": "Titre 1", + "Heading 2": "Titre 2", + "Heading 3": "Titre 3", + "Heading 4": "Titre 4", + "Heading 5": "Titre 5", + "Heading 6": "Titre 6", + "Heading 7": "Titre 7", + "Heading 8": "Titre 8", + "Heading 9": "Titre 9", + "Hyperlink": "Lien hypertexte", + "Index Too Large": "Index trop long", + "Intense Quote": "Citation intense", + "Is Not In Table": "N'est pas dans le tableau", + "List Paragraph": "Paragraphe de liste", + "Missing Argument": "Argument manquant", + "Missing Operator": "Operateur manquant", + "No Spacing": "Pas d'espacement", + "No table of contents entries found": "Aucun titre dans le document. L'application d'un style de titre sur une sélection de texte permettra l'affichage dans la table des matières.", + "No table of figures entries found": "Aucune entrée de table d'illustration n'a été trouvée.", + "None": "Aucun", + "Normal": "Normal", + "Number Too Large To Format": "Nom Trop Grand Pour Formater", + "Odd Page ": "Page impaire", + "Quote": "Citation", + "Same as Previous": "Identique au précédent", + "Series": "Série", + "Subtitle": "Sous-titre", + "Syntax Error": "Erreur de Syntaxe", + "Table Index Cannot be Zero": "Index d'un tableau ne peut pas être zero", + "Table of Contents": "Table des matières", + "table of figures": "Table des figures", + "The Formula Not In Table": "La formule n'est pas dans le tableau", + "Title": "Titre", + "TOC Heading": "En-tête de table des matières", + "Type equation here": "Saisissez l'équation ici", + "Undefined Bookmark": "Signet indéterminé ", + "Unexpected End of Formula": "Fin de formule inattendue", + "X Axis": "Axe X (XAS)", + "Y Axis": "Axe Y", + "Your text here": "Votre texte ici", + "Zero Divide": "Division par Zéro" + }, + "textAnonymous": "Anonyme", + "textBuyNow": "Visiter le site web", + "textClose": "Fermer", + "textContactUs": "Contacter l'équipe de ventes", + "textCustomLoader": "Désolé, vous n'êtes pas autorisé à changer le chargeur. Veuillez contacter notre Service de Ventes pour obtenir le devis.", + "textGuest": "Invité", + "textHasMacros": "Le fichier contient des macros automatiques.
    Voulez-vous exécuter les macros?", + "textNo": "Non", + "textNoLicenseTitle": "La limite de la licence est atteinte", + "textPaidFeature": "Fonction payante", + "textRemember": "Se souvenir de mon choix", + "textYes": "Oui", + "titleLicenseExp": "Licence expirée", + "titleServerVersion": "L'éditeur est mis à jour", + "titleUpdateVersion": "La version a été modifiée", + "warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Pour en savoir plus, contactez votre administrateur.", + "warnLicenseExp": "Votre licence a expiré. Veuillez mettre à jour votre licence et actualisez la page.", + "warnLicenseLimitedNoAccess": "La licence est expirée. Vous n'avez plus d'accès aux outils d'édition. Veuillez contacter votre administrateur.", + "warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence. Vous avez un accès limité aux outils d'édition des documents.
    Veuillez contacter votre administrateur pour obtenir un accès complet", + "warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.", + "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier." + }, "Settings": { - "textAbout": "A propos" + "advDRMOptions": "Fichier protégé", + "advDRMPassword": "Mot de passe", + "advTxtOptions": "Choisir les options TXT", + "closeButtonText": "Fermer le fichier", + "notcriticalErrorTitle": "Avertissement", + "textAbout": "À propos", + "textApplication": "Application", + "textApplicationSettings": "Paramètres de l'application", + "textAuthor": "Auteur", + "textBack": "Retour", + "textBottom": "En bas", + "textCancel": "Annuler", + "textCaseSensitive": "Sensible à la casse", + "textCentimeter": "Centimètre", + "textCollaboration": "Collaboration", + "textColorSchemes": "Jeux de couleurs", + "textComment": "Commentaire", + "textComments": "Commentaires", + "textCommentsDisplay": "Affichage des commentaires ", + "textCreated": "Créé", + "textCustomSize": "Taille personnalisée", + "textDisableAll": "Désactiver tout", + "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", + "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", + "textDocumentInfo": "Descriptif du document", + "textDocumentSettings": "Paramètres du document", + "textDocumentTitle": "Titre du document", + "textDone": "Terminé", + "textDownload": "Télécharger", + "textDownloadAs": "Télécharger comme", + "textDownloadRtf": "Si vous continuer à sauvegarder dans ce format une partie de la mise en forme peut être supprimée. Êtes-vous sûr de vouloir continuer?", + "textDownloadTxt": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues. Êtes-vous sûr de vouloir continuer?", + "textEnableAll": "Activer tout", + "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "textEncoding": "Codage ", + "textFind": "Rechercher", + "textFindAndReplace": "Rechercher et remplacer", + "textFindAndReplaceAll": "Rechercher et remplacer tout", + "textFormat": "Format", + "textHelp": "Aide", + "textHiddenTableBorders": "Bordures du tableau cachées", + "textHighlightResults": "Surligner les résultats", + "textInch": "Pouce", + "textLandscape": "Paysage", + "textLastModified": "Dernière modification", + "textLastModifiedBy": "Dernière modification par", + "textLeft": "À gauche", + "textLoading": "Chargement en cours...", + "textLocation": "Emplacement", + "textMacrosSettings": "Réglages macros", + "textMargins": "Marges", + "textMarginsH": "Les marges supérieure et inférieure sont trop élevés pour une hauteur de page donnée", + "textMarginsW": "Les marges gauche et droite sont trop larges pour une largeur de page donnée", + "textNoCharacters": "Caractères non imprimables", + "textNoTextFound": "Le texte est introuvable", + "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", + "textOrientation": "Orientation", + "textOwner": "Propriétaire", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Imprimer", + "textReaderMode": "Mode de lecture", + "textReplace": "Remplacer", + "textReplaceAll": "Remplacer tout", + "textResolvedComments": "Commentaires résolus", + "textRight": "À droite", + "textSearch": "Rechercher", + "textSettings": "Paramètres", + "textShowNotification": "Montrer la notification", + "textSpellcheck": "Vérification de l'orthographe", + "textStatistic": "Statistique", + "textSubject": "Sujet", + "textTitle": "Titre", + "textTop": "En haut", + "textUnitOfMeasurement": "Unité de mesure", + "textUploaded": "Chargé", + "txtIncorrectPwd": "Mot de passe incorrect", + "txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé", + "txtScheme1": "Office", + "txtScheme10": "Médian", + "txtScheme11": "Métro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origine", + "txtScheme16": "Papier", + "txtScheme17": "Solstice", + "txtScheme18": "Technique", + "txtScheme19": "Promenade", + "txtScheme2": "Nuances de gris", + "txtScheme20": "Urbain", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civil", + "txtScheme6": "Rotonde", + "txtScheme7": "Capitaux", + "txtScheme8": "Flux", + "txtScheme9": "Fonderie" + }, + "Toolbar": { + "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "dlgLeaveTitleText": "Vous quittez l'application", + "leaveButtonText": "Quitter cette page", + "stayButtonText": "Rester sur cette page" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/hu.json b/apps/documenteditor/mobile/locale/hu.json index 825d97bf8..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/hu.json +++ b/apps/documenteditor/mobile/locale/hu.json @@ -1,607 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Válasz hozzáadása", - "Common.Controllers.Collaboration.textAtLeast": "legalább", - "Common.Controllers.Collaboration.textAuto": "Auto", - "Common.Controllers.Collaboration.textBaseline": "Alapvonal", - "Common.Controllers.Collaboration.textBold": "Félkövér", - "Common.Controllers.Collaboration.textBreakBefore": "Oldaltörés elötte", - "Common.Controllers.Collaboration.textCancel": "Mégsem", - "Common.Controllers.Collaboration.textCaps": "Csupa nagybetűs", - "Common.Controllers.Collaboration.textCenter": "Középre igazít", - "Common.Controllers.Collaboration.textChart": "Diagram", - "Common.Controllers.Collaboration.textColor": "Betűszín", - "Common.Controllers.Collaboration.textContextual": "Ne adjon távolságot azonos stílusú bekezdések közé", - "Common.Controllers.Collaboration.textDelete": "Törlés", - "Common.Controllers.Collaboration.textDeleteComment": "Hozzászólás törlése", - "Common.Controllers.Collaboration.textDeleted": "Törölve:", - "Common.Controllers.Collaboration.textDeleteReply": "Válasz törlése", - "Common.Controllers.Collaboration.textDone": "Kész", - "Common.Controllers.Collaboration.textDStrikeout": "Dupla áthúzás", - "Common.Controllers.Collaboration.textEdit": "Szerkesztés", - "Common.Controllers.Collaboration.textEditUser": "A fájlt szerkesztő felhasználók:", - "Common.Controllers.Collaboration.textEquation": "Egyenlet", - "Common.Controllers.Collaboration.textExact": "Pontosan", - "Common.Controllers.Collaboration.textFirstLine": "Első sor", - "Common.Controllers.Collaboration.textFormatted": "Formázott", - "Common.Controllers.Collaboration.textHighlight": "Kiemelő szín", - "Common.Controllers.Collaboration.textImage": "Kép", - "Common.Controllers.Collaboration.textIndentLeft": "Bal behúzás", - "Common.Controllers.Collaboration.textIndentRight": "Jobb behúzás", - "Common.Controllers.Collaboration.textInserted": "Beillesztve:", - "Common.Controllers.Collaboration.textItalic": "Dőlt", - "Common.Controllers.Collaboration.textJustify": "Sorkizárt", - "Common.Controllers.Collaboration.textKeepLines": "Ne törje el a bekezdést", - "Common.Controllers.Collaboration.textKeepNext": "Következővel együtt tartás", - "Common.Controllers.Collaboration.textLeft": "Balra igazít", - "Common.Controllers.Collaboration.textLineSpacing": "Sortávolság:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Biztosan töröljük a hozzászólást?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Biztosan töröljük a választ?", - "Common.Controllers.Collaboration.textMultiple": "Többszörös", - "Common.Controllers.Collaboration.textNoBreakBefore": "Nincs oldaltörés előtte", - "Common.Controllers.Collaboration.textNoChanges": "Nincsenek változások.", - "Common.Controllers.Collaboration.textNoContextual": "Térköz hozzáadása azonos stílusú bekezdések közé", - "Common.Controllers.Collaboration.textNoKeepLines": "Ne tartsa egyben a sorokat", - "Common.Controllers.Collaboration.textNoKeepNext": "Ne tartsa meg a következőnél", - "Common.Controllers.Collaboration.textNot": "Nem", - "Common.Controllers.Collaboration.textNoWidow": "Nincs özvegy sor ellenőrzés", - "Common.Controllers.Collaboration.textNum": "Számozás módosítása", - "Common.Controllers.Collaboration.textParaDeleted": "Bekezdés törölve", - "Common.Controllers.Collaboration.textParaFormatted": "Bekezdés formázva", - "Common.Controllers.Collaboration.textParaInserted": "Bekezdés beillesztve", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Felmozgatva:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Lemozgatva:", - "Common.Controllers.Collaboration.textParaMoveTo": "Mozgatva:", - "Common.Controllers.Collaboration.textPosition": "Pozíció", - "Common.Controllers.Collaboration.textReopen": "Újranyitás", - "Common.Controllers.Collaboration.textResolve": "Felold", - "Common.Controllers.Collaboration.textRight": "Jobbra igazít", - "Common.Controllers.Collaboration.textShape": "Alakzat", - "Common.Controllers.Collaboration.textShd": "Háttérszín", - "Common.Controllers.Collaboration.textSmallCaps": "Kisbetűk", - "Common.Controllers.Collaboration.textSpacing": "Térköz", - "Common.Controllers.Collaboration.textSpacingAfter": "Térköz utána", - "Common.Controllers.Collaboration.textSpacingBefore": "Térköz előtte", - "Common.Controllers.Collaboration.textStrikeout": "Áthúzás", - "Common.Controllers.Collaboration.textSubScript": "Alsó index", - "Common.Controllers.Collaboration.textSuperScript": "Felső index", - "Common.Controllers.Collaboration.textTableChanged": "Táblázat beállítások megváltoztatva", - "Common.Controllers.Collaboration.textTableRowsAdd": "Táblázat sorok hozzáadva", - "Common.Controllers.Collaboration.textTableRowsDel": "Táblázat sorok törölve", - "Common.Controllers.Collaboration.textTabs": "Tabok módosítása", - "Common.Controllers.Collaboration.textUnderline": "Aláhúzott", - "Common.Controllers.Collaboration.textWidow": "Özvegy sor", - "Common.Controllers.Collaboration.textYes": "Igen", - "Common.UI.ThemeColorPalette.textCustomColors": "Egyéni színek", - "Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek", - "Common.UI.ThemeColorPalette.textThemeColors": "Téma színek", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Elfogad", - "Common.Views.Collaboration.textAcceptAllChanges": "Minden módosítás elfogadása", - "Common.Views.Collaboration.textAddReply": "Válasz hozzáadása", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Minden módosítás elfogadva (előnézet)", - "Common.Views.Collaboration.textAllChangesEditing": "Minden módosítás (szerkesztés)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Minden módosítás visszautasítva (előnézet)", - "Common.Views.Collaboration.textBack": "Vissza", - "Common.Views.Collaboration.textCancel": "Mégsem", - "Common.Views.Collaboration.textChange": "Felülvizsgálat változás", - "Common.Views.Collaboration.textCollaboration": "Együttműködés", - "Common.Views.Collaboration.textDisplayMode": "Megjelenítési mód", - "Common.Views.Collaboration.textDone": "Kész", - "Common.Views.Collaboration.textEditReply": "Válasz szerkesztése", - "Common.Views.Collaboration.textEditUsers": "Felhasználók", - "Common.Views.Collaboration.textEditСomment": "Hozzászólás szerkesztése", - "Common.Views.Collaboration.textFinal": "Végső", - "Common.Views.Collaboration.textMarkup": "Struktúra", - "Common.Views.Collaboration.textNoComments": "Ebben a dokumentumban nincsenek hozzászólások", - "Common.Views.Collaboration.textOriginal": "Eredeti", - "Common.Views.Collaboration.textReject": "Elutasít", - "Common.Views.Collaboration.textRejectAllChanges": "Elutasít minden módosítást", - "Common.Views.Collaboration.textReview": "Módosítások követése", - "Common.Views.Collaboration.textReviewing": "Felülvizsgálat", - "Common.Views.Collaboration.textСomments": "Hozzászólások", - "DE.Controllers.AddContainer.textImage": "Kép", - "DE.Controllers.AddContainer.textOther": "Egyéb", - "DE.Controllers.AddContainer.textShape": "Alakzat", - "DE.Controllers.AddContainer.textTable": "Táblázat", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Figyelmeztetés", - "DE.Controllers.AddImage.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", - "DE.Controllers.AddImage.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Figyelmeztetés", - "DE.Controllers.AddOther.textBelowText": "Szöveg alatt", - "DE.Controllers.AddOther.textBottomOfPage": "Az oldal alja", - "DE.Controllers.AddOther.textCancel": "Mégsem", - "DE.Controllers.AddOther.textContinue": "Folytatás", - "DE.Controllers.AddOther.textDelete": "Törlés", - "DE.Controllers.AddOther.textDeleteDraft": "Biztosan töröljük a vázlatot?", - "DE.Controllers.AddOther.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie", - "DE.Controllers.AddTable.textCancel": "Mégse", - "DE.Controllers.AddTable.textColumns": "Oszlopok", - "DE.Controllers.AddTable.textRows": "Sorok", - "DE.Controllers.AddTable.textTableSize": "Táblázat méret", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "A másolás, kivágás és beillesztés a helyi menü segítségével csak az aktuális fájlon belül történik.", - "DE.Controllers.DocumentHolder.menuAddComment": "Hozzászólás hozzáadása", - "DE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása", - "DE.Controllers.DocumentHolder.menuCopy": "Másol", - "DE.Controllers.DocumentHolder.menuCut": "Kivág", - "DE.Controllers.DocumentHolder.menuDelete": "Töröl", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Táblázat törlése", - "DE.Controllers.DocumentHolder.menuEdit": "Szerkeszt", - "DE.Controllers.DocumentHolder.menuMerge": "Cellák összevonása", - "DE.Controllers.DocumentHolder.menuMore": "Még", - "DE.Controllers.DocumentHolder.menuOpenLink": "Link megnyitása", - "DE.Controllers.DocumentHolder.menuPaste": "Beilleszt", - "DE.Controllers.DocumentHolder.menuReview": "Összefoglaló", - "DE.Controllers.DocumentHolder.menuReviewChange": "Felülvizsgálat változás", - "DE.Controllers.DocumentHolder.menuSplit": "Cella felosztása", - "DE.Controllers.DocumentHolder.menuViewComment": "Hozzászólás megtekintése", - "DE.Controllers.DocumentHolder.sheetCancel": "Mégse", - "DE.Controllers.DocumentHolder.textCancel": "Mégse", - "DE.Controllers.DocumentHolder.textColumns": "Oszlopok", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Másolás, kivágás és beillesztés", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne mutassa újra", - "DE.Controllers.DocumentHolder.textGuest": "Vendég", - "DE.Controllers.DocumentHolder.textRows": "Sorok", - "DE.Controllers.EditContainer.textChart": "Diagram", - "DE.Controllers.EditContainer.textFooter": "Lábléc", - "DE.Controllers.EditContainer.textHeader": "Fejléc", - "DE.Controllers.EditContainer.textHyperlink": "Hivatkozás", - "DE.Controllers.EditContainer.textImage": "Kép", - "DE.Controllers.EditContainer.textParagraph": "Bekezdés", - "DE.Controllers.EditContainer.textSettings": "Beállítások", - "DE.Controllers.EditContainer.textShape": "Alakzat", - "DE.Controllers.EditContainer.textTable": "Táblázat", - "DE.Controllers.EditContainer.textText": "Szöveg", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Figyelmeztetés", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Meg kell adni a kép hivatkozását.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Figyelmeztetés", - "DE.Controllers.EditImage.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", - "DE.Controllers.EditImage.txtNotUrl": "Ennek a mezőnek egy 'http://www.example.com' formátumú hivatkozásnak kellene lennie", - "DE.Controllers.EditText.textAuto": "Auto", - "DE.Controllers.EditText.textFonts": "Betűtípusok", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Adja meg a jelszavát:", - "DE.Controllers.Main.advDRMOptions": "Védett fájl", - "DE.Controllers.Main.advDRMPassword": "Jelszó", - "DE.Controllers.Main.advTxtOptions": "TXT beállítások", - "DE.Controllers.Main.applyChangesTextText": "Adatok betöltése...", - "DE.Controllers.Main.applyChangesTitleText": "Adatok betöltése", - "DE.Controllers.Main.closeButtonText": "Fájl bezárása", - "DE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.", - "DE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\"-t a dokumentumok listájához.", - "DE.Controllers.Main.criticalErrorTitle": "Hiba", - "DE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.", - "DE.Controllers.Main.downloadMergeText": "Letöltés...", - "DE.Controllers.Main.downloadMergeTitle": "Letöltés", - "DE.Controllers.Main.downloadTextText": "Dokumentum letöltése...", - "DE.Controllers.Main.downloadTitleText": "Dokumentum letöltése", - "DE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.
    Vegye fel a kapcsolatot a Document Server adminisztrátorával.", - "DE.Controllers.Main.errorBadImageUrl": "Hibás kép URL", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "A szerver elveszítette a kapcsolatot. A további szerkesztés nem lehetséges.", - "DE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.
    Ha az 'OK'-ra kattint letöltheti a dokumentumot.", - "DE.Controllers.Main.errorDatabaseConnection": "Külső hiba.
    Adatbázis kapcsolati hiba. Kérem vegye igénybe támogatásunkat.", - "DE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", - "DE.Controllers.Main.errorDataRange": "Hibás adattartomány.", - "DE.Controllers.Main.errorDefaultMessage": "Hibakód: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
    Használja a 'Letöltés' opciót, hogy elmentse a fájl biztonsági másolatát a számítógép merevlemezére.", - "DE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", - "DE.Controllers.Main.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
    Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", - "DE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró", - "DE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró", - "DE.Controllers.Main.errorMailMergeLoadFile": "A dokumentum megnyitása sikertelen. Kérjük, válasszon egy másik fájlt.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.", - "DE.Controllers.Main.errorOpensource": "Az ingyenes közösségi verzió használatával dokumentumokat csak megtekintésre nyithat meg. A mobil webszerkesztőkhöz való hozzáféréshez kereskedelmi licensz szükséges.", - "DE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés.", - "DE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", - "DE.Controllers.Main.errorSessionAbsolute": "A dokumentumszerkesztési munkamenet lejárt. Kérjük, töltse újra az oldalt.", - "DE.Controllers.Main.errorSessionIdle": "A dokumentumot sokáig nem szerkesztették. Kérjük, töltse újra az oldalt.", - "DE.Controllers.Main.errorSessionToken": "A szerverrel való kapcsolat megszakadt. Töltse újra az oldalt.", - "DE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
    nyitó ár, maximum ár, minimum ár, záró ár.", - "DE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
    Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", - "DE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető", - "DE.Controllers.Main.errorUsersExceed": "A felhasználók száma túllépve", - "DE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,
    de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.", - "DE.Controllers.Main.leavePageText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", - "DE.Controllers.Main.loadFontsTextText": "Adatok betöltése...", - "DE.Controllers.Main.loadFontsTitleText": "Adatok betöltése", - "DE.Controllers.Main.loadFontTextText": "Adatok betöltése...", - "DE.Controllers.Main.loadFontTitleText": "Adatok betöltése", - "DE.Controllers.Main.loadImagesTextText": "Képek betöltése...", - "DE.Controllers.Main.loadImagesTitleText": "Képek betöltése", - "DE.Controllers.Main.loadImageTextText": "Kép betöltése...", - "DE.Controllers.Main.loadImageTitleText": "Kép betöltése", - "DE.Controllers.Main.loadingDocumentTextText": "Dokumentum betöltése...", - "DE.Controllers.Main.loadingDocumentTitleText": "Dokumentum betöltése", - "DE.Controllers.Main.mailMergeLoadFileText": "Adat forrás betöltése...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Adat forrás betöltése", - "DE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés", - "DE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitásakor", - "DE.Controllers.Main.openTextText": "Dokumentum megnyitása...", - "DE.Controllers.Main.openTitleText": "Dokumentum megnyitása", - "DE.Controllers.Main.printTextText": "Dokumentum nyomtatása...", - "DE.Controllers.Main.printTitleText": "Dokumentum nyomtatása", - "DE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során.", - "DE.Controllers.Main.savePreparingText": "Felkészülés mentésre", - "DE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...", - "DE.Controllers.Main.saveTextText": "Dokumentum mentése...", - "DE.Controllers.Main.saveTitleText": "Dokumentum mentése", - "DE.Controllers.Main.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", - "DE.Controllers.Main.sendMergeText": "Összevont küldés...", - "DE.Controllers.Main.sendMergeTitle": "Összevont küldés", - "DE.Controllers.Main.splitDividerErrorText": "A soroknak számának a(z) %1 osztójának kell lennie", - "DE.Controllers.Main.splitMaxColsErrorText": "Az oszlopok számának kevesebbnek kell lennie mint %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "A soroknak számának kevesebbnek kell lennie, mint %1", - "DE.Controllers.Main.textAnonymous": "Névtelen", - "DE.Controllers.Main.textBack": "Vissza", - "DE.Controllers.Main.textBuyNow": "Weboldalt meglátogat", - "DE.Controllers.Main.textCancel": "Mégse", - "DE.Controllers.Main.textClose": "Bezár", - "DE.Controllers.Main.textContactUs": "Értékesítési osztály", - "DE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.
    Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.", - "DE.Controllers.Main.textDone": "Kész", - "DE.Controllers.Main.textGuest": "Vendég", - "DE.Controllers.Main.textHasMacros": "A fájl automatikus makrókat tartalmaz.
    Szeretne makrókat futtatni?", - "DE.Controllers.Main.textLoadingDocument": "Dokumentum betöltése", - "DE.Controllers.Main.textNo": "Nem", - "DE.Controllers.Main.textNoLicenseTitle": "Elérte a licenckorlátot", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Fizetett funkció", - "DE.Controllers.Main.textPassword": "Jelszó", - "DE.Controllers.Main.textPreloader": "Betöltés...", - "DE.Controllers.Main.textRemember": "Emlékezzen a választásomra minden fájlhoz", - "DE.Controllers.Main.textTryUndoRedo": "A Visszavonás/Újra funkciók nem elérhetőek Gyors közös szerkesztés módban.", - "DE.Controllers.Main.textUsername": "Felhasználói név", - "DE.Controllers.Main.textYes": "Igen", - "DE.Controllers.Main.titleLicenseExp": "Lejárt licenc", - "DE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", - "DE.Controllers.Main.titleUpdateVersion": "A verzió megváltozott", - "DE.Controllers.Main.txtAbove": "felett", - "DE.Controllers.Main.txtArt": "Írja a szöveget ide", - "DE.Controllers.Main.txtBelow": "alatt", - "DE.Controllers.Main.txtCurrentDocument": "Aktuális dokumentum", - "DE.Controllers.Main.txtDiagramTitle": "Diagram címe", - "DE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...", - "DE.Controllers.Main.txtEvenPage": "Páros oldal", - "DE.Controllers.Main.txtFirstPage": "Első oldal", - "DE.Controllers.Main.txtFooter": "Lábléc", - "DE.Controllers.Main.txtHeader": "Fejléc", - "DE.Controllers.Main.txtOddPage": "Páratlan oldal", - "DE.Controllers.Main.txtOnPage": "az oldalon", - "DE.Controllers.Main.txtProtected": "Amint beírásra került a kód és megnyílt a fájl, a fájl jelenlegi kódja visszaállítódik.", - "DE.Controllers.Main.txtSameAsPrev": "Az előzővel azonos", - "DE.Controllers.Main.txtSection": "-Szakasz", - "DE.Controllers.Main.txtSeries": "Sorozatok", - "DE.Controllers.Main.txtStyle_footnote_text": "Lábjegyzet szövege", - "DE.Controllers.Main.txtStyle_Heading_1": "Címsor 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Címsor 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Címsor 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Címsor 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Címsor 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Címsor 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Címsor 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Címsor 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Címsor 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Intense Quote", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Lista bekezdés", - "DE.Controllers.Main.txtStyle_No_Spacing": "Nincs térköz", - "DE.Controllers.Main.txtStyle_Normal": "Normál", - "DE.Controllers.Main.txtStyle_Quote": "Idézet", - "DE.Controllers.Main.txtStyle_Subtitle": "Alcím", - "DE.Controllers.Main.txtStyle_Title": "Cím", - "DE.Controllers.Main.txtXAxis": "X tengely", - "DE.Controllers.Main.txtYAxis": "Y tengely", - "DE.Controllers.Main.unknownErrorText": "Ismeretlen hiba.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "A böngészője nem támogatott.", - "DE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.", - "DE.Controllers.Main.uploadImageSizeMessage": "Elérte a maximum kép méret limitet.", - "DE.Controllers.Main.uploadImageTextText": "Kép feltöltése...", - "DE.Controllers.Main.uploadImageTitleText": "Kép feltöltése", - "DE.Controllers.Main.waitText": "Kérjük, várjon...", - "DE.Controllers.Main.warnLicenseExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
    További információért forduljon rendszergazdájához.", - "DE.Controllers.Main.warnLicenseExp": "A licence lejárt.
    Kérem frissítse a licencét, majd az oldalt.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "A licenc lejárt.
    Nincs hozzáférése a dokumentumszerkesztő funkciókhoz.
    Kérjük, lépjen kapcsolatba a rendszergazdával.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "A licencet meg kell újítani.
    Korlátozott hozzáférése van a dokumentumszerkesztési funkciókhoz.
    A teljes hozzáférésért forduljon rendszergazdájához", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. További információért forduljon rendszergazdájához.", - "DE.Controllers.Main.warnNoLicense": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
    Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", - "DE.Controllers.Main.warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", - "DE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", - "DE.Controllers.Search.textNoTextFound": "A szöveg nem található", - "DE.Controllers.Search.textReplaceAll": "Mindent cserél", - "DE.Controllers.Settings.notcriticalErrorTitle": "Figyelmeztetés", - "DE.Controllers.Settings.textCustomSize": "Egyéni méret", - "DE.Controllers.Settings.txtLoading": "Betöltés...", - "DE.Controllers.Settings.unknownText": "Ismeretlen", - "DE.Controllers.Settings.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
    Biztos benne, hogy folytatni akarja?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Ha ebbe a formátumba ment, bizonyos formázási elemek elveszhetnek.
    Biztos benne, hogy folytatni akarja?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Bezárja az alkalmazást", - "DE.Controllers.Toolbar.leaveButtonText": "Oldal elhagyása", - "DE.Controllers.Toolbar.stayButtonText": "Maradni az oldalon", - "DE.Views.AddImage.textAddress": "Cím", - "DE.Views.AddImage.textBack": "Vissza", - "DE.Views.AddImage.textFromLibrary": "Kép a galériából", - "DE.Views.AddImage.textFromURL": "Kép URL-en keresztül", - "DE.Views.AddImage.textImageURL": "Kép URL", - "DE.Views.AddImage.textInsertImage": "Kép beszúrása", - "DE.Views.AddImage.textLinkSettings": "Link beállítások", - "DE.Views.AddOther.textAddComment": "Hozzászólás hozzáadása", - "DE.Views.AddOther.textAddLink": "Link hozzáadása", - "DE.Views.AddOther.textBack": "Vissza", - "DE.Views.AddOther.textBreak": "Szünet", - "DE.Views.AddOther.textCenterBottom": "Alul középen", - "DE.Views.AddOther.textCenterTop": "Felül középen", - "DE.Views.AddOther.textColumnBreak": "Oszlop törés", - "DE.Views.AddOther.textComment": "Hozzászólás", - "DE.Views.AddOther.textContPage": "Előző oldal", - "DE.Views.AddOther.textCurrentPos": "Jelenlegi pozíció", - "DE.Views.AddOther.textDisplay": "Megmutat", - "DE.Views.AddOther.textDone": "Kész", - "DE.Views.AddOther.textEvenPage": "Páros oldal", - "DE.Views.AddOther.textFootnote": "Lábjegyzet", - "DE.Views.AddOther.textFormat": "Formátum", - "DE.Views.AddOther.textInsert": "Beszúr", - "DE.Views.AddOther.textInsertFootnote": "Lábjegyzet beszúrása", - "DE.Views.AddOther.textLeftBottom": "Bal alsó", - "DE.Views.AddOther.textLeftTop": "Bal felső", - "DE.Views.AddOther.textLink": "Link", - "DE.Views.AddOther.textLocation": "Hely", - "DE.Views.AddOther.textNextPage": "Következő oldal", - "DE.Views.AddOther.textOddPage": "Páratlan oldal", - "DE.Views.AddOther.textPageBreak": "Lap törés", - "DE.Views.AddOther.textPageNumber": "Oldalszám", - "DE.Views.AddOther.textPosition": "Pozíció", - "DE.Views.AddOther.textRightBottom": "Jobb alsó", - "DE.Views.AddOther.textRightTop": "Jobb felső", - "DE.Views.AddOther.textSectionBreak": "Szekció törés", - "DE.Views.AddOther.textStartFrom": "Kezdet", - "DE.Views.AddOther.textTip": "Gyorstipp", - "DE.Views.EditChart.textAddCustomColor": "Egyéni szín hozzáadása", - "DE.Views.EditChart.textAlign": "Rendez", - "DE.Views.EditChart.textBack": "Vissza", - "DE.Views.EditChart.textBackward": "Hátra mozgat", - "DE.Views.EditChart.textBehind": "Mögött", - "DE.Views.EditChart.textBorder": "Szegély", - "DE.Views.EditChart.textColor": "Szín", - "DE.Views.EditChart.textCustomColor": "Egyéni szín", - "DE.Views.EditChart.textDistanceText": "Távolság a szövegtől", - "DE.Views.EditChart.textFill": "Kitölt", - "DE.Views.EditChart.textForward": "Előre mozgat", - "DE.Views.EditChart.textInFront": "Elött", - "DE.Views.EditChart.textInline": "Sorban", - "DE.Views.EditChart.textMoveText": "Szöveggel mozgat", - "DE.Views.EditChart.textOverlap": "Átfedés engedélyezése", - "DE.Views.EditChart.textRemoveChart": "Diagram eltávolítása", - "DE.Views.EditChart.textReorder": "Újrarendez", - "DE.Views.EditChart.textSize": "Méret", - "DE.Views.EditChart.textSquare": "Négyszögben", - "DE.Views.EditChart.textStyle": "Stílus", - "DE.Views.EditChart.textThrough": "Körbefutva", - "DE.Views.EditChart.textTight": "Szűken", - "DE.Views.EditChart.textToBackground": "Háttérbe küld", - "DE.Views.EditChart.textToForeground": "Előlre hoz", - "DE.Views.EditChart.textTopBottom": "Felül - alul", - "DE.Views.EditChart.textType": "Típus", - "DE.Views.EditChart.textWrap": "Tördel", - "DE.Views.EditHeader.textDiffFirst": "Eltérő első oldal", - "DE.Views.EditHeader.textDiffOdd": "Páros és páratlan oldalak eltérőek", - "DE.Views.EditHeader.textFrom": "Kezdés", - "DE.Views.EditHeader.textPageNumbering": "Oldalszámozás", - "DE.Views.EditHeader.textPrev": "Folytás az előző résztől", - "DE.Views.EditHeader.textSameAs": "Korábbira hivatkozás", - "DE.Views.EditHyperlink.textDisplay": "Megmutat", - "DE.Views.EditHyperlink.textEdit": "Hivatkozás szerkesztése", - "DE.Views.EditHyperlink.textLink": "Link", - "DE.Views.EditHyperlink.textRemove": "Link eltávolítása", - "DE.Views.EditHyperlink.textTip": "Gyorstipp", - "DE.Views.EditImage.textAddress": "Cím", - "DE.Views.EditImage.textAlign": "Rendez", - "DE.Views.EditImage.textBack": "Vissza", - "DE.Views.EditImage.textBackward": "Hátra mozgat", - "DE.Views.EditImage.textBehind": "Mögött", - "DE.Views.EditImage.textDefault": "Valódi méret", - "DE.Views.EditImage.textDistanceText": "Távolság a szövegtől", - "DE.Views.EditImage.textForward": "Előre mozgat", - "DE.Views.EditImage.textFromLibrary": "Kép a galériából", - "DE.Views.EditImage.textFromURL": "Kép URL-en keresztül", - "DE.Views.EditImage.textImageURL": "Kép URL", - "DE.Views.EditImage.textInFront": "Elöl", - "DE.Views.EditImage.textInline": "Sorban", - "DE.Views.EditImage.textLinkSettings": "Link beállítások", - "DE.Views.EditImage.textMoveText": "Szöveggel mozgat", - "DE.Views.EditImage.textOverlap": "Átfedés engedélyezése", - "DE.Views.EditImage.textRemove": "Kép eltávolítása", - "DE.Views.EditImage.textReorder": "Újrarendez", - "DE.Views.EditImage.textReplace": "Cserél", - "DE.Views.EditImage.textReplaceImg": "Képet cserél", - "DE.Views.EditImage.textSquare": "Négyszögben", - "DE.Views.EditImage.textThrough": "Körbefutva", - "DE.Views.EditImage.textTight": "Szűken", - "DE.Views.EditImage.textToBackground": "Háttérbe küld", - "DE.Views.EditImage.textToForeground": "Elölre hoz", - "DE.Views.EditImage.textTopBottom": "Felül - alul", - "DE.Views.EditImage.textWrap": "Tördel", - "DE.Views.EditParagraph.textAddCustomColor": "Egyéni szín hozzáadása", - "DE.Views.EditParagraph.textAdvanced": "Haladó", - "DE.Views.EditParagraph.textAdvSettings": "Haladó beállítások", - "DE.Views.EditParagraph.textAfter": "Utána", - "DE.Views.EditParagraph.textAuto": "Auto", - "DE.Views.EditParagraph.textBack": "Vissza", - "DE.Views.EditParagraph.textBackground": "Háttér", - "DE.Views.EditParagraph.textBefore": "Elötte", - "DE.Views.EditParagraph.textCustomColor": "Egyéni szín", - "DE.Views.EditParagraph.textFirstLine": "Első sor", - "DE.Views.EditParagraph.textFromText": "Távolság a szövegtől", - "DE.Views.EditParagraph.textKeepLines": "Sorok egyben tartása", - "DE.Views.EditParagraph.textKeepNext": "Következővel együtt tartás", - "DE.Views.EditParagraph.textOrphan": "Árva sor", - "DE.Views.EditParagraph.textPageBreak": "Oldaltörés", - "DE.Views.EditParagraph.textPrgStyles": "Bekezdés stílusok", - "DE.Views.EditParagraph.textSpaceBetween": "Bekezdések térköze", - "DE.Views.EditShape.textAddCustomColor": "Egyéni szín hozzáadása", - "DE.Views.EditShape.textAlign": "Rendez", - "DE.Views.EditShape.textBack": "Vissza", - "DE.Views.EditShape.textBackward": "Hátra mozgat", - "DE.Views.EditShape.textBehind": "Mögött", - "DE.Views.EditShape.textBorder": "Szegély", - "DE.Views.EditShape.textColor": "Szín", - "DE.Views.EditShape.textCustomColor": "Egyéni szín", - "DE.Views.EditShape.textEffects": "Effektek", - "DE.Views.EditShape.textFill": "Kitölt", - "DE.Views.EditShape.textForward": "Előre mozgat", - "DE.Views.EditShape.textFromText": "Távolság a szövegtől", - "DE.Views.EditShape.textInFront": "Elöl", - "DE.Views.EditShape.textInline": "Sorban", - "DE.Views.EditShape.textOpacity": "Átlátszóság", - "DE.Views.EditShape.textOverlap": "Átfedés engedélyezése", - "DE.Views.EditShape.textRemoveShape": "Alakzat eltávolítása", - "DE.Views.EditShape.textReorder": "Újrarendez", - "DE.Views.EditShape.textReplace": "Cserél", - "DE.Views.EditShape.textSize": "Méret", - "DE.Views.EditShape.textSquare": "Négyszögben", - "DE.Views.EditShape.textStyle": "Stílus", - "DE.Views.EditShape.textThrough": "Körbefutva", - "DE.Views.EditShape.textTight": "Szűken", - "DE.Views.EditShape.textToBackground": "Háttérbe küld", - "DE.Views.EditShape.textToForeground": "Elölre hoz", - "DE.Views.EditShape.textTopAndBottom": "Felül - alul", - "DE.Views.EditShape.textWithText": "Szöveggel mozgat", - "DE.Views.EditShape.textWrap": "Tördel", - "DE.Views.EditTable.textAddCustomColor": "Egyéni szín hozzáadása", - "DE.Views.EditTable.textAlign": "Rendez", - "DE.Views.EditTable.textBack": "Vissza", - "DE.Views.EditTable.textBandedColumn": "Oszlopok csíkozása", - "DE.Views.EditTable.textBandedRow": "Sorok csíkozása", - "DE.Views.EditTable.textBorder": "Szegély", - "DE.Views.EditTable.textCellMargins": "Cella margók", - "DE.Views.EditTable.textColor": "Szín", - "DE.Views.EditTable.textCustomColor": "Egyéni szín", - "DE.Views.EditTable.textFill": "Kitölt", - "DE.Views.EditTable.textFirstColumn": "Első oszlop", - "DE.Views.EditTable.textFlow": "Flow", - "DE.Views.EditTable.textFromText": "Távolság a szövegtől", - "DE.Views.EditTable.textHeaderRow": "Fejléc sor", - "DE.Views.EditTable.textInline": "Sorban", - "DE.Views.EditTable.textLastColumn": "Utolsó oszlop", - "DE.Views.EditTable.textOptions": "Beállítások", - "DE.Views.EditTable.textRemoveTable": "Táblázat eltávolítása", - "DE.Views.EditTable.textRepeatHeader": "Fejléc sorként megismétel", - "DE.Views.EditTable.textResizeFit": "Átméretez, hogy illeszkedjen a tartalom", - "DE.Views.EditTable.textSize": "Méret", - "DE.Views.EditTable.textStyle": "Stílus", - "DE.Views.EditTable.textStyleOptions": "Stílus beállítások", - "DE.Views.EditTable.textTableOptions": "Táblázat beállítások", - "DE.Views.EditTable.textTotalRow": "Összes sor", - "DE.Views.EditTable.textWithText": "Szöveggel mozgat", - "DE.Views.EditTable.textWrap": "Tördel", - "DE.Views.EditText.textAddCustomColor": "Egyéni szín hozzáadása", - "DE.Views.EditText.textAdditional": "További", - "DE.Views.EditText.textAdditionalFormat": "További formázás", - "DE.Views.EditText.textAllCaps": "Minden nagybetű", - "DE.Views.EditText.textAutomatic": "Automatikus", - "DE.Views.EditText.textBack": "Vissza", - "DE.Views.EditText.textBullets": "Felsorolás", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "s", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Egyéni szín", - "DE.Views.EditText.textDblStrikethrough": "Dupla áthúzás", - "DE.Views.EditText.textDblSuperscript": "Felső index", - "DE.Views.EditText.textFontColor": "Betűszín", - "DE.Views.EditText.textFontColors": "Betűszínek", - "DE.Views.EditText.textFonts": "Betűtípusok", - "DE.Views.EditText.textHighlightColor": "Színes kiemelés", - "DE.Views.EditText.textHighlightColors": "Kiemelő színek", - "DE.Views.EditText.textLetterSpacing": "Betűtávolság", - "DE.Views.EditText.textLineSpacing": "Sortávolság", - "DE.Views.EditText.textNone": "Nincs", - "DE.Views.EditText.textNumbers": "Számozás", - "DE.Views.EditText.textSize": "Méret", - "DE.Views.EditText.textSmallCaps": "Kisbetűk", - "DE.Views.EditText.textStrikethrough": "Áthúzás", - "DE.Views.EditText.textSubscript": "Alsó index", - "DE.Views.Search.textCase": "Feltétel érzékeny", - "DE.Views.Search.textDone": "Kész", - "DE.Views.Search.textFind": "Keres", - "DE.Views.Search.textFindAndReplace": "Keres és cserél", - "DE.Views.Search.textHighlight": "Kiemelés eredményei", - "DE.Views.Search.textReplace": "Cserél", - "DE.Views.Search.textSearch": "Keresés", - "DE.Views.Settings.textAbout": "Névjegy", - "DE.Views.Settings.textAddress": "Cím", - "DE.Views.Settings.textAdvancedSettings": "Alkalmazás beállítások", - "DE.Views.Settings.textApplication": "Alkalmazás", - "DE.Views.Settings.textAuthor": "Szerző", - "DE.Views.Settings.textBack": "Vissza", - "DE.Views.Settings.textBottom": "Alsó", - "DE.Views.Settings.textCentimeter": "Centiméter", - "DE.Views.Settings.textCollaboration": "Együttműködés", - "DE.Views.Settings.textColorSchemes": "Színpaletták", - "DE.Views.Settings.textComment": "Hozzászólás", - "DE.Views.Settings.textCommentingDisplay": "Hozzászólások megjelenítése", - "DE.Views.Settings.textCreated": "Létrehozva", - "DE.Views.Settings.textCreateDate": "Létrehozás dátuma", - "DE.Views.Settings.textCustom": "Egyéni", - "DE.Views.Settings.textCustomSize": "Egyéni méret", - "DE.Views.Settings.textDisableAll": "Összes letiltása", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Minden értesítéssel rendelkező makró letiltása", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Minden értesítés nélküli makró letiltása", - "DE.Views.Settings.textDisplayComments": "Hozzászólások", - "DE.Views.Settings.textDisplayResolvedComments": "Lezárt hozzászólások", - "DE.Views.Settings.textDocInfo": "Dokumentum info", - "DE.Views.Settings.textDocTitle": "Dokumentum címe", - "DE.Views.Settings.textDocumentFormats": "Dokumentum formátum", - "DE.Views.Settings.textDocumentSettings": "Dokumentum beállítások", - "DE.Views.Settings.textDone": "Kész", - "DE.Views.Settings.textDownload": "Letöltés", - "DE.Views.Settings.textDownloadAs": "Letöltés mint...", - "DE.Views.Settings.textEditDoc": "Dokumentum szerkesztése", - "DE.Views.Settings.textEmail": "Email", - "DE.Views.Settings.textEnableAll": "Összes engedélyezése", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Minden értesítés nélküli makró engedélyezése", - "DE.Views.Settings.textFind": "Keres", - "DE.Views.Settings.textFindAndReplace": "Keres és cserél", - "DE.Views.Settings.textFormat": "Formátum", - "DE.Views.Settings.textHelp": "Súgó", - "DE.Views.Settings.textHiddenTableBorders": "Rejtett táblázat szegélyek", - "DE.Views.Settings.textInch": "Hüvelyk", - "DE.Views.Settings.textLandscape": "Tájkép", - "DE.Views.Settings.textLastModified": "Utoljára módosított", - "DE.Views.Settings.textLastModifiedBy": "Utoljára módosította", - "DE.Views.Settings.textLeft": "Bal", - "DE.Views.Settings.textLoading": "Betöltés...", - "DE.Views.Settings.textLocation": "Hely", - "DE.Views.Settings.textMacrosSettings": "Makró beállítások", - "DE.Views.Settings.textMargins": "Margók", - "DE.Views.Settings.textNoCharacters": "Nem nyomtatható karakterek", - "DE.Views.Settings.textOrientation": "Tájolás", - "DE.Views.Settings.textOwner": "Tulajdonos", - "DE.Views.Settings.textPages": "Oldalak", - "DE.Views.Settings.textParagraphs": "Bekezdések", - "DE.Views.Settings.textPoint": "Pont", - "DE.Views.Settings.textPortrait": "Portré", - "DE.Views.Settings.textPoweredBy": "Powered by", - "DE.Views.Settings.textPrint": "Nyomtat", - "DE.Views.Settings.textReader": "Olvasási mód", - "DE.Views.Settings.textReview": "Módosítások követése", - "DE.Views.Settings.textRight": "Jobb", - "DE.Views.Settings.textSettings": "Beállítások", - "DE.Views.Settings.textShowNotification": "Értesítés mutatása", - "DE.Views.Settings.textSpaces": "Térközök", - "DE.Views.Settings.textSpellcheck": "Helyesírás-ellenőrzés", - "DE.Views.Settings.textStatistic": "Statisztika", - "DE.Views.Settings.textSubject": "Tárgy", - "DE.Views.Settings.textSymbols": "Szimbólumok", - "DE.Views.Settings.textTel": "Tel.", - "DE.Views.Settings.textTitle": "Cím", - "DE.Views.Settings.textTop": "Felső", - "DE.Views.Settings.textUnitOfMeasurement": "Mértékegység", - "DE.Views.Settings.textUploaded": "Feltöltve", - "DE.Views.Settings.textVersion": "Verzió", - "DE.Views.Settings.textWords": "Szavak", - "DE.Views.Settings.unknownText": "Ismeretlen", - "DE.Views.Toolbar.textBack": "Vissza" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/it.json b/apps/documenteditor/mobile/locale/it.json index c38a88fb5..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/it.json +++ b/apps/documenteditor/mobile/locale/it.json @@ -1,607 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Aggiungi risposta", - "Common.Controllers.Collaboration.textAtLeast": "Minima", - "Common.Controllers.Collaboration.textAuto": "auto", - "Common.Controllers.Collaboration.textBaseline": "Linea guida", - "Common.Controllers.Collaboration.textBold": "Grassetto", - "Common.Controllers.Collaboration.textBreakBefore": "Anteponi Interruzione di pagina", - "Common.Controllers.Collaboration.textCancel": "Annulla", - "Common.Controllers.Collaboration.textCaps": "Tutto maiuscolo", - "Common.Controllers.Collaboration.textCenter": "Allinea al centro", - "Common.Controllers.Collaboration.textChart": "Grafico", - "Common.Controllers.Collaboration.textColor": "Colore del carattere", - "Common.Controllers.Collaboration.textContextual": "Non aggiungere intervallo tra paragrafi dello stesso stile", - "Common.Controllers.Collaboration.textDelete": "Elimina", - "Common.Controllers.Collaboration.textDeleteComment": "Elimina commento", - "Common.Controllers.Collaboration.textDeleted": "Eliminato:", - "Common.Controllers.Collaboration.textDeleteReply": "Elimina risposta", - "Common.Controllers.Collaboration.textDone": "Fatto", - "Common.Controllers.Collaboration.textDStrikeout": "Barrato doppio", - "Common.Controllers.Collaboration.textEdit": "Modifica", - "Common.Controllers.Collaboration.textEditUser": "Utenti che stanno modificando il file:", - "Common.Controllers.Collaboration.textEquation": "Equazione", - "Common.Controllers.Collaboration.textExact": "Esatto", - "Common.Controllers.Collaboration.textFirstLine": "Prima riga", - "Common.Controllers.Collaboration.textFormatted": "Formattato", - "Common.Controllers.Collaboration.textHighlight": "Colore evidenziatore", - "Common.Controllers.Collaboration.textImage": "Immagine", - "Common.Controllers.Collaboration.textIndentLeft": "Rientro a sinistra", - "Common.Controllers.Collaboration.textIndentRight": "Rientro a destra", - "Common.Controllers.Collaboration.textInserted": "Inserito:", - "Common.Controllers.Collaboration.textItalic": "Corsivo", - "Common.Controllers.Collaboration.textJustify": "Giustificato", - "Common.Controllers.Collaboration.textKeepLines": "Mantieni assieme le righe", - "Common.Controllers.Collaboration.textKeepNext": "Mantieni con il successivo", - "Common.Controllers.Collaboration.textLeft": "Allinea a sinistra", - "Common.Controllers.Collaboration.textLineSpacing": "Interlinea:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Sei sicuro di voler eliminare questo commento?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Sei sicuro di voler eliminare questa risposta?", - "Common.Controllers.Collaboration.textMultiple": "multiplo", - "Common.Controllers.Collaboration.textNoBreakBefore": "Nessuna interruzione di pagina prima", - "Common.Controllers.Collaboration.textNoChanges": "Non ci sono cambiamenti.", - "Common.Controllers.Collaboration.textNoContextual": "Aggiungi intervallo tra paragrafi dello stesso stile", - "Common.Controllers.Collaboration.textNoKeepLines": "Non tenere insieme le linee", - "Common.Controllers.Collaboration.textNoKeepNext": "Non tenere dal prossimo", - "Common.Controllers.Collaboration.textNot": "Non", - "Common.Controllers.Collaboration.textNoWidow": "Non controllare righe isolate", - "Common.Controllers.Collaboration.textNum": "Modifica numerazione", - "Common.Controllers.Collaboration.textParaDeleted": "Paragrafo eliminato ", - "Common.Controllers.Collaboration.textParaFormatted": "Paragrafo formattato ", - "Common.Controllers.Collaboration.textParaInserted": "Paragrafo inserito ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Spostato in basso:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Spostato in alto:", - "Common.Controllers.Collaboration.textParaMoveTo": "Spostato:", - "Common.Controllers.Collaboration.textPosition": "Posizione", - "Common.Controllers.Collaboration.textReopen": "Riapri", - "Common.Controllers.Collaboration.textResolve": "Risolvi", - "Common.Controllers.Collaboration.textRight": "Allinea a destra", - "Common.Controllers.Collaboration.textShape": "Forma", - "Common.Controllers.Collaboration.textShd": "Colore sfondo", - "Common.Controllers.Collaboration.textSmallCaps": "Maiuscoletto", - "Common.Controllers.Collaboration.textSpacing": "Spaziatura", - "Common.Controllers.Collaboration.textSpacingAfter": "Spaziatura dopo", - "Common.Controllers.Collaboration.textSpacingBefore": "Spaziatura prima", - "Common.Controllers.Collaboration.textStrikeout": "Barrato", - "Common.Controllers.Collaboration.textSubScript": "Pedice", - "Common.Controllers.Collaboration.textSuperScript": "Apice", - "Common.Controllers.Collaboration.textTableChanged": "Impostazioni tabella modificate", - "Common.Controllers.Collaboration.textTableRowsAdd": "Righe tabella aggiunte", - "Common.Controllers.Collaboration.textTableRowsDel": "Righe tabella eliminate", - "Common.Controllers.Collaboration.textTabs": "Modifica Schede", - "Common.Controllers.Collaboration.textUnderline": "Sottolineato", - "Common.Controllers.Collaboration.textWidow": "Controllare righe isolate", - "Common.Controllers.Collaboration.textYes": "Sì", - "Common.UI.ThemeColorPalette.textCustomColors": "Colori personalizzati", - "Common.UI.ThemeColorPalette.textStandartColors": "Colori standard", - "Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Accetta", - "Common.Views.Collaboration.textAcceptAllChanges": "Accetta tutte le modifiche", - "Common.Views.Collaboration.textAddReply": "Aggiungi risposta", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Tutti le modifiche accettate (anteprima)", - "Common.Views.Collaboration.textAllChangesEditing": "Tutte le modifiche (revisione)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Tutti le modifiche rifiutate (Anteprima)", - "Common.Views.Collaboration.textBack": "Indietro", - "Common.Views.Collaboration.textCancel": "Annulla", - "Common.Views.Collaboration.textChange": "Modifica revisione", - "Common.Views.Collaboration.textCollaboration": "Collaborazione", - "Common.Views.Collaboration.textDisplayMode": "Modalità Visualizzazione", - "Common.Views.Collaboration.textDone": "Fatto", - "Common.Views.Collaboration.textEditReply": "Modifica risposta", - "Common.Views.Collaboration.textEditUsers": "Utenti", - "Common.Views.Collaboration.textEditСomment": "Modifica commento", - "Common.Views.Collaboration.textFinal": "Finale", - "Common.Views.Collaboration.textMarkup": "Marcatura", - "Common.Views.Collaboration.textNoComments": "Questo documento non contiene commenti", - "Common.Views.Collaboration.textOriginal": "Originale", - "Common.Views.Collaboration.textReject": "Rifiuta", - "Common.Views.Collaboration.textRejectAllChanges": "Annulla tutte le modifiche", - "Common.Views.Collaboration.textReview": "Traccia cambiamenti", - "Common.Views.Collaboration.textReviewing": "Revisione", - "Common.Views.Collaboration.textСomments": "Сommenti", - "DE.Controllers.AddContainer.textImage": "Immagine", - "DE.Controllers.AddContainer.textOther": "Altro", - "DE.Controllers.AddContainer.textShape": "Forma", - "DE.Controllers.AddContainer.textTable": "Tabella", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Avviso", - "DE.Controllers.AddImage.textEmptyImgUrl": "Specifica URL immagine.", - "DE.Controllers.AddImage.txtNotUrl": "Questo campo dovrebbe contenere un URL nel formato 'http://www.example.com'", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Avviso", - "DE.Controllers.AddOther.textBelowText": "Sotto al testo", - "DE.Controllers.AddOther.textBottomOfPage": "Fondo pagina", - "DE.Controllers.AddOther.textCancel": "Annulla", - "DE.Controllers.AddOther.textContinue": "Continua", - "DE.Controllers.AddOther.textDelete": "Elimina", - "DE.Controllers.AddOther.textDeleteDraft": "Sei sicuro di voler eliminare la bozza?", - "DE.Controllers.AddOther.txtNotUrl": "Questo campo dovrebbe contenere un URL nel formato 'http://www.example.com'", - "DE.Controllers.AddTable.textCancel": "Annulla", - "DE.Controllers.AddTable.textColumns": "Colonne", - "DE.Controllers.AddTable.textRows": "Righe", - "DE.Controllers.AddTable.textTableSize": "Dimensioni tabella", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Le azioni di copia, taglia e incolla utilizzando il menu di scelta rapida verranno eseguite solo all'interno del file corrente.", - "DE.Controllers.DocumentHolder.menuAddComment": "Aggiungi commento", - "DE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento", - "DE.Controllers.DocumentHolder.menuCopy": "Copia", - "DE.Controllers.DocumentHolder.menuCut": "Taglia", - "DE.Controllers.DocumentHolder.menuDelete": "Elimina", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Elimina tabella", - "DE.Controllers.DocumentHolder.menuEdit": "Modifica", - "DE.Controllers.DocumentHolder.menuMerge": "Unisci celle", - "DE.Controllers.DocumentHolder.menuMore": "Altro", - "DE.Controllers.DocumentHolder.menuOpenLink": "Apri collegamento", - "DE.Controllers.DocumentHolder.menuPaste": "Incolla", - "DE.Controllers.DocumentHolder.menuReview": "Revisione", - "DE.Controllers.DocumentHolder.menuReviewChange": "Modifica revisione", - "DE.Controllers.DocumentHolder.menuSplit": "Dividi cella", - "DE.Controllers.DocumentHolder.menuViewComment": "Visualizza commento", - "DE.Controllers.DocumentHolder.sheetCancel": "Annulla", - "DE.Controllers.DocumentHolder.textCancel": "Annulla", - "DE.Controllers.DocumentHolder.textColumns": "Colonne", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Azioni copia/taglia/incolla", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Non mostrare più", - "DE.Controllers.DocumentHolder.textGuest": "Ospite", - "DE.Controllers.DocumentHolder.textRows": "Righe", - "DE.Controllers.EditContainer.textChart": "Grafico", - "DE.Controllers.EditContainer.textFooter": "Piè di pagina", - "DE.Controllers.EditContainer.textHeader": "Intestazione", - "DE.Controllers.EditContainer.textHyperlink": "Collegamento ipertestuale", - "DE.Controllers.EditContainer.textImage": "Immagine", - "DE.Controllers.EditContainer.textParagraph": "Paragrafo", - "DE.Controllers.EditContainer.textSettings": "Impostazioni", - "DE.Controllers.EditContainer.textShape": "Forma", - "DE.Controllers.EditContainer.textTable": "Tabella", - "DE.Controllers.EditContainer.textText": "Testo", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Avviso", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Specifica URL immagine.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Questo campo dovrebbe contenere un URL nel formato 'http://www.example.com'", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Avviso", - "DE.Controllers.EditImage.textEmptyImgUrl": "Specifica URL immagine.", - "DE.Controllers.EditImage.txtNotUrl": "Questo campo dovrebbe contenere un URL nel formato 'http://www.example.com'", - "DE.Controllers.EditText.textAuto": "Auto", - "DE.Controllers.EditText.textFonts": "Caratteri", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Inserisci la tua password:", - "DE.Controllers.Main.advDRMOptions": "File protetto", - "DE.Controllers.Main.advDRMPassword": "Password", - "DE.Controllers.Main.advTxtOptions": "Seleziona Opzioni TXT", - "DE.Controllers.Main.applyChangesTextText": "Caricamento dei dati in corso...", - "DE.Controllers.Main.applyChangesTitleText": "Caricamento dei dati", - "DE.Controllers.Main.closeButtonText": "Chiudi File", - "DE.Controllers.Main.convertationTimeoutText": "È stato superato il tempo limite della conversione.", - "DE.Controllers.Main.criticalErrorExtText": "Premere 'OK' per tornare all'elenco dei documenti.", - "DE.Controllers.Main.criticalErrorTitle": "Errore", - "DE.Controllers.Main.downloadErrorText": "Scaricamento fallito.", - "DE.Controllers.Main.downloadMergeText": "Scaricamento in corso...", - "DE.Controllers.Main.downloadMergeTitle": "Scaricamento", - "DE.Controllers.Main.downloadTextText": "Scaricamento del documento in corso...", - "DE.Controllers.Main.downloadTitleText": "Scaricamento del documento", - "DE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.
    Si prega di contattare l'amministratore del Document Server.", - "DE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretto", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Connessione al server persa. Non puoi più modificare.", - "DE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contattare l'Amministratore.
    Quando fai clic sul pulsante 'OK', ti verrà richiesto di scaricare il documento.", - "DE.Controllers.Main.errorDatabaseConnection": "Errore esterno.
    Errore di connessione al database. Si prega di contattare l'assistenza.", - "DE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", - "DE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.", - "DE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore mentre si lavorava sul documento.
    Utilizzare l'opzione 'Scarica' per salvare la copia di backup del file sul disco rigido del computer.", - "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.errorKeyEncrypt": "Descrittore di chiave sconosciuto", - "DE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", - "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.errorOpensource": "Con la versione gratuita Community puoi aprire i documenti in sola visualizzazione. Per accedere agli editor web mobile, è richiesta una licenza commerciale.", - "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. È necessario ricaricare la pagina.", - "DE.Controllers.Main.errorSessionIdle": "È passato troppo tempo dall'ultima modifica apportata al documento. È necessario ricaricare la pagina.", - "DE.Controllers.Main.errorSessionToken": "La connessione al server è stata interrotta, è necessario ricaricare la pagina.", - "DE.Controllers.Main.errorStockChart": "Righe ordinate in modo errato. Per creare un grafico azionario posizionare i dati sul foglio nel seguente ordine:
    prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", - "DE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.
    Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, quindi ricaricare questa pagina.", - "DE.Controllers.Main.errorUserDrop": "Impossibile accedere al file in questo momento.", - "DE.Controllers.Main.errorUsersExceed": "È stato superato il numero di utenti", - "DE.Controllers.Main.errorViewerDisconnect": "Connessione assente. È ancora possibile visualizzare il documento,
    ma non sarà possibile scaricarlo fino a che la connessione verrà ristabilita e la pagina ricaricata.", - "DE.Controllers.Main.leavePageText": "Ci sono delle modifiche non salvate in questo documento. Clicca su 'Rimani in questa pagina, in attesa del salvataggio automatico del documento. Clicca su 'Lascia questa pagina' per annullare le modifiche.", - "DE.Controllers.Main.loadFontsTextText": "Caricamento dei dati in corso...", - "DE.Controllers.Main.loadFontsTitleText": "Caricamento dei dati", - "DE.Controllers.Main.loadFontTextText": "Caricamento dei dati in corso...", - "DE.Controllers.Main.loadFontTitleText": "Caricamento dei dati", - "DE.Controllers.Main.loadImagesTextText": "Caricamento delle immagini in corso...", - "DE.Controllers.Main.loadImagesTitleText": "Caricamento delle immagini", - "DE.Controllers.Main.loadImageTextText": "Caricamento dell'immagine in corso...", - "DE.Controllers.Main.loadImageTitleText": "Caricamento dell'immagine", - "DE.Controllers.Main.loadingDocumentTextText": "Caricamento del documento in corso...", - "DE.Controllers.Main.loadingDocumentTitleText": "Caricamento del documento", - "DE.Controllers.Main.mailMergeLoadFileText": "Caricamento origine dati in corso...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Caricamento origine dati", - "DE.Controllers.Main.notcriticalErrorTitle": "Avviso", - "DE.Controllers.Main.openErrorText": "Si è verificato un errore durante l'apertura del file", - "DE.Controllers.Main.openTextText": "Apertura del documento in corso...", - "DE.Controllers.Main.openTitleText": "Apertura del documento", - "DE.Controllers.Main.printTextText": "Stampa del documento in corso...", - "DE.Controllers.Main.printTitleText": "Stampa del documento", - "DE.Controllers.Main.saveErrorText": "Si è verificato un errore durante il salvataggio del file", - "DE.Controllers.Main.savePreparingText": "Preparazione al salvataggio ", - "DE.Controllers.Main.savePreparingTitle": "Preparazione al salvataggio. Attendere prego...", - "DE.Controllers.Main.saveTextText": "Salvataggio del documento in corso...", - "DE.Controllers.Main.saveTitleText": "Salvataggio del documento", - "DE.Controllers.Main.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", - "DE.Controllers.Main.sendMergeText": "Invio unione in corso...", - "DE.Controllers.Main.sendMergeTitle": "Invio unione", - "DE.Controllers.Main.splitDividerErrorText": "Il numero di righe deve essere un divisore di %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Il numero di colonne deve essere inferiore a% 1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Il numero di righe deve essere inferiore a% 1", - "DE.Controllers.Main.textAnonymous": "Anonimo", - "DE.Controllers.Main.textBack": "Indietro", - "DE.Controllers.Main.textBuyNow": "Visita il sito web", - "DE.Controllers.Main.textCancel": "Annulla", - "DE.Controllers.Main.textClose": "Chiudi", - "DE.Controllers.Main.textContactUs": "Contatta il reparto vendite.", - "DE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore.
    Si prega di contattare il nostro reparto vendite per ottenere un preventivo.", - "DE.Controllers.Main.textDone": "Fatto", - "DE.Controllers.Main.textGuest": "Ospite", - "DE.Controllers.Main.textHasMacros": "Il file contiene delle macro automatiche.
    Vuoi eseguirle?", - "DE.Controllers.Main.textLoadingDocument": "Caricamento del documento", - "DE.Controllers.Main.textNo": "No", - "DE.Controllers.Main.textNoLicenseTitle": "Limite di licenza raggiunto", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Funzionalità a pagamento", - "DE.Controllers.Main.textPassword": "Password", - "DE.Controllers.Main.textPreloader": "Caricamento in corso...", - "DE.Controllers.Main.textRemember": "Ricorda la mia scelta per tutti i file", - "DE.Controllers.Main.textTryUndoRedo": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di co-editing", - "DE.Controllers.Main.textUsername": "Nome utente", - "DE.Controllers.Main.textYes": "Sì", - "DE.Controllers.Main.titleLicenseExp": "La licenza è scaduta", - "DE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato", - "DE.Controllers.Main.titleUpdateVersion": "Versione Modificata", - "DE.Controllers.Main.txtAbove": "sopra", - "DE.Controllers.Main.txtArt": "Il tuo testo qui", - "DE.Controllers.Main.txtBelow": "sotto", - "DE.Controllers.Main.txtCurrentDocument": "Documento corrente", - "DE.Controllers.Main.txtDiagramTitle": "Titolo del grafico", - "DE.Controllers.Main.txtEditingMode": "Imposta la modalità di modifica...", - "DE.Controllers.Main.txtEvenPage": "Pagina pari", - "DE.Controllers.Main.txtFirstPage": "Prima pagina", - "DE.Controllers.Main.txtFooter": "Piè di pagina", - "DE.Controllers.Main.txtHeader": "Intestazione", - "DE.Controllers.Main.txtOddPage": "Pagina dispari", - "DE.Controllers.Main.txtOnPage": "sulla pagina", - "DE.Controllers.Main.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file", - "DE.Controllers.Main.txtSameAsPrev": "come in precedenza", - "DE.Controllers.Main.txtSection": "-Sezione", - "DE.Controllers.Main.txtSeries": "Serie", - "DE.Controllers.Main.txtStyle_footnote_text": "Nota a piè di pagina", - "DE.Controllers.Main.txtStyle_Heading_1": "Titolo 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Titolo 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Titolo 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Titolo 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Titolo 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Titolo 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Titolo 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Titolo 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Titolo 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Citazione profonda", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Elenco Paragrafo", - "DE.Controllers.Main.txtStyle_No_Spacing": "Senza spazi", - "DE.Controllers.Main.txtStyle_Normal": "Normale", - "DE.Controllers.Main.txtStyle_Quote": "Citazione", - "DE.Controllers.Main.txtStyle_Subtitle": "Sottotitolo", - "DE.Controllers.Main.txtStyle_Title": "Titolo", - "DE.Controllers.Main.txtXAxis": "Asse X", - "DE.Controllers.Main.txtYAxis": "Asse Y", - "DE.Controllers.Main.unknownErrorText": "Errore sconosciuto.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", - "DE.Controllers.Main.uploadImageExtMessage": "Formato immagine sconosciuto.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Nessuna immagine caricata.", - "DE.Controllers.Main.uploadImageSizeMessage": "È stata superata la dimensione massima per l'immagine.", - "DE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...", - "DE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine", - "DE.Controllers.Main.waitText": "Attendere prego...", - "DE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee agli editor %1. Questo documento verrà aperto in sola lettura.
    Contatta l’amministratore per saperne di più.", - "DE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
    Si prega di aggiornare la licenza e ricaricare la pagina.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licenza scaduta. Non puoi modificare il documento. Per favore, contatta l'amministratore", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "La licenza dev'essere rinnovata. Hai un accesso limitato alle funzioni di modifica del documento. Per favore, contatta l'amministratore per il pieno accesso", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.", - "DE.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.", - "DE.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.", - "DE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto di modificare il file.", - "DE.Controllers.Search.textNoTextFound": "Testo non trovato", - "DE.Controllers.Search.textReplaceAll": "Sostituisci tutto", - "DE.Controllers.Settings.notcriticalErrorTitle": "Avviso", - "DE.Controllers.Settings.textCustomSize": "Dimensione personalizzata", - "DE.Controllers.Settings.txtLoading": "Caricamento in corso...", - "DE.Controllers.Settings.unknownText": "Sconosciuto", - "DE.Controllers.Settings.warnDownloadAs": "Se continui a salvare in questo formato tutte le funzioni eccetto il testo andranno perse.
    Sei sicuro di voler continuare?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Se continui a salvare in questo formato, parte della formattazione potrebbe andare persa.
    Sei sicuro di voler continuare?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Ci sono delle modifiche non salvate in questo documento. Clicca su 'Rimani in questa pagina, in attesa del salvataggio automatico del documento. Clicca su 'Lascia questa pagina' per annullare le modifiche.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Lascia l'applicazione", - "DE.Controllers.Toolbar.leaveButtonText": "Lascia questa pagina", - "DE.Controllers.Toolbar.stayButtonText": "Rimani su questa pagina", - "DE.Views.AddImage.textAddress": "Indirizzo", - "DE.Views.AddImage.textBack": "Indietro", - "DE.Views.AddImage.textFromLibrary": "Immagine dalla Raccolta", - "DE.Views.AddImage.textFromURL": "Immagine da URL", - "DE.Views.AddImage.textImageURL": "URL dell'immagine", - "DE.Views.AddImage.textInsertImage": "Inserisci immagine", - "DE.Views.AddImage.textLinkSettings": "Impostazioni collegamento", - "DE.Views.AddOther.textAddComment": "Aggiungi commento", - "DE.Views.AddOther.textAddLink": "Aggiungi collegamento", - "DE.Views.AddOther.textBack": "Indietro", - "DE.Views.AddOther.textBreak": "Interruzione", - "DE.Views.AddOther.textCenterBottom": "Centrato in basso", - "DE.Views.AddOther.textCenterTop": "Centrato in alto", - "DE.Views.AddOther.textColumnBreak": "Interrompi Colonna", - "DE.Views.AddOther.textComment": "Commenta", - "DE.Views.AddOther.textContPage": "Pagina continua", - "DE.Views.AddOther.textCurrentPos": "Posizione attuale", - "DE.Views.AddOther.textDisplay": "Visualizza", - "DE.Views.AddOther.textDone": "Fatto", - "DE.Views.AddOther.textEvenPage": "Pagina pari", - "DE.Views.AddOther.textFootnote": "Note a piè di pagina", - "DE.Views.AddOther.textFormat": "Formato", - "DE.Views.AddOther.textInsert": "Inserisci", - "DE.Views.AddOther.textInsertFootnote": "Inserisci nota a piè di pagina", - "DE.Views.AddOther.textLeftBottom": "In basso a sinistra", - "DE.Views.AddOther.textLeftTop": "In alto a sinistra", - "DE.Views.AddOther.textLink": "Collegamento", - "DE.Views.AddOther.textLocation": "Posizione", - "DE.Views.AddOther.textNextPage": "Pagina successiva", - "DE.Views.AddOther.textOddPage": "Pagina dispari", - "DE.Views.AddOther.textPageBreak": "Interruzione di pagina", - "DE.Views.AddOther.textPageNumber": "Numero di Pagina", - "DE.Views.AddOther.textPosition": "Posizione", - "DE.Views.AddOther.textRightBottom": "In basso a destra", - "DE.Views.AddOther.textRightTop": "In alto a destra", - "DE.Views.AddOther.textSectionBreak": "Interrompi sezione", - "DE.Views.AddOther.textStartFrom": "Inizia da", - "DE.Views.AddOther.textTip": "Suggerimento ", - "DE.Views.EditChart.textAddCustomColor": "Aggiungi colore personalizzato", - "DE.Views.EditChart.textAlign": "Allinea", - "DE.Views.EditChart.textBack": "Indietro", - "DE.Views.EditChart.textBackward": "Sposta indietro", - "DE.Views.EditChart.textBehind": "Dietro", - "DE.Views.EditChart.textBorder": "Bordo", - "DE.Views.EditChart.textColor": "Colore", - "DE.Views.EditChart.textCustomColor": "Colore personalizzato", - "DE.Views.EditChart.textDistanceText": "Distanza dal testo", - "DE.Views.EditChart.textFill": "Riempimento", - "DE.Views.EditChart.textForward": "Sposta avanti", - "DE.Views.EditChart.textInFront": "Davanti al testo", - "DE.Views.EditChart.textInline": "In linea", - "DE.Views.EditChart.textMoveText": "Sposta col testo", - "DE.Views.EditChart.textOverlap": "Consenti sovrapposizione", - "DE.Views.EditChart.textRemoveChart": "Elimina Grafico", - "DE.Views.EditChart.textReorder": "Riordina", - "DE.Views.EditChart.textSize": "Dimensione", - "DE.Views.EditChart.textSquare": "Quadrato", - "DE.Views.EditChart.textStyle": "Stile", - "DE.Views.EditChart.textThrough": "All'interno", - "DE.Views.EditChart.textTight": "Ravvicinato", - "DE.Views.EditChart.textToBackground": "Sposta in secondo piano", - "DE.Views.EditChart.textToForeground": "Porta in primo piano", - "DE.Views.EditChart.textTopBottom": "Sopra e sotto", - "DE.Views.EditChart.textType": "Tipo", - "DE.Views.EditChart.textWrap": "Racchiudi", - "DE.Views.EditHeader.textDiffFirst": "Diverso per la prima pagina", - "DE.Views.EditHeader.textDiffOdd": "Diverso per pagine pari e dispari", - "DE.Views.EditHeader.textFrom": "Inizia da", - "DE.Views.EditHeader.textPageNumbering": "Numerazione pagina", - "DE.Views.EditHeader.textPrev": "Continua dalla selezione precedente", - "DE.Views.EditHeader.textSameAs": "Collega al precedente", - "DE.Views.EditHyperlink.textDisplay": "Visualizza", - "DE.Views.EditHyperlink.textEdit": "Modifica collegamento", - "DE.Views.EditHyperlink.textLink": "Collegamento", - "DE.Views.EditHyperlink.textRemove": "Elimina Collegamento", - "DE.Views.EditHyperlink.textTip": "Suggerimento ", - "DE.Views.EditImage.textAddress": "Indirizzo", - "DE.Views.EditImage.textAlign": "Allinea", - "DE.Views.EditImage.textBack": "Indietro", - "DE.Views.EditImage.textBackward": "Sposta indietro", - "DE.Views.EditImage.textBehind": "Dietro", - "DE.Views.EditImage.textDefault": "Dimensione reale", - "DE.Views.EditImage.textDistanceText": "Distanza dal testo", - "DE.Views.EditImage.textForward": "Sposta avanti", - "DE.Views.EditImage.textFromLibrary": "Immagine dalla Raccolta", - "DE.Views.EditImage.textFromURL": "Immagine da URL", - "DE.Views.EditImage.textImageURL": "URL dell'immagine", - "DE.Views.EditImage.textInFront": "Davanti al testo", - "DE.Views.EditImage.textInline": "In linea", - "DE.Views.EditImage.textLinkSettings": "Impostazioni collegamento", - "DE.Views.EditImage.textMoveText": "Sposta col testo", - "DE.Views.EditImage.textOverlap": "Consenti sovrapposizione", - "DE.Views.EditImage.textRemove": "Elimina Immagine", - "DE.Views.EditImage.textReorder": "Riordina", - "DE.Views.EditImage.textReplace": "Sostituisci", - "DE.Views.EditImage.textReplaceImg": "Sostituisci immagine", - "DE.Views.EditImage.textSquare": "Quadrato", - "DE.Views.EditImage.textThrough": "All'interno", - "DE.Views.EditImage.textTight": "Ravvicinato", - "DE.Views.EditImage.textToBackground": "Sposta in secondo piano", - "DE.Views.EditImage.textToForeground": "Porta in primo piano", - "DE.Views.EditImage.textTopBottom": "Sopra e sotto", - "DE.Views.EditImage.textWrap": "Racchiudi", - "DE.Views.EditParagraph.textAddCustomColor": "Aggiungi colore personalizzato", - "DE.Views.EditParagraph.textAdvanced": "Avanzate", - "DE.Views.EditParagraph.textAdvSettings": "Impostazioni avanzate", - "DE.Views.EditParagraph.textAfter": "Dopo", - "DE.Views.EditParagraph.textAuto": "Auto", - "DE.Views.EditParagraph.textBack": "Indietro", - "DE.Views.EditParagraph.textBackground": "Sfondo", - "DE.Views.EditParagraph.textBefore": "Prima", - "DE.Views.EditParagraph.textCustomColor": "Colore personalizzato", - "DE.Views.EditParagraph.textFirstLine": "Prima riga", - "DE.Views.EditParagraph.textFromText": "Distanza dal testo", - "DE.Views.EditParagraph.textKeepLines": "Mantieni assieme le righe", - "DE.Views.EditParagraph.textKeepNext": "Mantieni con il successivo", - "DE.Views.EditParagraph.textOrphan": "Controllo righe isolate", - "DE.Views.EditParagraph.textPageBreak": "Anteponi Interruzione di pagina", - "DE.Views.EditParagraph.textPrgStyles": "Stili Paragrafo", - "DE.Views.EditParagraph.textSpaceBetween": "Spazio fra Paragrafi", - "DE.Views.EditShape.textAddCustomColor": "Aggiungi colore personalizzato", - "DE.Views.EditShape.textAlign": "Allinea", - "DE.Views.EditShape.textBack": "Indietro", - "DE.Views.EditShape.textBackward": "Sposta indietro", - "DE.Views.EditShape.textBehind": "Dietro", - "DE.Views.EditShape.textBorder": "Bordo", - "DE.Views.EditShape.textColor": "Colore", - "DE.Views.EditShape.textCustomColor": "Colore personalizzato", - "DE.Views.EditShape.textEffects": "Effetti", - "DE.Views.EditShape.textFill": "Riempimento", - "DE.Views.EditShape.textForward": "Sposta avanti", - "DE.Views.EditShape.textFromText": "Distanza dal testo", - "DE.Views.EditShape.textInFront": "Davanti al testo", - "DE.Views.EditShape.textInline": "In linea", - "DE.Views.EditShape.textOpacity": "Opacità", - "DE.Views.EditShape.textOverlap": "Consenti sovrapposizione", - "DE.Views.EditShape.textRemoveShape": "Elimina Forma", - "DE.Views.EditShape.textReorder": "Riordina", - "DE.Views.EditShape.textReplace": "Sostituisci", - "DE.Views.EditShape.textSize": "Dimensione", - "DE.Views.EditShape.textSquare": "Quadrato", - "DE.Views.EditShape.textStyle": "Stile", - "DE.Views.EditShape.textThrough": "All'interno", - "DE.Views.EditShape.textTight": "Ravvicinato", - "DE.Views.EditShape.textToBackground": "Sposta in secondo piano", - "DE.Views.EditShape.textToForeground": "Porta in primo piano", - "DE.Views.EditShape.textTopAndBottom": "Sopra e sotto", - "DE.Views.EditShape.textWithText": "Sposta col testo", - "DE.Views.EditShape.textWrap": "Racchiudi", - "DE.Views.EditTable.textAddCustomColor": "Aggiungi colore personalizzato", - "DE.Views.EditTable.textAlign": "Allinea", - "DE.Views.EditTable.textBack": "Indietro", - "DE.Views.EditTable.textBandedColumn": "Unisci colonna", - "DE.Views.EditTable.textBandedRow": "Unisci cella", - "DE.Views.EditTable.textBorder": "Bordo", - "DE.Views.EditTable.textCellMargins": "Margini cella", - "DE.Views.EditTable.textColor": "Colore", - "DE.Views.EditTable.textCustomColor": "Colore personalizzato", - "DE.Views.EditTable.textFill": "Riempimento", - "DE.Views.EditTable.textFirstColumn": "Prima colonna", - "DE.Views.EditTable.textFlow": "Flusso", - "DE.Views.EditTable.textFromText": "Distanza dal testo", - "DE.Views.EditTable.textHeaderRow": "Riga di intestazione", - "DE.Views.EditTable.textInline": "In linea", - "DE.Views.EditTable.textLastColumn": "Ultima Colonna", - "DE.Views.EditTable.textOptions": "Opzioni", - "DE.Views.EditTable.textRemoveTable": "Elimina Tabella", - "DE.Views.EditTable.textRepeatHeader": "Ripeti come riga di intestazione", - "DE.Views.EditTable.textResizeFit": "Ridimensiona per adattare il contenuto", - "DE.Views.EditTable.textSize": "Dimensione", - "DE.Views.EditTable.textStyle": "Stile", - "DE.Views.EditTable.textStyleOptions": "Opzioni stile", - "DE.Views.EditTable.textTableOptions": "Opzioni Tabella", - "DE.Views.EditTable.textTotalRow": "Riga del Totale", - "DE.Views.EditTable.textWithText": "Sposta col testo", - "DE.Views.EditTable.textWrap": "Racchiudi", - "DE.Views.EditText.textAddCustomColor": "Aggiungi colore personalizzato", - "DE.Views.EditText.textAdditional": "Più...", - "DE.Views.EditText.textAdditionalFormat": "Formattazione aggiuntiva", - "DE.Views.EditText.textAllCaps": "Tutto maiuscolo", - "DE.Views.EditText.textAutomatic": "Automatico", - "DE.Views.EditText.textBack": "Indietro", - "DE.Views.EditText.textBullets": "Elenchi puntati", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "S", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Colore personalizzato", - "DE.Views.EditText.textDblStrikethrough": "Barrato doppio", - "DE.Views.EditText.textDblSuperscript": "Apice", - "DE.Views.EditText.textFontColor": "Colore del carattere", - "DE.Views.EditText.textFontColors": "Colori del Carattere", - "DE.Views.EditText.textFonts": "Caratteri", - "DE.Views.EditText.textHighlightColor": "Colore evidenziatore", - "DE.Views.EditText.textHighlightColors": "Colori evidenziatore", - "DE.Views.EditText.textLetterSpacing": "Spaziatura del carattere", - "DE.Views.EditText.textLineSpacing": "Interlinea", - "DE.Views.EditText.textNone": "Nessuno", - "DE.Views.EditText.textNumbers": "Numeri", - "DE.Views.EditText.textSize": "Dimensione", - "DE.Views.EditText.textSmallCaps": "Maiuscoletto", - "DE.Views.EditText.textStrikethrough": "Barrato", - "DE.Views.EditText.textSubscript": "Pedice", - "DE.Views.Search.textCase": "Sensibile al maiuscolo/minuscolo", - "DE.Views.Search.textDone": "Fatto", - "DE.Views.Search.textFind": "Trova", - "DE.Views.Search.textFindAndReplace": "Trova e sostituisci", - "DE.Views.Search.textHighlight": "Evidenzia risultati", - "DE.Views.Search.textReplace": "Sostituisci", - "DE.Views.Search.textSearch": "Cerca", - "DE.Views.Settings.textAbout": "Informazioni su", - "DE.Views.Settings.textAddress": "indirizzo", - "DE.Views.Settings.textAdvancedSettings": "Impostazioni Applicazione", - "DE.Views.Settings.textApplication": "Applicazione", - "DE.Views.Settings.textAuthor": "Autore", - "DE.Views.Settings.textBack": "Indietro", - "DE.Views.Settings.textBottom": "In basso", - "DE.Views.Settings.textCentimeter": "Centimetro", - "DE.Views.Settings.textCollaboration": "Collaborazione", - "DE.Views.Settings.textColorSchemes": "Combinazioni di colore", - "DE.Views.Settings.textComment": "Commento", - "DE.Views.Settings.textCommentingDisplay": "Visualizzazione dei Commenti", - "DE.Views.Settings.textCreated": "Creato", - "DE.Views.Settings.textCreateDate": "Data di creazione", - "DE.Views.Settings.textCustom": "Personalizzato", - "DE.Views.Settings.textCustomSize": "Dimensione personalizzata", - "DE.Views.Settings.textDisableAll": "Disabilita tutto", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Disabilita tutte le macro con notifica", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Disabilita tutte le macro senza notifica", - "DE.Views.Settings.textDisplayComments": "Commenti", - "DE.Views.Settings.textDisplayResolvedComments": "Commenti risolti", - "DE.Views.Settings.textDocInfo": "Informazioni sul documento", - "DE.Views.Settings.textDocTitle": "Titolo documento", - "DE.Views.Settings.textDocumentFormats": "Formati del documento", - "DE.Views.Settings.textDocumentSettings": "Impostazioni del documento", - "DE.Views.Settings.textDone": "Fatto", - "DE.Views.Settings.textDownload": "Scarica", - "DE.Views.Settings.textDownloadAs": "Scarica come...", - "DE.Views.Settings.textEditDoc": "Modifica documento", - "DE.Views.Settings.textEmail": "email", - "DE.Views.Settings.textEnableAll": "Abilita tutto", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Abilita tutte le macro senza notifica", - "DE.Views.Settings.textFind": "Trova", - "DE.Views.Settings.textFindAndReplace": "Trova e sostituisci", - "DE.Views.Settings.textFormat": "Formato", - "DE.Views.Settings.textHelp": "Guida", - "DE.Views.Settings.textHiddenTableBorders": "Bordi tabella nascosti", - "DE.Views.Settings.textInch": "Pollice", - "DE.Views.Settings.textLandscape": "Orizzontale", - "DE.Views.Settings.textLastModified": "Ultima modifica", - "DE.Views.Settings.textLastModifiedBy": "Ultima modifica di", - "DE.Views.Settings.textLeft": "A sinistra", - "DE.Views.Settings.textLoading": "Caricamento in corso...", - "DE.Views.Settings.textLocation": "Posizione", - "DE.Views.Settings.textMacrosSettings": "Impostazioni macro", - "DE.Views.Settings.textMargins": "Margini", - "DE.Views.Settings.textNoCharacters": "Caratteri non stampabili", - "DE.Views.Settings.textOrientation": "Orientamento", - "DE.Views.Settings.textOwner": "Proprietario", - "DE.Views.Settings.textPages": "Pagine", - "DE.Views.Settings.textParagraphs": "Paragrafi", - "DE.Views.Settings.textPoint": "Punto", - "DE.Views.Settings.textPortrait": "Verticale", - "DE.Views.Settings.textPoweredBy": "Con tecnologia", - "DE.Views.Settings.textPrint": "Stampa", - "DE.Views.Settings.textReader": "Modalità Lettore", - "DE.Views.Settings.textReview": "Traccia cambiamenti", - "DE.Views.Settings.textRight": "A destra", - "DE.Views.Settings.textSettings": "Impostazioni", - "DE.Views.Settings.textShowNotification": "Mostra notifica", - "DE.Views.Settings.textSpaces": "Spazi", - "DE.Views.Settings.textSpellcheck": "Controllo ortografico", - "DE.Views.Settings.textStatistic": "Statistica", - "DE.Views.Settings.textSubject": "Oggetto", - "DE.Views.Settings.textSymbols": "Simboli", - "DE.Views.Settings.textTel": "Tel.", - "DE.Views.Settings.textTitle": "Titolo documento", - "DE.Views.Settings.textTop": "In alto", - "DE.Views.Settings.textUnitOfMeasurement": "Unità di misura", - "DE.Views.Settings.textUploaded": "Caricato", - "DE.Views.Settings.textVersion": "Versione", - "DE.Views.Settings.textWords": "Parole", - "DE.Views.Settings.unknownText": "Sconosciuto", - "DE.Views.Toolbar.textBack": "Indietro" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ja.json b/apps/documenteditor/mobile/locale/ja.json index deb8a82da..5f41ac0e3 100644 --- a/apps/documenteditor/mobile/locale/ja.json +++ b/apps/documenteditor/mobile/locale/ja.json @@ -2,12 +2,61 @@ "About": { "textAbout": "情報", "textAddress": "アドレス", - "textBack": "戻る" + "textBack": "戻る", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" }, "Add": { "textAddLink": "リンクを追加", "textAddress": "アドレス", - "textBack": "戻る" + "textBack": "戻る", + "textCancel": "キャンセル", + "notcriticalErrorTitle": "Warning", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Common": { "Collaboration": { @@ -20,12 +69,118 @@ "textAllChangesRejectedPreview": "すべての変更が拒否されました(プレビュー)", "textAuto": "自動", "textBack": "戻る", - "textShd": "背景色" + "textCancel": "キャンセル", + "textCenter": "中央揃え", + "textDelete": "削除", + "textDone": "完了", + "textLeft": "左揃え", + "textRight": "右揃え", + "textShd": "背景色", + "notcriticalErrorTitle": "Warning", + "textAtLeast": "at least", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCaps": "All caps", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textShape": "Shape", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" } }, "ContextMenu": { "menuAddComment": "コメントを追加", - "menuAddLink": "リンクを追加" + "menuAddLink": "リンクを追加", + "menuCancel": "キャンセル", + "menuDelete": "削除", + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" }, "Edit": { "textActualSize": "実際のサイズ", @@ -37,16 +192,386 @@ "textAuto": "自動", "textAutomatic": "自動", "textBack": "戻る", - "textBackground": "背景" + "textBackground": "背景", + "textNone": "なし", + "notcriticalErrorTitle": "Warning", + "textAdditional": "Additional", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap" + }, + "LongActions": { + "downloadMergeText": "ダウンロード中...", + "downloadMergeTitle": "ダウンロード中", + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." }, "Main": { - "textAnonymous": "匿名" + "SDK": { + "Heading 1": "見出し1", + "Heading 2": "見出し2", + "Heading 3": "見出し3", + "Heading 4": "見出し4", + "Heading 5": "見出し5", + "Heading 6": "見出し6", + "Heading 7": "見出し7", + "Heading 8": "見出し8", + "Heading 9": "見出し9", + "None": "なし", + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "匿名", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." }, "Settings": { "textAbout": "情報", "textApplication": "アプリ", "textApplicationSettings": "アプリ設定", "textAuthor": "作成者", - "textBack": "戻る" + "textBack": "戻る", + "textCancel": "キャンセル", + "textDone": "完了", + "textDownload": "ダウンロード", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textBottom": "Bottom", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ko.json b/apps/documenteditor/mobile/locale/ko.json index bc400a747..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/ko.json +++ b/apps/documenteditor/mobile/locale/ko.json @@ -1,403 +1,577 @@ { - "Common.Controllers.Collaboration.textJustify": "양끝 정렬", - "Common.UI.ThemeColorPalette.textStandartColors": "표준 색상", - "Common.UI.ThemeColorPalette.textThemeColors": "테마 색", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "DE.Controllers.AddContainer.textImage": "이미지", - "DE.Controllers.AddContainer.textOther": "기타", - "DE.Controllers.AddContainer.textShape": "Shape", - "DE.Controllers.AddContainer.textTable": "테이블", - "DE.Controllers.AddImage.textEmptyImgUrl": "이미지 URL을 지정해야합니다.", - "DE.Controllers.AddImage.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", - "DE.Controllers.AddOther.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", - "DE.Controllers.AddTable.textCancel": "취소", - "DE.Controllers.AddTable.textColumns": "열", - "DE.Controllers.AddTable.textRows": "Rows", - "DE.Controllers.AddTable.textTableSize": "표 크기", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "복사, 잘라내기 및 붙여 넣기 작업", - "DE.Controllers.DocumentHolder.menuAddLink": "링크 추가", - "DE.Controllers.DocumentHolder.menuCopy": "복사", - "DE.Controllers.DocumentHolder.menuCut": "잘라 내기", - "DE.Controllers.DocumentHolder.menuDelete": "삭제", - "DE.Controllers.DocumentHolder.menuEdit": "편집", - "DE.Controllers.DocumentHolder.menuMore": "More", - "DE.Controllers.DocumentHolder.menuOpenLink": "링크 열기", - "DE.Controllers.DocumentHolder.menuPaste": "붙여 넣기", - "DE.Controllers.DocumentHolder.menuReview": "다시보기", - "DE.Controllers.DocumentHolder.sheetCancel": "취소", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "복사, 잘라내기 및 붙여 넣기", - "DE.Controllers.DocumentHolder.textGuest": "Guest", - "DE.Controllers.EditContainer.textChart": "차트", - "DE.Controllers.EditContainer.textFooter": "꼬리말", - "DE.Controllers.EditContainer.textHeader": "머리글", - "DE.Controllers.EditContainer.textHyperlink": "하이퍼 링크", - "DE.Controllers.EditContainer.textImage": "이미지", - "DE.Controllers.EditContainer.textParagraph": "단락", - "DE.Controllers.EditContainer.textSettings": "설정", - "DE.Controllers.EditContainer.textShape": "Shape", - "DE.Controllers.EditContainer.textTable": "테이블", - "DE.Controllers.EditContainer.textText": "텍스트", - "DE.Controllers.EditImage.textEmptyImgUrl": "이미지 URL을 지정해야합니다.", - "DE.Controllers.EditImage.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", - "DE.Controllers.EditText.textAuto": "Auto", - "DE.Controllers.EditText.textFonts": "글꼴", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "비밀번호를 입력하십시오 :", - "DE.Controllers.Main.advDRMOptions": "보호 된 파일", - "DE.Controllers.Main.advDRMPassword": "Password", - "DE.Controllers.Main.advTxtOptions": "TXT 옵션 선택", - "DE.Controllers.Main.applyChangesTextText": "데이터로드 중 ...", - "DE.Controllers.Main.applyChangesTitleText": "데이터로드 중", - "DE.Controllers.Main.closeButtonText": "파일 닫기", - "DE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", - "DE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 '확인'을 누르십시오.", - "DE.Controllers.Main.criticalErrorTitle": "오류", - "DE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.", - "DE.Controllers.Main.downloadMergeText": "다운로드 중 ...", - "DE.Controllers.Main.downloadMergeTitle": "다운로드 중", - "DE.Controllers.Main.downloadTextText": "문서 다운로드 중 ...", - "DE.Controllers.Main.downloadTitleText": "문서 다운로드 중", - "DE.Controllers.Main.errorBadImageUrl": "이미지 URL이 잘못되었습니다.", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "서버 연결이 끊어졌습니다. 더 이상 편집 할 수 없습니다.", - "DE.Controllers.Main.errorConnectToServer": "문서를 저장할 수 없습니다. 연결 설정을 확인하거나 관리자에게 문의하십시오.
    '확인'버튼을 클릭하면 문서를 다운로드하라는 메시지가 나타납니다.", - "DE.Controllers.Main.errorDatabaseConnection": "외부 오류입니다.
    데이터베이스 연결 오류입니다. 지원팀에 문의하십시오.", - "DE.Controllers.Main.errorDataRange": "잘못된 데이터 범위입니다.", - "DE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1", - "DE.Controllers.Main.errorEditingDownloadas": "문서에 작업하는 도중에 에러가 발생했습니다.
    '다운로드' 옵션을 사용해서 컴퓨터에 백업본을 저장해 주세요.", - "DE.Controllers.Main.errorFilePassProtect": "이 문서는 암호로 보호되어있어 열 수 없습니다.", - "DE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자", - "DE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다", - "DE.Controllers.Main.errorMailMergeLoadFile": "로드 실패", - "DE.Controllers.Main.errorMailMergeSaveFile": "병합하지 못했습니다.", - "DE.Controllers.Main.errorProcessSaveResult": "저장이 실패했습니다.", - "DE.Controllers.Main.errorServerVersion": "편집기 버전이 업데이트되었습니다. 페이지가 다시로드되어 변경 사항이 적용됩니다.", - "DE.Controllers.Main.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 다음 순서로 시트에 데이터를 배치하십시오 :
    개시 가격, 최대 가격, 최소 가격, 마감 가격.", - "DE.Controllers.Main.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", - "DE.Controllers.Main.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", - "DE.Controllers.Main.errorUsersExceed": "사용자 수가 초과되었습니다", - "DE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는

    하지만 연결이 복원 될 때까지 다운로드 할 수 없습니다.", - "DE.Controllers.Main.leavePageText": "이 문서에서 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 있으면 문서의 자동 저장을 기다릴 수 있습니다. 저장하지 않은 모든 변경 사항을 취소하려면 '이 페이지 남겨두기'를 클릭하십시오.", - "DE.Controllers.Main.loadFontsTextText": "데이터로드 중 ...", - "DE.Controllers.Main.loadFontsTitleText": "데이터로드 중", - "DE.Controllers.Main.loadFontTextText": "데이터로드 중 ...", - "DE.Controllers.Main.loadFontTitleText": "데이터로드 중", - "DE.Controllers.Main.loadImagesTextText": "이미지로드 중 ...", - "DE.Controllers.Main.loadImagesTitleText": "이미지로드 중", - "DE.Controllers.Main.loadImageTextText": "이미지로드 중 ...", - "DE.Controllers.Main.loadImageTitleText": "이미지로드 중", - "DE.Controllers.Main.loadingDocumentTextText": "문서로드 중 ...", - "DE.Controllers.Main.loadingDocumentTitleText": "문서로드 중", - "DE.Controllers.Main.mailMergeLoadFileText": "데이터 소스로드 중 ...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "데이터 소스로드 중", - "DE.Controllers.Main.notcriticalErrorTitle": "경고", - "DE.Controllers.Main.openErrorText": "파일을 여는 동안 오류가 발생했습니다.", - "DE.Controllers.Main.openTextText": "문서 열기 중 ...", - "DE.Controllers.Main.openTitleText": "문서 열기", - "DE.Controllers.Main.printTextText": "문서 인쇄 중 ...", - "DE.Controllers.Main.printTitleText": "문서 인쇄 중", - "DE.Controllers.Main.saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", - "DE.Controllers.Main.savePreparingText": "저장 준비 중", - "DE.Controllers.Main.savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", - "DE.Controllers.Main.saveTextText": "문서 저장 중 ...", - "DE.Controllers.Main.saveTitleText": "문서 저장 중", - "DE.Controllers.Main.scriptLoadError": "연결 속도가 느려, 일부 요소들이 로드되지 않았습니다. 페이지를 다시 새로 고침해주세요.", - "DE.Controllers.Main.sendMergeText": "Sending Merge ...", - "DE.Controllers.Main.sendMergeTitle": "Sending Merge", - "DE.Controllers.Main.splitDividerErrorText": "행 수는 % 1의 제수 여야합니다", - "DE.Controllers.Main.splitMaxColsErrorText": "열 수가 % 1보다 작아야합니다", - "DE.Controllers.Main.splitMaxRowsErrorText": "행 수가 % 1보다 작아야합니다", - "DE.Controllers.Main.textAnonymous": "익명", - "DE.Controllers.Main.textBack": "Back", - "DE.Controllers.Main.textBuyNow": "웹 사이트 방문", - "DE.Controllers.Main.textCancel": "취소", - "DE.Controllers.Main.textClose": "닫기", - "DE.Controllers.Main.textContactUs": "영업 부서", - "DE.Controllers.Main.textDone": "완료", - "DE.Controllers.Main.textLoadingDocument": "문서로드 중", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE 연결 제한", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "유료 기능", - "DE.Controllers.Main.textPassword": "Password", - "DE.Controllers.Main.textPreloader": "로드 중 ...", - "DE.Controllers.Main.textTryUndoRedo": "빠른 공동 편집 모드에서 실행 취소 / 다시 실행 기능을 사용할 수 없습니다.", - "DE.Controllers.Main.textUsername": "사용자 이름", - "DE.Controllers.Main.titleLicenseExp": "라이센스 만료", - "DE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다.", - "DE.Controllers.Main.titleUpdateVersion": "버전이 변경되었습니다.", - "DE.Controllers.Main.txtArt": "여기에 귀하의 텍스트", - "DE.Controllers.Main.txtDiagramTitle": "차트 제목", - "DE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...", - "DE.Controllers.Main.txtFooter": "Footer", - "DE.Controllers.Main.txtHeader": "머리글", - "DE.Controllers.Main.txtSeries": "Series", - "DE.Controllers.Main.txtStyle_footnote_text": "꼬리말 글", - "DE.Controllers.Main.txtStyle_Heading_1": "제목 1", - "DE.Controllers.Main.txtStyle_Heading_2": "제목 2", - "DE.Controllers.Main.txtStyle_Heading_3": "제목 3", - "DE.Controllers.Main.txtStyle_Heading_4": "제목 4", - "DE.Controllers.Main.txtStyle_Heading_5": "제목 5", - "DE.Controllers.Main.txtStyle_Heading_6": "제목 6", - "DE.Controllers.Main.txtStyle_Heading_7": "제목 7", - "DE.Controllers.Main.txtStyle_Heading_8": "제목 8", - "DE.Controllers.Main.txtStyle_Heading_9": "제목 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "강렬한 견적", - "DE.Controllers.Main.txtStyle_List_Paragraph": "목록 단락", - "DE.Controllers.Main.txtStyle_No_Spacing": "간격 없음", - "DE.Controllers.Main.txtStyle_Normal": "Normal", - "DE.Controllers.Main.txtStyle_Quote": "Quote", - "DE.Controllers.Main.txtStyle_Subtitle": "자막", - "DE.Controllers.Main.txtStyle_Title": "제목", - "DE.Controllers.Main.txtXAxis": "X 축", - "DE.Controllers.Main.txtYAxis": "Y 축", - "DE.Controllers.Main.unknownErrorText": "알 수없는 오류.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", - "DE.Controllers.Main.uploadImageExtMessage": "알 수없는 이미지 형식입니다.", - "DE.Controllers.Main.uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maximium 이미지 크기 제한을 초과했습니다.", - "DE.Controllers.Main.uploadImageTextText": "이미지 업로드 중 ...", - "DE.Controllers.Main.uploadImageTitleText": "이미지 업로드 중", - "DE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다.
    라이센스를 업데이트하고 페이지를 새로 고침하십시오.", - "DE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자는 문서 서버에 대한 동시 연결에 특정 제한 사항이 있습니다.
    더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", - "DE.Controllers.Main.warnNoLicenseUsers": "%1 편집자의이 버전은 동시 사용자에게 일정한 제한이 있습니다.
    더 필요한 것이 있으면 현재 라이센스를 업그레이드하거나 상용 라이센스를 구입하십시오.", - "DE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.", - "DE.Controllers.Search.textNoTextFound": "텍스트를 찾을 수 없습니다", - "DE.Controllers.Search.textReplaceAll": "모두 바꾸기", - "DE.Controllers.Settings.notcriticalErrorTitle": "경고", - "DE.Controllers.Settings.txtLoading": "로드 중 ...", - "DE.Controllers.Settings.unknownText": "알 수 없음", - "DE.Controllers.Settings.warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "이 문서에 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 있으면 문서의 자동 저장을 기다릴 수 있습니다. 저장하지 않은 모든 변경 사항을 취소하려면 '이 페이지를 남겨주세요'를 클릭하십시오.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "응용 프로그램을 종료합니다", - "DE.Controllers.Toolbar.leaveButtonText": "이 페이지를 남겨주세요", - "DE.Controllers.Toolbar.stayButtonText": "이 페이지에 머물러 라.", - "DE.Views.AddImage.textAddress": "주소", - "DE.Views.AddImage.textBack": "뒤로", - "DE.Views.AddImage.textFromLibrary": "그림 라이브러리에서", - "DE.Views.AddImage.textFromURL": "URL에서 그림", - "DE.Views.AddImage.textImageURL": "이미지 URL", - "DE.Views.AddImage.textInsertImage": "이미지 삽입", - "DE.Views.AddImage.textLinkSettings": "링크 설정", - "DE.Views.AddOther.textAddLink": "링크 추가", - "DE.Views.AddOther.textBack": "뒤로", - "DE.Views.AddOther.textCenterBottom": "Center Bottom", - "DE.Views.AddOther.textCenterTop": "센터 상단", - "DE.Views.AddOther.textColumnBreak": "열 나누기", - "DE.Views.AddOther.textContPage": "연속 페이지", - "DE.Views.AddOther.textCurrentPos": "현재 위치", - "DE.Views.AddOther.textDisplay": "표시", - "DE.Views.AddOther.textEvenPage": "짝수 페이지", - "DE.Views.AddOther.textInsert": "삽입", - "DE.Views.AddOther.textLeftBottom": "왼쪽 아래", - "DE.Views.AddOther.textLeftTop": "왼쪽 상단", - "DE.Views.AddOther.textLink": "링크", - "DE.Views.AddOther.textNextPage": "다음 페이지", - "DE.Views.AddOther.textOddPage": "홀수 페이지", - "DE.Views.AddOther.textPageBreak": "페이지 나누기", - "DE.Views.AddOther.textPageNumber": "페이지 번호", - "DE.Views.AddOther.textPosition": "위치", - "DE.Views.AddOther.textRightBottom": "오른쪽 아래", - "DE.Views.AddOther.textRightTop": "오른쪽 상단", - "DE.Views.AddOther.textSectionBreak": "섹션 나누기", - "DE.Views.AddOther.textTip": "화면 팁", - "DE.Views.EditChart.textAlign": "정렬", - "DE.Views.EditChart.textBack": "뒤로", - "DE.Views.EditChart.textBackward": "뒤로 이동", - "DE.Views.EditChart.textBehind": "Behind", - "DE.Views.EditChart.textBorder": "테두리", - "DE.Views.EditChart.textColor": "Color", - "DE.Views.EditChart.textDistanceText": "텍스트로부터의 거리", - "DE.Views.EditChart.textFill": "채우기", - "DE.Views.EditChart.textForward": "앞으로 이동", - "DE.Views.EditChart.textInFront": "In Front", - "DE.Views.EditChart.textInline": "인라인", - "DE.Views.EditChart.textMoveText": "텍스트와 함께 이동", - "DE.Views.EditChart.textOverlap": "오버랩 허용", - "DE.Views.EditChart.textRemoveChart": "차트 제거", - "DE.Views.EditChart.textReorder": "재정렬", - "DE.Views.EditChart.textSize": "크기", - "DE.Views.EditChart.textSquare": "Square", - "DE.Views.EditChart.textStyle": "스타일", - "DE.Views.EditChart.textThrough": "통해", - "DE.Views.EditChart.textTight": "Tight", - "DE.Views.EditChart.textToBackground": "배경으로 보내기", - "DE.Views.EditChart.textToForeground": "포 그라운드로 가져 오기", - "DE.Views.EditChart.textTopBottom": "상단 및 하단", - "DE.Views.EditChart.textType": "유형", - "DE.Views.EditChart.textWrap": "줄 바꾸기", - "DE.Views.EditHeader.textDiffFirst": "다른 첫 페이지", - "DE.Views.EditHeader.textDiffOdd": "다른 홀수 및 짝수 페이지", - "DE.Views.EditHeader.textSameAs": "이전 링크", - "DE.Views.EditHyperlink.textDisplay": "표시", - "DE.Views.EditHyperlink.textEdit": "링크 편집", - "DE.Views.EditHyperlink.textLink": "링크", - "DE.Views.EditHyperlink.textRemove": "링크 제거", - "DE.Views.EditHyperlink.textTip": "화면 팁", - "DE.Views.EditImage.textAddress": "주소", - "DE.Views.EditImage.textAlign": "정렬", - "DE.Views.EditImage.textBack": "뒤로", - "DE.Views.EditImage.textBackward": "뒤로 이동", - "DE.Views.EditImage.textBehind": "Behind", - "DE.Views.EditImage.textDefault": "기본 크기", - "DE.Views.EditImage.textDistanceText": "텍스트로부터의 거리", - "DE.Views.EditImage.textForward": "앞으로 이동", - "DE.Views.EditImage.textFromLibrary": "그림 라이브러리에서", - "DE.Views.EditImage.textFromURL": "URL에서 그림", - "DE.Views.EditImage.textImageURL": "이미지 URL", - "DE.Views.EditImage.textInFront": "In Front", - "DE.Views.EditImage.textInline": "인라인", - "DE.Views.EditImage.textLinkSettings": "링크 설정", - "DE.Views.EditImage.textMoveText": "텍스트와 함께 이동", - "DE.Views.EditImage.textOverlap": "오버랩 허용", - "DE.Views.EditImage.textRemove": "이미지 제거", - "DE.Views.EditImage.textReorder": "재주문", - "DE.Views.EditImage.textReplace": "바꾸기", - "DE.Views.EditImage.textReplaceImg": "이미지 바꾸기", - "DE.Views.EditImage.textSquare": "Square", - "DE.Views.EditImage.textThrough": "통해", - "DE.Views.EditImage.textTight": "Tight", - "DE.Views.EditImage.textToBackground": "배경에 보내기", - "DE.Views.EditImage.textToForeground": "포 그라운드로 가져 오기", - "DE.Views.EditImage.textTopBottom": "상단 및 하단", - "DE.Views.EditImage.textWrap": "줄 바꾸기", - "DE.Views.EditParagraph.textAdvanced": "고급", - "DE.Views.EditParagraph.textAdvSettings": "고급 설정", - "DE.Views.EditParagraph.textAfter": "이후", - "DE.Views.EditParagraph.textAuto": "자동", - "DE.Views.EditParagraph.textBack": "뒤로", - "DE.Views.EditParagraph.textBackground": "배경", - "DE.Views.EditParagraph.textBefore": "이전", - "DE.Views.EditParagraph.textFirstLine": "첫 번째 줄", - "DE.Views.EditParagraph.textFromText": "텍스트로부터의 거리", - "DE.Views.EditParagraph.textKeepLines": "Keep Lines Together", - "DE.Views.EditParagraph.textKeepNext": "다음 보관", - "DE.Views.EditParagraph.textOrphan": "고아 컨트롤", - "DE.Views.EditParagraph.textPageBreak": "페이지 나누기 전", - "DE.Views.EditParagraph.textPrgStyles": "단락 스타일", - "DE.Views.EditParagraph.textSpaceBetween": "단락 사이의 공백", - "DE.Views.EditShape.textAlign": "정렬", - "DE.Views.EditShape.textBack": "뒤로", - "DE.Views.EditShape.textBackward": "뒤로 이동", - "DE.Views.EditShape.textBehind": "Behind", - "DE.Views.EditShape.textBorder": "테두리", - "DE.Views.EditShape.textColor": "Color", - "DE.Views.EditShape.textEffects": "효과", - "DE.Views.EditShape.textFill": "채우기", - "DE.Views.EditShape.textForward": "앞으로 이동", - "DE.Views.EditShape.textFromText": "텍스트로부터의 거리", - "DE.Views.EditShape.textInFront": "앞에 있음", - "DE.Views.EditShape.textInline": "인라인", - "DE.Views.EditShape.textOpacity": "불투명도", - "DE.Views.EditShape.textOverlap": "오버랩 허용", - "DE.Views.EditShape.textRemoveShape": "도형 제거", - "DE.Views.EditShape.textReorder": "재정렬", - "DE.Views.EditShape.textReplace": "바꾸기", - "DE.Views.EditShape.textSize": "크기", - "DE.Views.EditShape.textSquare": "Square", - "DE.Views.EditShape.textStyle": "스타일", - "DE.Views.EditShape.textThrough": "통해", - "DE.Views.EditShape.textTight": "Tight", - "DE.Views.EditShape.textToBackground": "배경으로 보내기", - "DE.Views.EditShape.textToForeground": "포 그라운드로 가져 오기", - "DE.Views.EditShape.textTopAndBottom": "상단 및 하단", - "DE.Views.EditShape.textWithText": "텍스트와 함께 이동", - "DE.Views.EditShape.textWrap": "줄 바꾸기", - "DE.Views.EditTable.textAlign": "정렬", - "DE.Views.EditTable.textBack": "뒤로", - "DE.Views.EditTable.textBandedColumn": "줄무늬 형 열", - "DE.Views.EditTable.textBandedRow": "줄무늬 행", - "DE.Views.EditTable.textBorder": "테두리", - "DE.Views.EditTable.textCellMargins": "셀 여백", - "DE.Views.EditTable.textColor": "Color", - "DE.Views.EditTable.textFill": "채우기", - "DE.Views.EditTable.textFirstColumn": "첫 번째 열", - "DE.Views.EditTable.textFlow": "흐름", - "DE.Views.EditTable.textFromText": "텍스트로부터의 거리", - "DE.Views.EditTable.textHeaderRow": "헤더 행", - "DE.Views.EditTable.textInline": "인라인", - "DE.Views.EditTable.textLastColumn": "마지막 열", - "DE.Views.EditTable.textOptions": "옵션", - "DE.Views.EditTable.textRemoveTable": "테이블 제거", - "DE.Views.EditTable.textRepeatHeader": "헤더 행으로 반복", - "DE.Views.EditTable.textResizeFit": "내용에 맞게 크기 조정", - "DE.Views.EditTable.textSize": "크기", - "DE.Views.EditTable.textStyle": "스타일", - "DE.Views.EditTable.textStyleOptions": "스타일 옵션", - "DE.Views.EditTable.textTableOptions": "테이블 옵션", - "DE.Views.EditTable.textTotalRow": "총 행", - "DE.Views.EditTable.textWithText": "텍스트와 함께 이동", - "DE.Views.EditTable.textWrap": "줄 바꾸기", - "DE.Views.EditText.textAdditional": "추가", - "DE.Views.EditText.textAdditionalFormat": "추가 서식 지정", - "DE.Views.EditText.textAllCaps": "모든 대문자", - "DE.Views.EditText.textAutomatic": "자동", - "DE.Views.EditText.textBack": "뒤로", - "DE.Views.EditText.textBullets": "Bullets", - "DE.Views.EditText.textDblStrikethrough": "Double Strikethrough", - "DE.Views.EditText.textDblSuperscript": "위 첨자", - "DE.Views.EditText.textFontColor": "글꼴 색", - "DE.Views.EditText.textFontColors": "글꼴 색", - "DE.Views.EditText.textFonts": "글꼴", - "DE.Views.EditText.textHighlightColor": "Highlight Color", - "DE.Views.EditText.textHighlightColors": "하이라이트 색상", - "DE.Views.EditText.textLetterSpacing": "문자 간격", - "DE.Views.EditText.textLineSpacing": "줄 간격", - "DE.Views.EditText.textNone": "없음", - "DE.Views.EditText.textNumbers": "숫자", - "DE.Views.EditText.textSize": "크기", - "DE.Views.EditText.textSmallCaps": "작은 대문자", - "DE.Views.EditText.textStrikethrough": "취소 선", - "DE.Views.EditText.textSubscript": "아래 첨자", - "DE.Views.Search.textCase": "대소 문자를 구분합니다", - "DE.Views.Search.textDone": "완료", - "DE.Views.Search.textFind": "찾기", - "DE.Views.Search.textFindAndReplace": "찾기 및 바꾸기", - "DE.Views.Search.textHighlight": "결과 강조 표시", - "DE.Views.Search.textReplace": "바꾸기", - "DE.Views.Search.textSearch": "검색", - "DE.Views.Settings.textAbout": "정보", - "DE.Views.Settings.textAddress": "주소", - "DE.Views.Settings.textAdvancedSettings": "어플리케이션 설정", - "DE.Views.Settings.textAuthor": "저자", - "DE.Views.Settings.textBack": "뒤로", - "DE.Views.Settings.textCreateDate": "생성 날짜", - "DE.Views.Settings.textCustom": "사용자 정의", - "DE.Views.Settings.textCustomSize": "사용자 정의 크기", - "DE.Views.Settings.textDocInfo": "문서 정보", - "DE.Views.Settings.textDocTitle": "문서 제목", - "DE.Views.Settings.textDocumentFormats": "문서 형식", - "DE.Views.Settings.textDocumentSettings": "문서 설정", - "DE.Views.Settings.textDone": "완료", - "DE.Views.Settings.textDownload": "다운로드", - "DE.Views.Settings.textDownloadAs": "다른 이름으로 다운로드 ...", - "DE.Views.Settings.textEditDoc": "문서 편집", - "DE.Views.Settings.textEmail": "이메일", - "DE.Views.Settings.textFind": "찾기", - "DE.Views.Settings.textFindAndReplace": "찾기 및 바꾸기", - "DE.Views.Settings.textFormat": "서식", - "DE.Views.Settings.textHelp": "도움말", - "DE.Views.Settings.textLandscape": "Landscape", - "DE.Views.Settings.textLeft": "왼쪽", - "DE.Views.Settings.textLoading": "로드 중 ...", - "DE.Views.Settings.textMargins": "여백", - "DE.Views.Settings.textOrientation": "오리엔테이션", - "DE.Views.Settings.textPages": "페이지", - "DE.Views.Settings.textParagraphs": "단락", - "DE.Views.Settings.textPortrait": "Portrait", - "DE.Views.Settings.textPoweredBy": "Powered by", - "DE.Views.Settings.textPrint": "인쇄", - "DE.Views.Settings.textReader": "리더 모드", - "DE.Views.Settings.textReview": "변경 내용 추적", - "DE.Views.Settings.textRight": "오른쪽", - "DE.Views.Settings.textSettings": "설정", - "DE.Views.Settings.textSpaces": "공백", - "DE.Views.Settings.textSpellcheck": "맞춤법 검사", - "DE.Views.Settings.textStatistic": "Statistic", - "DE.Views.Settings.textSymbols": "기호", - "DE.Views.Settings.textTel": "tel", - "DE.Views.Settings.textTop": "상위", - "DE.Views.Settings.textVersion": "버전", - "DE.Views.Settings.textWords": "단어", - "DE.Views.Settings.unknownText": "알 수 없음", - "DE.Views.Toolbar.textBack": "뒤로" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/lo.json b/apps/documenteditor/mobile/locale/lo.json index a71f60dc2..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/lo.json +++ b/apps/documenteditor/mobile/locale/lo.json @@ -1,607 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "ຕອບຄີືນ", - "Common.Controllers.Collaboration.textAtLeast": "ຢ່າງນ້ອຍ", - "Common.Controllers.Collaboration.textAuto": "ອັດຕະໂນມັດ", - "Common.Controllers.Collaboration.textBaseline": "ເສັ້ນພື້ນ", - "Common.Controllers.Collaboration.textBold": "ໂຕເຂັມ ", - "Common.Controllers.Collaboration.textBreakBefore": "ແຍກໜ້າເອກະສານກ່ອນໜ້າ", - "Common.Controllers.Collaboration.textCancel": "ຍົກເລີກ", - "Common.Controllers.Collaboration.textCaps": "ໂຕໃຫຍ່ທັງໝົດ", - "Common.Controllers.Collaboration.textCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "Common.Controllers.Collaboration.textChart": "ແຜນຮູບວາດ", - "Common.Controllers.Collaboration.textColor": "ສີຂອງຕົວອັກສອນ", - "Common.Controllers.Collaboration.textContextual": "ບໍ່ຕ້ອງເພີ່ມໄລຍະຫ່າງລະຫວ່າງແຖວ", - "Common.Controllers.Collaboration.textDelete": "ລົບ", - "Common.Controllers.Collaboration.textDeleteComment": "ລົບຄໍາເຫັນ", - "Common.Controllers.Collaboration.textDeleted": "ລຶບ:", - "Common.Controllers.Collaboration.textDeleteReply": "ລົບການຕອບກັບ", - "Common.Controllers.Collaboration.textDone": "ສໍາເລັດ", - "Common.Controllers.Collaboration.textDStrikeout": "ຂິດຂ້າ ສອງຄັ້ງ", - "Common.Controllers.Collaboration.textEdit": "ແກ້ໄຂ", - "Common.Controllers.Collaboration.textEditUser": "ຜູ້ໃຊ້ທີ່ກໍາລັງແກ້ໄຂເອກະສານ", - "Common.Controllers.Collaboration.textEquation": "ສົມຜົນ", - "Common.Controllers.Collaboration.textExact": "ແນ່ນອນ", - "Common.Controllers.Collaboration.textFirstLine": "ເສັ້ນທໍາອິດ", - "Common.Controllers.Collaboration.textFormatted": "ຈັດຮູບແບບ", - "Common.Controllers.Collaboration.textHighlight": "ທາສີໄຮໄລ້", - "Common.Controllers.Collaboration.textImage": "ຮູບພາບ", - "Common.Controllers.Collaboration.textIndentLeft": "ຢັບມາຊ້າຍ", - "Common.Controllers.Collaboration.textIndentRight": "ຢັບມາຂວາ", - "Common.Controllers.Collaboration.textInserted": "ສອດໃສ່:", - "Common.Controllers.Collaboration.textItalic": "ໂຕໜັງສືອ່ຽງ", - "Common.Controllers.Collaboration.textJustify": "ປັບການຈັດຕຳແໜ່ງ", - "Common.Controllers.Collaboration.textKeepLines": "ໃຫ້ເສັ້ນເຂົ້ານໍາກັນ", - "Common.Controllers.Collaboration.textKeepNext": "ເກັບໄວ້ຕໍ່ໄປ", - "Common.Controllers.Collaboration.textLeft": "ຈັດຕຳແໜ່ງຕິດຊ້າຍ", - "Common.Controllers.Collaboration.textLineSpacing": "ໄລຍະຫ່າງລະຫວ່າງເສັ້ນ:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "ທ່ານຕ້ອງການລົບຄຳເຫັນນີ້ແທ້ບໍ", - "Common.Controllers.Collaboration.textMessageDeleteReply": "ທ່ານຕ້ອງການລົບແທ້ບໍ?", - "Common.Controllers.Collaboration.textMultiple": "ຕົວຄູນ", - "Common.Controllers.Collaboration.textNoBreakBefore": "ບໍ່ໄດ້ຂັ້ນໜ້າກ່ອນໜ້ານີ້", - "Common.Controllers.Collaboration.textNoChanges": "ບໍ່ມີການປ່ຽນແປງ", - "Common.Controllers.Collaboration.textNoContextual": "ຕື່ມໄລຍະຫ່າງລະຫວ່າງໜ້າຫຍໍ້ດຽວກັນ", - "Common.Controllers.Collaboration.textNoKeepLines": "ບໍ່ຕ້ອງສ້າງເສັ້ນຮ່ວມກັນ", - "Common.Controllers.Collaboration.textNoKeepNext": "ບໍ່ຕ້ອງເກັບໄວ້ຕໍ່ ", - "Common.Controllers.Collaboration.textNot": "ບໍ່", - "Common.Controllers.Collaboration.textNoWidow": "ບໍ່ມີການຄອບຄຸມໜ້າຕ່າງ", - "Common.Controllers.Collaboration.textNum": "ປ່ຽນຕົວເລກ ", - "Common.Controllers.Collaboration.textParaDeleted": "ລຶບຫຍໍ້ໜ້າ", - "Common.Controllers.Collaboration.textParaFormatted": "ຈັດຮູບແບບຫຍໍ້ໜ້າ", - "Common.Controllers.Collaboration.textParaInserted": "ຕື່ມຫຍໍ້ໜ້າໃສ່ແລ້ວ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "ເລື່ອນລົງ:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "ເລື່ອນຂຶ້ນ:", - "Common.Controllers.Collaboration.textParaMoveTo": "ຍ້າຍ:", - "Common.Controllers.Collaboration.textPosition": "ຕໍາແໜ່ງ", - "Common.Controllers.Collaboration.textReopen": "ເປີດຄືນ", - "Common.Controllers.Collaboration.textResolve": "ແກ້ໄຂ", - "Common.Controllers.Collaboration.textRight": "ຈັດຕຳແໜ່ງຕິດຂວາ", - "Common.Controllers.Collaboration.textShape": "ຮູບຮ່າງ", - "Common.Controllers.Collaboration.textShd": "ສີພື້ນຫຼັງ", - "Common.Controllers.Collaboration.textSmallCaps": "ໂຕອັກສອນນ້ອຍ", - "Common.Controllers.Collaboration.textSpacing": "ການຈັດໄລຍະຫ່າງ", - "Common.Controllers.Collaboration.textSpacingAfter": "ໄລະຫ່າງກ່ອນ", - "Common.Controllers.Collaboration.textSpacingBefore": "ໄລຍະຫ່າງກ່ອນ", - "Common.Controllers.Collaboration.textStrikeout": "ຂີດຂ້າອອກ", - "Common.Controllers.Collaboration.textSubScript": "ຕົວຫ້ອຍ", - "Common.Controllers.Collaboration.textSuperScript": "ຕົວຍົກ", - "Common.Controllers.Collaboration.textTableChanged": "ການຕັ້ງຄ່າຕາຕະລາງ", - "Common.Controllers.Collaboration.textTableRowsAdd": "ເພີ່ມແຖວໃສ່ຕາຕະລາງ", - "Common.Controllers.Collaboration.textTableRowsDel": "ລຶບແຖວອອກຈາກຕາຕະລາງ", - "Common.Controllers.Collaboration.textTabs": "ປ່ຽນຂັ້ນ", - "Common.Controllers.Collaboration.textUnderline": "ີຂີດກ້ອງ", - "Common.Controllers.Collaboration.textWidow": "ຄອບຄຸມໜ້າຕ່າງ ", - "Common.Controllers.Collaboration.textYes": "ແມ່ນແລ້ວ", - "Common.UI.ThemeColorPalette.textCustomColors": "ປະເພດຂອງສີ, ກຳນົດສີ ", - "Common.UI.ThemeColorPalette.textStandartColors": "ສີມາດຕະຖານ", - "Common.UI.ThemeColorPalette.textThemeColors": " ຮູບແບບສີ", - "Common.Utils.Metric.txtCm": "ຊັງຕີແມັດ", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "ຍອມຮັບ", - "Common.Views.Collaboration.textAcceptAllChanges": "ຍອມຮັບການປ່ຽນແປງທັງໝົດ", - "Common.Views.Collaboration.textAddReply": "ຕອບຄີືນ", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "ຍອມຮັບການປ່ຽນແປງທັງໝົດ(ເບິ່ງຕົວຢ່າງ)", - "Common.Views.Collaboration.textAllChangesEditing": "ການປ່ຽນແປງທັງໝົດ(ດັດແກ້)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "ປະຕິເສດການປ່ຽນແປງທັງໝົດ(ເບິ່ງຕົວຢ່າງ)", - "Common.Views.Collaboration.textBack": "ກັບຄືນ", - "Common.Views.Collaboration.textCancel": "ຍົກເລີກ", - "Common.Views.Collaboration.textChange": "ເບີ່ງການປ່ຽນແປງ", - "Common.Views.Collaboration.textCollaboration": "ຮ່ວມກັນ", - "Common.Views.Collaboration.textDisplayMode": "ໂຫມດການສະແດງຜົນ", - "Common.Views.Collaboration.textDone": "ສໍາເລັດ", - "Common.Views.Collaboration.textEditReply": "ແກ້ໄຂການຕອບກັບ", - "Common.Views.Collaboration.textEditUsers": "ຜຸ້ໃຊ້", - "Common.Views.Collaboration.textEditСomment": "ແກ້ໄຂຄໍາເຫັນ", - "Common.Views.Collaboration.textFinal": "ສຸດທ້າຍ", - "Common.Views.Collaboration.textMarkup": "ໝາຍ", - "Common.Views.Collaboration.textNoComments": "ເອກະສານບໍ່ມີຄໍາເຫັນ", - "Common.Views.Collaboration.textOriginal": "ສະບັບເຄົ້າ", - "Common.Views.Collaboration.textReject": "ປະຕິເສດ", - "Common.Views.Collaboration.textRejectAllChanges": "ປະຕິເສດການປ່ຽນແປງທັງໝົດ", - "Common.Views.Collaboration.textReview": "ໝາຍການແກ້ໄຂ ", - "Common.Views.Collaboration.textReviewing": "ກວດຄືນ", - "Common.Views.Collaboration.textСomments": "ຄຳເຫັນ", - "DE.Controllers.AddContainer.textImage": "ຮູບພາບ", - "DE.Controllers.AddContainer.textOther": "ອື່ນໆ", - "DE.Controllers.AddContainer.textShape": "ຮູບຮ່າງ", - "DE.Controllers.AddContainer.textTable": "ຕາຕະລາງ", - "DE.Controllers.AddImage.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "DE.Controllers.AddImage.textEmptyImgUrl": "ທ່ານຕ້ອງບອກທີຢູ່ຮູບ URL", - "DE.Controllers.AddImage.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "DE.Controllers.AddOther.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "DE.Controllers.AddOther.textBelowText": "ລຸ່ມໂຕໜັງສື", - "DE.Controllers.AddOther.textBottomOfPage": "ທາງລຸ່ມສຸດຂອງໜ້າເຈ້ຍ", - "DE.Controllers.AddOther.textCancel": "ຍົກເລີກ", - "DE.Controllers.AddOther.textContinue": "ສືບຕໍ່", - "DE.Controllers.AddOther.textDelete": "ລົບ", - "DE.Controllers.AddOther.textDeleteDraft": "ທ່ານຕ້ອງການລົບແທ້ບໍ ", - "DE.Controllers.AddOther.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "DE.Controllers.AddTable.textCancel": "ຍົກເລີກ", - "DE.Controllers.AddTable.textColumns": "ຖັນ", - "DE.Controllers.AddTable.textRows": "ແຖວ", - "DE.Controllers.AddTable.textTableSize": "ຂະໜາດຕາຕະລາງ", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", - "DE.Controllers.DocumentHolder.menuAddComment": "ເພີ່ມຄຳເຫັນ", - "DE.Controllers.DocumentHolder.menuAddLink": "ເພີ່ມລິ້ງ", - "DE.Controllers.DocumentHolder.menuCopy": "ສໍາເນົາ", - "DE.Controllers.DocumentHolder.menuCut": "ຕັດ", - "DE.Controllers.DocumentHolder.menuDelete": "ລົບ", - "DE.Controllers.DocumentHolder.menuDeleteTable": "ລົບຕາຕະລາງ", - "DE.Controllers.DocumentHolder.menuEdit": "ແກ້ໄຂ", - "DE.Controllers.DocumentHolder.menuMerge": "ລວມແຊວ", - "DE.Controllers.DocumentHolder.menuMore": "ຫຼາຍກວ່າ", - "DE.Controllers.DocumentHolder.menuOpenLink": "ເປີດລີ້ງ", - "DE.Controllers.DocumentHolder.menuPaste": "ວາງ", - "DE.Controllers.DocumentHolder.menuReview": "ກວດຄືນ", - "DE.Controllers.DocumentHolder.menuReviewChange": "ເບີ່ງການປ່ຽນແປງ", - "DE.Controllers.DocumentHolder.menuSplit": "ແຍກແຊວ ", - "DE.Controllers.DocumentHolder.menuViewComment": "ເບີ່ງຄໍາເຫັນ", - "DE.Controllers.DocumentHolder.sheetCancel": "ຍົກເລີກ", - "DE.Controllers.DocumentHolder.textCancel": "ຍົກເລີກ", - "DE.Controllers.DocumentHolder.textColumns": "ຖັນ", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "ບໍ່ຕ້ອງສະແດງຄືນອີກ", - "DE.Controllers.DocumentHolder.textGuest": " ແຂກ", - "DE.Controllers.DocumentHolder.textRows": "ແຖວ", - "DE.Controllers.EditContainer.textChart": "ແຜນຮູບວາດ", - "DE.Controllers.EditContainer.textFooter": "ສ່ວນທ້າຍ", - "DE.Controllers.EditContainer.textHeader": "ຫົວຂໍ້ເອກະສານ", - "DE.Controllers.EditContainer.textHyperlink": "ົໄຮເປີລີ້ງ", - "DE.Controllers.EditContainer.textImage": "ຮູບພາບ", - "DE.Controllers.EditContainer.textParagraph": "ວັກ", - "DE.Controllers.EditContainer.textSettings": "ຕັ້ງຄ່າ", - "DE.Controllers.EditContainer.textShape": "ຮູບຮ່າງ", - "DE.Controllers.EditContainer.textTable": "ຕາຕະລາງ", - "DE.Controllers.EditContainer.textText": "ເນື້ອຫາ", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "ທ່ານຕ້ອງບອກທີ່ຢູ່ຮູບ URL", - "DE.Controllers.EditHyperlink.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "DE.Controllers.EditImage.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "DE.Controllers.EditImage.textEmptyImgUrl": "ທ່ານຕ້ອງບອກທີຢູ່ຮູບ URL", - "DE.Controllers.EditImage.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "DE.Controllers.EditText.textAuto": "ອັດຕະໂນມັດ", - "DE.Controllers.EditText.textFonts": "ຕົວອັກສອນ", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "ໃສ່ລະຫັດ", - "DE.Controllers.Main.advDRMOptions": "ຟຮາຍມີການປົກປ້ອງ", - "DE.Controllers.Main.advDRMPassword": "ລະຫັດຜ່ານ", - "DE.Controllers.Main.advTxtOptions": "ເລືອກ TXT ", - "DE.Controllers.Main.applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", - "DE.Controllers.Main.applyChangesTitleText": "ດາວໂຫຼດຂໍ້ມູນ", - "DE.Controllers.Main.closeButtonText": "ປິດຟຮາຍເອກະສານ", - "DE.Controllers.Main.convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", - "DE.Controllers.Main.criticalErrorExtText": "ກົດ OK ເພື່ອກັບຄືນ", - "DE.Controllers.Main.criticalErrorTitle": "ຂໍ້ຜິດພາດ", - "DE.Controllers.Main.downloadErrorText": "ດາວໂຫຼດບໍ່ສຳເລັດ.", - "DE.Controllers.Main.downloadMergeText": "ກໍາລັງດາວໂຫລດ.....", - "DE.Controllers.Main.downloadMergeTitle": "ກໍາລັງດາວໂຫຼດ ", - "DE.Controllers.Main.downloadTextText": "ກຳລັງດາວໂຫຼດເອກະສານ", - "DE.Controllers.Main.downloadTitleText": "ດາວໂຫລດເອກະສານ", - "DE.Controllers.Main.errorAccessDeny": "ທ່ານກຳລັງພະຍາຍາມດຳເນີນການກະທຳໃດໜຶ່ງທີ່ທ່ານບໍ່ມີສິດສຳລັບສິ່ງນີ້.
    ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", - "DE.Controllers.Main.errorBadImageUrl": "URL ຮູບພາບບໍ່ຖືກຕ້ອງ", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "ບໍ່ສາມາດເຊື່ອມຕໍ່ ເຊີບເວີ , ທ່ານບໍ່ສາມາດແກ້ໄຂເອກະສານຕໍ່ໄດ້", - "DE.Controllers.Main.errorConnectToServer": "ເອກະສານບໍ່ສາມາດບັນທຶກໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າການເຊື່ອມຕໍ່ຫລືຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.
    ເມື່ອທ່ານກົດປຸ່ມ 'OK', ທ່ານຈະໄດ້ຮັບການກະຕຸ້ນເຕືອນໃຫ້ດາວໂຫລດເອກະສານ.", - "DE.Controllers.Main.errorDatabaseConnection": "ຂໍ້ຜິດພາດຈາກທາງນອກ
    ຖານຂໍ້ມູນ", - "DE.Controllers.Main.errorDataEncrypted": "ໄດ້ຮັບການປ່ຽນແປງລະຫັດແລ້ວ, ບໍ່ສາມາດຖອດລະຫັດໄດ້.", - "DE.Controllers.Main.errorDataRange": "ໄລຍະຂອງຂໍ້ມູນບໍ່ຖືກ", - "DE.Controllers.Main.errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", - "DE.Controllers.Main.errorEditingDownloadas": "ພົບບັນຫາຕອນເປີດຟາຍ.
    ດາວໂຫຼດຟາຍເພື່ອແບັກອັບໄວ້ຄອມທ່ານໂດຍກົດ \"ດາວໂຫຼດ\"", - "DE.Controllers.Main.errorFilePassProtect": "ມີລະຫັດປົກປ້ອງຟາຍນີ້ຈຶ່ງບໍ່ສາມາດເປີດໄດ້", - "DE.Controllers.Main.errorFileSizeExceed": "ຂະໜາດຂອງຟາຍໃຫຍ່ກວ່າທີ່ກຳນົດໄວ້ໃນລະບົບ.
    ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລະບົບຂອງທ່ານ", - "DE.Controllers.Main.errorKeyEncrypt": "ບໍ່ຮູ້ຄຳອະທິບາຍຫຼັກ", - "DE.Controllers.Main.errorKeyExpire": "ລະຫັດໝົດອາຍຸ", - "DE.Controllers.Main.errorMailMergeLoadFile": "ບໍ່ສາມາດດາວໂຫຼດເອກະສານ,ກະລຸນາເລືອກເອກກະສານໃໝ່", - "DE.Controllers.Main.errorMailMergeSaveFile": "ບໍ່ສາມາດລວມໄດ້", - "DE.Controllers.Main.errorOpensource": "ທ່ານໃຊ້ສະບັບຊຸມຊົນແບບບໍ່ເສຍຄ່າ ທ່ານສາມາດເປີດເອກະສານ ແລະ ເບິ່ງເທົ່ານັ້ນ. ເພື່ອເຂົ້າເຖິງການແກ້ໄຂທາງເວັບເທິງມືຖື, ຕ້ອງມີໃບອະນຸຍາດການຄ້າ.", - "DE.Controllers.Main.errorProcessSaveResult": "ບັນທຶກບໍ່ສໍາເລັດ", - "DE.Controllers.Main.errorServerVersion": "ສະບັບດັດແກ້ໄດ້ຖືກປັບປຸງແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດຄືນເພື່ອນຳໃຊ້ການປ່ຽນແປງ.", - "DE.Controllers.Main.errorSessionAbsolute": "ໝົດເວລາການແກ້ໄຂເອກະສານ ກະລຸນາໂຫລດໜ້ານີ້ຄືນໃໝ່", - "DE.Controllers.Main.errorSessionIdle": "ເອກະສານດັ່ງກ່າວບໍ່ໄດ້ຖືກດັດແກ້ມາດົນແລ້ວ. ກະລຸນາໂຫລດໜ້ານີ້ຄືນໃໝ່.", - "DE.Controllers.Main.errorSessionToken": "ການເຊື່ອມຕໍ່ຫາ ເຊີເວີຖືກລົບກວນ, ກະລຸນນາໂລດຄືນ", - "DE.Controllers.Main.errorStockChart": "ຄໍາສັ່ງແຖວບໍ່ຖືກຕ້ອງ, ການສ້າງແຜນໃຫ້ວາງຂໍ້ມູນຕາມລຳດັບດັ່ງນີ: ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ", - "DE.Controllers.Main.errorUpdateVersion": "ເອກະສານໄດ້ຖືກປ່ຽນແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດໃໝ່.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "ການເຊື່ອຕໍ່ອິນເຕີເນັດຫາກໍ່ກັບມາ, ແລະຟາຍເອກະສານໄດ້ມີການປ່ຽນແປງແລ້ວ. ກ່ອນທີ່ທ່ານຈະດຳເນີການຕໍ່ໄປ, ທ່ານຕ້ອງໄດ້ດາວໂຫຼດຟາຍ ຫຼືສຳເນົາເນື້ອຫາ ເພື່ອປ້ອງການການສູນເສຍ, ແລະກໍ່ທຳການໂຫຼດໜ້າຄືນອີກຄັ້ງ.", - "DE.Controllers.Main.errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງຟາຍໄດ້", - "DE.Controllers.Main.errorUsersExceed": "ຈໍານວນຜູ້ໃຊ້ເກີນກໍານົດ", - "DE.Controllers.Main.errorViewerDisconnect": "ຂາດການເຊື່ອມຕໍ່. ທ່ານສາມາດເບິ່ງເອກະສານໄດ້, ແຕ່ທ່ານບໍ່ສາມາດດາວໂຫລດໄດ້ຈົນກວ່າຈະມີການເຊື່ອມຕໍ່ຄືນແລະ ໜ້າເວັບຈະຖືກໂຫລດຄືນ.", - "DE.Controllers.Main.leavePageText": "ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ໄດ້ຖືກບັນທຶກໃນເອກະສານນີ້. ກົດ \"ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທືກເອກະສານແບບອັດຕະໂນມັດ. ກົດ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກ.", - "DE.Controllers.Main.loadFontsTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", - "DE.Controllers.Main.loadFontsTitleText": "ດາວໂຫຼດຂໍ້ມູນ", - "DE.Controllers.Main.loadFontTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ...", - "DE.Controllers.Main.loadFontTitleText": "ດາວໂຫຼດຂໍ້ມູນ", - "DE.Controllers.Main.loadImagesTextText": "ກໍາລັງດາວໂຫຼດຮູບພາບ...", - "DE.Controllers.Main.loadImagesTitleText": "ກໍາລັງດາວໂຫຼດຮູບພາບ", - "DE.Controllers.Main.loadImageTextText": "ກໍາລັງດາວໂຫຼດຮູບພາບ...", - "DE.Controllers.Main.loadImageTitleText": "ກໍາລັງໂລດຮູບພາບ", - "DE.Controllers.Main.loadingDocumentTextText": "ກໍາລັງດາວໂຫຼດເອກະສານ...", - "DE.Controllers.Main.loadingDocumentTitleText": "ກຳລັງດາວໂຫຼດເອກະສານ", - "DE.Controllers.Main.mailMergeLoadFileText": "ໂລດຂໍ້ມູນຈາກຕົ້ນທາງ...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "ດາວໂຫຼດຂໍ້ມູນຈາກຕົ້ນທາງ", - "DE.Controllers.Main.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "DE.Controllers.Main.openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂື້ນໃນຂະນະເປີດເອກະສານ.", - "DE.Controllers.Main.openTextText": "ກໍາລັງເປີດເອກະສານ...", - "DE.Controllers.Main.openTitleText": "ກໍາລັງເປີດເອກະສານ", - "DE.Controllers.Main.printTextText": "ກໍາລັງພິມເອກະສານ", - "DE.Controllers.Main.printTitleText": "ກໍາລັງພິມເອກະສານ", - "DE.Controllers.Main.saveErrorText": "ພົບບັນຫາຕອນບັນທຶກຟາຍ.", - "DE.Controllers.Main.savePreparingText": "ກະກຽມບັນທືກ", - "DE.Controllers.Main.savePreparingTitle": "ກຳລັງກະກຽມບັນທືກ, ກະລຸນາລໍຖ້າ", - "DE.Controllers.Main.saveTextText": "ກໍາລັງບັນທຶກເອກະສານ...", - "DE.Controllers.Main.saveTitleText": "ບັນທືກເອກະສານ", - "DE.Controllers.Main.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", - "DE.Controllers.Main.sendMergeText": "ກໍາລັງສົ່ງລວມ...", - "DE.Controllers.Main.sendMergeTitle": "ກໍາລັງສົ່ງລວມ", - "DE.Controllers.Main.splitDividerErrorText": "ຈໍານວນແຖວຕ້ອງເປັນຕົວເລກຂອງ %1", - "DE.Controllers.Main.splitMaxColsErrorText": "ຈຳນວນຖັນຕ້ອງຕໍ່າ ກວ່າ %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "ຈຳນວນແຖວຕ້ອງໜ້ອຍກວ່າ %1", - "DE.Controllers.Main.textAnonymous": "ບໍ່ລະບຸຊື່", - "DE.Controllers.Main.textBack": "ກັບຄືນ", - "DE.Controllers.Main.textBuyNow": "ເຂົ້າໄປຍັງເວັບໄຊ", - "DE.Controllers.Main.textCancel": "ຍົກເລີກ", - "DE.Controllers.Main.textClose": "ປິດ", - "DE.Controllers.Main.textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", - "DE.Controllers.Main.textCustomLoader": "ກະລຸນາຮັບຊາບວ່າ ອີງຕາມຂໍ້ ກຳນົດຂອງໃບອະນຸຍາດ ທ່ານບໍ່ມີສິດທີ່ຈະປ່ຽນແປງ ການບັນຈຸ.
    ກະລຸນາຕິດຕໍ່ຝ່າຍຂາຍຂອງພວກເຮົາເພື່ອຂໍໃບສະເໜີ.", - "DE.Controllers.Main.textDone": "ສໍາເລັດ", - "DE.Controllers.Main.textGuest": " ແຂກ", - "DE.Controllers.Main.textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
    ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", - "DE.Controllers.Main.textLoadingDocument": "ກຳລັງດາວໂຫຼດເອກະສານ", - "DE.Controllers.Main.textNo": "ບໍ່", - "DE.Controllers.Main.textNoLicenseTitle": "ຈໍານວນໃບອະນຸຍາດໄດ້ໃຊ້ຄົບແລ້ວ", - "DE.Controllers.Main.textOK": "ຕົກລົງ", - "DE.Controllers.Main.textPaidFeature": "ຄຸນສົມບັດທີ່ຈ່າຍ", - "DE.Controllers.Main.textPassword": "ລະຫັດຜ່ານ", - "DE.Controllers.Main.textPreloader": "ກໍາລັງດາວໂຫຼດ...", - "DE.Controllers.Main.textRemember": "ຈື່ທາງເລືອກຂອງຂ້ອຍ", - "DE.Controllers.Main.textTryUndoRedo": "ໜ້າທີ່ ກັບຄືນ ຫຼື ທວນຄືນ ຖືກປິດໃຊ້ງານ ສຳລັບໂໝດການແກ້ໄຂຮ່ວມກັນດ່ວນ.", - "DE.Controllers.Main.textUsername": "ຊື່ຜູ້ໃຊ້", - "DE.Controllers.Main.textYes": "ແມ່ນແລ້ວ", - "DE.Controllers.Main.titleLicenseExp": "ໃບອະນຸຍາດໝົດອາຍຸ", - "DE.Controllers.Main.titleServerVersion": "ອັບເດດການແກ້ໄຂ", - "DE.Controllers.Main.titleUpdateVersion": "ປ່ຽນແປງລຸ້ນ", - "DE.Controllers.Main.txtAbove": "ຂ້າງເທິງ", - "DE.Controllers.Main.txtArt": "ເນື້ອຫາຂອງທ່ານຢູ່ນີ້", - "DE.Controllers.Main.txtBelow": "ດ້ານລຸ່ມ", - "DE.Controllers.Main.txtCurrentDocument": "ເອກະສານປະຈຸບັນ", - "DE.Controllers.Main.txtDiagramTitle": "ໃສ່ຊື່ແຜນຮູບວາດ", - "DE.Controllers.Main.txtEditingMode": "ຕັ້ງຄ່າ ຮູບແບບການແກ້ໄຂ", - "DE.Controllers.Main.txtEvenPage": "ໜ້າຄູ່", - "DE.Controllers.Main.txtFirstPage": "ໜ້າທຳອິດ", - "DE.Controllers.Main.txtFooter": "ສ່ວນທ້າຍ", - "DE.Controllers.Main.txtHeader": "ຫົວຂໍ້ເອກະສານ", - "DE.Controllers.Main.txtOddPage": "ໜ້າຄີກ", - "DE.Controllers.Main.txtOnPage": "ໃນຫນ້າ", - "DE.Controllers.Main.txtProtected": "ຖ້າເຈົ້ານໍາໃຊ້ລະຫັດເພື່ອເປີດເອກະສານ, ລະຫັດປັດຈະບັນຈະຖືກແກ້ໄຂ", - "DE.Controllers.Main.txtSameAsPrev": "ແບບດຽວກັນກັບທີ່ຜ່ານມາ", - "DE.Controllers.Main.txtSection": "-ພາກສວ່ນ", - "DE.Controllers.Main.txtSeries": "ຊຸດ", - "DE.Controllers.Main.txtStyle_footnote_text": "ໂນດສ່ວນທ້າຍເອກະສານ", - "DE.Controllers.Main.txtStyle_Heading_1": " ຫົວເລື່ອງ 1", - "DE.Controllers.Main.txtStyle_Heading_2": "ຫົວເລື່ອງ 2", - "DE.Controllers.Main.txtStyle_Heading_3": "ຫົວເລື່ອງ 3", - "DE.Controllers.Main.txtStyle_Heading_4": "ຫົວເລື່ອງ4", - "DE.Controllers.Main.txtStyle_Heading_5": "ຫົວເລື່ອງ5", - "DE.Controllers.Main.txtStyle_Heading_6": "ຫົວເລື່ອງ6", - "DE.Controllers.Main.txtStyle_Heading_7": "ຫົວເລື່ອງ7", - "DE.Controllers.Main.txtStyle_Heading_8": "ຫົວເລື່ອງ8", - "DE.Controllers.Main.txtStyle_Heading_9": "ຫົວເລື່ອງ9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "ຄວາມເຂັ້ມຄໍາສັບ", - "DE.Controllers.Main.txtStyle_List_Paragraph": "ລາຍການຫຍໍ້ໜ້າ", - "DE.Controllers.Main.txtStyle_No_Spacing": "ບໍ່ມີໄລຍະຫ່າງ", - "DE.Controllers.Main.txtStyle_Normal": "ປົກກະຕິ", - "DE.Controllers.Main.txtStyle_Quote": "ໃບສະເໜີລາຄາ", - "DE.Controllers.Main.txtStyle_Subtitle": "ຄໍາບັນຍາຍ", - "DE.Controllers.Main.txtStyle_Title": "ຫົວຂໍ້", - "DE.Controllers.Main.txtXAxis": "ແກນ X, ແກນລວງນອນ", - "DE.Controllers.Main.txtYAxis": "ແກນ Y, ແກນລວງຕັ້ງ ", - "DE.Controllers.Main.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", - "DE.Controllers.Main.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້", - "DE.Controllers.Main.uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", - "DE.Controllers.Main.uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂຫລດ", - "DE.Controllers.Main.uploadImageSizeMessage": "ຂະໜາດຂອງຮູບພາບໃຫ່ຍເກີນກໍານົດ", - "DE.Controllers.Main.uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "DE.Controllers.Main.uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "DE.Controllers.Main.waitText": "ກະລຸນາລໍຖ້າ...", - "DE.Controllers.Main.warnLicenseExceeded": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ເເກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
    ຕິດຕໍ່ທີມບໍລິຫານ ເພື່ອສືກສາເພີ່ມເຕີ່ມ", - "DE.Controllers.Main.warnLicenseExp": "ໃບອະນຸຍາດຂອງທ່ານໝົດອາຍຸແລ້ວ.
    ກະລຸນາຕໍ່ໃບອະນຸຍາດຂອງທ່ານ ແລະ ນຳໃຊ້ໃໝ່.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "ໃບອະນຸຍາດໝົດອາຍຸ.
    ທ່ານບໍ່ສາມາດເຂົ້າເຖິງ ໜ້າ ທີ່ແກ້ໄຂເອກະສານ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "ໃບທະບຽນທີ່ຕ້ອງການເປັນ ໃບອະນຸຍາດ ຈຳ ເປັນຕ້ອງມີການຕໍ່ອາຍຸ
    ທ່ານມີຂໍ້ ຈຳ ກັດໃນການ ທຳ ງານການແກ້ໄຂເອກະສານ, ກະລຸນາຕິດຕໍ່ຫາຜູ້ເບິ່ງລະບົບ", - "DE.Controllers.Main.warnLicenseUsersExceeded": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ແກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ທີມບໍລິຫານເພື່ອຂໍ້ມູນເພີ່ມເຕີ່ມ", - "DE.Controllers.Main.warnNoLicense": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ %1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
    ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", - "DE.Controllers.Main.warnNoLicenseUsers": "ຈໍານວນການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ %1 ສຳລັບຂໍ້ກຳນົດການຍົກລະດັບສິດ", - "DE.Controllers.Main.warnProcessRightsChange": "ທ່ານໄດ້ຖືກປະຕິເສດສິດໃນການແກ້ໄຂເອກະສານດັ່ງກ່າວ.", - "DE.Controllers.Search.textNoTextFound": "ບໍ່ພົບເນື້ອຫາ", - "DE.Controllers.Search.textReplaceAll": "ປ່ຽນແທນທັງໝົດ", - "DE.Controllers.Settings.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "DE.Controllers.Settings.textCustomSize": "ກຳນົດຂະໜາດ", - "DE.Controllers.Settings.txtLoading": "ກໍາລັງດາວໂຫຼດ...", - "DE.Controllers.Settings.unknownText": "ບໍ່ຮູ້", - "DE.Controllers.Settings.warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
    ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?", - "DE.Controllers.Settings.warnDownloadAsRTF": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ ບາງຮູບແບບອາດຈະຫາຍໄປ.
    ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດຳເນີນການຕໍ່?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ໄດ້ຖືກບັນທຶກໃນເອກະສານນີ້. ກົດ \"ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທືກເອກະສານແບບອັດຕະໂນມັດ. ກົດ 'ອອກຈາກໜ້ານີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກ.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "ເຈົ້າອອກຈາກລະບົບ", - "DE.Controllers.Toolbar.leaveButtonText": "ອອກຈາກໜ້ານີ້", - "DE.Controllers.Toolbar.stayButtonText": "ຢູ່ໃນໜ້ານີ້", - "DE.Views.AddImage.textAddress": "ທີ່ຢູ່", - "DE.Views.AddImage.textBack": "ກັບຄືນ", - "DE.Views.AddImage.textFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", - "DE.Views.AddImage.textFromURL": "ຮູບພາບຈາກ URL", - "DE.Views.AddImage.textImageURL": "URL ຮູບພາບ", - "DE.Views.AddImage.textInsertImage": "ເພີ່ມຮູບພາບ", - "DE.Views.AddImage.textLinkSettings": "ການຕັ້ງຄ່າ Link", - "DE.Views.AddOther.textAddComment": "ເພີ່ມຄວາມຄິດເຫັນ", - "DE.Views.AddOther.textAddLink": "ເພີ່ມລິ້ງ", - "DE.Views.AddOther.textBack": "ກັບຄືນ", - "DE.Views.AddOther.textBreak": "ແຍກ", - "DE.Views.AddOther.textCenterBottom": "ດ້ານລຸ່ມທາງກາງ", - "DE.Views.AddOther.textCenterTop": "ທາງກາງດ້ານເທິງ", - "DE.Views.AddOther.textColumnBreak": "ແຕກຖັນ", - "DE.Views.AddOther.textComment": "ຄໍາເຫັນ", - "DE.Views.AddOther.textContPage": "ການຕໍ່ໜ້າເອກະສານ", - "DE.Views.AddOther.textCurrentPos": "ສະຖານະພາບ ປັດຈຸບັນ", - "DE.Views.AddOther.textDisplay": "ສະແດງຜົນ", - "DE.Views.AddOther.textDone": "ສໍາເລັດ", - "DE.Views.AddOther.textEvenPage": "ໜ້າເຈ້ຍ ເລກຄູ່", - "DE.Views.AddOther.textFootnote": "ໂນດສ່ວນທ້າຍເອກະສານ", - "DE.Views.AddOther.textFormat": "ປະເພດ", - "DE.Views.AddOther.textInsert": "ເພີ່ມ", - "DE.Views.AddOther.textInsertFootnote": "ເພີ່ມຕີນເອກະສານ", - "DE.Views.AddOther.textLeftBottom": "ລຸ່ມຊາຍ", - "DE.Views.AddOther.textLeftTop": "ຊ້າຍເທິງ", - "DE.Views.AddOther.textLink": "ລີ້ງ", - "DE.Views.AddOther.textLocation": "ສະຖານທີ", - "DE.Views.AddOther.textNextPage": "ໜ້າຕໍ່ໄປ", - "DE.Views.AddOther.textOddPage": "ໜ້າເຈ້ນ ເລກຄີກ", - "DE.Views.AddOther.textPageBreak": "ແຍກໜ້າເອກະສານ", - "DE.Views.AddOther.textPageNumber": "ເລກໜ້າ", - "DE.Views.AddOther.textPosition": "ຕໍາແໜ່ງ", - "DE.Views.AddOther.textRightBottom": "ຂວາລຸ່ມ", - "DE.Views.AddOther.textRightTop": "ຂວາເທິງ", - "DE.Views.AddOther.textSectionBreak": "ແຍກມາດຕາ", - "DE.Views.AddOther.textStartFrom": "ເລີ່ມຈາກ", - "DE.Views.AddOther.textTip": "ຄຳແນະນຳໃນໜ້າຈໍ", - "DE.Views.EditChart.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "DE.Views.EditChart.textAlign": "ຈັດແນວ", - "DE.Views.EditChart.textBack": "ກັບຄືນ", - "DE.Views.EditChart.textBackward": "ຍ້າຍໄປທາງຫຼັງ", - "DE.Views.EditChart.textBehind": "ທາງຫຼັງ", - "DE.Views.EditChart.textBorder": "ຂອບເຂດ", - "DE.Views.EditChart.textColor": "ສີ", - "DE.Views.EditChart.textCustomColor": "ປະເພດ ຂອງສີ", - "DE.Views.EditChart.textDistanceText": "ໄລຍະຫ່າງຈາກຂໍ້ຄວາມ", - "DE.Views.EditChart.textFill": "ຕື່ມ", - "DE.Views.EditChart.textForward": "ຍ້າຍໄປດ້ານໜ້າ", - "DE.Views.EditChart.textInFront": "ທາງໜ້າ", - "DE.Views.EditChart.textInline": "ເສັ້ນ", - "DE.Views.EditChart.textMoveText": "ຍ້າຍຄໍາສັບ", - "DE.Views.EditChart.textOverlap": "ອະນຸຍາດໃຫ້ຊ້ອນກັນ", - "DE.Views.EditChart.textRemoveChart": "ລົບແຜນວາດ", - "DE.Views.EditChart.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "DE.Views.EditChart.textSize": "ຂະໜາດ", - "DE.Views.EditChart.textSquare": "ສີ່ຫຼ່ຽມ", - "DE.Views.EditChart.textStyle": "ປະເພດ ", - "DE.Views.EditChart.textThrough": "ຜ່ານ", - "DE.Views.EditChart.textTight": "ຮັດແໜ້ນ ", - "DE.Views.EditChart.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "DE.Views.EditChart.textToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", - "DE.Views.EditChart.textTopBottom": "ເທີງແລະລຸ່ມ", - "DE.Views.EditChart.textType": "ພິມ", - "DE.Views.EditChart.textWrap": "ຫໍ່", - "DE.Views.EditHeader.textDiffFirst": "ໜ້າທໍາອິດທີແຕກຕ່າງກັນ", - "DE.Views.EditHeader.textDiffOdd": "ໜ້າເອກະສານ ເລກ ຄູ່ ແລະ ເລກຄີກ", - "DE.Views.EditHeader.textFrom": "ເລີ່ມຈາກ", - "DE.Views.EditHeader.textPageNumbering": "ເລກໜ້າ", - "DE.Views.EditHeader.textPrev": "ສືບຕໍ່ຈາກ ພາກກ່ອນໜ້າ", - "DE.Views.EditHeader.textSameAs": "ເຊື່ອມຕໍ່ກັບກ່ອນໜ້າ", - "DE.Views.EditHyperlink.textDisplay": "ສະແດງຜົນ", - "DE.Views.EditHyperlink.textEdit": "ແກ້ໄຂ ລີ້ງ", - "DE.Views.EditHyperlink.textLink": "ລີ້ງ", - "DE.Views.EditHyperlink.textRemove": "ລົບລີ້ງ", - "DE.Views.EditHyperlink.textTip": "ຄຳແນະນຳໃນໜ້າຈໍ", - "DE.Views.EditImage.textAddress": "ທີ່ຢູ່", - "DE.Views.EditImage.textAlign": "ຈັດແນວ", - "DE.Views.EditImage.textBack": "ກັບຄືນ", - "DE.Views.EditImage.textBackward": "ຍ້າຍໄປທາງຫຼັງ", - "DE.Views.EditImage.textBehind": "ທາງຫຼັງ", - "DE.Views.EditImage.textDefault": "ຂະໜາດແທ້ຈິງ", - "DE.Views.EditImage.textDistanceText": "ໄລຍະຫ່າງຈາກຂໍ້ຄວາມ", - "DE.Views.EditImage.textForward": "ຍ້າຍໄປດ້ານໜ້າ", - "DE.Views.EditImage.textFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", - "DE.Views.EditImage.textFromURL": "ຮູບພາບຈາກ URL", - "DE.Views.EditImage.textImageURL": "URL ຮູບພາບ", - "DE.Views.EditImage.textInFront": "ທາງໜ້າ", - "DE.Views.EditImage.textInline": "ເສັ້ນ", - "DE.Views.EditImage.textLinkSettings": "ການຕັ້ງຄ່າ Link", - "DE.Views.EditImage.textMoveText": "ຍ້າຍຄໍາສັບ", - "DE.Views.EditImage.textOverlap": "ອະນຸຍາດໃຫ້ຊ້ອນກັນ", - "DE.Views.EditImage.textRemove": "ລົບຮູບ", - "DE.Views.EditImage.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "DE.Views.EditImage.textReplace": "ປ່ຽນແທນ", - "DE.Views.EditImage.textReplaceImg": "ປ່ຽນແທນຮູບ", - "DE.Views.EditImage.textSquare": "ສີ່ຫຼ່ຽມ", - "DE.Views.EditImage.textThrough": "ຜ່ານ", - "DE.Views.EditImage.textTight": "ຮັດແໜ້ນ ", - "DE.Views.EditImage.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "DE.Views.EditImage.textToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", - "DE.Views.EditImage.textTopBottom": "ເທີງແລະລຸ່ມ", - "DE.Views.EditImage.textWrap": "ຫໍ່", - "DE.Views.EditParagraph.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "DE.Views.EditParagraph.textAdvanced": "ຂັ້ນສູງ", - "DE.Views.EditParagraph.textAdvSettings": "ຕັ້ງຄ່າຂັ້ນສູງ", - "DE.Views.EditParagraph.textAfter": "ຫຼັງຈາກ", - "DE.Views.EditParagraph.textAuto": "ອັດຕະໂນມັດ", - "DE.Views.EditParagraph.textBack": "ກັບຄືນ", - "DE.Views.EditParagraph.textBackground": "ພື້ນຫຼັງ", - "DE.Views.EditParagraph.textBefore": "ກ່ອນ", - "DE.Views.EditParagraph.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "DE.Views.EditParagraph.textFirstLine": "ເສັ້ນທໍາອິດ", - "DE.Views.EditParagraph.textFromText": "ໄລຍະຫ່າງຈາກຂໍ້ຄວາມ", - "DE.Views.EditParagraph.textKeepLines": "ໃຫ້ເສັ້ນເຂົ້ານໍາກັນ", - "DE.Views.EditParagraph.textKeepNext": "ເກັບໄວ້ຕໍ່ໄປ", - "DE.Views.EditParagraph.textOrphan": "ການຄອບຄຸມ", - "DE.Views.EditParagraph.textPageBreak": "ແຍກໜ້າເອກະສານກ່ອນໜ້າ", - "DE.Views.EditParagraph.textPrgStyles": "ຮຸບແບບວັກ", - "DE.Views.EditParagraph.textSpaceBetween": "ໄລຍະຫ່າງລະຫວ່າງວັກ", - "DE.Views.EditShape.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "DE.Views.EditShape.textAlign": "ຈັດແນວ", - "DE.Views.EditShape.textBack": "ກັບຄືນ", - "DE.Views.EditShape.textBackward": "ຍ້າຍໄປທາງຫຼັງ", - "DE.Views.EditShape.textBehind": "ຫຼັງ", - "DE.Views.EditShape.textBorder": "ຂອບເຂດ", - "DE.Views.EditShape.textColor": "ສີ", - "DE.Views.EditShape.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "DE.Views.EditShape.textEffects": "ຜົນ", - "DE.Views.EditShape.textFill": "ຕື່ມ", - "DE.Views.EditShape.textForward": "ຍ້າຍໄປດ້ານໜ້າ", - "DE.Views.EditShape.textFromText": "ໄລຍະຫ່າງຈາກຂໍ້ຄວາມ", - "DE.Views.EditShape.textInFront": "ທາງໜ້າ", - "DE.Views.EditShape.textInline": "ໃນເສັ້ນ", - "DE.Views.EditShape.textOpacity": "ຄວາມເຂັ້ມ", - "DE.Views.EditShape.textOverlap": "ອະນຸຍາດໃຫ້ຊ້ອນກັນ", - "DE.Views.EditShape.textRemoveShape": "ລົບຮ່າງ", - "DE.Views.EditShape.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "DE.Views.EditShape.textReplace": "ປ່ຽນແທນ", - "DE.Views.EditShape.textSize": "ຂະໜາດ", - "DE.Views.EditShape.textSquare": "ສີ່ຫຼ່ຽມ", - "DE.Views.EditShape.textStyle": "ປະເພດ ", - "DE.Views.EditShape.textThrough": "ຜ່ານ", - "DE.Views.EditShape.textTight": "ຮັດແໜ້ນ ", - "DE.Views.EditShape.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "DE.Views.EditShape.textToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", - "DE.Views.EditShape.textTopAndBottom": "ເທີ່ງແລະລຸ່ມ", - "DE.Views.EditShape.textWithText": "ຍ້າຍຄໍາສັບ", - "DE.Views.EditShape.textWrap": "ຫໍ່", - "DE.Views.EditTable.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "DE.Views.EditTable.textAlign": "ຈັດແນວ", - "DE.Views.EditTable.textBack": "ກັບຄືນ", - "DE.Views.EditTable.textBandedColumn": "ຮ່ວມກຸ່ມຖັນ", - "DE.Views.EditTable.textBandedRow": "ຮ່ວມກຸ່ມແຖວ", - "DE.Views.EditTable.textBorder": "ຂອບເຂດ", - "DE.Views.EditTable.textCellMargins": "ຂອບເຂດຂອງແຊວ", - "DE.Views.EditTable.textColor": "ສີ", - "DE.Views.EditTable.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "DE.Views.EditTable.textFill": "ຕື່ມ", - "DE.Views.EditTable.textFirstColumn": "ຖັນທໍາອິດ", - "DE.Views.EditTable.textFlow": "ຂະບວນການ", - "DE.Views.EditTable.textFromText": "ໄລຍະຫ່າງຈາກຂໍ້ຄວາມ", - "DE.Views.EditTable.textHeaderRow": "ຫົວແຖວ", - "DE.Views.EditTable.textInline": "ໃນເສັ້ນ", - "DE.Views.EditTable.textLastColumn": "ຖັນສຸດທ້າຍ", - "DE.Views.EditTable.textOptions": "ທາງເລືອກ", - "DE.Views.EditTable.textRemoveTable": "ລົບຕາຕະລາງ", - "DE.Views.EditTable.textRepeatHeader": "ເຮັດລື້ມຄືນ ຕາມ ແຖວຫົວເລື່ອງ", - "DE.Views.EditTable.textResizeFit": "ປັບຂະໜາດເພື່ອໃຫ້ເໝາະກັບເນື້ອຫາ", - "DE.Views.EditTable.textSize": "ຂະໜາດ", - "DE.Views.EditTable.textStyle": "ປະເພດ ", - "DE.Views.EditTable.textStyleOptions": "ທາງເລືອກ ປະເພດ", - "DE.Views.EditTable.textTableOptions": "ທາງເລືອກຕາຕະລາງ", - "DE.Views.EditTable.textTotalRow": "ຈໍານວນແຖວທັງໝົດ", - "DE.Views.EditTable.textWithText": "ຍ້າຍຄໍາສັບ", - "DE.Views.EditTable.textWrap": "ຫໍ່", - "DE.Views.EditText.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "DE.Views.EditText.textAdditional": "ເພີ່ມເຕີມ", - "DE.Views.EditText.textAdditionalFormat": "ຈັດຮູບແບບເພີ່ມເຕີມ", - "DE.Views.EditText.textAllCaps": "ໂຕໃຫຍ່ທັງໝົດ", - "DE.Views.EditText.textAutomatic": "ອັດຕະໂນມັດ", - "DE.Views.EditText.textBack": "ກັບຄືນ", - "DE.Views.EditText.textBullets": "ຂີດໜ້າ", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "S", - "DE.Views.EditText.textCharacterUnderline": "ີU", - "DE.Views.EditText.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "DE.Views.EditText.textDblStrikethrough": "ຂີດທັບສອງຄັ້ງ", - "DE.Views.EditText.textDblSuperscript": "ອັກສອນຫຍໍ້", - "DE.Views.EditText.textFontColor": "ສີຂອງຕົວອັກສອນ", - "DE.Views.EditText.textFontColors": "ສີຕົວອັກສອນ", - "DE.Views.EditText.textFonts": "ຕົວອັກສອນ", - "DE.Views.EditText.textHighlightColor": "ທາສີໄຮໄລ້", - "DE.Views.EditText.textHighlightColors": "ສີໄຮໄລ້", - "DE.Views.EditText.textLetterSpacing": "ໄລຍະຫ່າງລະຫວ່າງຕົວອັກສອນ", - "DE.Views.EditText.textLineSpacing": "ໄລຍະຫ່າງລະຫວ່າງເສັ້ນ", - "DE.Views.EditText.textNone": "ບໍ່ມີ", - "DE.Views.EditText.textNumbers": "ຕົວເລກ", - "DE.Views.EditText.textSize": "ຂະໜາດ", - "DE.Views.EditText.textSmallCaps": "ໂຕອັກສອນນ້ອຍ", - "DE.Views.EditText.textStrikethrough": "ຂີດທັບ", - "DE.Views.EditText.textSubscript": "ຕົວຫ້ອຍ", - "DE.Views.Search.textCase": "ກໍລະນີທີ່ສຳຄັນ", - "DE.Views.Search.textDone": "ສໍາເລັດ", - "DE.Views.Search.textFind": "ຄົ້ນຫາ", - "DE.Views.Search.textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", - "DE.Views.Search.textHighlight": "ໄຮໄລ້ ຜົນ", - "DE.Views.Search.textReplace": "ປ່ຽນແທນ", - "DE.Views.Search.textSearch": "ຊອກຫາ, ຄົ້ນຫາ", - "DE.Views.Settings.textAbout": "ກ່ຽວກັບ, ປະມານ", - "DE.Views.Settings.textAddress": "ທີ່ຢູ່", - "DE.Views.Settings.textAdvancedSettings": "ການຕັ້ງຄ່າແອັບ", - "DE.Views.Settings.textApplication": "ແອັບ", - "DE.Views.Settings.textAuthor": "ຜູ້ຂຽນ", - "DE.Views.Settings.textBack": "ກັບຄືນ", - "DE.Views.Settings.textBottom": "ລຸ່ມສຸດ", - "DE.Views.Settings.textCentimeter": "ເຊັນຕິເມັດ", - "DE.Views.Settings.textCollaboration": "ຮ່ວມກັນ", - "DE.Views.Settings.textColorSchemes": "ໂທນສີ", - "DE.Views.Settings.textComment": "ຄໍາເຫັນ", - "DE.Views.Settings.textCommentingDisplay": "ສະແດງຄໍາເຫັນ", - "DE.Views.Settings.textCreated": "ສ້າງ", - "DE.Views.Settings.textCreateDate": "ວັນທີ ທີສ້າງ", - "DE.Views.Settings.textCustom": "ປະເພດ", - "DE.Views.Settings.textCustomSize": "ກຳນົດຂະໜາດ", - "DE.Views.Settings.textDisableAll": "ປິດທັງໝົດ", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "ປິດທຸກ ມາກໂຄ ດ້ວຍ ການແຈ້ງເຕືອນ", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "ປິດທຸກ ມາກໂຄ ໂດຍບໍ່ແຈ້ງເຕືອນ", - "DE.Views.Settings.textDisplayComments": "ຄໍາເຫັນ", - "DE.Views.Settings.textDisplayResolvedComments": "ແກ້ໄຂຄໍາເຫັນ", - "DE.Views.Settings.textDocInfo": "ຂໍ້ມູນເອກະສານ", - "DE.Views.Settings.textDocTitle": "ການຕັ້ງຊື່ ເອກະສານ", - "DE.Views.Settings.textDocumentFormats": "ປະເພດ ເອກະສານ", - "DE.Views.Settings.textDocumentSettings": "ການຕັ້ງຄ່າ ເອກະສານ", - "DE.Views.Settings.textDone": "ສໍາເລັດ", - "DE.Views.Settings.textDownload": "ດາວໂຫຼດ", - "DE.Views.Settings.textDownloadAs": "ດາວໂຫຼດໂດຍ", - "DE.Views.Settings.textEditDoc": "ແກ້ໄຂເອກະສານ", - "DE.Views.Settings.textEmail": "ອີເມລ", - "DE.Views.Settings.textEnableAll": "ເປີດທັງໝົດ", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "ເປີດທຸກມາກໂຄໂດຍບໍ່ແຈ້ງເຕືອນ", - "DE.Views.Settings.textFind": "ຊອກ", - "DE.Views.Settings.textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", - "DE.Views.Settings.textFormat": "ປະເພດ", - "DE.Views.Settings.textHelp": "ຊວ່ຍ", - "DE.Views.Settings.textHiddenTableBorders": "ເຊື່ອງຂອບຕາຕະລາງ", - "DE.Views.Settings.textInch": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", - "DE.Views.Settings.textLandscape": "ພູມສັນຖານ", - "DE.Views.Settings.textLastModified": "ການແກ້ໄຂຄັ້ງລ້າສຸດ", - "DE.Views.Settings.textLastModifiedBy": "ແກ້ໄຂຄັ້ງລ້າສຸດໂດຍ", - "DE.Views.Settings.textLeft": "ຊ້າຍ", - "DE.Views.Settings.textLoading": "ກໍາລັງດາວໂຫຼດ...", - "DE.Views.Settings.textLocation": "ສະຖານທີ", - "DE.Views.Settings.textMacrosSettings": "ການຕັ້ງຄ່າ Macros", - "DE.Views.Settings.textMargins": "ຂອບ", - "DE.Views.Settings.textNoCharacters": "ບໍ່ມີຕົວອັກສອນພິມ", - "DE.Views.Settings.textOrientation": "ການຈັດວາງ", - "DE.Views.Settings.textOwner": "ເຈົ້າຂອງ", - "DE.Views.Settings.textPages": "ໜ້າ", - "DE.Views.Settings.textParagraphs": "ວັກ", - "DE.Views.Settings.textPoint": "ຈຸດ", - "DE.Views.Settings.textPortrait": "ລວງຕັ້ງ", - "DE.Views.Settings.textPoweredBy": "ສ້າງໂດຍ", - "DE.Views.Settings.textPrint": "ພິມ", - "DE.Views.Settings.textReader": "ຮູບແບບເພື່ອອ່ານ", - "DE.Views.Settings.textReview": "ໝາຍການແກ້ໄຂ ", - "DE.Views.Settings.textRight": "ຂວາ", - "DE.Views.Settings.textSettings": "ການຕັ້ງຄ່າ", - "DE.Views.Settings.textShowNotification": "ສະແດງການແຈ້ງເຕືອນ", - "DE.Views.Settings.textSpaces": "ໄລຍະຫ່າງ", - "DE.Views.Settings.textSpellcheck": "ກວດກາການສະກົດຄໍາ", - "DE.Views.Settings.textStatistic": "ສະຖິຕິ", - "DE.Views.Settings.textSubject": "ເລື່ອງ", - "DE.Views.Settings.textSymbols": "ສັນຍາລັກ", - "DE.Views.Settings.textTel": "ໂທ", - "DE.Views.Settings.textTitle": "ຫົວຂໍ້", - "DE.Views.Settings.textTop": "ເບື້ອງເທີງ", - "DE.Views.Settings.textUnitOfMeasurement": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", - "DE.Views.Settings.textUploaded": "ອັບໂຫລດສຳເລັດ", - "DE.Views.Settings.textVersion": "ລຸ້ນ", - "DE.Views.Settings.textWords": "ຕົວໜັງສື", - "DE.Views.Settings.unknownText": "ບໍ່ຮູ້", - "DE.Views.Toolbar.textBack": "ກັບຄືນ" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/lv.json b/apps/documenteditor/mobile/locale/lv.json index 8d6d83c48..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/lv.json +++ b/apps/documenteditor/mobile/locale/lv.json @@ -1,381 +1,577 @@ { - "Common.UI.ThemeColorPalette.textStandartColors": "Standarta krāsas", - "Common.UI.ThemeColorPalette.textThemeColors": "Tēmas krāsas", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "DE.Controllers.AddContainer.textImage": "Attēls", - "DE.Controllers.AddContainer.textOther": "Citi", - "DE.Controllers.AddContainer.textShape": "Forma", - "DE.Controllers.AddContainer.textTable": "Tabula", - "DE.Controllers.AddImage.textEmptyImgUrl": "Ir jānorāda attēla URL.", - "DE.Controllers.AddImage.txtNotUrl": "Šī lauka URL adresei ir jābūt formātā 'http://www.example.com'.", - "DE.Controllers.AddOther.txtNotUrl": "Šī lauka URL adresei ir jābūt formātā 'http://www.example.com'.", - "DE.Controllers.AddTable.textCancel": "Atcelt", - "DE.Controllers.AddTable.textColumns": "Kolonnas", - "DE.Controllers.AddTable.textRows": "Rindas", - "DE.Controllers.AddTable.textTableSize": "Tabulas izmērs", - "DE.Controllers.DocumentHolder.menuAddLink": "Pievienot saiti", - "DE.Controllers.DocumentHolder.menuCopy": "Kopēt", - "DE.Controllers.DocumentHolder.menuCut": "Izgriezt", - "DE.Controllers.DocumentHolder.menuDelete": "Dzēst", - "DE.Controllers.DocumentHolder.menuEdit": "Rediģēt", - "DE.Controllers.DocumentHolder.menuMore": "Vairāk", - "DE.Controllers.DocumentHolder.menuOpenLink": "Atvērt saiti", - "DE.Controllers.DocumentHolder.menuPaste": "Ielīmēt", - "DE.Controllers.DocumentHolder.sheetCancel": "Atcelt", - "DE.Controllers.DocumentHolder.textGuest": "Viesis", - "DE.Controllers.EditContainer.textChart": "Diagramma", - "DE.Controllers.EditContainer.textHyperlink": "Hipersaite", - "DE.Controllers.EditContainer.textImage": "Attēls", - "DE.Controllers.EditContainer.textParagraph": "Rindkopa", - "DE.Controllers.EditContainer.textSettings": "Iestatījumi", - "DE.Controllers.EditContainer.textShape": "Forma", - "DE.Controllers.EditContainer.textTable": "Tabula", - "DE.Controllers.EditContainer.textText": "Teksts", - "DE.Controllers.EditImage.textEmptyImgUrl": "Ir jānorāda attēla URL.", - "DE.Controllers.EditImage.txtNotUrl": "Šī lauka URL adresei ir jābūt formātā 'http://www.example.com'.", - "DE.Controllers.EditText.textAuto": "Automātiski", - "DE.Controllers.EditText.textFonts": "Fonti", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Ievadiet paroli:", - "DE.Controllers.Main.advDRMOptions": "Aizsargāts fails", - "DE.Controllers.Main.advDRMPassword": "Parole", - "DE.Controllers.Main.advTxtOptions": "Izvēlēties TXT iespējas", - "DE.Controllers.Main.applyChangesTextText": "Ielādē datus...", - "DE.Controllers.Main.applyChangesTitleText": "Ielādē datus", - "DE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.", - "DE.Controllers.Main.criticalErrorExtText": "Nospiediet \"OK\", lai atgrieztos dokumentu sarakstā.", - "DE.Controllers.Main.criticalErrorTitle": "Kļūda", - "DE.Controllers.Main.downloadErrorText": "Lejuplāde neizdevās.", - "DE.Controllers.Main.downloadMergeText": "Lejupielādē...", - "DE.Controllers.Main.downloadMergeTitle": "Lejupielāde", - "DE.Controllers.Main.downloadTextText": "Lejuplādē dokumentu...", - "DE.Controllers.Main.downloadTitleText": "Dokumenta lejupielāde", - "DE.Controllers.Main.errorBadImageUrl": "Nav pareizs attēla URL", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Zudis servera savienojums. Jūs vairs nevarat rediģēt.", - "DE.Controllers.Main.errorConnectToServer": "Dokumentu neizdevās noglabāt. Lūdzu, pārbaudiet savienojuma uzstādījumus vai sazinieties ar savu administratoru.
    Nospiežot \"OK\", jūs varēsit lejupielādēt dokumentu.", - "DE.Controllers.Main.errorDatabaseConnection": "Ārējā kļūda.
    Datubāzes piekļuves kļūda. Lūdzu, sazinieties ar atbalsta daļu.", - "DE.Controllers.Main.errorDataRange": "Nepareizs datu diapazons", - "DE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1", - "DE.Controllers.Main.errorFilePassProtect": "Fails ir aizsargāts ar paroli un to nevar atvērt.", - "DE.Controllers.Main.errorKeyEncrypt": "Nezināms atslēgas deskriptors", - "DE.Controllers.Main.errorKeyExpire": "Atslēgas deskriptora termiņš beidzies", - "DE.Controllers.Main.errorMailMergeLoadFile": "Ielāde neizdevās", - "DE.Controllers.Main.errorMailMergeSaveFile": "Sapludināšana neizdevās.", - "DE.Controllers.Main.errorProcessSaveResult": "Saglabāšana neizdevās.", - "DE.Controllers.Main.errorServerVersion": "Redaktora versija ir atjaunināta. Lapa tiks pārlādēta, lai piemērotu izmaiņas.", - "DE.Controllers.Main.errorStockChart": "Nederīga rindu kārtība. Lai izveidotu akciju diagrammu novietojiet datus lapā šādā secībā:
    Sākumcena, maksimālā cena, minimālā cena, slēgšanas cena.", - "DE.Controllers.Main.errorUpdateVersion": "Faila versija ir mainīta. Lapa tiks pārlādēta.", - "DE.Controllers.Main.errorUserDrop": "Failam šobrīd nevar piekļūt.", - "DE.Controllers.Main.errorUsersExceed": "Ir pārsniegts lietotāju skaits", - "DE.Controllers.Main.errorViewerDisconnect": "Zudis savienojums. Jūs joprojām varat aplūkot dokumentu,
    taču jūs nevarēsit to lejupielādēt, kamēr savienojums nebūs atjaunots.", - "DE.Controllers.Main.leavePageText": "Šim dokumentam ir nesaglabātas izmaiņas. Spiediet \"palikt lapā\", lai sagaidītu dokumenta automātisko noglabāšanu. Spiediet \"pamest lapu\", lai atceltu visas nesaglabātās izmaiņas.", - "DE.Controllers.Main.loadFontsTextText": "Ielādē datus...", - "DE.Controllers.Main.loadFontsTitleText": "Ielādē datus", - "DE.Controllers.Main.loadFontTextText": "Ielādē datus...", - "DE.Controllers.Main.loadFontTitleText": "Ielādē datus", - "DE.Controllers.Main.loadImagesTextText": "Ielādē attēlus...", - "DE.Controllers.Main.loadImagesTitleText": "Ielādē attēlus", - "DE.Controllers.Main.loadImageTextText": "Ielādē attēlu...", - "DE.Controllers.Main.loadImageTitleText": "Ielādē attēlu", - "DE.Controllers.Main.loadingDocumentTextText": "Ielādē dokumentu...", - "DE.Controllers.Main.loadingDocumentTitleText": "Ielādē dokumentu", - "DE.Controllers.Main.mailMergeLoadFileText": "Ielādē datu avotu...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Ielādē datu avotu", - "DE.Controllers.Main.notcriticalErrorTitle": "Brīdinājums", - "DE.Controllers.Main.openErrorText": "Faila atvēršanas laikā radās kļūda", - "DE.Controllers.Main.openTextText": "Dokumenta atvēršana...", - "DE.Controllers.Main.openTitleText": "Dokumenta atvēršana", - "DE.Controllers.Main.printTextText": "Drukā dokumentu...", - "DE.Controllers.Main.printTitleText": "Drukā dokumentu", - "DE.Controllers.Main.saveErrorText": "Faila noglabāšanas laikā radās kļūda", - "DE.Controllers.Main.savePreparingText": "Gatavojas saglabāt", - "DE.Controllers.Main.savePreparingTitle": "Gatavojas saglabāt. Lūdzu, uzgaidiet...", - "DE.Controllers.Main.saveTextText": "Dokumenta saglabāšana...", - "DE.Controllers.Main.saveTitleText": "Dokumenta saglabāšana", - "DE.Controllers.Main.sendMergeText": "Sapludināšanas rezultāta nosūtīšana...", - "DE.Controllers.Main.sendMergeTitle": "Saplūšanas rezultāta nosūtīšana", - "DE.Controllers.Main.splitDividerErrorText": "Rindu skaitam ir jādalās ar %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Kolonnu skaitam ir jābūt mazākam par %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Rindu skaitam ir jābūt mazākam nekā %1", - "DE.Controllers.Main.textAnonymous": "Anonīms lietotājs", - "DE.Controllers.Main.textBack": "Atpakaļ", - "DE.Controllers.Main.textBuyNow": "Apmeklēt vietni", - "DE.Controllers.Main.textCancel": "Atcelt", - "DE.Controllers.Main.textClose": "Aizvērt", - "DE.Controllers.Main.textContactUs": "Pārdošanas nodaļa", - "DE.Controllers.Main.textDone": "Gatavs", - "DE.Controllers.Main.textLoadingDocument": "Ielādē dokumentu", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE pieslēguma ierobežojums", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPassword": "Parole", - "DE.Controllers.Main.textPreloader": "Notiek ielāde...", - "DE.Controllers.Main.textTryUndoRedo": "Atsaukšanas/atkārtošanas funkcijas ātrās koprediģēšanas režīmā ir atspējotas.", - "DE.Controllers.Main.textUsername": "Lietotājvārds", - "DE.Controllers.Main.titleLicenseExp": "Licencei beidzies termiņš", - "DE.Controllers.Main.titleServerVersion": "Atjaunināts redaktors", - "DE.Controllers.Main.titleUpdateVersion": "Versija mainīta", - "DE.Controllers.Main.txtArt": "Ievadiet savu tekstu", - "DE.Controllers.Main.txtDiagramTitle": "Diagrammas nosaukums", - "DE.Controllers.Main.txtEditingMode": "Uzstāda rediģēšanas režīmu...", - "DE.Controllers.Main.txtFooter": "Kājene", - "DE.Controllers.Main.txtHeader": "Galvene", - "DE.Controllers.Main.txtSeries": "Rinda", - "DE.Controllers.Main.txtStyle_footnote_text": "Zemteksta piezīmes teksts", - "DE.Controllers.Main.txtStyle_Heading_1": "Virsraksts 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Virsraksts 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Virsraksts 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Virsraksts 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Virsraksts 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Virsraksts 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Virsraksts 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Virsraksts 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Virsraksts 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Izcelts citāts", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Saraksta rindkopa", - "DE.Controllers.Main.txtStyle_No_Spacing": "Bez atstarpēm", - "DE.Controllers.Main.txtStyle_Normal": "Normāls", - "DE.Controllers.Main.txtStyle_Quote": "Citāts", - "DE.Controllers.Main.txtStyle_Subtitle": "Apakšvirsraksts", - "DE.Controllers.Main.txtStyle_Title": "Nosaukums", - "DE.Controllers.Main.txtXAxis": "X ass", - "DE.Controllers.Main.txtYAxis": "Y ass", - "DE.Controllers.Main.unknownErrorText": "Nezināma kļūda.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Jūsu pārlūkprogramma nav atbalstīta.", - "DE.Controllers.Main.uploadImageExtMessage": "Nezināms attēla formāts.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Nav augšupielādēto attēlu.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maksimālais attēla izmērs ir pārsniegts.", - "DE.Controllers.Main.uploadImageTextText": "Augšupielādē attēlu...", - "DE.Controllers.Main.uploadImageTitleText": "Augšuplādē attēlu", - "DE.Controllers.Main.warnLicenseExp": "Jūsu licencei ir beidzies termiņš.
    Lūdzu, atjauniniet savu licenci un pārlādējiet lapu.", - "DE.Controllers.Main.warnNoLicense": "Šai %1 editors versijai ir noteikti ierobežojumi saistībā ar vienlaicīgu pieslēgšanos dokumentu serverim.
    Ja jums ir nepieciešams vairāk, lūdzu, apsveriet Jūsu šībrīža licences līmeņa paaugstināšanu vai komerciālās licences iegādi.", - "DE.Controllers.Main.warnNoLicenseUsers": "Šai %1 editors versijai ir noteikti ierobežojumi saistībā ar vairāku lietotāju vienlaicīgu darbību.
    Ja jums ir nepieciešams vairāk, lūdzu, apsveriet paaugstināt šībrīža licences līmeni vai komerciālās licences iegādi.", - "DE.Controllers.Main.warnProcessRightsChange": "Jums ir liegtas tiesības šo failu rediģēt.", - "DE.Controllers.Search.textNoTextFound": "Teksts nav atrasts", - "DE.Controllers.Search.textReplaceAll": "Aizvietot visus", - "DE.Controllers.Settings.notcriticalErrorTitle": "Brīdinājums", - "DE.Controllers.Settings.txtLoading": "Notiek ielāde...", - "DE.Controllers.Settings.unknownText": "Nezināms", - "DE.Controllers.Settings.warnDownloadAs": "Ja jūs izvēlēsieties turpināt saglabāt šajā formātā visas diagrammas un attēli tiks zaudēti.
    Vai tiešām vēlaties turpināt?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Šim dokumentam ir nesaglabātas izmaiņas. Spiediet \"palikt lapā\", lai sagaidītu dokumenta automātisko noglabāšanu. Spiediet \"pamest lapu\", lai atceltu visas nesaglabātās izmaiņas.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Jūs pametat lietotni", - "DE.Controllers.Toolbar.leaveButtonText": "Pamest lapu", - "DE.Controllers.Toolbar.stayButtonText": "Palikt lapā", - "DE.Views.AddImage.textAddress": "adrese", - "DE.Views.AddImage.textBack": "Atpakaļ", - "DE.Views.AddImage.textFromLibrary": "Attēls no bibliotēkas", - "DE.Views.AddImage.textFromURL": "Attēls no URL", - "DE.Views.AddImage.textImageURL": "Attēla URL", - "DE.Views.AddImage.textInsertImage": "Ievadīt attēlu", - "DE.Views.AddImage.textLinkSettings": "Saites uzstādījumi", - "DE.Views.AddOther.textAddLink": "Pievienot saiti", - "DE.Views.AddOther.textBack": "Atpakaļ", - "DE.Views.AddOther.textCenterBottom": "Apakšā centrā", - "DE.Views.AddOther.textCenterTop": "Augšā centrā", - "DE.Views.AddOther.textColumnBreak": "Kolonnas atstarpe", - "DE.Views.AddOther.textContPage": "Tekošajā lapā", - "DE.Views.AddOther.textCurrentPos": "Šībrīža pozīcija", - "DE.Views.AddOther.textDisplay": "Parādīt", - "DE.Views.AddOther.textEvenPage": "Līdzena lapa", - "DE.Views.AddOther.textInsert": "Ievietot", - "DE.Views.AddOther.textLeftBottom": "Kreisā apakšā", - "DE.Views.AddOther.textLeftTop": "Kreisā augšā", - "DE.Views.AddOther.textLink": "Saite", - "DE.Views.AddOther.textNextPage": "Nākamā lapa", - "DE.Views.AddOther.textOddPage": "Nepāra lappuse", - "DE.Views.AddOther.textPageBreak": "Lapas pārtraukums", - "DE.Views.AddOther.textPageNumber": "Lapas numurs", - "DE.Views.AddOther.textPosition": "Pozīcija", - "DE.Views.AddOther.textRightBottom": "Labā apakšā", - "DE.Views.AddOther.textRightTop": "Labā augšā", - "DE.Views.AddOther.textSectionBreak": "Sadaļas pārtraukums", - "DE.Views.AddOther.textTip": "Padoms", - "DE.Views.EditChart.textAlign": "Līdzināt", - "DE.Views.EditChart.textBack": "Atpakaļ", - "DE.Views.EditChart.textBackward": "Pārnest atpakaļ", - "DE.Views.EditChart.textBehind": "Aiz", - "DE.Views.EditChart.textBorder": "Robeža", - "DE.Views.EditChart.textColor": "Krāsa", - "DE.Views.EditChart.textDistanceText": "Attālums no teksta", - "DE.Views.EditChart.textFill": "Aizpildīt", - "DE.Views.EditChart.textForward": "Pārnest uz priekšu", - "DE.Views.EditChart.textInFront": "Priekšā", - "DE.Views.EditChart.textInline": "Tekstā", - "DE.Views.EditChart.textMoveText": "Pārnest ar tekstu", - "DE.Views.EditChart.textOverlap": "Atļaut pārklāšanos", - "DE.Views.EditChart.textRemoveChart": "Noņemt diagrammu", - "DE.Views.EditChart.textReorder": "Pārkārtot", - "DE.Views.EditChart.textSize": "Izmērs", - "DE.Views.EditChart.textSquare": "Kvadrāta", - "DE.Views.EditChart.textStyle": "Stils", - "DE.Views.EditChart.textThrough": "Cauri", - "DE.Views.EditChart.textTight": "Cieši", - "DE.Views.EditChart.textToBackground": "Pārnest uz aizmuguri", - "DE.Views.EditChart.textToForeground": "Nest uz priekšplānu", - "DE.Views.EditChart.textTopBottom": "Augšā un apakša", - "DE.Views.EditChart.textType": "Veids", - "DE.Views.EditChart.textWrap": "Aplauzt", - "DE.Views.EditHyperlink.textDisplay": "Parādīt", - "DE.Views.EditHyperlink.textEdit": "Rediģēt saiti", - "DE.Views.EditHyperlink.textLink": "Saite", - "DE.Views.EditHyperlink.textRemove": "Noņemt saiti", - "DE.Views.EditHyperlink.textTip": "Padoms", - "DE.Views.EditImage.textAddress": "adrese", - "DE.Views.EditImage.textAlign": "Līdzināt", - "DE.Views.EditImage.textBack": "Atpakaļ", - "DE.Views.EditImage.textBackward": "Pārnest atpakaļ", - "DE.Views.EditImage.textBehind": "Aiz", - "DE.Views.EditImage.textDefault": "Noklusējuma izmērs", - "DE.Views.EditImage.textDistanceText": "Attālums no teksta", - "DE.Views.EditImage.textForward": "Pārnest uz priekšu", - "DE.Views.EditImage.textFromLibrary": "Attēls no bibliotēkas", - "DE.Views.EditImage.textFromURL": "Attēls no URL", - "DE.Views.EditImage.textImageURL": "Attēla URL", - "DE.Views.EditImage.textInFront": "Priekšā", - "DE.Views.EditImage.textInline": "Tekstā", - "DE.Views.EditImage.textLinkSettings": "Saites uzstādījumi", - "DE.Views.EditImage.textMoveText": "Pārnest ar tekstu", - "DE.Views.EditImage.textOverlap": "Atļaut pārklāšanos", - "DE.Views.EditImage.textRemove": "Noņemt attēlu", - "DE.Views.EditImage.textReorder": "Pārkārtot", - "DE.Views.EditImage.textReplace": "Aizvietot", - "DE.Views.EditImage.textReplaceImg": "Aizvietot attēlu", - "DE.Views.EditImage.textSquare": "Kvadrāta", - "DE.Views.EditImage.textThrough": "Cauri", - "DE.Views.EditImage.textTight": "Cieši", - "DE.Views.EditImage.textToBackground": "Pārnest uz aizmuguri", - "DE.Views.EditImage.textToForeground": "Nest uz priekšplānu", - "DE.Views.EditImage.textTopBottom": "Augšā un apakša", - "DE.Views.EditImage.textWrap": "Aplauzt", - "DE.Views.EditParagraph.textAdvanced": "Papildus", - "DE.Views.EditParagraph.textAdvSettings": "Papildu iestatījumi", - "DE.Views.EditParagraph.textAfter": "Pēc", - "DE.Views.EditParagraph.textAuto": "Automātiski", - "DE.Views.EditParagraph.textBack": "Atpakaļ", - "DE.Views.EditParagraph.textBackground": "Fons", - "DE.Views.EditParagraph.textBefore": "Pirms", - "DE.Views.EditParagraph.textFromText": "Attālums no teksta", - "DE.Views.EditParagraph.textKeepLines": "Turēt līnijas kopā", - "DE.Views.EditParagraph.textKeepNext": "Nenoraut no nākošā", - "DE.Views.EditParagraph.textOrphan": "Bāreņrindiņu kontrole", - "DE.Views.EditParagraph.textPageBreak": "Lappuses pārtraukums pirms", - "DE.Views.EditParagraph.textPrgStyles": "Rindkopas stili", - "DE.Views.EditParagraph.textSpaceBetween": "Atstarpe starp rindkopām", - "DE.Views.EditShape.textAlign": "Līdzināt", - "DE.Views.EditShape.textBack": "Atpakaļ", - "DE.Views.EditShape.textBackward": "Pārnest atpakaļ", - "DE.Views.EditShape.textBehind": "Aiz", - "DE.Views.EditShape.textBorder": "Robeža", - "DE.Views.EditShape.textColor": "Krāsa", - "DE.Views.EditShape.textEffects": "Efekti", - "DE.Views.EditShape.textFill": "Aizpildīt", - "DE.Views.EditShape.textForward": "Pārnest uz priekšu", - "DE.Views.EditShape.textFromText": "Attālums no teksta", - "DE.Views.EditShape.textInFront": "Priekšā", - "DE.Views.EditShape.textInline": "Tekstā", - "DE.Views.EditShape.textOpacity": "Necaurredzamība", - "DE.Views.EditShape.textOverlap": "Atļaut pārklāšanos", - "DE.Views.EditShape.textRemoveShape": "Noņemt figūru", - "DE.Views.EditShape.textReorder": "Pārkārtot", - "DE.Views.EditShape.textReplace": "Aizvietot", - "DE.Views.EditShape.textSize": "Izmērs", - "DE.Views.EditShape.textSquare": "Kvadrāta", - "DE.Views.EditShape.textStyle": "Stils", - "DE.Views.EditShape.textThrough": "Cauri", - "DE.Views.EditShape.textTight": "Cieši", - "DE.Views.EditShape.textToBackground": "Pārnest uz aizmuguri", - "DE.Views.EditShape.textToForeground": "Nest uz priekšplānu", - "DE.Views.EditShape.textTopAndBottom": "Augšā un apakša", - "DE.Views.EditShape.textWithText": "Pārnest ar tekstu", - "DE.Views.EditShape.textWrap": "Aplauzt", - "DE.Views.EditTable.textAlign": "Līdzināt", - "DE.Views.EditTable.textBack": "Atpakaļ", - "DE.Views.EditTable.textBandedColumn": "Joslu kolonna", - "DE.Views.EditTable.textBandedRow": "Joslu rinda", - "DE.Views.EditTable.textBorder": "Robeža", - "DE.Views.EditTable.textCellMargins": "Šunu piemales", - "DE.Views.EditTable.textColor": "Krāsa", - "DE.Views.EditTable.textFill": "Aizpildīt", - "DE.Views.EditTable.textFirstColumn": "Pirmā kolonna", - "DE.Views.EditTable.textFlow": "Peldošā", - "DE.Views.EditTable.textFromText": "Attālums no teksta", - "DE.Views.EditTable.textHeaderRow": "Galvenes rinda", - "DE.Views.EditTable.textInline": "Tekstā", - "DE.Views.EditTable.textLastColumn": "Pēdējā kolonna", - "DE.Views.EditTable.textOptions": "Iespējas", - "DE.Views.EditTable.textRemoveTable": "Noņemt tabulu", - "DE.Views.EditTable.textRepeatHeader": "Atkārtot kā galveni", - "DE.Views.EditTable.textResizeFit": "Mainīt izmēru atbilstoši saturam", - "DE.Views.EditTable.textSize": "Izmērs", - "DE.Views.EditTable.textStyle": "Stils", - "DE.Views.EditTable.textStyleOptions": "Stila iestatījumi", - "DE.Views.EditTable.textTableOptions": "Tabulas uzstādījumi", - "DE.Views.EditTable.textTotalRow": "Koprinda", - "DE.Views.EditTable.textWithText": "Pārnest ar tekstu", - "DE.Views.EditTable.textWrap": "Aplauzt", - "DE.Views.EditText.textAdditional": "Papildu", - "DE.Views.EditText.textAdditionalFormat": "Papildu formatēšana", - "DE.Views.EditText.textAllCaps": "Visi lielie burti", - "DE.Views.EditText.textAutomatic": "Automatic", - "DE.Views.EditText.textBack": "Atpakaļ", - "DE.Views.EditText.textBullets": "Aizzīmes", - "DE.Views.EditText.textDblStrikethrough": "Dubultā pārsvītrošana", - "DE.Views.EditText.textDblSuperscript": "Augšteksts", - "DE.Views.EditText.textFontColor": "Fonta krāsa", - "DE.Views.EditText.textFontColors": "Fonta krāsas", - "DE.Views.EditText.textFonts": "Fonti", - "DE.Views.EditText.textHighlightColor": "Izcelt ar krāsu", - "DE.Views.EditText.textHighlightColors": "Izcelšanas krāsas", - "DE.Views.EditText.textLetterSpacing": "Atstarpe", - "DE.Views.EditText.textLineSpacing": "Rindstarpas", - "DE.Views.EditText.textNone": "neviens", - "DE.Views.EditText.textNumbers": "Skaitļi", - "DE.Views.EditText.textSize": "Izmērs", - "DE.Views.EditText.textSmallCaps": "Mazie burti", - "DE.Views.EditText.textStrikethrough": "Pārsvītrots", - "DE.Views.EditText.textSubscript": "Apakšteksts", - "DE.Views.Search.textCase": "Ievērojot burtu lielumus", - "DE.Views.Search.textDone": "Gatavs", - "DE.Views.Search.textFind": "Atrast", - "DE.Views.Search.textFindAndReplace": "Atrast un aizvietot", - "DE.Views.Search.textHighlight": "Izcelt rezultātus", - "DE.Views.Search.textReplace": "Aizvietot", - "DE.Views.Search.textSearch": "Meklēt", - "DE.Views.Settings.textAbout": "Par", - "DE.Views.Settings.textAddress": "adrese", - "DE.Views.Settings.textAuthor": "Autors", - "DE.Views.Settings.textBack": "Atpakaļ", - "DE.Views.Settings.textCreateDate": "Izveides datums", - "DE.Views.Settings.textCustom": "Personalizēts", - "DE.Views.Settings.textCustomSize": "Pielāgots izmērs", - "DE.Views.Settings.textDocInfo": "Informācija par dokumentu", - "DE.Views.Settings.textDocTitle": "Dokumenta nosaukums", - "DE.Views.Settings.textDocumentFormats": "Dokumenta formāti", - "DE.Views.Settings.textDocumentSettings": "Dokumenta uzstādījumi", - "DE.Views.Settings.textDone": "Gatavs", - "DE.Views.Settings.textDownload": "Lejupielādēt", - "DE.Views.Settings.textDownloadAs": "Lejupielādēt kā...", - "DE.Views.Settings.textEditDoc": "Rediģēt dokumentu", - "DE.Views.Settings.textEmail": "e-pasts", - "DE.Views.Settings.textFind": "Atrast", - "DE.Views.Settings.textFindAndReplace": "Atrast un aizvietot", - "DE.Views.Settings.textFormat": "Formāts", - "DE.Views.Settings.textHelp": "Palīdzība", - "DE.Views.Settings.textLandscape": "Ainava", - "DE.Views.Settings.textLoading": "Notiek ielāde...", - "DE.Views.Settings.textOrientation": "Orientācija", - "DE.Views.Settings.textPages": "Lapas", - "DE.Views.Settings.textParagraphs": "Rindkopas", - "DE.Views.Settings.textPortrait": "Portrets", - "DE.Views.Settings.textPoweredBy": "Nodrošina", - "DE.Views.Settings.textReader": "Lasīšanas režīms", - "DE.Views.Settings.textSettings": "Iestatījumi", - "DE.Views.Settings.textSpaces": "Atstarpes", - "DE.Views.Settings.textStatistic": "Statistika", - "DE.Views.Settings.textSymbols": "Simboli", - "DE.Views.Settings.textTel": "Tel", - "DE.Views.Settings.textVersion": "Versija", - "DE.Views.Settings.textWords": "Vārdi", - "DE.Views.Settings.unknownText": "Nezināms", - "DE.Views.Toolbar.textBack": "Atpakaļ" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/nb.json b/apps/documenteditor/mobile/locale/nb.json index 0efa2c29d..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/nb.json +++ b/apps/documenteditor/mobile/locale/nb.json @@ -1,520 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Legg til svar", - "Common.Controllers.Collaboration.textAtLeast": "minst", - "Common.Controllers.Collaboration.textAuto": "auto", - "Common.Controllers.Collaboration.textBaseline": "Grunnlinje", - "Common.Controllers.Collaboration.textBold": "Fet", - "Common.Controllers.Collaboration.textBreakBefore": "Sideskift før", - "Common.Controllers.Collaboration.textCancel": "Avbryt", - "Common.Controllers.Collaboration.textCaps": "Store bokstaver", - "Common.Controllers.Collaboration.textCenter": "Midtstill", - "Common.Controllers.Collaboration.textChart": "Diagram", - "Common.Controllers.Collaboration.textColor": "Skriftfarge", - "Common.Controllers.Collaboration.textContextual": "Ikke legg til avstand mellom avsnitt av samme stil", - "Common.Controllers.Collaboration.textDelete": "Slett", - "Common.Controllers.Collaboration.textDeleteComment": "Slett kommentar", - "Common.Controllers.Collaboration.textDeleted": "Slettet:", - "Common.Controllers.Collaboration.textDeleteReply": "Slett svar", - "Common.Controllers.Collaboration.textDone": "Ferdig", - "Common.Controllers.Collaboration.textDStrikeout": "Dobbel gjennomstreking", - "Common.Controllers.Collaboration.textEdit": "Rediger", - "Common.Controllers.Collaboration.textEditUser": "Brukere som redigerer filen:", - "Common.Controllers.Collaboration.textEquation": "Likning", - "Common.Controllers.Collaboration.textExact": "nøyaktig", - "Common.Controllers.Collaboration.textFirstLine": "Første linje", - "Common.Controllers.Collaboration.textFormatted": "Formatert", - "Common.Controllers.Collaboration.textHighlight": "Uthevingsfarge", - "Common.Controllers.Collaboration.textImage": "Bilde", - "Common.Controllers.Collaboration.textIndentLeft": "Ventreinnrykk", - "Common.Controllers.Collaboration.textIndentRight": "Høyreinnrykk", - "Common.Controllers.Collaboration.textInserted": "Satt inn:", - "Common.Controllers.Collaboration.textJustify": "Blokkjuster", - "Common.Controllers.Collaboration.textLeft": "Venstrejuster", - "Common.Controllers.Collaboration.textLineSpacing": "Linjeavstand:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Ønsker du å slette denne kommentaren?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Ønsker du å slette dette svaret?", - "Common.Controllers.Collaboration.textMultiple": "Flere", - "Common.Controllers.Collaboration.textNoBreakBefore": "Ingen sideskift før", - "Common.Controllers.Collaboration.textNoChanges": "Ingen endringer.", - "Common.Controllers.Collaboration.textNoContextual": "Legg til mellomrom mellom avsnitt med samme stil", - "Common.Controllers.Collaboration.textNoKeepLines": "Ikke hold linjene sammen", - "Common.Controllers.Collaboration.textNum": "Endre nummerering", - "Common.Controllers.Collaboration.textParaDeleted": "Avsnitt slettet", - "Common.Controllers.Collaboration.textParaInserted": "Avsnitt satt inn", - "Common.Controllers.Collaboration.textPosition": "Posisjon", - "Common.Controllers.Collaboration.textReopen": "Åpne igjen", - "Common.Controllers.Collaboration.textResolve": "Løs", - "Common.Controllers.Collaboration.textRight": "Høyrejuster", - "Common.Controllers.Collaboration.textShape": "Figur", - "Common.Controllers.Collaboration.textShd": "Bakgrunnsfarge", - "Common.Controllers.Collaboration.textSmallCaps": "Små bokstaver", - "Common.Controllers.Collaboration.textSpacing": "Avstand", - "Common.Controllers.Collaboration.textSpacingAfter": "Avstand etter", - "Common.Controllers.Collaboration.textSpacingBefore": "Avstand før", - "Common.Controllers.Collaboration.textStrikeout": "Gjennomstreking", - "Common.Controllers.Collaboration.textSubScript": "Senket skrift", - "Common.Controllers.Collaboration.textSuperScript": "Hevet skrift", - "Common.Controllers.Collaboration.textTabs": "Bytt faner", - "Common.Controllers.Collaboration.textUnderline": "Understreking", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Egendefinerte farger", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardfarger", - "Common.UI.ThemeColorPalette.textThemeColors": "Temafarger", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Godta", - "Common.Views.Collaboration.textAcceptAllChanges": "Godta alle endringer", - "Common.Views.Collaboration.textAddReply": "Legg til svar", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Alle endringer er godtatt", - "Common.Views.Collaboration.textAllChangesEditing": "Alle endringer (Redigering)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Alle endringer er avvist (Forhåndsvisning)", - "Common.Views.Collaboration.textBack": "Tilbake", - "Common.Views.Collaboration.textCancel": "Avbryt", - "Common.Views.Collaboration.textChange": "Gå igjennom endringer", - "Common.Views.Collaboration.textCollaboration": "Samarbeid", - "Common.Views.Collaboration.textDisplayMode": "Visningsmodus", - "Common.Views.Collaboration.textDone": "Ferdig", - "Common.Views.Collaboration.textEditReply": "Rediger svar", - "Common.Views.Collaboration.textEditUsers": "Brukere", - "Common.Views.Collaboration.textEditСomment": "Rediger kommentar", - "Common.Views.Collaboration.textNoComments": "Dette dokumentet kan ikke inneholde kommentarer", - "Common.Views.Collaboration.textOriginal": "Original", - "Common.Views.Collaboration.textReject": "Avvis", - "Common.Views.Collaboration.textRejectAllChanges": "Avvis alle endringer", - "Common.Views.Collaboration.textReview": "Spor endringer", - "Common.Views.Collaboration.textReviewing": "Gå igjennom", - "Common.Views.Collaboration.textСomments": "Kommentarer", - "DE.Controllers.AddContainer.textImage": "Bilde", - "DE.Controllers.AddContainer.textOther": "Andre", - "DE.Controllers.AddContainer.textShape": "Figur", - "DE.Controllers.AddContainer.textTable": "Tabell", - "DE.Controllers.AddImage.textEmptyImgUrl": "Du må angi bildelenke.", - "DE.Controllers.AddOther.textBelowText": "Under tekst", - "DE.Controllers.AddOther.textBottomOfPage": "Nederst på side", - "DE.Controllers.AddOther.textCancel": "Avbryt", - "DE.Controllers.AddOther.textContinue": "Fortsett", - "DE.Controllers.AddOther.textDelete": "Slett", - "DE.Controllers.AddOther.textDeleteDraft": "Ønsker du å slette utkastet?", - "DE.Controllers.AddTable.textCancel": "Avbryt", - "DE.Controllers.AddTable.textColumns": "Kolonner", - "DE.Controllers.AddTable.textRows": "Rader", - "DE.Controllers.AddTable.textTableSize": "Tabellstørrelse", - "DE.Controllers.DocumentHolder.menuAddComment": "Legg til kommentar", - "DE.Controllers.DocumentHolder.menuAddLink": "Legg til lenke", - "DE.Controllers.DocumentHolder.menuCopy": "Kopier", - "DE.Controllers.DocumentHolder.menuCut": "Klipp ut", - "DE.Controllers.DocumentHolder.menuDelete": "Slett", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Slett tabell", - "DE.Controllers.DocumentHolder.menuEdit": "Rediger", - "DE.Controllers.DocumentHolder.menuOpenLink": "Åpne lenke", - "DE.Controllers.DocumentHolder.menuPaste": "Lim inn", - "DE.Controllers.DocumentHolder.menuReview": "Gå igjennom", - "DE.Controllers.DocumentHolder.menuReviewChange": "Gå igjennom endringer", - "DE.Controllers.DocumentHolder.menuViewComment": "Se kommentar", - "DE.Controllers.DocumentHolder.sheetCancel": "Avbryt", - "DE.Controllers.DocumentHolder.textCancel": "Avbryt", - "DE.Controllers.DocumentHolder.textColumns": "Kolonner", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Handlinger for Kopier, Klipp ut og Lim inn", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Ikke vis igjen", - "DE.Controllers.DocumentHolder.textGuest": "Gjest", - "DE.Controllers.DocumentHolder.textRows": "Rader", - "DE.Controllers.EditContainer.textChart": "Diagram", - "DE.Controllers.EditContainer.textFooter": "Bunntekst", - "DE.Controllers.EditContainer.textHeader": "Topptekst", - "DE.Controllers.EditContainer.textHyperlink": "Lenke", - "DE.Controllers.EditContainer.textImage": "Bilde", - "DE.Controllers.EditContainer.textParagraph": "Avsnitt", - "DE.Controllers.EditContainer.textSettings": "Innstillinger", - "DE.Controllers.EditContainer.textShape": "Figur", - "DE.Controllers.EditContainer.textTable": "Tabell", - "DE.Controllers.EditContainer.textText": "Tekst", - "DE.Controllers.EditImage.textEmptyImgUrl": "Du må angi bildelenke.", - "DE.Controllers.EditText.textAuto": "Auto", - "DE.Controllers.EditText.textFonts": "Skrifttyper", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Tast inn passord:", - "DE.Controllers.Main.advDRMOptions": "Beskyttet fil", - "DE.Controllers.Main.advDRMPassword": "Passord", - "DE.Controllers.Main.advTxtOptions": "Velg TXT opsjoner", - "DE.Controllers.Main.applyChangesTextText": "Laster data...", - "DE.Controllers.Main.applyChangesTitleText": "Laster data", - "DE.Controllers.Main.closeButtonText": "Lukk filen", - "DE.Controllers.Main.criticalErrorExtText": "Trykk 'OK' for å gå tilbake til dokumentlisten.", - "DE.Controllers.Main.criticalErrorTitle": "Feil", - "DE.Controllers.Main.downloadErrorText": "Nedlasting feilet.", - "DE.Controllers.Main.downloadMergeText": "Laster ned...", - "DE.Controllers.Main.downloadMergeTitle": "Laster ned", - "DE.Controllers.Main.downloadTextText": "Laster ned dokument...", - "DE.Controllers.Main.downloadTitleText": "Laster ned dokument", - "DE.Controllers.Main.errorAccessDeny": "Du forsøker å utføre en handling som du ikke har rettigheter til.
    Vennligst kontakt din Document Server administrator.", - "DE.Controllers.Main.errorBadImageUrl": "Bildelenke er feil", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Mistet tilkobling til server. Du kan ikke utføre endringer.", - "DE.Controllers.Main.errorDatabaseConnection": "Ekstern feil.
    Tilkoblingsfeil til database. Vennligst kontakt brukerstøtte.", - "DE.Controllers.Main.errorDataEncrypted": "Krypterte endringer har blitt mottatt, men de kan ikke bli dekodet.", - "DE.Controllers.Main.errorDataRange": "Feil dataområde.", - "DE.Controllers.Main.errorDefaultMessage": "Feilkode: %1", - "DE.Controllers.Main.errorEditingDownloadas": "En feil skjedde ved arbeid med dokumentet.
    Bruk valget 'Last ned' til å lagre en backup av filen til din enhet.", - "DE.Controllers.Main.errorFilePassProtect": "Filen er passordbeskyttet og kan ikke åpnes.", - "DE.Controllers.Main.errorMailMergeLoadFile": "Lasting av dokumentet feilet. Vennligst velg en annen fil.", - "DE.Controllers.Main.errorOpensource": "Ved bruk av fellesskapsversjonen kan dokumenter kun åpnes i lesemodus. For å bruke mobil nettredigering trengs en kommersiell lisens. ", - "DE.Controllers.Main.errorProcessSaveResult": "Lagring feilet.", - "DE.Controllers.Main.errorServerVersion": "Redigeringsprogrammet har blitt oppdatert. Siden vil oppdateres og bruke endringene.", - "DE.Controllers.Main.errorUserDrop": "Filen kan ikke åpnes nå.", - "DE.Controllers.Main.errorUsersExceed": "Antall brukere ble overskredet", - "DE.Controllers.Main.leavePageText": "Du har ulagrede endringer i dette dokumentet. Trykk på 'Bli på denne siden' og vent på autolagring av dokumentet. Trykk på 'Forlat denne siden' for å forkaste ulagrede endringer.", - "DE.Controllers.Main.loadFontsTextText": "Laster data...", - "DE.Controllers.Main.loadFontsTitleText": "Laster data", - "DE.Controllers.Main.loadFontTextText": "Laster data...", - "DE.Controllers.Main.loadFontTitleText": "Laster data", - "DE.Controllers.Main.loadImagesTextText": "Laster bilder...", - "DE.Controllers.Main.loadImagesTitleText": "Laster bilder", - "DE.Controllers.Main.loadImageTextText": "Laster bilde...", - "DE.Controllers.Main.loadImageTitleText": "Laster bilde", - "DE.Controllers.Main.loadingDocumentTextText": "Laster dokument...", - "DE.Controllers.Main.loadingDocumentTitleText": "Laster dokument", - "DE.Controllers.Main.mailMergeLoadFileText": "Laster datakilde...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Laster datakilde", - "DE.Controllers.Main.notcriticalErrorTitle": "Advarsel", - "DE.Controllers.Main.openErrorText": "Det har skjedd en feil når", - "DE.Controllers.Main.openTextText": "Åpner dokument...", - "DE.Controllers.Main.openTitleText": "Åpner dokument", - "DE.Controllers.Main.printTextText": "Skriver ut dokument...", - "DE.Controllers.Main.printTitleText": "Skriver ut dokument", - "DE.Controllers.Main.saveErrorText": "Det har skjedd en feil når", - "DE.Controllers.Main.savePreparingText": "Forbereder lagring", - "DE.Controllers.Main.savePreparingTitle": "Forbereder lagring. Vennligst vent...", - "DE.Controllers.Main.saveTextText": "Lagrer dokument...", - "DE.Controllers.Main.saveTitleText": "Lagrer dokument", - "DE.Controllers.Main.scriptLoadError": "Forbindelsen er treg slik at noen komponenter ikke kunne lastes. Vennligst oppdater siden.", - "DE.Controllers.Main.sendMergeText": "Sender sammenslåing...", - "DE.Controllers.Main.sendMergeTitle": "Sender sammenslåing", - "DE.Controllers.Main.splitDividerErrorText": "Antall rader må kunne deles på %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Antall kolonner må være mindre enn %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Antall rader må være mindre enn %1", - "DE.Controllers.Main.textAnonymous": "Anonym", - "DE.Controllers.Main.textBack": "Tilbake", - "DE.Controllers.Main.textBuyNow": "Besøk nettsted", - "DE.Controllers.Main.textCancel": "Avbryt", - "DE.Controllers.Main.textClose": "Lukk", - "DE.Controllers.Main.textContactUs": "Kontakt salgsavdelingen", - "DE.Controllers.Main.textDone": "Ferdig", - "DE.Controllers.Main.textHasMacros": "Filen inneholder automatiske makroer.
    Ønsker du å kjøre makroene?", - "DE.Controllers.Main.textLoadingDocument": "Laster dokument", - "DE.Controllers.Main.textNo": "Nei", - "DE.Controllers.Main.textNoLicenseTitle": "Lisensgrense oppnådd", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Betalt funksjon", - "DE.Controllers.Main.textPassword": "Passord", - "DE.Controllers.Main.textPreloader": "Laster...", - "DE.Controllers.Main.textRemember": "Husk valget mitt", - "DE.Controllers.Main.textUsername": "Brukernavn", - "DE.Controllers.Main.textYes": "Ja", - "DE.Controllers.Main.titleLicenseExp": "Utgått lisens", - "DE.Controllers.Main.titleServerVersion": "Redigeringsprogram ble oppdatert", - "DE.Controllers.Main.titleUpdateVersion": "Endret versjon", - "DE.Controllers.Main.txtArt": "Teksten din her", - "DE.Controllers.Main.txtDiagramTitle": "Diagramtittel", - "DE.Controllers.Main.txtEditingMode": "Velg redigeringsmodus...", - "DE.Controllers.Main.txtFooter": "Bunntekst", - "DE.Controllers.Main.txtHeader": "Topptekst", - "DE.Controllers.Main.txtProtected": "Når du skriver inn passordet og åpner filen, vil nåværende passord til filen bli tilbakestilt.", - "DE.Controllers.Main.txtSeries": "Serier", - "DE.Controllers.Main.txtStyle_footnote_text": "Fotnotetekst", - "DE.Controllers.Main.txtStyle_Heading_1": "Overskrift 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Overskrift 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Overskrift 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Overskrift 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Overskrift 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Overskrift 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Overskrift 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Overskrift 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Overskrift 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Kraftig sitat", - "DE.Controllers.Main.txtStyle_No_Spacing": "Ingen avstand", - "DE.Controllers.Main.txtStyle_Normal": "Normal", - "DE.Controllers.Main.txtStyle_Quote": "Sitat", - "DE.Controllers.Main.txtStyle_Subtitle": "Undertittel", - "DE.Controllers.Main.txtStyle_Title": "Tittel", - "DE.Controllers.Main.txtXAxis": "X-akse", - "DE.Controllers.Main.txtYAxis": "Y-akse", - "DE.Controllers.Main.unknownErrorText": "Ukjent feil.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Nettleseren din er ikke støttet.", - "DE.Controllers.Main.uploadImageExtMessage": "Ukjent bildeformat.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Ingen bilder lastet opp.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maksimal bildestørrelse overskredet.", - "DE.Controllers.Main.uploadImageTextText": "Laster opp bilde...", - "DE.Controllers.Main.uploadImageTitleText": "Laster opp bilde", - "DE.Controllers.Main.waitText": "Vennligst vent...", - "DE.Controllers.Main.warnLicenseExp": "Lisensen din har utløpt.
    Vennligst oppdater lisensen og oppdater siden.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Du har nådd brukergrensen på %1 redigeringsprogram. Kontakt administratoren din for mer informasjon.", - "DE.Controllers.Main.warnNoLicenseUsers": "Du har nådd brukergrensen på antall %1 redigeringsprogram. Kontakt %1 salgsteamet for personlig oppgraderingsvilkår.", - "DE.Controllers.Main.warnProcessRightsChange": "Du er nektet adgang til å redigere filen.", - "DE.Controllers.Search.textNoTextFound": "Fant ikke tekst", - "DE.Controllers.Search.textReplaceAll": "Erstatt alle", - "DE.Controllers.Settings.notcriticalErrorTitle": "Advarsel", - "DE.Controllers.Settings.textCustomSize": "Egendefinert størrelse", - "DE.Controllers.Settings.txtLoading": "Laster...", - "DE.Controllers.Settings.unknownText": "Ukjent", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Du har ulagrede endringer i dette dokumentet. Trykk på 'Bli på denne siden' og vent på autolagring av dokumentet. Trykk på 'Forlat denne siden' for å forkaste ulagrede endringer.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Du forlater programmet", - "DE.Controllers.Toolbar.leaveButtonText": "Forlat denne siden", - "DE.Controllers.Toolbar.stayButtonText": "Bli på denne siden", - "DE.Views.AddImage.textAddress": "Adresse", - "DE.Views.AddImage.textBack": "Tilbake", - "DE.Views.AddImage.textFromLibrary": "Bilde fra bibliotek", - "DE.Views.AddImage.textFromURL": "Bilde fra lenke", - "DE.Views.AddImage.textImageURL": "Bildelenke", - "DE.Views.AddImage.textInsertImage": "Sett inn bilde", - "DE.Views.AddImage.textLinkSettings": "Lenkealternativer", - "DE.Views.AddOther.textAddComment": "Legg til kommentar", - "DE.Views.AddOther.textAddLink": "Legg til lenke", - "DE.Views.AddOther.textBack": "Tilbake", - "DE.Views.AddOther.textBreak": "Skift", - "DE.Views.AddOther.textCenterBottom": "Midt bunn", - "DE.Views.AddOther.textCenterTop": "Midt topp", - "DE.Views.AddOther.textColumnBreak": "Kolonneskift", - "DE.Views.AddOther.textComment": "Kommentar", - "DE.Views.AddOther.textContPage": "Sammenhengende side", - "DE.Views.AddOther.textDisplay": "Vis", - "DE.Views.AddOther.textDone": "Ferdig", - "DE.Views.AddOther.textEvenPage": "Partallside", - "DE.Views.AddOther.textFootnote": "Fotnote", - "DE.Views.AddOther.textFormat": "Format", - "DE.Views.AddOther.textInsert": "Sett inn", - "DE.Views.AddOther.textInsertFootnote": "Sett inn fotnote", - "DE.Views.AddOther.textLeftBottom": "Venstre bunn", - "DE.Views.AddOther.textLeftTop": "Venstre topp", - "DE.Views.AddOther.textLink": "Lenke", - "DE.Views.AddOther.textLocation": "Plassering", - "DE.Views.AddOther.textNextPage": "Neste side", - "DE.Views.AddOther.textOddPage": "Oddetallsside", - "DE.Views.AddOther.textPageBreak": "Sideskift", - "DE.Views.AddOther.textPageNumber": "Sidetall", - "DE.Views.AddOther.textPosition": "Posisjon", - "DE.Views.AddOther.textRightBottom": "Høyre bunn", - "DE.Views.AddOther.textRightTop": "Høyre topp", - "DE.Views.AddOther.textStartFrom": "Start ved", - "DE.Views.AddOther.textTip": "Skjermtips", - "DE.Views.EditChart.textAddCustomColor": "Legg til egendefinert farge", - "DE.Views.EditChart.textAlign": "Still opp", - "DE.Views.EditChart.textBack": "Tilbake", - "DE.Views.EditChart.textBehind": "Bak", - "DE.Views.EditChart.textBorder": "Ramme", - "DE.Views.EditChart.textColor": "Farge", - "DE.Views.EditChart.textCustomColor": "Egendefinert farge", - "DE.Views.EditChart.textDistanceText": "Avstand fra tekst", - "DE.Views.EditChart.textFill": "Fyll", - "DE.Views.EditChart.textInFront": "Foran", - "DE.Views.EditChart.textOverlap": "Tillat overlapping", - "DE.Views.EditChart.textRemoveChart": "Slett diagram", - "DE.Views.EditChart.textReorder": "Ny rekkefølge", - "DE.Views.EditChart.textSize": "Størrelse", - "DE.Views.EditChart.textSquare": "Firkant", - "DE.Views.EditChart.textStyle": "Stil", - "DE.Views.EditChart.textThrough": "Gjennom", - "DE.Views.EditChart.textTight": "Tett", - "DE.Views.EditChart.textToBackground": "Plasser lengst bak", - "DE.Views.EditChart.textToForeground": "Plasser fremst", - "DE.Views.EditChart.textTopBottom": "Topp og bunn", - "DE.Views.EditChart.textType": "Type", - "DE.Views.EditChart.textWrap": "Pakk inn", - "DE.Views.EditHeader.textFrom": "Start ved", - "DE.Views.EditHeader.textPageNumbering": "Sidenummerering", - "DE.Views.EditHeader.textPrev": "Fortsett fra forrige avsnitt", - "DE.Views.EditHeader.textSameAs": "Lenke til forrige", - "DE.Views.EditHyperlink.textDisplay": "Vis", - "DE.Views.EditHyperlink.textEdit": "Rediger lenke", - "DE.Views.EditHyperlink.textLink": "Lenke", - "DE.Views.EditHyperlink.textRemove": "Slett lenke", - "DE.Views.EditHyperlink.textTip": "Skjermtips", - "DE.Views.EditImage.textAddress": "Adresse", - "DE.Views.EditImage.textAlign": "Still opp", - "DE.Views.EditImage.textBack": "Tilbake", - "DE.Views.EditImage.textBehind": "Bak", - "DE.Views.EditImage.textDefault": "Faktisk størrelse", - "DE.Views.EditImage.textDistanceText": "Avstand fra tekst", - "DE.Views.EditImage.textFromLibrary": "Bilde fra bibliotek", - "DE.Views.EditImage.textFromURL": "Bilde fra lenke", - "DE.Views.EditImage.textImageURL": "Bildelenke", - "DE.Views.EditImage.textInFront": "Foran", - "DE.Views.EditImage.textLinkSettings": "Lenkealternativer", - "DE.Views.EditImage.textOverlap": "Tillat overlapping", - "DE.Views.EditImage.textRemove": "Slett bilde", - "DE.Views.EditImage.textReorder": "Ny rekkefølge", - "DE.Views.EditImage.textReplace": "Erstatt", - "DE.Views.EditImage.textReplaceImg": "Erstatt bilde", - "DE.Views.EditImage.textSquare": "Firkant", - "DE.Views.EditImage.textThrough": "Gjennom", - "DE.Views.EditImage.textTight": "Tett", - "DE.Views.EditImage.textToBackground": "Plasser lengst bak", - "DE.Views.EditImage.textToForeground": "Plasser fremst", - "DE.Views.EditImage.textTopBottom": "Topp og bunn", - "DE.Views.EditImage.textWrap": "Pakk inn", - "DE.Views.EditParagraph.textAddCustomColor": "Legg til egendefinert farge", - "DE.Views.EditParagraph.textAdvanced": "Avansert", - "DE.Views.EditParagraph.textAdvSettings": "Avanserte innstillinger", - "DE.Views.EditParagraph.textAfter": "Etter", - "DE.Views.EditParagraph.textAuto": "Auto", - "DE.Views.EditParagraph.textBack": "Tilbake", - "DE.Views.EditParagraph.textBackground": "Bakgrunn", - "DE.Views.EditParagraph.textBefore": "Før", - "DE.Views.EditParagraph.textCustomColor": "Egendefinert farge", - "DE.Views.EditParagraph.textFirstLine": "Første linje", - "DE.Views.EditParagraph.textFromText": "Avstand fra tekst", - "DE.Views.EditParagraph.textPageBreak": "Sideskift før", - "DE.Views.EditParagraph.textPrgStyles": "Avsnittsstiler", - "DE.Views.EditParagraph.textSpaceBetween": "Mellomrom mellom avsnitt", - "DE.Views.EditShape.textAddCustomColor": "Legg til egendefinert farge", - "DE.Views.EditShape.textAlign": "Still opp", - "DE.Views.EditShape.textBack": "Tilbake", - "DE.Views.EditShape.textBehind": "Bak", - "DE.Views.EditShape.textBorder": "Ramme", - "DE.Views.EditShape.textColor": "Farge", - "DE.Views.EditShape.textCustomColor": "Egendefinert farge", - "DE.Views.EditShape.textEffects": "Effekter", - "DE.Views.EditShape.textFill": "Fyll", - "DE.Views.EditShape.textFromText": "Avstand fra tekst", - "DE.Views.EditShape.textInFront": "Foran", - "DE.Views.EditShape.textOpacity": "Opasitet", - "DE.Views.EditShape.textOverlap": "Tillat overlapping", - "DE.Views.EditShape.textRemoveShape": "Slett figur", - "DE.Views.EditShape.textReorder": "Ny rekkefølge", - "DE.Views.EditShape.textReplace": "Erstatt", - "DE.Views.EditShape.textSize": "Størrelse", - "DE.Views.EditShape.textSquare": "Firkant", - "DE.Views.EditShape.textStyle": "Stil", - "DE.Views.EditShape.textThrough": "Gjennom", - "DE.Views.EditShape.textTight": "Tett", - "DE.Views.EditShape.textToBackground": "Plasser lengst bak", - "DE.Views.EditShape.textToForeground": "Plasser fremst", - "DE.Views.EditShape.textTopAndBottom": "Topp og bunn", - "DE.Views.EditShape.textWrap": "Pakk inn", - "DE.Views.EditTable.textAddCustomColor": "Legg til egendefinert farge", - "DE.Views.EditTable.textAlign": "Still opp", - "DE.Views.EditTable.textBack": "Tilbake", - "DE.Views.EditTable.textBandedColumn": "Kolonne med bånd", - "DE.Views.EditTable.textBandedRow": "Rad med bånd", - "DE.Views.EditTable.textBorder": "Ramme", - "DE.Views.EditTable.textCellMargins": "Cellemarginer", - "DE.Views.EditTable.textColor": "Farge", - "DE.Views.EditTable.textCustomColor": "Egendefinert farge", - "DE.Views.EditTable.textFill": "Fyll", - "DE.Views.EditTable.textFirstColumn": "Første kolonne", - "DE.Views.EditTable.textFlow": "Flyt", - "DE.Views.EditTable.textFromText": "Avstand fra tekst", - "DE.Views.EditTable.textHeaderRow": "Topprad", - "DE.Views.EditTable.textLastColumn": "Siste kolonne", - "DE.Views.EditTable.textOptions": "Alternativer", - "DE.Views.EditTable.textRemoveTable": "Slett tabell", - "DE.Views.EditTable.textSize": "Størrelse", - "DE.Views.EditTable.textStyle": "Stil", - "DE.Views.EditTable.textStyleOptions": "Stilalternativer", - "DE.Views.EditTable.textTableOptions": "Tabellalternativer", - "DE.Views.EditTable.textTotalRow": "Total rad", - "DE.Views.EditTable.textWrap": "Pakk inn", - "DE.Views.EditText.textAddCustomColor": "Legg til egendefinert farge", - "DE.Views.EditText.textAdditional": "I tillegg", - "DE.Views.EditText.textAdditionalFormat": "Tilleggsformatering", - "DE.Views.EditText.textAllCaps": "Store bokstaver", - "DE.Views.EditText.textAutomatic": "Automatisk", - "DE.Views.EditText.textBack": "Tilbake", - "DE.Views.EditText.textBullets": "Kulepunkt", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "s", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Egendefinert farge", - "DE.Views.EditText.textDblStrikethrough": "Dobbel gjennomstreking", - "DE.Views.EditText.textDblSuperscript": "Hevet skrift", - "DE.Views.EditText.textFontColor": "Skriftfarge", - "DE.Views.EditText.textFontColors": "Skriftfarger", - "DE.Views.EditText.textFonts": "Skrifttyper", - "DE.Views.EditText.textHighlightColor": "Uthevingsfarge", - "DE.Views.EditText.textHighlightColors": "Uthevingsfarger", - "DE.Views.EditText.textLetterSpacing": "Bokstavavstand", - "DE.Views.EditText.textLineSpacing": "Linjeavstand", - "DE.Views.EditText.textNone": "ingen", - "DE.Views.EditText.textNumbers": "Tall", - "DE.Views.EditText.textSize": "Størrelse", - "DE.Views.EditText.textSmallCaps": "Små bokstaver", - "DE.Views.EditText.textStrikethrough": "Gjennomstreking", - "DE.Views.EditText.textSubscript": "Senket skrift", - "DE.Views.Search.textCase": "Følsom for store og små bokstaver", - "DE.Views.Search.textDone": "Ferdig", - "DE.Views.Search.textFind": "Finn", - "DE.Views.Search.textFindAndReplace": "Finn og erstatt", - "DE.Views.Search.textHighlight": "Fremhev resultat", - "DE.Views.Search.textReplace": "Erstatt", - "DE.Views.Search.textSearch": "Søk", - "DE.Views.Settings.textAbout": "Om", - "DE.Views.Settings.textAddress": "Adresse", - "DE.Views.Settings.textAdvancedSettings": "Programalternativer", - "DE.Views.Settings.textApplication": "Applikasjon", - "DE.Views.Settings.textAuthor": "Forfatter", - "DE.Views.Settings.textBack": "Tilbake", - "DE.Views.Settings.textBottom": "Bunn", - "DE.Views.Settings.textCentimeter": "Centimeter", - "DE.Views.Settings.textCollaboration": "Samarbeid", - "DE.Views.Settings.textColorSchemes": "Temafarger", - "DE.Views.Settings.textComment": "Kommentar", - "DE.Views.Settings.textCreated": "Opprettet", - "DE.Views.Settings.textCreateDate": "Opprettelsesdato", - "DE.Views.Settings.textCustom": "Egendefinert", - "DE.Views.Settings.textCustomSize": "Egendefinert størrelse", - "DE.Views.Settings.textDisableAll": "Deaktiver alt", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Deaktiver alle makroer med et varsel", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Deaktiver alle makroer uten varsling", - "DE.Views.Settings.textDisplayComments": "Kommentarer", - "DE.Views.Settings.textDisplayResolvedComments": "Løste kommentarer", - "DE.Views.Settings.textDocInfo": "Dokumentinformasjon", - "DE.Views.Settings.textDocTitle": "Dokumenttittel", - "DE.Views.Settings.textDocumentFormats": "Dokumentformater", - "DE.Views.Settings.textDocumentSettings": "Dokumentinnstillinger", - "DE.Views.Settings.textDone": "ferdig", - "DE.Views.Settings.textDownload": "Last ned", - "DE.Views.Settings.textDownloadAs": "Last ned som...", - "DE.Views.Settings.textEditDoc": "Rediger dokument", - "DE.Views.Settings.textEmail": "E-post", - "DE.Views.Settings.textEnableAll": "Aktiver alle", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Aktiver alle makroer uten varsling", - "DE.Views.Settings.textFind": "Finn", - "DE.Views.Settings.textFindAndReplace": "Finn og erstatt", - "DE.Views.Settings.textFormat": "Format", - "DE.Views.Settings.textHelp": "Hjelp", - "DE.Views.Settings.textHiddenTableBorders": "Skjulte tabellkanter", - "DE.Views.Settings.textInch": "Tomme", - "DE.Views.Settings.textLandscape": "Landskap", - "DE.Views.Settings.textLastModified": "Sist endret", - "DE.Views.Settings.textLastModifiedBy": "Sist endret av", - "DE.Views.Settings.textLeft": "Venstre", - "DE.Views.Settings.textLoading": "Laster...", - "DE.Views.Settings.textLocation": "Plassering", - "DE.Views.Settings.textMacrosSettings": "Makroalternativer", - "DE.Views.Settings.textMargins": "Marginer", - "DE.Views.Settings.textOrientation": "Orientering", - "DE.Views.Settings.textOwner": "Eier", - "DE.Views.Settings.textPages": "Sider", - "DE.Views.Settings.textParagraphs": "Avsnitt", - "DE.Views.Settings.textPoint": "Punkt", - "DE.Views.Settings.textPortrait": "Portrett", - "DE.Views.Settings.textPoweredBy": "Drevet av", - "DE.Views.Settings.textPrint": "Skriv ut", - "DE.Views.Settings.textReader": "Lesemodus", - "DE.Views.Settings.textReview": "Spor endringer", - "DE.Views.Settings.textRight": "Høyre", - "DE.Views.Settings.textSettings": "Innstillinger", - "DE.Views.Settings.textShowNotification": "Vis varsling", - "DE.Views.Settings.textSpaces": "Mellomrom", - "DE.Views.Settings.textSpellcheck": "Stavekontroll", - "DE.Views.Settings.textSubject": "Emne", - "DE.Views.Settings.textSymbols": "Symboler", - "DE.Views.Settings.textTel": "tlf", - "DE.Views.Settings.textTitle": "Tittel", - "DE.Views.Settings.textTop": "Topp", - "DE.Views.Settings.textUnitOfMeasurement": "Enhetsmål", - "DE.Views.Settings.textUploaded": "Lastet opp", - "DE.Views.Settings.textVersion": "Versjon", - "DE.Views.Settings.textWords": "Ord", - "DE.Views.Settings.unknownText": "Ukjent", - "DE.Views.Toolbar.textBack": "Tilbake" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/nl.json b/apps/documenteditor/mobile/locale/nl.json index 287f0b30a..15bec7452 100644 --- a/apps/documenteditor/mobile/locale/nl.json +++ b/apps/documenteditor/mobile/locale/nl.json @@ -1,607 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Reactie toevoegen", - "Common.Controllers.Collaboration.textAtLeast": "ten minste", - "Common.Controllers.Collaboration.textAuto": "automatisch", - "Common.Controllers.Collaboration.textBaseline": "Basislijn", - "Common.Controllers.Collaboration.textBold": "Vet", - "Common.Controllers.Collaboration.textBreakBefore": "Pagina-einde vóór", - "Common.Controllers.Collaboration.textCancel": "Annuleren", - "Common.Controllers.Collaboration.textCaps": "Hoofdletters", - "Common.Controllers.Collaboration.textCenter": "Centreren", - "Common.Controllers.Collaboration.textChart": "Grafiek", - "Common.Controllers.Collaboration.textColor": "Tekenkleur", - "Common.Controllers.Collaboration.textContextual": "Voeg geen interval toe tussen alinea's met dezelfde stijl", - "Common.Controllers.Collaboration.textDelete": "Verwijderen", - "Common.Controllers.Collaboration.textDeleteComment": "Verwijder opmerking", - "Common.Controllers.Collaboration.textDeleted": "Verwijderd:", - "Common.Controllers.Collaboration.textDeleteReply": "Verwijderen antwoord", - "Common.Controllers.Collaboration.textDone": "Klaar", - "Common.Controllers.Collaboration.textDStrikeout": "Dubbel doorhalen", - "Common.Controllers.Collaboration.textEdit": "Bewerken", - "Common.Controllers.Collaboration.textEditUser": "Document wordt op dit moment bewerkt door verschillende gebruikers.", - "Common.Controllers.Collaboration.textEquation": "Vergelijking", - "Common.Controllers.Collaboration.textExact": "exact", - "Common.Controllers.Collaboration.textFirstLine": "Eerste alinea", - "Common.Controllers.Collaboration.textFormatted": "Opgemaakt", - "Common.Controllers.Collaboration.textHighlight": "Markeringskleur", - "Common.Controllers.Collaboration.textImage": "Afbeelding", - "Common.Controllers.Collaboration.textIndentLeft": "Links inspringen", - "Common.Controllers.Collaboration.textIndentRight": "Rechts inspringen", - "Common.Controllers.Collaboration.textInserted": "Ingevoegd:", - "Common.Controllers.Collaboration.textItalic": "Cursief", - "Common.Controllers.Collaboration.textJustify": "Uitvullen", - "Common.Controllers.Collaboration.textKeepLines": "Regels bijeenhouden", - "Common.Controllers.Collaboration.textKeepNext": "Bij volgende alinea houden", - "Common.Controllers.Collaboration.textLeft": "Links uitlijnen", - "Common.Controllers.Collaboration.textLineSpacing": "Regelafstand:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Wil je deze opmerking verwijderen?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Wil je dit antwoord verwijderen?", - "Common.Controllers.Collaboration.textMultiple": "meerdere", - "Common.Controllers.Collaboration.textNoBreakBefore": "Geen pagina-einde vóór", - "Common.Controllers.Collaboration.textNoChanges": "Er zijn geen wijzigingen.", - "Common.Controllers.Collaboration.textNoContextual": "Interval toevoegen tussen alinea's met dezelfde stijl", - "Common.Controllers.Collaboration.textNoKeepLines": "Houd lijnen niet bij elkaar", - "Common.Controllers.Collaboration.textNoKeepNext": "Niet bij volgende alinea houden", - "Common.Controllers.Collaboration.textNot": "Niet", - "Common.Controllers.Collaboration.textNoWidow": "Zwevende eindregels niet voorkomen", - "Common.Controllers.Collaboration.textNum": "Nummering wijzigen", - "Common.Controllers.Collaboration.textParaDeleted": "Paragraaf verwijderd ", - "Common.Controllers.Collaboration.textParaFormatted": "Paragraaf Opgemaakt", - "Common.Controllers.Collaboration.textParaInserted": "Paragraaf ingevoegd ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Verplaatst naar beneden:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Verplaatst naar boven:", - "Common.Controllers.Collaboration.textParaMoveTo": "Verplaatst:", - "Common.Controllers.Collaboration.textPosition": "Positie", - "Common.Controllers.Collaboration.textReopen": "Heropenen", - "Common.Controllers.Collaboration.textResolve": "Oplossen", - "Common.Controllers.Collaboration.textRight": "Rechts uitlijnen", - "Common.Controllers.Collaboration.textShape": "Vorm", - "Common.Controllers.Collaboration.textShd": "Arcering", - "Common.Controllers.Collaboration.textSmallCaps": "Kleine letters", - "Common.Controllers.Collaboration.textSpacing": "Afstand", - "Common.Controllers.Collaboration.textSpacingAfter": "Afstand na", - "Common.Controllers.Collaboration.textSpacingBefore": "Afstand vóór", - "Common.Controllers.Collaboration.textStrikeout": "Doorhalen", - "Common.Controllers.Collaboration.textSubScript": "Subscript", - "Common.Controllers.Collaboration.textSuperScript": "Superscript", - "Common.Controllers.Collaboration.textTableChanged": "Tabel instellingen aangepast", - "Common.Controllers.Collaboration.textTableRowsAdd": "Tabel rijen toegevoegd", - "Common.Controllers.Collaboration.textTableRowsDel": "Tabel rijen verwijderd", - "Common.Controllers.Collaboration.textTabs": "Tabs wijzigen", - "Common.Controllers.Collaboration.textUnderline": "Onderstrepen", - "Common.Controllers.Collaboration.textWidow": "Zwevende regels voorkomen", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Aangepaste kleuren", - "Common.UI.ThemeColorPalette.textStandartColors": "Standaardkleuren", - "Common.UI.ThemeColorPalette.textThemeColors": "Themakleuren", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Accepteren", - "Common.Views.Collaboration.textAcceptAllChanges": "Alle wijzigingen accepteren", - "Common.Views.Collaboration.textAddReply": "Reactie toevoegen", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Alles accepteren (voorbeeld)", - "Common.Views.Collaboration.textAllChangesEditing": "Alle veranderingen (bewerken)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Alle wijzigingen afkeuren (voorbeeld)", - "Common.Views.Collaboration.textBack": "Vorige", - "Common.Views.Collaboration.textCancel": "Annuleren", - "Common.Views.Collaboration.textChange": "Bekijk de wijziging", - "Common.Views.Collaboration.textCollaboration": "Samenwerking", - "Common.Views.Collaboration.textDisplayMode": "Weergavemodus", - "Common.Views.Collaboration.textDone": "Klaar", - "Common.Views.Collaboration.textEditReply": "Bewerk antwoord", - "Common.Views.Collaboration.textEditUsers": "Gebruikers", - "Common.Views.Collaboration.textEditСomment": "Opmerking bewerken", - "Common.Views.Collaboration.textFinal": "Definitief", - "Common.Views.Collaboration.textMarkup": "Markup", - "Common.Views.Collaboration.textNoComments": "Dit document bevat geen opmerkingen", - "Common.Views.Collaboration.textOriginal": "Origineel", - "Common.Views.Collaboration.textReject": "Afkeuren", - "Common.Views.Collaboration.textRejectAllChanges": "Alle wijzigingen afwijzen", - "Common.Views.Collaboration.textReview": "Wijzigingen bijhouden", - "Common.Views.Collaboration.textReviewing": "Beoordelen", - "Common.Views.Collaboration.textСomments": "Opmerkingen", - "DE.Controllers.AddContainer.textImage": "Afbeelding", - "DE.Controllers.AddContainer.textOther": "Overige", - "DE.Controllers.AddContainer.textShape": "Vorm", - "DE.Controllers.AddContainer.textTable": "Tabel", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.AddImage.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "DE.Controllers.AddImage.txtNotUrl": "Dit veld moet een URL in de notatie 'http://www.example.com' bevatten", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.AddOther.textBelowText": "Onder de tekst", - "DE.Controllers.AddOther.textBottomOfPage": "Onder aan pagina", - "DE.Controllers.AddOther.textCancel": "Annuleren", - "DE.Controllers.AddOther.textContinue": "Doorgaan", - "DE.Controllers.AddOther.textDelete": "Verwijderen", - "DE.Controllers.AddOther.textDeleteDraft": "Wilt u het concept verwijderen?", - "DE.Controllers.AddOther.txtNotUrl": "Dit veld moet een URL in de notatie 'http://www.example.com' bevatten", - "DE.Controllers.AddTable.textCancel": "Annuleren", - "DE.Controllers.AddTable.textColumns": "Kolommen", - "DE.Controllers.AddTable.textRows": "Rijen", - "DE.Controllers.AddTable.textTableSize": "Tabelgrootte", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Acties voor kopiëren, knippen en plakken via het contextmenu worden alleen in het huidige bestand uitgevoerd.", - "DE.Controllers.DocumentHolder.menuAddComment": "Opmerking toevoegen", - "DE.Controllers.DocumentHolder.menuAddLink": "Koppeling toevoegen", - "DE.Controllers.DocumentHolder.menuCopy": "Kopiëren", - "DE.Controllers.DocumentHolder.menuCut": "Knippen", - "DE.Controllers.DocumentHolder.menuDelete": "Verwijderen", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Tabel verwijderen", - "DE.Controllers.DocumentHolder.menuEdit": "Bewerken", - "DE.Controllers.DocumentHolder.menuMerge": "Cellen samenvoegen", - "DE.Controllers.DocumentHolder.menuMore": "Meer", - "DE.Controllers.DocumentHolder.menuOpenLink": "Koppeling openen", - "DE.Controllers.DocumentHolder.menuPaste": "Plakken", - "DE.Controllers.DocumentHolder.menuReview": "Beoordelen", - "DE.Controllers.DocumentHolder.menuReviewChange": "Bekijk de wijziging", - "DE.Controllers.DocumentHolder.menuSplit": "Cel splitsen", - "DE.Controllers.DocumentHolder.menuViewComment": "Bekijk opmerking", - "DE.Controllers.DocumentHolder.sheetCancel": "Annuleren", - "DE.Controllers.DocumentHolder.textCancel": "Annuleren", - "DE.Controllers.DocumentHolder.textColumns": "Kolommen", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Niet meer weergeven", - "DE.Controllers.DocumentHolder.textGuest": "Gast", - "DE.Controllers.DocumentHolder.textRows": "Rijen", - "DE.Controllers.EditContainer.textChart": "Grafiek", - "DE.Controllers.EditContainer.textFooter": "Voettekst", - "DE.Controllers.EditContainer.textHeader": "Koptekst", - "DE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "DE.Controllers.EditContainer.textImage": "Afbeelding", - "DE.Controllers.EditContainer.textParagraph": "Alinea", - "DE.Controllers.EditContainer.textSettings": "Instellingen", - "DE.Controllers.EditContainer.textShape": "Vorm", - "DE.Controllers.EditContainer.textTable": "Tabel", - "DE.Controllers.EditContainer.textText": "Tekst", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Dit veld moet een URL zijn in de 'http://www.example.com'-indeling", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.EditImage.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "DE.Controllers.EditImage.txtNotUrl": "Dit veld moet een URL in de notatie 'http://www.example.com' bevatten", - "DE.Controllers.EditText.textAuto": "Automatisch", - "DE.Controllers.EditText.textFonts": "Lettertypen", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Voer uw wachtwoord in:", - "DE.Controllers.Main.advDRMOptions": "Beschermd bestand", - "DE.Controllers.Main.advDRMPassword": "Wachtwoord", - "DE.Controllers.Main.advTxtOptions": "Opties voor TXT-bestanden kiezen", - "DE.Controllers.Main.applyChangesTextText": "Gegevens worden geladen...", - "DE.Controllers.Main.applyChangesTitleText": "Gegevens worden geladen", - "DE.Controllers.Main.closeButtonText": "Bestand sluiten", - "DE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.", - "DE.Controllers.Main.criticalErrorExtText": "Druk op \"OK\" om terug te gaan naar de lijst met documenten.", - "DE.Controllers.Main.criticalErrorTitle": "Fout", - "DE.Controllers.Main.downloadErrorText": "Download mislukt.", - "DE.Controllers.Main.downloadMergeText": "Downloaden...", - "DE.Controllers.Main.downloadMergeTitle": "Downloaden", - "DE.Controllers.Main.downloadTextText": "Document wordt gedownload...", - "DE.Controllers.Main.downloadTitleText": "Document wordt gedownload", - "DE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
    Neem contact op met de beheerder van de documentserver.", - "DE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server verbroken. U kunt niet doorgaan met bewerken.", - "DE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.
    Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.", - "DE.Controllers.Main.errorDatabaseConnection": "Externe fout.
    Fout in databaseverbinding. Neem contact op met Support.", - "DE.Controllers.Main.errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", - "DE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik", - "DE.Controllers.Main.errorDefaultMessage": "Foutcode: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Er is een fout ontstaan bij het werken met dit document.
    Gebruik de 'Download' optie om een backup op te slaan op uw computer.", - "DE.Controllers.Main.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", - "DE.Controllers.Main.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
    Neem contact op met uw Document Server-beheerder voor details.", - "DE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", - "DE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", - "DE.Controllers.Main.errorMailMergeLoadFile": "Het laden van het document is mislukt. Selecteer een ander bestand.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Samenvoegen mislukt.", - "DE.Controllers.Main.errorOpensource": "Met de gratis Community-versie kunt u documenten openen om ze alleen te bekijken. Om toegang te krijgen tot mobiele webeditors is een commerciële licentie vereist.", - "DE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt.", - "DE.Controllers.Main.errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", - "DE.Controllers.Main.errorSessionAbsolute": "De bewerksessie voor het document is vervallen. Laad de pagina opnieuw.", - "DE.Controllers.Main.errorSessionIdle": "Het document is al lang niet meer bewerkt. Laad de pagina opnieuw.", - "DE.Controllers.Main.errorSessionToken": "De verbinding met de server is onderbroken. Laad de pagina opnieuw.", - "DE.Controllers.Main.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", - "DE.Controllers.Main.errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", - "DE.Controllers.Main.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", - "DE.Controllers.Main.errorUsersExceed": "Het aantal gebruikers is overschreden", - "DE.Controllers.Main.errorViewerDisconnect": "Verbinding is verbroken. U kunt het document nog wel bekijken,
    maar kunt het pas downloaden wanneer de verbinding is hersteld.", - "DE.Controllers.Main.leavePageText": "Dit document bevat niet-opgeslagen wijzigingen. Klik op 'Op deze pagina blijven' om te wachten totdat het document automatisch wordt opgeslagen. Klik op 'Deze pagina verlaten' om de niet-opgeslagen wijzigingen te negeren.", - "DE.Controllers.Main.loadFontsTextText": "Gegevens worden geladen...", - "DE.Controllers.Main.loadFontsTitleText": "Gegevens worden geladen", - "DE.Controllers.Main.loadFontTextText": "Gegevens worden geladen...", - "DE.Controllers.Main.loadFontTitleText": "Gegevens worden geladen", - "DE.Controllers.Main.loadImagesTextText": "Afbeeldingen worden geladen...", - "DE.Controllers.Main.loadImagesTitleText": "Afbeeldingen worden geladen", - "DE.Controllers.Main.loadImageTextText": "Afbeelding wordt geladen...", - "DE.Controllers.Main.loadImageTitleText": "Afbeelding wordt geladen", - "DE.Controllers.Main.loadingDocumentTextText": "Document wordt geladen...", - "DE.Controllers.Main.loadingDocumentTitleText": "Document wordt geladen", - "DE.Controllers.Main.mailMergeLoadFileText": "Gegevensbron wordt geladen...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Gegevensbron wordt geladen", - "DE.Controllers.Main.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.Main.openErrorText": "Er is een fout opgetreden bij het openen van het bestand", - "DE.Controllers.Main.openTextText": "Document wordt geopend...", - "DE.Controllers.Main.openTitleText": "Document wordt geopend", - "DE.Controllers.Main.printTextText": "Document wordt afgedrukt...", - "DE.Controllers.Main.printTitleText": "Document wordt afgedrukt", - "DE.Controllers.Main.saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", - "DE.Controllers.Main.savePreparingText": "Voorbereiding op opslaan", - "DE.Controllers.Main.savePreparingTitle": "Bezig met voorbereiding op opslaan. Even geduld...", - "DE.Controllers.Main.saveTextText": "Document wordt opgeslagen...", - "DE.Controllers.Main.saveTitleText": "Document wordt opgeslagen", - "DE.Controllers.Main.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", - "DE.Controllers.Main.sendMergeText": "Samenvoegen en verzenden...", - "DE.Controllers.Main.sendMergeTitle": "Samenvoegen en verzenden", - "DE.Controllers.Main.splitDividerErrorText": "Het aantal rijen moet een deler zijn van %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Aantal kolommen moet kleiner zijn dan %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Het aantal rijen moet kleiner zijn dan %1", - "DE.Controllers.Main.textAnonymous": "Anoniem", - "DE.Controllers.Main.textBack": "Terug", - "DE.Controllers.Main.textBuyNow": "Website bezoeken", - "DE.Controllers.Main.textCancel": "Annuleren", - "DE.Controllers.Main.textClose": "Sluiten", - "DE.Controllers.Main.textContactUs": "Verkoopafdeling", - "DE.Controllers.Main.textCustomLoader": "Volgens de voorwaarden van de licentie heeft u geen recht om de lader aan te passen.
    Neem contact op met onze verkoopafdeling voor een offerte.", - "DE.Controllers.Main.textDone": "Klaar", - "DE.Controllers.Main.textGuest": "Gastgebruiker", - "DE.Controllers.Main.textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", - "DE.Controllers.Main.textLoadingDocument": "Document wordt geladen", - "DE.Controllers.Main.textNo": "Nee", - "DE.Controllers.Main.textNoLicenseTitle": "Licentielimiet bereikt", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Betaalde optie", - "DE.Controllers.Main.textPassword": "Wachtwoord", - "DE.Controllers.Main.textPreloader": "Laden...", - "DE.Controllers.Main.textRemember": "Onthoud voorkeur voor alle bestanden", - "DE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw zijn gedeactiveerd voor de modus Snel gezamenlijk bewerken.", - "DE.Controllers.Main.textUsername": "Gebruikersnaam", - "DE.Controllers.Main.textYes": "Ja", - "DE.Controllers.Main.titleLicenseExp": "Licentie vervallen", - "DE.Controllers.Main.titleServerVersion": "Editor bijgewerkt", - "DE.Controllers.Main.titleUpdateVersion": "Versie gewijzigd", - "DE.Controllers.Main.txtAbove": "Boven", - "DE.Controllers.Main.txtArt": "Hier tekst invoeren", - "DE.Controllers.Main.txtBelow": "Onder", - "DE.Controllers.Main.txtCurrentDocument": "Huidig document", - "DE.Controllers.Main.txtDiagramTitle": "Grafiektitel", - "DE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...", - "DE.Controllers.Main.txtEvenPage": "Even pagina", - "DE.Controllers.Main.txtFirstPage": "Eerste pagina", - "DE.Controllers.Main.txtFooter": "Voettekst", - "DE.Controllers.Main.txtHeader": "Koptekst", - "DE.Controllers.Main.txtOddPage": "Oneven pagina", - "DE.Controllers.Main.txtOnPage": "op pagina", - "DE.Controllers.Main.txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.", - "DE.Controllers.Main.txtSameAsPrev": "Zelfde als vorige", - "DE.Controllers.Main.txtSection": "-Sectie", - "DE.Controllers.Main.txtSeries": "Serie", - "DE.Controllers.Main.txtStyle_footnote_text": "Voetnoot tekst", - "DE.Controllers.Main.txtStyle_Heading_1": "Kop 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Kop 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Kop 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Kop 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Kop 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Kop 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Kop 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Kop 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Kop 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Duidelijk citaat", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Lijstalinea", - "DE.Controllers.Main.txtStyle_No_Spacing": "Geen afstand", - "DE.Controllers.Main.txtStyle_Normal": "Normaal", - "DE.Controllers.Main.txtStyle_Quote": "Citaat", - "DE.Controllers.Main.txtStyle_Subtitle": "Subtitel", - "DE.Controllers.Main.txtStyle_Title": "Titel", - "DE.Controllers.Main.txtXAxis": "X-as", - "DE.Controllers.Main.txtYAxis": "Y-as", - "DE.Controllers.Main.unknownErrorText": "Onbekende fout.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", - "DE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maximaal toegestane afbeeldingsgrootte overschreden.", - "DE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", - "DE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", - "DE.Controllers.Main.waitText": "Een moment...", - "DE.Controllers.Main.warnLicenseExceeded": "U heeft de limiet bereikt voor gelijktijdige verbindingen met% 1 editors. Dit document wordt alleen geopend om te bekijken.
    Neem contact op met uw beheerder voor meer informatie.", - "DE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.
    Werk uw licentie bij en vernieuw de pagina.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licentie verlopen.
    U heeft geen toegang tot documentbewerkingsfunctionaliteit.
    Neem contact op met uw beheerder.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Licentie moet worden verlengd.
    U heeft beperkte toegang tot documentbewerkingsfunctionaliteit.
    Neem contact op met uw beheerder voor volledige toegang", - "DE.Controllers.Main.warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor% 1 editors bereikt. Neem contact op met uw beheerder voor meer informatie.", - "DE.Controllers.Main.warnNoLicense": "U heeft de limiet bereikt voor gelijktijdige verbindingen met% 1 editors. Dit document wordt alleen geopend om te bekijken.
    Neem contact op met het% 1 verkoopteam voor persoonlijke upgradevoorwaarden.", - "DE.Controllers.Main.warnNoLicenseUsers": "U heeft de gebruikerslimiet voor% 1 editors bereikt. Neem contact op met het verkoopteam van% 1 voor persoonlijke upgradevoorwaarden.", - "DE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", - "DE.Controllers.Search.textNoTextFound": "Tekst niet gevonden", - "DE.Controllers.Search.textReplaceAll": "Alles vervangen", - "DE.Controllers.Settings.notcriticalErrorTitle": "Waarschuwing", - "DE.Controllers.Settings.textCustomSize": "Aangepaste grootte", - "DE.Controllers.Settings.txtLoading": "Laden...", - "DE.Controllers.Settings.unknownText": "Onbekend", - "DE.Controllers.Settings.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Als u doorgaat met opslaan in deze indeling, kan een deel van de opmaak verloren gaan.
    Weet u zeker dat u wilt doorgaan?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Dit document bevat niet-opgeslagen wijzigingen. Klik op 'Op deze pagina blijven' om te wachten totdat het document automatisch wordt opgeslagen. Klik op 'Deze pagina verlaten' om de niet-opgeslagen wijzigingen te negeren.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "U verlaat de toepassing", - "DE.Controllers.Toolbar.leaveButtonText": "Pagina verlaten", - "DE.Controllers.Toolbar.stayButtonText": "Op deze pagina blijven", - "DE.Views.AddImage.textAddress": "Adres", - "DE.Views.AddImage.textBack": "Terug", - "DE.Views.AddImage.textFromLibrary": "Afbeelding uit bibliotheek", - "DE.Views.AddImage.textFromURL": "Afbeelding van URL", - "DE.Views.AddImage.textImageURL": "URL afbeelding", - "DE.Views.AddImage.textInsertImage": "Afbeelding invoegen", - "DE.Views.AddImage.textLinkSettings": "Koppelingsinstellingen", - "DE.Views.AddOther.textAddComment": "Opmerking toevoegen", - "DE.Views.AddOther.textAddLink": "Koppeling toevoegen", - "DE.Views.AddOther.textBack": "Terug", - "DE.Views.AddOther.textBreak": "Pagina-einde", - "DE.Views.AddOther.textCenterBottom": "Middenonder", - "DE.Views.AddOther.textCenterTop": "Middenboven", - "DE.Views.AddOther.textColumnBreak": "Kolomeinde", - "DE.Views.AddOther.textComment": "Opmerking", - "DE.Views.AddOther.textContPage": "Doorlopende pagina", - "DE.Views.AddOther.textCurrentPos": "Huidige positie", - "DE.Views.AddOther.textDisplay": "Weergeven", - "DE.Views.AddOther.textDone": "Klaar", - "DE.Views.AddOther.textEvenPage": "Even pagina", - "DE.Views.AddOther.textFootnote": "Voetnoot", - "DE.Views.AddOther.textFormat": "Opmaak", - "DE.Views.AddOther.textInsert": "Invoegen", - "DE.Views.AddOther.textInsertFootnote": "Voetnoot invoegen", - "DE.Views.AddOther.textLeftBottom": "Linksonder", - "DE.Views.AddOther.textLeftTop": "Linksboven", - "DE.Views.AddOther.textLink": "Koppeling", - "DE.Views.AddOther.textLocation": "Locatie", - "DE.Views.AddOther.textNextPage": "Volgende pagina", - "DE.Views.AddOther.textOddPage": "Oneven pagina", - "DE.Views.AddOther.textPageBreak": "Pagina-einde", - "DE.Views.AddOther.textPageNumber": "Paginanummer", - "DE.Views.AddOther.textPosition": "Positie", - "DE.Views.AddOther.textRightBottom": "Rechtsonder", - "DE.Views.AddOther.textRightTop": "Rechtsboven", - "DE.Views.AddOther.textSectionBreak": "Sectie-einde", - "DE.Views.AddOther.textStartFrom": "Beginnen bij", - "DE.Views.AddOther.textTip": "Scherminfo", - "DE.Views.EditChart.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditChart.textAlign": "Uitlijnen", - "DE.Views.EditChart.textBack": "Terug", - "DE.Views.EditChart.textBackward": "Naar achter verplaatsen", - "DE.Views.EditChart.textBehind": "Achter", - "DE.Views.EditChart.textBorder": "Rand", - "DE.Views.EditChart.textColor": "Kleur", - "DE.Views.EditChart.textCustomColor": "Aangepaste kleur", - "DE.Views.EditChart.textDistanceText": "Afstand van tekst", - "DE.Views.EditChart.textFill": "Vulling", - "DE.Views.EditChart.textForward": "Naar voren verplaatsen", - "DE.Views.EditChart.textInFront": "Vooraan", - "DE.Views.EditChart.textInline": "Inline", - "DE.Views.EditChart.textMoveText": "Met tekst verplaatsen", - "DE.Views.EditChart.textOverlap": "Overlapping toestaan", - "DE.Views.EditChart.textRemoveChart": "Grafiek verwijderen", - "DE.Views.EditChart.textReorder": "Opnieuw ordenen", - "DE.Views.EditChart.textSize": "Grootte", - "DE.Views.EditChart.textSquare": "Vierkant", - "DE.Views.EditChart.textStyle": "Stijl", - "DE.Views.EditChart.textThrough": "Door", - "DE.Views.EditChart.textTight": "Strak", - "DE.Views.EditChart.textToBackground": "Naar achtergrond sturen", - "DE.Views.EditChart.textToForeground": "Naar voorgrond brengen", - "DE.Views.EditChart.textTopBottom": "Boven en onder", - "DE.Views.EditChart.textType": "Type", - "DE.Views.EditChart.textWrap": "Terugloop", - "DE.Views.EditHeader.textDiffFirst": "Eerste pagina afwijkend", - "DE.Views.EditHeader.textDiffOdd": "Even en oneven pagina's afwijkend", - "DE.Views.EditHeader.textFrom": "Beginnen bij", - "DE.Views.EditHeader.textPageNumbering": "Paginanummering", - "DE.Views.EditHeader.textPrev": "Doorgaan vanuit volgende sectie", - "DE.Views.EditHeader.textSameAs": "Koppelen aan vorige", - "DE.Views.EditHyperlink.textDisplay": "Weergeven", - "DE.Views.EditHyperlink.textEdit": "Koppeling bewerken", - "DE.Views.EditHyperlink.textLink": "Koppeling", - "DE.Views.EditHyperlink.textRemove": "Koppeling verwijderen", - "DE.Views.EditHyperlink.textTip": "Scherminfo", - "DE.Views.EditImage.textAddress": "Adres", - "DE.Views.EditImage.textAlign": "Uitlijnen", - "DE.Views.EditImage.textBack": "Terug", - "DE.Views.EditImage.textBackward": "Naar achter verplaatsen", - "DE.Views.EditImage.textBehind": "Achter", - "DE.Views.EditImage.textDefault": "Ware grootte", - "DE.Views.EditImage.textDistanceText": "Afstand van tekst", - "DE.Views.EditImage.textForward": "Naar voren verplaatsen", - "DE.Views.EditImage.textFromLibrary": "Afbeelding uit bibliotheek", - "DE.Views.EditImage.textFromURL": "Afbeelding van URL", - "DE.Views.EditImage.textImageURL": "URL afbeelding", - "DE.Views.EditImage.textInFront": "Vooraan", - "DE.Views.EditImage.textInline": "Inline", - "DE.Views.EditImage.textLinkSettings": "Koppelingsinstellingen", - "DE.Views.EditImage.textMoveText": "Met tekst verplaatsen", - "DE.Views.EditImage.textOverlap": "Overlapping toestaan", - "DE.Views.EditImage.textRemove": "Afbeelding verwijderen", - "DE.Views.EditImage.textReorder": "Opnieuw ordenen", - "DE.Views.EditImage.textReplace": "Vervangen", - "DE.Views.EditImage.textReplaceImg": "Afbeelding vervangen", - "DE.Views.EditImage.textSquare": "Vierkant", - "DE.Views.EditImage.textThrough": "Door", - "DE.Views.EditImage.textTight": "Strak", - "DE.Views.EditImage.textToBackground": "Naar achtergrond sturen", - "DE.Views.EditImage.textToForeground": "Naar voorgrond brengen", - "DE.Views.EditImage.textTopBottom": "Boven en onder", - "DE.Views.EditImage.textWrap": "Terugloop", - "DE.Views.EditParagraph.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditParagraph.textAdvanced": "Geavanceerd", - "DE.Views.EditParagraph.textAdvSettings": "Geavanceerde instellingen", - "DE.Views.EditParagraph.textAfter": "Na", - "DE.Views.EditParagraph.textAuto": "Automatisch", - "DE.Views.EditParagraph.textBack": "Terug", - "DE.Views.EditParagraph.textBackground": "Achtergrond", - "DE.Views.EditParagraph.textBefore": "Vóór", - "DE.Views.EditParagraph.textCustomColor": "Aangepaste kleur", - "DE.Views.EditParagraph.textFirstLine": "Eerste regel", - "DE.Views.EditParagraph.textFromText": "Afstand van tekst", - "DE.Views.EditParagraph.textKeepLines": "Regels bijeenhouden", - "DE.Views.EditParagraph.textKeepNext": "Bij volgende alinea houden", - "DE.Views.EditParagraph.textOrphan": "Zwevende regels voorkomen", - "DE.Views.EditParagraph.textPageBreak": "Pagina-einde vóór", - "DE.Views.EditParagraph.textPrgStyles": "Alineastijlen", - "DE.Views.EditParagraph.textSpaceBetween": "Ruimte tussen alinea's", - "DE.Views.EditShape.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditShape.textAlign": "Uitlijnen", - "DE.Views.EditShape.textBack": "Terug", - "DE.Views.EditShape.textBackward": "Naar achter verplaatsen", - "DE.Views.EditShape.textBehind": "Achter", - "DE.Views.EditShape.textBorder": "Rand", - "DE.Views.EditShape.textColor": "Kleur", - "DE.Views.EditShape.textCustomColor": "Aangepaste kleur", - "DE.Views.EditShape.textEffects": "Effecten", - "DE.Views.EditShape.textFill": "Vulling", - "DE.Views.EditShape.textForward": "Naar voren verplaatsen", - "DE.Views.EditShape.textFromText": "Afstand van tekst", - "DE.Views.EditShape.textInFront": "Vooraan", - "DE.Views.EditShape.textInline": "Inline", - "DE.Views.EditShape.textOpacity": "Ondoorzichtigheid", - "DE.Views.EditShape.textOverlap": "Overlapping toestaan", - "DE.Views.EditShape.textRemoveShape": "Vorm verwijderen", - "DE.Views.EditShape.textReorder": "Opnieuw ordenen", - "DE.Views.EditShape.textReplace": "Vervangen", - "DE.Views.EditShape.textSize": "Grootte", - "DE.Views.EditShape.textSquare": "Vierkant", - "DE.Views.EditShape.textStyle": "Stijl", - "DE.Views.EditShape.textThrough": "Door", - "DE.Views.EditShape.textTight": "Strak", - "DE.Views.EditShape.textToBackground": "Naar achtergrond sturen", - "DE.Views.EditShape.textToForeground": "Naar voorgrond brengen", - "DE.Views.EditShape.textTopAndBottom": "Boven en onder", - "DE.Views.EditShape.textWithText": "Met tekst verplaatsen", - "DE.Views.EditShape.textWrap": "Terugloop", - "DE.Views.EditTable.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditTable.textAlign": "Uitlijnen", - "DE.Views.EditTable.textBack": "Terug", - "DE.Views.EditTable.textBandedColumn": "Gestreepte kolom", - "DE.Views.EditTable.textBandedRow": "Gestreepte rij", - "DE.Views.EditTable.textBorder": "Rand", - "DE.Views.EditTable.textCellMargins": "Celmarges", - "DE.Views.EditTable.textColor": "Kleur", - "DE.Views.EditTable.textCustomColor": "Aangepaste kleur", - "DE.Views.EditTable.textFill": "Vulling", - "DE.Views.EditTable.textFirstColumn": "Eerste kolom", - "DE.Views.EditTable.textFlow": "Stroom", - "DE.Views.EditTable.textFromText": "Afstand van tekst", - "DE.Views.EditTable.textHeaderRow": "Koprij", - "DE.Views.EditTable.textInline": "Inline", - "DE.Views.EditTable.textLastColumn": "Laatste kolom", - "DE.Views.EditTable.textOptions": "Opties", - "DE.Views.EditTable.textRemoveTable": "Tabel verwijderen", - "DE.Views.EditTable.textRepeatHeader": "Als koprij herhalen", - "DE.Views.EditTable.textResizeFit": "Grootte aanpassen aan inhoud", - "DE.Views.EditTable.textSize": "Grootte", - "DE.Views.EditTable.textStyle": "Stijl", - "DE.Views.EditTable.textStyleOptions": "Stijlopties", - "DE.Views.EditTable.textTableOptions": "Tabelopties", - "DE.Views.EditTable.textTotalRow": "Totaalrij", - "DE.Views.EditTable.textWithText": "Met tekst verplaatsen", - "DE.Views.EditTable.textWrap": "Terugloop", - "DE.Views.EditText.textAddCustomColor": "Aangepaste kleur toevoegen", - "DE.Views.EditText.textAdditional": "Extra", - "DE.Views.EditText.textAdditionalFormat": "Aanvullende opmaak", - "DE.Views.EditText.textAllCaps": "Allemaal hoofdletters", - "DE.Views.EditText.textAutomatic": "Automatisch", - "DE.Views.EditText.textBack": "Terug", - "DE.Views.EditText.textBullets": "Opsommingstekens", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "s", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Aangepaste kleur", - "DE.Views.EditText.textDblStrikethrough": "Dubbel doorhalen", - "DE.Views.EditText.textDblSuperscript": "Superscript", - "DE.Views.EditText.textFontColor": "Tekenkleur", - "DE.Views.EditText.textFontColors": "Tekenkleuren", - "DE.Views.EditText.textFonts": "Lettertypen", - "DE.Views.EditText.textHighlightColor": "Markeringskleur", - "DE.Views.EditText.textHighlightColors": "Markeringskleuren", - "DE.Views.EditText.textLetterSpacing": "Letterafstand", - "DE.Views.EditText.textLineSpacing": "Regelafstand", - "DE.Views.EditText.textNone": "Geen", - "DE.Views.EditText.textNumbers": "Nummers", - "DE.Views.EditText.textSize": "Grootte", - "DE.Views.EditText.textSmallCaps": "Kleine hoofdletters", - "DE.Views.EditText.textStrikethrough": "Doorhalen", - "DE.Views.EditText.textSubscript": "Subscript", - "DE.Views.Search.textCase": "Hoofdlettergevoelig", - "DE.Views.Search.textDone": "Klaar", - "DE.Views.Search.textFind": "Zoeken", - "DE.Views.Search.textFindAndReplace": "Zoeken en vervangen", - "DE.Views.Search.textHighlight": "Resultaten markeren", - "DE.Views.Search.textReplace": "Vervangen", - "DE.Views.Search.textSearch": "Zoeken", - "DE.Views.Settings.textAbout": "Over", - "DE.Views.Settings.textAddress": "adres", - "DE.Views.Settings.textAdvancedSettings": "Instellingen", - "DE.Views.Settings.textApplication": "Applicatie", - "DE.Views.Settings.textAuthor": "Auteur", - "DE.Views.Settings.textBack": "Terug", - "DE.Views.Settings.textBottom": "Onder", - "DE.Views.Settings.textCentimeter": "Centimeter", - "DE.Views.Settings.textCollaboration": "Samenwerking", - "DE.Views.Settings.textColorSchemes": "Kleurschema's", - "DE.Views.Settings.textComment": "Opmerking", - "DE.Views.Settings.textCommentingDisplay": "Opmerkingen weergeven", - "DE.Views.Settings.textCreated": "Aangemaakt", - "DE.Views.Settings.textCreateDate": "Datum gemaakt", - "DE.Views.Settings.textCustom": "Aangepast", - "DE.Views.Settings.textCustomSize": "Aangepaste grootte", - "DE.Views.Settings.textDisableAll": "Alles uitschakelen", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Schakel alle macro's uit met een melding", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Schakel alle macro's uit zonder melding", - "DE.Views.Settings.textDisplayComments": "Opmerkingen", - "DE.Views.Settings.textDisplayResolvedComments": "Opgeloste opmerkingen", - "DE.Views.Settings.textDocInfo": "Documentinfo", - "DE.Views.Settings.textDocTitle": "Titel document", - "DE.Views.Settings.textDocumentFormats": "Documentindelingen", - "DE.Views.Settings.textDocumentSettings": "Documentinstellingen", - "DE.Views.Settings.textDone": "Klaar", - "DE.Views.Settings.textDownload": "Downloaden", - "DE.Views.Settings.textDownloadAs": "Downloaden als...", - "DE.Views.Settings.textEditDoc": "Document bewerken", - "DE.Views.Settings.textEmail": "e-mail", - "DE.Views.Settings.textEnableAll": "Alles inschakelen", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Schakel alle macro's in zonder een notificatie", - "DE.Views.Settings.textFind": "Zoeken", - "DE.Views.Settings.textFindAndReplace": "Zoeken en vervangen", - "DE.Views.Settings.textFormat": "Opmaak", - "DE.Views.Settings.textHelp": "Help", - "DE.Views.Settings.textHiddenTableBorders": "Verborgen tabelranden", - "DE.Views.Settings.textInch": "Inch", - "DE.Views.Settings.textLandscape": "Liggend", - "DE.Views.Settings.textLastModified": "Laatst aangepast", - "DE.Views.Settings.textLastModifiedBy": "Laatst aangepast door", - "DE.Views.Settings.textLeft": "Links", - "DE.Views.Settings.textLoading": "Laden...", - "DE.Views.Settings.textLocation": "Locatie", - "DE.Views.Settings.textMacrosSettings": "Macro instellingen", - "DE.Views.Settings.textMargins": "Marges", - "DE.Views.Settings.textNoCharacters": "Niet-afdrukbare tekens", - "DE.Views.Settings.textOrientation": "Afdrukstand", - "DE.Views.Settings.textOwner": "Eigenaar", - "DE.Views.Settings.textPages": "Pagina's", - "DE.Views.Settings.textParagraphs": "Alinea's", - "DE.Views.Settings.textPoint": "Punt", - "DE.Views.Settings.textPortrait": "Staand", - "DE.Views.Settings.textPoweredBy": "Aangedreven door", - "DE.Views.Settings.textPrint": "Afdrukken", - "DE.Views.Settings.textReader": "Leesmodus", - "DE.Views.Settings.textReview": "Wijzigingen bijhouden", - "DE.Views.Settings.textRight": "Rechts", - "DE.Views.Settings.textSettings": "Instellingen", - "DE.Views.Settings.textShowNotification": "Weergeef notificatie", - "DE.Views.Settings.textSpaces": "Spaties", - "DE.Views.Settings.textSpellcheck": "Spellingcontrole", - "DE.Views.Settings.textStatistic": "Statistiek", - "DE.Views.Settings.textSubject": "Onderwerp", - "DE.Views.Settings.textSymbols": "Symbolen", - "DE.Views.Settings.textTel": "Tel.", - "DE.Views.Settings.textTitle": "Titel", - "DE.Views.Settings.textTop": "Boven", - "DE.Views.Settings.textUnitOfMeasurement": "Maateenheid", - "DE.Views.Settings.textUploaded": "Geüpload", - "DE.Views.Settings.textVersion": "Versie", - "DE.Views.Settings.textWords": "Woorden", - "DE.Views.Settings.unknownText": "Onbekend", - "DE.Views.Toolbar.textBack": "Terug" + "About": { + "textAbout": "Over", + "textAddress": "Adres", + "textBack": "Terug", + "textEmail": "E-mail", + "textPoweredBy": "Aangedreven door", + "textTel": "Tel.", + "textVersion": "Versie" + }, + "Add": { + "notcriticalErrorTitle": "Waarschuwing", + "textAddLink": "Koppeling toevoegen", + "textAddress": "Adres", + "textBack": "Terug", + "textBelowText": "Onder de tekst", + "textBottomOfPage": "Onderkant pagina", + "textBreak": "Onderbreking", + "textCancel": "Annuleren", + "textCenterBottom": "Middenonder", + "textCenterTop": "Middenboven", + "textColumnBreak": "Kolomeinde", + "textColumns": "Kolommen", + "textComment": "Opmerking", + "textContinuousPage": "Doorlopende pagina", + "textCurrentPosition": "Huidige positie", + "textDisplay": "Weergeven", + "textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", + "textEvenPage": "Even pagina", + "textFootnote": "Voetnoot", + "textFormat": "Opmaak", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textInsert": "Invoegen", + "textInsertFootnote": "Voetnoot invoegen", + "textInsertImage": "Afbeelding invoegen", + "textLeftBottom": "Linksonder", + "textLeftTop": "Linksboven", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLocation": "Locatie", + "textNextPage": "Volgende pagina", + "textOddPage": "Oneven pagina", + "textOther": "Overige", + "textPageBreak": "Pagina-einde", + "textPageNumber": "Paginanummer", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPosition": "Positie", + "textRightBottom": "Rechtsonder", + "textRightTop": "Rechtsboven", + "textRows": "Rijen", + "textScreenTip": "Schermtip", + "textSectionBreak": "Sectie-einde", + "textShape": "Vorm", + "textStartAt": "Beginnen bij", + "textTable": "Tabel", + "textTableSize": "Tabelgrootte", + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Waarschuwing", + "textAccept": "Accepteren", + "textAcceptAllChanges": "Alle wijzigingen accepteren", + "textAddComment": "Opmerking toevoegen", + "textAddReply": "Reactie toevoegen", + "textAllChangesAcceptedPreview": "Alle veranderingen geaccepteerd (Voorbeeld)", + "textAllChangesEditing": "Alle veranderingen (Bewerken)", + "textAllChangesRejectedPreview": "Alle veranderingen afgekeurd (Voorbeeld)", + "textAtLeast": "ten minste", + "textAuto": "Automatisch", + "textBack": "Terug", + "textBaseline": "Basislijn", + "textBold": "Vet", + "textBreakBefore": "Pagina-einde vóór", + "textCancel": "Annuleren", + "textCaps": "Allemaal hoofdletters", + "textCenter": "Centreren", + "textChart": "Grafiek", + "textCollaboration": "Samenwerking", + "textColor": "Kleur lettertype", + "textComments": "Opmerkingen", + "textContextual": "Voeg geen intervallen toe tussen alinea's van dezelfde stijl", + "textDelete": "Verwijderen", + "textDeleteComment": "Verwijder opmerking", + "textDeleted": "Verwijderd:", + "textDeleteReply": "Reactie verwijderen", + "textDisplayMode": "Weergavemodus", + "textDone": "Klaar", + "textDStrikeout": "Dubbel doorhalen", + "textEdit": "Bewerken", + "textEditComment": "Opmerking bewerken", + "textEditReply": "Reactie bewerken", + "textEditUser": "Gebruikers die het bestand bewerken:", + "textEquation": "Vergelijking", + "textExact": "precies", + "textFinal": "Definitief", + "textFirstLine": "Eerste regel", + "textFormatted": "Opgemaakt", + "textHighlight": "Markeringskleur", + "textImage": "Afbeelding", + "textIndentLeft": "Links inspringen", + "textIndentRight": "Rechts inspringen", + "textInserted": "Ingevoegd:", + "textItalic": "Cursief", + "textJustify": "Links en rechts uitlijnen", + "textKeepLines": "Houd de lijnen bij elkaar", + "textKeepNext": "Bij volgende alinea houden", + "textLeft": "Links uitlijnen", + "textLineSpacing": "Regelafstand:", + "textMarkup": "Markup", + "textMessageDeleteComment": "Wil je deze opmerking verwijderen?", + "textMessageDeleteReply": "Wil je deze reactie verwijderen?", + "textMultiple": "meerdere", + "textNoBreakBefore": "Geen pagina-einde vóór", + "textNoChanges": "Er zijn geen wijzigingen.", + "textNoComments": "Dit document bevat geen opmerkingen", + "textNoContextual": "Interval toevoegen tussen alinea's met dezelfde stijl", + "textNoKeepLines": "Houd de lijnen niet bij elkaar", + "textNoKeepNext": "Blijf niet bij de volgende", + "textNot": "Niet", + "textNoWidow": "Zwevende eindregels niet voorkomen", + "textNum": "Nummering wijzigen", + "textOriginal": "Origineel", + "textParaDeleted": "Alinea verwijderd", + "textParaFormatted": "Alinea opgemaakt", + "textParaInserted": "Alinea ingevoegd", + "textParaMoveFromDown": "Omlaag verplaatst:", + "textParaMoveFromUp": "Omhoog geplaatst:", + "textParaMoveTo": "Verplaast:", + "textPosition": "Positie", + "textReject": "Weigeren", + "textRejectAllChanges": "Alle wijzigingen weigeren", + "textReopen": "Heropenen", + "textResolve": "Oplossen", + "textReview": "Beoordeling", + "textReviewChange": "Bekijk de wijziging", + "textRight": "Rechts uitlijnen", + "textShape": "Vorm", + "textShd": "Achtergrondkleur", + "textSmallCaps": "Kleine hoofdletters", + "textSpacing": "Afstand", + "textSpacingAfter": "Afstand na", + "textSpacingBefore": "Afstand vóór", + "textStrikeout": "Doorhalen", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Tafelinstellingen gewijzigd", + "textTableRowsAdd": "Tabelrijen toegevoegd", + "textTableRowsDel": "Tabelrijen verwijderd", + "textTabs": "Tabs wijzigen", + "textTrackChanges": "Wijzigingen bijhouden", + "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", + "textUnderline": "Onderstrepen", + "textUsers": "Gebruikers", + "textWidow": "Zwevende regels voorkomen" + }, + "ThemeColorPalette": { + "textCustomColors": "Aangepaste kleuren", + "textStandartColors": "Standaardkleuren", + "textThemeColors": "Themakleuren" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Kopieer-, knip- en plakacties via het contextmenu worden alleen binnen het huidige bestand uitgevoerd.", + "menuAddComment": "Opmerking toevoegen", + "menuAddLink": "Koppeling toevoegen", + "menuCancel": "Annuleren", + "menuDelete": "Verwijderen", + "menuDeleteTable": "Tabel verwijderen", + "menuEdit": "Bewerken", + "menuMerge": "Samenvoegen", + "menuMore": "Meer", + "menuOpenLink": "Koppeling openen", + "menuReview": "Beoordeling", + "menuReviewChange": "Bekijk de wijziging", + "menuSplit": "Splitsen", + "menuViewComment": "Opmerking bekijken", + "textColumns": "Kolommen", + "textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", + "textDoNotShowAgain": "Niet meer laten zien.", + "textRows": "Rijen" + }, + "Edit": { + "notcriticalErrorTitle": "Waarschuwing", + "textActualSize": "Ware grootte", + "textAddCustomColor": "Aangepaste kleur toevoegen", + "textAdditional": "Extra", + "textAdditionalFormatting": "Aanvullende opmaak", + "textAddress": "Adres", + "textAdvanced": "Geavanceerd", + "textAdvancedSettings": "Geavanceerde instellingen", + "textAfter": "Na", + "textAlign": "Uitlijnen", + "textAllCaps": "Allemaal hoofdletters", + "textAllowOverlap": "Overlappingen toestaan", + "textAuto": "Automatisch", + "textAutomatic": "Automatisch", + "textBack": "Terug", + "textBackground": "Achtergrond", + "textBandedColumn": "Gestreepte kolom", + "textBandedRow": "Gestreepte rij", + "textBefore": "Voor", + "textBehind": "Achter", + "textBorder": "Rand", + "textBringToForeground": "Naar de voorgrond brengen", + "textBullets": "Opsommingstekens", + "textBulletsAndNumbers": "Opsommingstekens en nummers", + "textCellMargins": "Celmarges", + "textChart": "Grafiek", + "textClose": "Sluiten", + "textColor": "Kleur", + "textContinueFromPreviousSection": "Doorgaan vanuit volgende sectie", + "textCustomColor": "Aangepaste kleur", + "textDifferentFirstPage": "Afwijkende eerste pagina", + "textDifferentOddAndEvenPages": "Afwijkende even en oneven pagina's", + "textDisplay": "Weergeven", + "textDistanceFromText": "Afstand van tekst", + "textDoubleStrikethrough": "Dubbel doorhalen", + "textEditLink": "Koppeling bewerken", + "textEffects": "Effecten", + "textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", + "textFill": "Vullen", + "textFirstColumn": "Eerste kolom", + "textFirstLine": "Eerste regel", + "textFlow": "Stroom", + "textFontColor": "Kleur lettertype", + "textFontColors": "Lettertype kleuren", + "textFonts": "Lettertypen", + "textFooter": "Voettekst", + "textHeader": "Koptekst", + "textHeaderRow": "Koprij", + "textHighlightColor": "Markeringskleur", + "textHyperlink": "Hyperlink", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textInFront": "Vooraan", + "textInline": "Inline", + "textKeepLinesTogether": "Houd de lijnen bij elkaar", + "textKeepWithNext": "Bij volgende alinea houden", + "textLastColumn": "Laatste kolom", + "textLetterSpacing": "Letterafstand", + "textLineSpacing": "Regelafstand", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkToPrevious": "Koppelen aan vorige", + "textMoveBackward": "Naar achter verplaatsen", + "textMoveForward": "Naar voren verplaatsen", + "textMoveWithText": "Met tekst verplaatsen", + "textNone": "Geen", + "textNoStyles": "Geen stijlen voor dit soort grafieken.", + "textNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "textNumbers": "Nummers", + "textOpacity": "Ondoorzichtigheid", + "textOptions": "Opties", + "textOrphanControl": "Zwevende regels voorkomen", + "textPageBreakBefore": "Pagina-einde vóór", + "textPageNumbering": "Paginanummering", + "textParagraph": "Alinea", + "textParagraphStyles": "Alineastijlen", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPt": "pt", + "textRemoveChart": "Grafiek verwijderen", + "textRemoveImage": "Afbeelding verwijderen", + "textRemoveLink": "Koppeling verwijderen", + "textRemoveShape": "Vorm verwijderen", + "textRemoveTable": "Tabel verwijderen", + "textReorder": "Opnieuw ordenen", + "textRepeatAsHeaderRow": "Als koprij herhalen", + "textReplace": "Vervangen", + "textReplaceImage": "Afbeelding vervangen", + "textResizeToFitContent": "Grootte aanpassen aan inhoud", + "textScreenTip": "Schermtip", + "textSelectObjectToEdit": "Selecteer object om te bewerken", + "textSendToBackground": "Naar achtergrond sturen", + "textSettings": "Instellingen", + "textShape": "Vorm", + "textSize": "Grootte", + "textSmallCaps": "Kleine hoofdletters", + "textSpaceBetweenParagraphs": "Ruimte tussen alinea's", + "textSquare": "Kwadraat", + "textStartAt": "Beginnen bij", + "textStrikethrough": "Doorhalen", + "textStyle": "Stijl", + "textStyleOptions": "Stijlopties", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Tabel", + "textTableOptions": "Tabelopties", + "textText": "Tekst", + "textThrough": "Doorgaand", + "textTight": "Strak", + "textTopAndBottom": "Boven en onder", + "textTotalRow": "Totaalrij", + "textType": "Type", + "textWrap": "Wikkel" + }, + "Error": { + "convertationTimeoutText": "Time-out voor conversie overschreden.", + "criticalErrorExtText": "Druk op 'OK' om terug te gaan naar de documentenlijst.", + "criticalErrorTitle": "Fout", + "downloadErrorText": "Download mislukt.", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorBadImageUrl": "Afbeelding's URL is onjuist", + "errorConnectToServer": "Kan dit document niet opslaan. Controleer uw verbindingsinstellingen of neem contact op met de beheerder.
    Wanneer u op OK klikt, wordt u gevraagd om het document te downloaden.", + "errorDatabaseConnection": "Externe fout.
    Database verbindingsfout. Neem contact op met support.", + "errorDataEncrypted": "Versleutelde aanpassingen zijn ontvangen, deze kunnen niet worden ontsleuteld.", + "errorDataRange": "Onjuist gegevensbereik.", + "errorDefaultMessage": "Foutcode: %1", + "errorEditingDownloadas": "Er is een fout opgetreden tijdens het bewerken van het document.
    Download het document om lokaal een reservekopie op te slaan.", + "errorFilePassProtect": "Het bestand is beveiligd met een wachtwoord en kon niet worden geopend.", + "errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet van uw server.
    Neem contact op met uw beheerder.", + "errorKeyEncrypt": "Onbekende sleutelbeschrijver", + "errorKeyExpire": "Sleutelbeschrijver vervallen", + "errorMailMergeLoadFile": "Laden mislukt", + "errorMailMergeSaveFile": "Samenvoegen mislukt.", + "errorSessionAbsolute": "De document bewerkingssessie is verlopen. Gelieve de pagina opnieuw te laden.", + "errorSessionIdle": "Het document is al een hele tijd niet meer bewerkt. Gelieve de pagina opnieuw te laden.", + "errorSessionToken": "De verbinding met de server is onderbroken. Gelieve de pagina opnieuw te laden.", + "errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:
    openingskoers, max koers, min koers, slotkoers.", + "errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", + "errorUserDrop": "Het bestand kan nu niet worden geopend.", + "errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", + "errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,
    maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.", + "notcriticalErrorTitle": "Waarschuwing", + "openErrorText": "Er is een fout opgetreden bij het openen van het bestand", + "saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", + "scriptLoadError": "De verbinding is te traag, sommige onderdelen konden niet geladen worden. Gelieve de pagina opnieuw te laden.", + "splitDividerErrorText": "Het aantal rijen moet een deler zijn van %1", + "splitMaxColsErrorText": "Aantal kolommen moet kleiner zijn dan %1", + "splitMaxRowsErrorText": "Het aantal rijen moet kleiner zijn dan %1", + "unknownErrorText": "Onbekende fout.", + "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", + "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", + "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB." + }, + "LongActions": { + "applyChangesTextText": "Gegevens worden geladen...", + "applyChangesTitleText": "Gegevens worden geladen", + "downloadMergeText": "Downloaden...", + "downloadMergeTitle": "Downloaden", + "downloadTextText": "Document wordt gedownload...", + "downloadTitleText": "Document wordt gedownload", + "loadFontsTextText": "Gegevens worden geladen...", + "loadFontsTitleText": "Gegevens worden geladen", + "loadFontTextText": "Gegevens worden geladen...", + "loadFontTitleText": "Gegevens worden geladen", + "loadImagesTextText": "Afbeeldingen worden geladen...", + "loadImagesTitleText": "Afbeeldingen worden geladen", + "loadImageTextText": "Afbeelding wordt geladen...", + "loadImageTitleText": "Afbeelding wordt geladen", + "loadingDocumentTextText": "Document wordt geladen...", + "loadingDocumentTitleText": "Document wordt geladen", + "mailMergeLoadFileText": "Gegevensbron wordt geladen...", + "mailMergeLoadFileTitle": "Gegevensbron wordt geladen", + "openTextText": "Document wordt geopend...", + "openTitleText": "Document wordt geopend", + "printTextText": "Document wordt afgedrukt...", + "printTitleText": "Document wordt afgedrukt", + "savePreparingText": "Klaarmaken om op te slaan", + "savePreparingTitle": "Klaarmaken om op te slaan. Even geduld...", + "saveTextText": "Document wordt opgeslagen...", + "saveTitleText": "Document wordt opgeslagen", + "sendMergeText": "De resultaten van de samenvoeging worden verzonden...", + "sendMergeTitle": "De resultaten van de samenvoeging worden verzonden", + "textLoadingDocument": "Document wordt geladen", + "txtEditingMode": "Bewerkmodus instellen...", + "uploadImageTextText": "Afbeelding wordt geüpload...", + "uploadImageTitleText": "Afbeelding wordt geüpload", + "waitText": "Een moment geduld..." + }, + "Main": { + "criticalErrorTitle": "Fout", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw administrator.", + "errorOpensource": "Met de gratis Community versie kunt u documenten openen om ze alleen te bekijken. Voor toegang tot mobiele webeditors is een commerciële licentie vereist.", + "errorProcessSaveResult": "Opslaan mislukt.", + "errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", + "errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "leavePageText": "U heeft nog niet opgeslagen wijzigingen. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "notcriticalErrorTitle": "Waarschuwing", + "SDK": { + " -Section ": "-Sectie", + "above": "boven", + "below": "onder", + "Caption": "Onderschrift", + "Choose an item": "Kies een item", + "Click to load image": "Klik om afbeelding te laden", + "Current Document": "Huidig document", + "Diagram Title": "Grafiektitel", + "endnote text": "Eindnoot tekst", + "Enter a date": "Vul een datum in", + "Error! Bookmark not defined": "Fout! Bladwijzer is niet gedefinieerd.", + "Error! Main Document Only": "Fout! alleen hoofddocument", + "Error! No text of specified style in document": "Fout. Geen tekst van opgegeven stijl in document.", + "Error! Not a valid bookmark self-reference": "Fout! Geen geldige zelf referentie voor bladwijzers.", + "Even Page ": "Even pagina", + "First Page ": "Eerste pagina", + "Footer": "Voettekst", + "footnote text": "Voetnoot tekst", + "Header": "Koptekst", + "Heading 1": "Kop 1", + "Heading 2": "Kop 2", + "Heading 3": "Kop 3", + "Heading 4": "Kop 4", + "Heading 5": "Kop 5", + "Heading 6": "Kop 6", + "Heading 7": "Kop 7", + "Heading 8": "Kop 8", + "Heading 9": "Kop 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index te groot", + "Intense Quote": "Duidelijk citaat", + "Is Not In Table": "Niet in de tabel", + "List Paragraph": "Lijstalinea", + "Missing Argument": "Missende parameter", + "Missing Operator": "Ontbrekende operator", + "No Spacing": "Geen afstand", + "No table of contents entries found": "Er zijn geen koppen in het document. Pas een kopstijl toe op de tekst zodat deze in de inhoudsopgave wordt weergegeven.", + "No table of figures entries found": "Er konden geen tabel met cijfers gevonden worden.", + "None": "Geen", + "Normal": "Normaal", + "Number Too Large To Format": "Nummer is te groot om op te maken", + "Odd Page ": "Oneven pagina", + "Quote": "Citaat", + "Same as Previous": "Zelfde als vorige", + "Series": "Serie", + "Subtitle": "Subtitel", + "Syntax Error": "Syntax error", + "Table Index Cannot be Zero": "Tabelindex mag niet nul zijn", + "Table of Contents": "Inhoudsopgave", + "table of figures": "Tabel met figuren", + "The Formula Not In Table": "De formule niet in de tabel", + "Title": "Titel", + "TOC Heading": "TOC-Titel", + "Type equation here": "Type hier de vergelijking", + "Undefined Bookmark": "Ongedefinieerde bladwijzer", + "Unexpected End of Formula": "Onverwacht einde van de formule", + "X Axis": "X-as XAS", + "Y Axis": "Y-as", + "Your text here": "Hier tekst invoeren", + "Zero Divide": "Nul Delen" + }, + "textAnonymous": "Anoniem", + "textBuyNow": "Website bezoeken", + "textClose": "Sluiten", + "textContactUs": "Contact opnemen met de verkoopafdeling", + "textCustomLoader": "Sorry, u hebt niet het recht om de lader te veranderen. Neem contact op met onze verkoopafdeling voor een offerte.", + "textGuest": "Gast", + "textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", + "textNo": "Nee", + "textNoLicenseTitle": "Licentielimiet bereikt", + "textPaidFeature": "Betaalde functie", + "textRemember": "Bewaar mijn keuze", + "textYes": "Ja", + "titleLicenseExp": "Licentie vervallen", + "titleServerVersion": "Editor bijgewerkt", + "titleUpdateVersion": "Versie gewijzigd", + "warnLicenseExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Het document zal worden geopend in leesmodus. Neem contact op met uw beheerder voor meer informatie. ", + "warnLicenseExp": "Uw licentie is verlopen. Gelieve uw licentie bij te werken en de pagina te vernieuwen.", + "warnLicenseLimitedNoAccess": "Licentie verlopen. U hebt geen toegang tot de documentbewerking functionaliteit. Neem contact op met uw beheerder.", + "warnLicenseLimitedRenewed": "De licentie moet worden vernieuwd. U heeft beperkte toegang tot de documentbewerking functionaliteit.
    Neem contact op met uw administrator om volledige toegang te krijgen", + "warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met uw beheerder voor meer informatie.", + "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", + "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", + "warnProcessRightsChange": "Je hebt geen toestemming om dit bestand te bewerken." + }, + "Settings": { + "advDRMOptions": "Beveiligd bestand", + "advDRMPassword": "Wachtwoord", + "advTxtOptions": "Opties voor TXT-bestanden kiezen", + "closeButtonText": "Bestand sluiten", + "notcriticalErrorTitle": "Waarschuwing", + "textAbout": "Over", + "textApplication": "Applicatie", + "textApplicationSettings": "Applicatie instellingen", + "textAuthor": "Auteur", + "textBack": "Terug", + "textBottom": "Onder", + "textCancel": "Annuleren", + "textCaseSensitive": "Hoofdlettergevoelig", + "textCentimeter": "Centimeter", + "textCollaboration": "Samenwerking", + "textColorSchemes": "Kleurschema's", + "textComment": "Opmerking", + "textComments": "Opmerkingen", + "textCommentsDisplay": "Opmerkingen weergeven", + "textCreated": "Aangemaakt", + "textCustomSize": "Aangepaste grootte", + "textDisableAll": "Alles uitschakelen", + "textDisableAllMacrosWithNotification": "Alle macro's met notificaties uitschakelen", + "textDisableAllMacrosWithoutNotification": "Alle macro's met notificatie uitschakelen", + "textDocumentInfo": "Documentinformatie", + "textDocumentSettings": "Documentinstellingen", + "textDocumentTitle": "Documenttitel", + "textDone": "Klaar", + "textDownload": "Downloaden", + "textDownloadAs": "Downloaden als", + "textDownloadRtf": "Als u in dit formaat blijft opslaan, kan een deel van de opmaak verloren gaan. Weet u zeker dat u wilt doorgaan?", + "textDownloadTxt": "Als u in dit formaat opslaat gaat alle opmaak van de tekst verloren. Weet u zeker dat u wilt doorgaan?", + "textEnableAll": "Alles inschakelen", + "textEnableAllMacrosWithoutNotification": "Alle macro's inschakelen zonder notificatie", + "textEncoding": "Codering", + "textFind": "Zoeken", + "textFindAndReplace": "Zoeken en vervangen", + "textFindAndReplaceAll": "Zoek en vervang alles", + "textFormat": "Opmaak", + "textHelp": "Help", + "textHiddenTableBorders": "Verborgen tabelranden", + "textHighlightResults": "Resultaten markeren", + "textInch": "Inch", + "textLandscape": "Liggend", + "textLastModified": "Laatst aangepast", + "textLastModifiedBy": "Laatst aangepast door", + "textLeft": "Links", + "textLoading": "Bezig met laden...", + "textLocation": "Locatie", + "textMacrosSettings": "Macro instellingen", + "textMargins": "Marges", + "textMarginsH": "Boven- en ondermarges zijn te hoog voor de opgegeven paginahoogte", + "textMarginsW": "Linker- en rechtermarge zijn te breed voor opgegeven paginabreedte", + "textNoCharacters": "Niet-afdrukbare tekens", + "textNoTextFound": "Tekst niet gevonden", + "textOpenFile": "Voer een wachtwoord in om dit bestand te openen", + "textOrientation": "Oriëntatie ", + "textOwner": "Eigenaar", + "textPoint": "Punt", + "textPortrait": "Staand", + "textPrint": "Afdrukken", + "textReaderMode": "Leesmodus", + "textReplace": "Vervangen", + "textReplaceAll": "Alles vervangen", + "textResolvedComments": "Opgeloste opmerkingen", + "textRight": "Rechts", + "textSearch": "Zoeken", + "textSettings": "Instellingen", + "textShowNotification": "Notificatie weergeven", + "textSpellcheck": "Spellingscontrole", + "textStatistic": "Statistiek", + "textSubject": "Onderwerp", + "textTitle": "Titel", + "textTop": "Boven", + "textUnitOfMeasurement": "Maateenheid", + "textUploaded": "Geüpload", + "txtIncorrectPwd": "Wachtwoord is onjuist", + "txtProtected": "Zodra u het wachtwoord invoert en het bestand opent, zal het huidige wachtwoord worden gereset", + "txtScheme1": "Kantoor", + "txtScheme10": "Mediaan", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Overvloedig", + "txtScheme14": "Erker", + "txtScheme15": "Oorsprong", + "txtScheme16": "Papier", + "txtScheme17": "Zonnewende", + "txtScheme18": "Technisch", + "txtScheme19": "Tocht", + "txtScheme2": "Grijstinten", + "txtScheme20": "Stedelijk", + "txtScheme21": "Verve", + "txtScheme22": "Nieuw kantoor", + "txtScheme3": "Top", + "txtScheme4": "Aspect", + "txtScheme5": "Civiel", + "txtScheme6": "Concours", + "txtScheme7": "Vermogen", + "txtScheme8": "Stroom", + "txtScheme9": "Gieterij" + }, + "Toolbar": { + "dlgLeaveMsgText": "U heeft nog niet opgeslagen wijzigingen. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "dlgLeaveTitleText": "U verlaat de toepassing", + "leaveButtonText": "Pagina verlaten", + "stayButtonText": "Op deze pagina blijven" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/pl.json b/apps/documenteditor/mobile/locale/pl.json index 86b3b9537..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/pl.json +++ b/apps/documenteditor/mobile/locale/pl.json @@ -1,586 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Dodaj odpowiedź", - "Common.Controllers.Collaboration.textAtLeast": "Co najmniej", - "Common.Controllers.Collaboration.textAuto": "Automatyczny", - "Common.Controllers.Collaboration.textBold": "Pogrubienie", - "Common.Controllers.Collaboration.textCancel": "Anuluj", - "Common.Controllers.Collaboration.textCaps": "Wszystkie litery duże", - "Common.Controllers.Collaboration.textCenter": "Wyśrodkuj", - "Common.Controllers.Collaboration.textChart": "Wykres", - "Common.Controllers.Collaboration.textColor": "Kolor czcionki", - "Common.Controllers.Collaboration.textContextual": "Nie dodawaj odstępu", - "Common.Controllers.Collaboration.textDelete": "Usuń", - "Common.Controllers.Collaboration.textDeleteComment": "Usuń komentarz", - "Common.Controllers.Collaboration.textDeleted": "Usunięte:", - "Common.Controllers.Collaboration.textDeleteReply": "Usuń odpowiedź", - "Common.Controllers.Collaboration.textDone": "Gotowe", - "Common.Controllers.Collaboration.textDStrikeout": "Podwójne przekreślenie", - "Common.Controllers.Collaboration.textEdit": "Edytuj", - "Common.Controllers.Collaboration.textEditUser": "Użytkownicy obecnie edytujący plik:", - "Common.Controllers.Collaboration.textEquation": "Równanie", - "Common.Controllers.Collaboration.textExact": "Dokładnie", - "Common.Controllers.Collaboration.textFirstLine": "Pierwszy wiersz", - "Common.Controllers.Collaboration.textFormatted": "Sformatowany", - "Common.Controllers.Collaboration.textHighlight": "Kolor podświetlenia", - "Common.Controllers.Collaboration.textImage": "Obraz", - "Common.Controllers.Collaboration.textIndentLeft": "Wcięcie z lewej", - "Common.Controllers.Collaboration.textIndentRight": "Wcięcie z prawej", - "Common.Controllers.Collaboration.textInserted": "Wstawione:", - "Common.Controllers.Collaboration.textItalic": "Kursywa", - "Common.Controllers.Collaboration.textJustify": "Wyjustuj", - "Common.Controllers.Collaboration.textKeepLines": "Trzymaj wiersze razem", - "Common.Controllers.Collaboration.textLeft": "Wyrównaj do lewej", - "Common.Controllers.Collaboration.textLineSpacing": "Rozstaw wierszy:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Czy na pewno chcesz usunąć ten komentarz?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Czy na pewno chcesz usunąć tę odpowiedź?", - "Common.Controllers.Collaboration.textMultiple": "wielokrotne", - "Common.Controllers.Collaboration.textNoChanges": "Brak zmian.", - "Common.Controllers.Collaboration.textNoContextual": "Dodaj odstęp między akapitami tego samego stylu", - "Common.Controllers.Collaboration.textNoKeepLines": "Nie trzymaj linii razem", - "Common.Controllers.Collaboration.textNot": "Nie", - "Common.Controllers.Collaboration.textNum": "Zmień numerację", - "Common.Controllers.Collaboration.textParaDeleted": "Akapit usunięty", - "Common.Controllers.Collaboration.textParaFormatted": "Akapit Sformatowany", - "Common.Controllers.Collaboration.textParaInserted": "Akapit Wstawiony ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Przesunięto w dół:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Przesunięto w górę:", - "Common.Controllers.Collaboration.textParaMoveTo": "Przesunięto:", - "Common.Controllers.Collaboration.textPosition": "Pozycja", - "Common.Controllers.Collaboration.textReopen": "Otwórz ponownie", - "Common.Controllers.Collaboration.textResolve": "Rozwiąż", - "Common.Controllers.Collaboration.textRight": "Wyrównaj do prawej", - "Common.Controllers.Collaboration.textShape": "Kształt", - "Common.Controllers.Collaboration.textShd": "Kolor tła", - "Common.Controllers.Collaboration.textSpacing": "Rozstaw", - "Common.Controllers.Collaboration.textSpacingAfter": "Rozstaw po", - "Common.Controllers.Collaboration.textSpacingBefore": "Rozstaw przed", - "Common.Controllers.Collaboration.textStrikeout": "Przekreślenie", - "Common.Controllers.Collaboration.textSubScript": "Indeks dolny", - "Common.Controllers.Collaboration.textSuperScript": "Indeks górny", - "Common.Controllers.Collaboration.textTableChanged": "Ustawienia tabeli zmienione", - "Common.Controllers.Collaboration.textTableRowsAdd": "Dodano rzędy do tabeli", - "Common.Controllers.Collaboration.textTableRowsDel": "Usunięto rzędy tabeli", - "Common.Controllers.Collaboration.textTabs": "Zmień tabulatory", - "Common.Controllers.Collaboration.textUnderline": "Podkreśl", - "Common.Controllers.Collaboration.textYes": "Tak", - "Common.UI.ThemeColorPalette.textCustomColors": "Niestandardowe kolory", - "Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe", - "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Zaakceptuj", - "Common.Views.Collaboration.textAcceptAllChanges": "Zaakceptuj wszystkie zmiany", - "Common.Views.Collaboration.textAddReply": "Dodaj odpowiedź", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Wszystkie zmiany zaakceptowane (podgląd)", - "Common.Views.Collaboration.textAllChangesEditing": "Wszystkie zmiany (edycja)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Wszystkie zmiany odrzucone (podgląd)", - "Common.Views.Collaboration.textBack": "Wstecz", - "Common.Views.Collaboration.textCancel": "Anuluj", - "Common.Views.Collaboration.textCollaboration": "Współpraca", - "Common.Views.Collaboration.textDisplayMode": "Tryb wyświetlania", - "Common.Views.Collaboration.textDone": "Gotowe", - "Common.Views.Collaboration.textEditReply": "Edytuj odpowiedź", - "Common.Views.Collaboration.textEditUsers": "Użytkownicy", - "Common.Views.Collaboration.textEditСomment": "Edytuj komentarz", - "Common.Views.Collaboration.textFinal": "Ostateczny", - "Common.Views.Collaboration.textNoComments": "Ten dokument nie zawiera komentarzy", - "Common.Views.Collaboration.textOriginal": "Oryginał", - "Common.Views.Collaboration.textReject": "Odrzuć", - "Common.Views.Collaboration.textRejectAllChanges": "Odrzuć wszystkie zmiany", - "Common.Views.Collaboration.textReview": "Śledź zmiany", - "Common.Views.Collaboration.textСomments": "Komentarze", - "DE.Controllers.AddContainer.textImage": "Obraz", - "DE.Controllers.AddContainer.textOther": "Inny", - "DE.Controllers.AddContainer.textShape": "Kształt", - "DE.Controllers.AddContainer.textTable": "Tabela", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Ostrzeżenie", - "DE.Controllers.AddImage.textEmptyImgUrl": "Musisz podać adres URL obrazu.", - "DE.Controllers.AddImage.txtNotUrl": "To pole powinno być w formacie URL np.: 'http://www.example.com'", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Ostrzeżenie", - "DE.Controllers.AddOther.textBelowText": "Poniżej tekstu", - "DE.Controllers.AddOther.textBottomOfPage": "Dół strony", - "DE.Controllers.AddOther.textCancel": "Anuluj", - "DE.Controllers.AddOther.textContinue": "Kontynuuj", - "DE.Controllers.AddOther.textDelete": "Usuń", - "DE.Controllers.AddOther.textDeleteDraft": "Czy na pewno chcesz usunąć wersję roboczą?", - "DE.Controllers.AddOther.txtNotUrl": "To pole powinno być w formacie URL np.: 'http://www.example.com'", - "DE.Controllers.AddTable.textCancel": "Anuluj", - "DE.Controllers.AddTable.textColumns": "Kolumny", - "DE.Controllers.AddTable.textRows": "Wiersze", - "DE.Controllers.AddTable.textTableSize": "Rozmiar tabeli", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Akcje kopiuj, wytnij i wklej wywołane z menu kontekstowego zostaną wykonane tylko dla bieżącego pliku.", - "DE.Controllers.DocumentHolder.menuAddComment": "Dodaj komentarz", - "DE.Controllers.DocumentHolder.menuAddLink": "Dodaj link", - "DE.Controllers.DocumentHolder.menuCopy": "Kopiuj", - "DE.Controllers.DocumentHolder.menuCut": "Wytnij", - "DE.Controllers.DocumentHolder.menuDelete": "Usuń", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Usuń tabelę", - "DE.Controllers.DocumentHolder.menuEdit": "Edytuj", - "DE.Controllers.DocumentHolder.menuMerge": "Scal komórki", - "DE.Controllers.DocumentHolder.menuMore": "Więcej", - "DE.Controllers.DocumentHolder.menuOpenLink": "Otwórz link", - "DE.Controllers.DocumentHolder.menuPaste": "Wklej", - "DE.Controllers.DocumentHolder.menuSplit": "Rozdziel komórkę", - "DE.Controllers.DocumentHolder.menuViewComment": "Zobacz komentarz", - "DE.Controllers.DocumentHolder.sheetCancel": "Anuluj", - "DE.Controllers.DocumentHolder.textCancel": "Anuluj", - "DE.Controllers.DocumentHolder.textColumns": "Kolumny", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Kopiuj, Wytnij i Wklej", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Nie pokazuj ponownie", - "DE.Controllers.DocumentHolder.textGuest": "Gość", - "DE.Controllers.DocumentHolder.textRows": "Wiersze", - "DE.Controllers.EditContainer.textChart": "Wykres", - "DE.Controllers.EditContainer.textFooter": "Stopka", - "DE.Controllers.EditContainer.textHeader": "Nagłówek", - "DE.Controllers.EditContainer.textHyperlink": "Hiperlink", - "DE.Controllers.EditContainer.textImage": "Obraz", - "DE.Controllers.EditContainer.textParagraph": "Akapit", - "DE.Controllers.EditContainer.textSettings": "Ustawienia", - "DE.Controllers.EditContainer.textShape": "Kształt", - "DE.Controllers.EditContainer.textTable": "Tabela", - "DE.Controllers.EditContainer.textText": "Tekst", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Ostrzeżenie", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Musisz podać URL obrazu.", - "DE.Controllers.EditHyperlink.txtNotUrl": "To pole powinno być URL'em w formacie 'http://www.example.com'", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Ostrzeżenie", - "DE.Controllers.EditImage.textEmptyImgUrl": "Musisz podać adres URL obrazu.", - "DE.Controllers.EditImage.txtNotUrl": "To pole powinno być w formacie URL np.: 'http://www.example.com'", - "DE.Controllers.EditText.textAuto": "Automatyczny", - "DE.Controllers.EditText.textFonts": "Czcionki", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Wprowadź swoje hasło:", - "DE.Controllers.Main.advDRMOptions": "Plik chroniony", - "DE.Controllers.Main.advDRMPassword": "Hasło", - "DE.Controllers.Main.advTxtOptions": "Wybierz opcje TXT", - "DE.Controllers.Main.applyChangesTextText": "Ładowanie danych...", - "DE.Controllers.Main.applyChangesTitleText": "Ładowanie danych", - "DE.Controllers.Main.closeButtonText": "Zamknij plik", - "DE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", - "DE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\" aby powrócić do listy dokumentów.", - "DE.Controllers.Main.criticalErrorTitle": "Błąd", - "DE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.", - "DE.Controllers.Main.downloadMergeText": "Pobieranie...", - "DE.Controllers.Main.downloadMergeTitle": "Pobieranie", - "DE.Controllers.Main.downloadTextText": "Pobieranie dokumentu...", - "DE.Controllers.Main.downloadTitleText": "Pobieranie dokumentu", - "DE.Controllers.Main.errorAccessDeny": "Próbujesz wykonać działanie, do którego nie masz uprawnień.
    Proszę skontaktować się ze swoim administratorem Serwera Dokumentów.", - "DE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie możesz już edytować.", - "DE.Controllers.Main.errorConnectToServer": "Nie można zapisać dokumentu. Sprawdź ustawienia połączenia lub skontaktuj się z administratorem.
    Po kliknięciu przycisku \"OK\" zostanie wyświetlony monit o pobranie dokumentu.", - "DE.Controllers.Main.errorDatabaseConnection": "Zewnętrzny błąd.
    Błąd połączenia z bazą danych. Proszę skontaktuj się z administratorem.", - "DE.Controllers.Main.errorDataEncrypted": "Otrzymano zaszyfrowane zmiany, nie można ich odszyfrować.", - "DE.Controllers.Main.errorDataRange": "Błędny zakres danych.", - "DE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Wystąpił błąd podczas pracy nad dokumentem.
    Użyj opcji 'Pobierz', by zapisać kopię na dysku.", - "DE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie można go otworzyć.", - "DE.Controllers.Main.errorFileSizeExceed": "Rozmiar pliku przekracza ustalony limit dla twojego serwera.
    Proszę skontaktować z administratorem twojego Serwera Dokumentów w celu uzyskania szczegółowych informacji.", - "DE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", - "DE.Controllers.Main.errorKeyExpire": "Wyszedł kluczowy deskryptor", - "DE.Controllers.Main.errorMailMergeLoadFile": "Wczytywanie nie powiodło się", - "DE.Controllers.Main.errorMailMergeSaveFile": "Nie udało się scalić.", - "DE.Controllers.Main.errorProcessSaveResult": "Zapisywanie nie powiodło się.", - "DE.Controllers.Main.errorServerVersion": "Wersja edytora została zaktualizowana. Strona zostanie ponownie załadowana, aby zastosować zmiany.", - "DE.Controllers.Main.errorSessionAbsolute": "Sesja edycji dokumentu wygasła. Proszę ponownie załadować stronę.", - "DE.Controllers.Main.errorSessionIdle": "Dokument nie był edytowany przez długi czas. Proszę ponownie załadować stronę.", - "DE.Controllers.Main.errorSessionToken": "Połączenie z serwerem zostało przerwane. Proszę ponownie załadować stronę.", - "DE.Controllers.Main.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
    cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", - "DE.Controllers.Main.errorUpdateVersion": "Wersja pliku została zmieniona. Strona zostanie ponownie załadowana.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Połączenie z internetem zostało odzyskane, wersja pliku uległa zmianie.
    Zanim będziesz mógł kontynuować pracę, musisz pobrać plik albo skopiować jego zawartość, aby mieć pewność, że nic nie zostało utracone, a następnie odświeżyć stronę.", - "DE.Controllers.Main.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", - "DE.Controllers.Main.errorUsersExceed": "Liczba użytkowników została przekroczona.", - "DE.Controllers.Main.errorViewerDisconnect": "Połączenie zostało utracone. Nadal możesz przeglądać dokument,
    ale nie będzie mógł go pobrać do momentu przywrócenia połączenia.", - "DE.Controllers.Main.leavePageText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", - "DE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", - "DE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", - "DE.Controllers.Main.loadFontTextText": "Ładowanie danych...", - "DE.Controllers.Main.loadFontTitleText": "Ładowanie danych", - "DE.Controllers.Main.loadImagesTextText": "Ładowanie obrazów...", - "DE.Controllers.Main.loadImagesTitleText": "Ładowanie obrazów", - "DE.Controllers.Main.loadImageTextText": "Ładowanie obrazu...", - "DE.Controllers.Main.loadImageTitleText": "Ładowanie obrazu", - "DE.Controllers.Main.loadingDocumentTextText": "Ładowanie dokumentu...", - "DE.Controllers.Main.loadingDocumentTitleText": "Ładowanie dokumentu", - "DE.Controllers.Main.mailMergeLoadFileText": "Ładowanie źródła danych", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Ładowanie źródła danych", - "DE.Controllers.Main.notcriticalErrorTitle": "Ostrzeżenie", - "DE.Controllers.Main.openErrorText": "Wystąpił błąd podczas otwierania pliku", - "DE.Controllers.Main.openTextText": "Otwieranie dokumentu...", - "DE.Controllers.Main.openTitleText": "Otwieranie dokumentu", - "DE.Controllers.Main.printTextText": "Drukowanie dokumentu...", - "DE.Controllers.Main.printTitleText": "Drukowanie dokumentu", - "DE.Controllers.Main.saveErrorText": "Wystąpił błąd podczas zapisywania pliku", - "DE.Controllers.Main.savePreparingText": "Przygotowywanie do zapisu", - "DE.Controllers.Main.savePreparingTitle": "Przygotowywanie do zapisu. Proszę czekać...", - "DE.Controllers.Main.saveTextText": "Zapisywanie dokumentu...", - "DE.Controllers.Main.saveTitleText": "Zapisywanie dokumentu", - "DE.Controllers.Main.scriptLoadError": "Połączenie jest zbyt wolne, niektóre komponenty mogły nie zostać załadowane. Proszę odświeżyć stronę.", - "DE.Controllers.Main.sendMergeText": "Wysyłanie korespondencji seryjnej...", - "DE.Controllers.Main.sendMergeTitle": "Wysyłanie korespondencji seryjnej...", - "DE.Controllers.Main.splitDividerErrorText": "Liczba wierszy musi być dzielnikiem %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Liczba kolumn musi być mniejsza niż %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Liczba wierszy musi być mniejsza niż %1", - "DE.Controllers.Main.textAnonymous": "Gość", - "DE.Controllers.Main.textBack": "Powrót", - "DE.Controllers.Main.textBuyNow": "Odwiedź stronę web", - "DE.Controllers.Main.textCancel": "Anuluj", - "DE.Controllers.Main.textClose": "Zamknij", - "DE.Controllers.Main.textContactUs": "Dział sprzedaży", - "DE.Controllers.Main.textDone": "Gotowe", - "DE.Controllers.Main.textGuest": "Gość", - "DE.Controllers.Main.textHasMacros": "Plik zawiera makra automatyczne.
    Czy chcesz uruchomić te makra?", - "DE.Controllers.Main.textLoadingDocument": "Ładowanie dokumentu", - "DE.Controllers.Main.textNo": "Nie", - "DE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Płatna funkcja", - "DE.Controllers.Main.textPassword": "Hasło", - "DE.Controllers.Main.textPreloader": "Ładowanie...", - "DE.Controllers.Main.textRemember": "Zapamiętaj mój wybór dla wszystkich plików", - "DE.Controllers.Main.textTryUndoRedo": "Funkcje Cofnij/Ponów są wyłączone w trybie Szybkim współtworzenia.", - "DE.Controllers.Main.textUsername": "Nazwa użytkownika", - "DE.Controllers.Main.textYes": "Tak", - "DE.Controllers.Main.titleLicenseExp": "Licencja wygasła", - "DE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", - "DE.Controllers.Main.titleUpdateVersion": "Wersja uległa zmianie", - "DE.Controllers.Main.txtAbove": "powyżej", - "DE.Controllers.Main.txtArt": "Twój tekst tutaj", - "DE.Controllers.Main.txtBelow": "Poniżej", - "DE.Controllers.Main.txtCurrentDocument": "Aktualny dokument", - "DE.Controllers.Main.txtDiagramTitle": "Tytuł wykresu", - "DE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", - "DE.Controllers.Main.txtEvenPage": "Parzysta strona", - "DE.Controllers.Main.txtFirstPage": "Pierwsza strona", - "DE.Controllers.Main.txtFooter": "Stopka", - "DE.Controllers.Main.txtHeader": "Nagłówek", - "DE.Controllers.Main.txtOddPage": "Nieparzysta strona", - "DE.Controllers.Main.txtOnPage": "na stronie", - "DE.Controllers.Main.txtProtected": "Gdy wpiszesz hasło i otworzysz plik, obecne hasło dla pliku zostanie zresetowane ", - "DE.Controllers.Main.txtSameAsPrev": "Taki sam jak poprzednio", - "DE.Controllers.Main.txtSection": "-Sekcja", - "DE.Controllers.Main.txtSeries": "Serie", - "DE.Controllers.Main.txtStyle_Heading_1": "Nagłówek 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Nagłówek 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Nagłówek 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Nagłówek 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Nagłówek 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Nagłówek 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Nagłówek 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Nagłówek 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Nagłówek 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Intensywny cytat", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Wylistuj akapity", - "DE.Controllers.Main.txtStyle_No_Spacing": "Brak przerw", - "DE.Controllers.Main.txtStyle_Normal": "Normalny", - "DE.Controllers.Main.txtStyle_Quote": "Cytuj", - "DE.Controllers.Main.txtStyle_Subtitle": "Podtytuł", - "DE.Controllers.Main.txtStyle_Title": "Tytuł", - "DE.Controllers.Main.txtXAxis": "Oś X", - "DE.Controllers.Main.txtYAxis": "Oś Y", - "DE.Controllers.Main.unknownErrorText": "Nieznany błąd.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", - "DE.Controllers.Main.uploadImageExtMessage": "Nieznany format obrazu.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Brak zdjęć.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maksymalny rozmiar obrazu został przekroczony.", - "DE.Controllers.Main.uploadImageTextText": "Wysyłanie obrazu...", - "DE.Controllers.Main.uploadImageTitleText": "Wysyłanie obrazu", - "DE.Controllers.Main.waitText": "Proszę czekać...", - "DE.Controllers.Main.warnLicenseExceeded": "Ta wersja edytorów ONLYOFFICE ma pewne ograniczenia dla użytkowników.Dokument zostanie otwarty tylko do odczytu.Jeżeli potrzebujesz więcej, rozważ zakupienie licencji komercyjnej.", - "DE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
    Zaktualizuj licencję i odśwież stronę.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencja wygasła.
    Nie masz dostępu do edycji dokumentu.
    Proszę skontaktować się ze swoim administratorem.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Licencja musi zostać odnowiona.
    Masz ograniczony dostęp do edycji dokumentu.
    Skontaktuj się ze swoim administratorem, aby uzyskać pełny dostęp.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Osiągnąłeś limit dla użytkownia. Skontaktuj się z administratorem, aby dowiedzieć się więcej.", - "DE.Controllers.Main.warnNoLicense": "Osiągnięto limit jednoczesnych połączeń z %1 edytorami. Ten dokument zostanie otwarty tylko do odczytu.
    Skontaktuj się z %1 zespołem sprzedaży w celu omówienia indywidualnych warunków licencji.", - "DE.Controllers.Main.warnNoLicenseUsers": "Osiągnąłeś limit dla użytkownika. Skontaktuj się z zespołem sprzedaży %1 w celu uzyskania osobistych warunków aktualizacji.", - "DE.Controllers.Main.warnProcessRightsChange": "Nie masz uprawnień do edycji tego pliku.", - "DE.Controllers.Search.textNoTextFound": "Nie znaleziono tekstu", - "DE.Controllers.Search.textReplaceAll": "Zamień wszystko", - "DE.Controllers.Settings.notcriticalErrorTitle": "Ostrzeżenie", - "DE.Controllers.Settings.textCustomSize": "Rozmiar niestandardowy", - "DE.Controllers.Settings.txtLoading": "Ładowanie...", - "DE.Controllers.Settings.unknownText": "Nieznany", - "DE.Controllers.Settings.warnDownloadAs": "Jeśli kontynuujesz zapisywanie w tym formacie, wszystkie funkcje oprócz tekstu zostaną utracone.
    Czy na pewno chcesz kontynuować?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Opuszczasz aplikację", - "DE.Controllers.Toolbar.leaveButtonText": "Zostaw tę stronę", - "DE.Controllers.Toolbar.stayButtonText": "Zostań na tej stronie", - "DE.Views.AddImage.textAddress": "Adres", - "DE.Views.AddImage.textBack": "Powrót", - "DE.Views.AddImage.textFromLibrary": "Obraz z biblioteki", - "DE.Views.AddImage.textFromURL": "Obraz z URL", - "DE.Views.AddImage.textImageURL": "Adres URL obrazu", - "DE.Views.AddImage.textInsertImage": "Wstaw obraz", - "DE.Views.AddImage.textLinkSettings": "Ustawienia linku", - "DE.Views.AddOther.textAddComment": "Dodaj komentarz", - "DE.Views.AddOther.textAddLink": "Dodaj link", - "DE.Views.AddOther.textBack": "Powrót", - "DE.Views.AddOther.textCenterBottom": "Centrum dolne", - "DE.Views.AddOther.textCenterTop": "Centrum górne", - "DE.Views.AddOther.textColumnBreak": "Przerwy kolumnowe", - "DE.Views.AddOther.textComment": "Komentarz", - "DE.Views.AddOther.textContPage": "Ciągła strona", - "DE.Views.AddOther.textCurrentPos": "Aktualna pozycja", - "DE.Views.AddOther.textDisplay": "Pokaż", - "DE.Views.AddOther.textDone": "Gotowe", - "DE.Views.AddOther.textEvenPage": "Z parzystej strony", - "DE.Views.AddOther.textFootnote": "Przypis", - "DE.Views.AddOther.textFormat": "Formatuj", - "DE.Views.AddOther.textInsert": "Wstawić", - "DE.Views.AddOther.textLeftBottom": "Lewy dolny", - "DE.Views.AddOther.textLeftTop": "Lewy górny", - "DE.Views.AddOther.textLink": "Link", - "DE.Views.AddOther.textLocation": "Lokalizacja", - "DE.Views.AddOther.textNextPage": "Następna strona", - "DE.Views.AddOther.textOddPage": "Nieparzysta strona", - "DE.Views.AddOther.textPageBreak": "Przerwanie strony", - "DE.Views.AddOther.textPageNumber": "Numer strony", - "DE.Views.AddOther.textPosition": "Pozycja", - "DE.Views.AddOther.textRightBottom": "Prawy dolny", - "DE.Views.AddOther.textRightTop": "Prawy górny", - "DE.Views.AddOther.textSectionBreak": "Przerwanie sekcji", - "DE.Views.AddOther.textStartFrom": "Zacznij w", - "DE.Views.AddOther.textTip": "Wskazówka", - "DE.Views.EditChart.textAddCustomColor": "Dodaj niestandardowy kolor", - "DE.Views.EditChart.textAlign": "Wyrównaj", - "DE.Views.EditChart.textBack": "Powrót", - "DE.Views.EditChart.textBackward": "Przenieś do tyłu", - "DE.Views.EditChart.textBehind": "Za", - "DE.Views.EditChart.textBorder": "Obramowanie", - "DE.Views.EditChart.textColor": "Kolor", - "DE.Views.EditChart.textCustomColor": "Niestandardowy kolor", - "DE.Views.EditChart.textDistanceText": "Odległość od tekstu", - "DE.Views.EditChart.textFill": "Wypełnij", - "DE.Views.EditChart.textForward": "Przenieś do przodu", - "DE.Views.EditChart.textInFront": "Z przodu", - "DE.Views.EditChart.textInline": "W tekście", - "DE.Views.EditChart.textMoveText": "Poruszaj się z tekstem", - "DE.Views.EditChart.textOverlap": "Zezwól na nakładanie się", - "DE.Views.EditChart.textRemoveChart": "Usuń wykres", - "DE.Views.EditChart.textReorder": "Zmień kolejność", - "DE.Views.EditChart.textSize": "Rozmiar", - "DE.Views.EditChart.textSquare": "Kwadratowy", - "DE.Views.EditChart.textStyle": "Styl", - "DE.Views.EditChart.textThrough": "Przez", - "DE.Views.EditChart.textTight": "Mocno", - "DE.Views.EditChart.textToBackground": "Wyślij do tła", - "DE.Views.EditChart.textToForeground": "Idź na pierwszy plan", - "DE.Views.EditChart.textTopBottom": "Góra i dół", - "DE.Views.EditChart.textType": "Typ", - "DE.Views.EditChart.textWrap": "Zawijaj", - "DE.Views.EditHeader.textDiffFirst": "Inna pierwsza strona", - "DE.Views.EditHeader.textDiffOdd": "Różne nieparzyste i parzyste strony", - "DE.Views.EditHeader.textFrom": "Zacznij w", - "DE.Views.EditHeader.textPageNumbering": "Numerowanie Strony", - "DE.Views.EditHeader.textPrev": "Kontynuuj od poprzedniego", - "DE.Views.EditHeader.textSameAs": "Odnośnik do poprzedniego", - "DE.Views.EditHyperlink.textDisplay": "Pokaż", - "DE.Views.EditHyperlink.textEdit": "Edytuj link", - "DE.Views.EditHyperlink.textLink": "Link", - "DE.Views.EditHyperlink.textRemove": "Usuń link", - "DE.Views.EditHyperlink.textTip": "Wskazówka", - "DE.Views.EditImage.textAddress": "Adres", - "DE.Views.EditImage.textAlign": "Wyrównaj", - "DE.Views.EditImage.textBack": "Powrót", - "DE.Views.EditImage.textBackward": "Przenieś do tyłu", - "DE.Views.EditImage.textBehind": "Za", - "DE.Views.EditImage.textDefault": "Aktualny Rozmiar", - "DE.Views.EditImage.textDistanceText": "Odległość od tekstu", - "DE.Views.EditImage.textForward": "Przenieś do przodu", - "DE.Views.EditImage.textFromLibrary": "Obraz z biblioteki", - "DE.Views.EditImage.textFromURL": "Obraz z URL", - "DE.Views.EditImage.textImageURL": "Adres URL obrazu", - "DE.Views.EditImage.textInFront": "Z przodu", - "DE.Views.EditImage.textInline": "W tekście", - "DE.Views.EditImage.textLinkSettings": "Ustawienia linku", - "DE.Views.EditImage.textMoveText": "Poruszaj się z tekstem", - "DE.Views.EditImage.textOverlap": "Zezwól na nakładanie się", - "DE.Views.EditImage.textRemove": "Usuń obraz", - "DE.Views.EditImage.textReorder": "Zmień kolejność", - "DE.Views.EditImage.textReplace": "Zamień", - "DE.Views.EditImage.textReplaceImg": "Zamień obraz", - "DE.Views.EditImage.textSquare": "Kwadratowy", - "DE.Views.EditImage.textThrough": "Przez", - "DE.Views.EditImage.textTight": "Mocno", - "DE.Views.EditImage.textToBackground": "Wyślij do tła", - "DE.Views.EditImage.textToForeground": "Idź na pierwszy plan", - "DE.Views.EditImage.textTopBottom": "Góra i dół", - "DE.Views.EditImage.textWrap": "Zawijaj", - "DE.Views.EditParagraph.textAddCustomColor": "Dodaj niestandardowy kolor", - "DE.Views.EditParagraph.textAdvanced": "Zaawansowane", - "DE.Views.EditParagraph.textAdvSettings": "Ustawienia zaawansowane", - "DE.Views.EditParagraph.textAfter": "Po", - "DE.Views.EditParagraph.textAuto": "Automatyczny", - "DE.Views.EditParagraph.textBack": "Powrót", - "DE.Views.EditParagraph.textBackground": "Tło", - "DE.Views.EditParagraph.textBefore": "Przed", - "DE.Views.EditParagraph.textCustomColor": "Niestandardowy kolor", - "DE.Views.EditParagraph.textFirstLine": "Pierwszy wiersz", - "DE.Views.EditParagraph.textFromText": "Odległość od tekstu", - "DE.Views.EditParagraph.textKeepLines": "Trzymaj wiersze razem", - "DE.Views.EditParagraph.textKeepNext": "Trzymaj dalej", - "DE.Views.EditParagraph.textOrphan": "Orphan Control", - "DE.Views.EditParagraph.textPageBreak": "Przerwanie strony przed", - "DE.Views.EditParagraph.textPrgStyles": "Style akapitu", - "DE.Views.EditParagraph.textSpaceBetween": "Odstęp między akapitami", - "DE.Views.EditShape.textAddCustomColor": "Dodaj niestandardowy kolor", - "DE.Views.EditShape.textAlign": "Wyrównaj", - "DE.Views.EditShape.textBack": "Powrót", - "DE.Views.EditShape.textBackward": "Przenieś do tyłu", - "DE.Views.EditShape.textBehind": "Za", - "DE.Views.EditShape.textBorder": "Obramowanie", - "DE.Views.EditShape.textColor": "Kolor", - "DE.Views.EditShape.textCustomColor": "Niestandardowy kolor", - "DE.Views.EditShape.textEffects": "Efekty", - "DE.Views.EditShape.textFill": "Wypełnij", - "DE.Views.EditShape.textForward": "Przenieś do przodu", - "DE.Views.EditShape.textFromText": "Odległość od tekstu", - "DE.Views.EditShape.textInFront": "Z przodu", - "DE.Views.EditShape.textInline": "W tekście", - "DE.Views.EditShape.textOpacity": "Nieprzezroczystość", - "DE.Views.EditShape.textOverlap": "Zezwól na nakładanie się", - "DE.Views.EditShape.textRemoveShape": "Usuń kształt", - "DE.Views.EditShape.textReorder": "Zmień kolejność", - "DE.Views.EditShape.textReplace": "Zamień", - "DE.Views.EditShape.textSize": "Rozmiar", - "DE.Views.EditShape.textSquare": "Kwadratowy", - "DE.Views.EditShape.textStyle": "Styl", - "DE.Views.EditShape.textThrough": "Przez", - "DE.Views.EditShape.textTight": "Mocno", - "DE.Views.EditShape.textToBackground": "Wyślij do tła", - "DE.Views.EditShape.textToForeground": "Idź na pierwszy plan", - "DE.Views.EditShape.textTopAndBottom": "Góra i dół", - "DE.Views.EditShape.textWithText": "Poruszaj się z tekstem", - "DE.Views.EditShape.textWrap": "Zawijaj", - "DE.Views.EditTable.textAddCustomColor": "Dodaj niestandardowy kolor", - "DE.Views.EditTable.textAlign": "Wyrównaj", - "DE.Views.EditTable.textBack": "Powrót", - "DE.Views.EditTable.textBandedColumn": "Kolumna w paski", - "DE.Views.EditTable.textBandedRow": "Na przemian wiersze", - "DE.Views.EditTable.textBorder": "Obramowanie", - "DE.Views.EditTable.textCellMargins": "Marginesy komórki", - "DE.Views.EditTable.textColor": "Kolor", - "DE.Views.EditTable.textCustomColor": "Niestandardowy kolor", - "DE.Views.EditTable.textFill": "Wypełnij", - "DE.Views.EditTable.textFirstColumn": "Pierwsza kolumna", - "DE.Views.EditTable.textFlow": "Przepływ", - "DE.Views.EditTable.textFromText": "Odległość od tekstu", - "DE.Views.EditTable.textHeaderRow": "Wiersz nagłówka", - "DE.Views.EditTable.textInline": "W tekście", - "DE.Views.EditTable.textLastColumn": "Ostatnia kolumna", - "DE.Views.EditTable.textOptions": "Opcje", - "DE.Views.EditTable.textRemoveTable": "Usuń tabelę", - "DE.Views.EditTable.textRepeatHeader": "Powtórz jako wiersz nagłówka", - "DE.Views.EditTable.textResizeFit": "Dostosuj rozmiar do zawartości", - "DE.Views.EditTable.textSize": "Rozmiar", - "DE.Views.EditTable.textStyle": "Styl", - "DE.Views.EditTable.textStyleOptions": "Opcje stylu", - "DE.Views.EditTable.textTableOptions": "Opcje tabeli", - "DE.Views.EditTable.textTotalRow": "Cały wiersz", - "DE.Views.EditTable.textWithText": "Poruszaj się z tekstem", - "DE.Views.EditTable.textWrap": "Zawijaj", - "DE.Views.EditText.textAddCustomColor": "Dodaj niestandardowy kolor", - "DE.Views.EditText.textAdditional": "Inne funkcje", - "DE.Views.EditText.textAdditionalFormat": "Dodatkowe formatowanie", - "DE.Views.EditText.textAllCaps": "Wszystkie duże litery", - "DE.Views.EditText.textAutomatic": "Automatyczny", - "DE.Views.EditText.textBack": "Powrót", - "DE.Views.EditText.textBullets": "Lista punktowa", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "S", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Niestandardowy kolor", - "DE.Views.EditText.textDblStrikethrough": "Podwójne przekreślenie", - "DE.Views.EditText.textDblSuperscript": "Indeks górny", - "DE.Views.EditText.textFontColor": "Kolor czcionki", - "DE.Views.EditText.textFontColors": "Kolory czcionki", - "DE.Views.EditText.textFonts": "Czcionki", - "DE.Views.EditText.textHighlightColor": "Kolor podświetlenia", - "DE.Views.EditText.textHighlightColors": "Kolory podświetlenia", - "DE.Views.EditText.textLetterSpacing": "Odstęp między literami", - "DE.Views.EditText.textLineSpacing": "Rozstaw wierszy", - "DE.Views.EditText.textNone": "żaden", - "DE.Views.EditText.textNumbers": "Liczby", - "DE.Views.EditText.textSize": "Rozmiar", - "DE.Views.EditText.textSmallCaps": "Małe litery", - "DE.Views.EditText.textStrikethrough": "Przekreślony", - "DE.Views.EditText.textSubscript": "Indeks", - "DE.Views.Search.textCase": "Rozróżniana wielkość liter", - "DE.Views.Search.textDone": "Gotowe", - "DE.Views.Search.textFind": "Znajdź", - "DE.Views.Search.textFindAndReplace": "Znajdź i zamień", - "DE.Views.Search.textHighlight": "Podświetl wyniki", - "DE.Views.Search.textReplace": "Zamień", - "DE.Views.Search.textSearch": "Szukaj", - "DE.Views.Settings.textAbout": "O programie", - "DE.Views.Settings.textAddress": "Adres", - "DE.Views.Settings.textAdvancedSettings": "Ustawienia aplikacji", - "DE.Views.Settings.textApplication": "Aplikacja", - "DE.Views.Settings.textAuthor": "Autor", - "DE.Views.Settings.textBack": "Powrót", - "DE.Views.Settings.textBottom": "Dół", - "DE.Views.Settings.textCentimeter": "Centymetr", - "DE.Views.Settings.textCollaboration": "Współpraca", - "DE.Views.Settings.textColorSchemes": "Schematy kolorów", - "DE.Views.Settings.textComment": "Komentarz", - "DE.Views.Settings.textCommentingDisplay": "Wyświetl komentarze", - "DE.Views.Settings.textCreated": "Utworzono", - "DE.Views.Settings.textCreateDate": "Data utworzenia", - "DE.Views.Settings.textCustom": "Niestandardowy", - "DE.Views.Settings.textCustomSize": "Rozmiar niestandardowy", - "DE.Views.Settings.textDisableAll": "Wyłącz Wszystkie", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Wyłącz wszystkie makra z powiadomieniem", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Wyłącz wszystkie makra bez powiadomienia", - "DE.Views.Settings.textDisplayComments": "Komentarze", - "DE.Views.Settings.textDocInfo": "Informacje o dokumencie", - "DE.Views.Settings.textDocTitle": "Tytuł dokumentu", - "DE.Views.Settings.textDocumentFormats": "Formaty dokumentu", - "DE.Views.Settings.textDocumentSettings": "Ustawienia dokumentu", - "DE.Views.Settings.textDone": "Gotowe", - "DE.Views.Settings.textDownload": "Pobierz", - "DE.Views.Settings.textDownloadAs": "Pobierz jako...", - "DE.Views.Settings.textEditDoc": "Edytuj dokument", - "DE.Views.Settings.textEmail": "E-mail", - "DE.Views.Settings.textEnableAll": "Włącz Wszystkie", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Włącz wszystkie makra bez powiadomienia", - "DE.Views.Settings.textFind": "Znajdź", - "DE.Views.Settings.textFindAndReplace": "Znajdź i zamień", - "DE.Views.Settings.textFormat": "Formatowanie", - "DE.Views.Settings.textHelp": "Pomoc", - "DE.Views.Settings.textHiddenTableBorders": "Ukryte obramowanie tabeli", - "DE.Views.Settings.textInch": "Cal", - "DE.Views.Settings.textLandscape": "Krajobraz", - "DE.Views.Settings.textLastModified": "Ostatnio modyfikowane", - "DE.Views.Settings.textLastModifiedBy": "Ostatnie modyfikowane przez", - "DE.Views.Settings.textLeft": "Lewy", - "DE.Views.Settings.textLoading": "Ładowanie...", - "DE.Views.Settings.textLocation": "Lokalizacja", - "DE.Views.Settings.textMacrosSettings": "Ustawienia Makr", - "DE.Views.Settings.textMargins": "Marginesy", - "DE.Views.Settings.textOrientation": "Orientacja", - "DE.Views.Settings.textOwner": "Właściciel", - "DE.Views.Settings.textPages": "Strony", - "DE.Views.Settings.textParagraphs": "Akapity", - "DE.Views.Settings.textPoint": "Punkt", - "DE.Views.Settings.textPortrait": "Portret", - "DE.Views.Settings.textPoweredBy": "zasilany przez", - "DE.Views.Settings.textPrint": "Drukuj", - "DE.Views.Settings.textReader": "Tryb czytnika", - "DE.Views.Settings.textReview": "Śledź zmiany", - "DE.Views.Settings.textRight": "Prawy", - "DE.Views.Settings.textSettings": "Ustawienia", - "DE.Views.Settings.textShowNotification": "Pokaż powiadomienie", - "DE.Views.Settings.textSpaces": "Przestrzenie", - "DE.Views.Settings.textSpellcheck": "Sprawdzanie pisowni", - "DE.Views.Settings.textStatistic": "Statystyczny", - "DE.Views.Settings.textSubject": "Temat", - "DE.Views.Settings.textSymbols": "Symbole", - "DE.Views.Settings.textTel": "tel", - "DE.Views.Settings.textTitle": "Tytuł", - "DE.Views.Settings.textTop": "Góra", - "DE.Views.Settings.textUnitOfMeasurement": "Jednostka miary", - "DE.Views.Settings.textUploaded": "Przesłano", - "DE.Views.Settings.textVersion": "Wersja", - "DE.Views.Settings.textWords": "Słowa", - "DE.Views.Settings.unknownText": "Nieznany", - "DE.Views.Toolbar.textBack": "Powrót" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/pt.json b/apps/documenteditor/mobile/locale/pt.json index 55eed5a7f..17ae58ae6 100644 --- a/apps/documenteditor/mobile/locale/pt.json +++ b/apps/documenteditor/mobile/locale/pt.json @@ -1,5 +1,577 @@ { + "About": { + "textAbout": "Sobre", + "textAddress": "Endereço", + "textBack": "Voltar", + "textEmail": "Email", + "textPoweredBy": "Desenvolvido por", + "textTel": "Tel", + "textVersion": "Versão" + }, + "Add": { + "notcriticalErrorTitle": "Aviso", + "textAddLink": "Adicionar Link", + "textAddress": "Endereço", + "textBack": "Voltar", + "textBelowText": "Abaixo do texto", + "textBottomOfPage": "Fim da página", + "textBreak": "Pausa", + "textCancel": "Cancelar", + "textCenterBottom": "Centro Inferior", + "textCenterTop": "Centro Superior", + "textColumnBreak": "Quebra de Coluna", + "textColumns": "Colunas", + "textComment": "Comente", + "textContinuousPage": "Página contínua", + "textCurrentPosition": "Posição Atual", + "textDisplay": "Exibir", + "textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", + "textEvenPage": "Página par", + "textFootnote": "Nota de rodapé", + "textFormat": "Formato", + "textImage": "Imagem", + "textImageURL": "Imagem URL", + "textInsert": "Inserir", + "textInsertFootnote": "Inserir nota de rodapé", + "textInsertImage": "Inserir imagem", + "textLeftBottom": "Parte inferior esquerda", + "textLeftTop": "Parte superior esquerda", + "textLink": "Link", + "textLinkSettings": "Configurações de link", + "textLocation": "Localização", + "textNextPage": "Próxima página", + "textOddPage": "Página ímpar", + "textOther": "Outro", + "textPageBreak": "Quebra de página", + "textPageNumber": "Número da página", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem da URL", + "textPosition": "Posição", + "textRightBottom": "Parte inferior direita", + "textRightTop": "Parte superior direita", + "textRows": "Linhas", + "textScreenTip": "Dica de tela", + "textSectionBreak": "Quebra de seção", + "textShape": "Forma", + "textStartAt": "Começar em", + "textTable": "Tabela", + "textTableSize": "Tamanho da tabela", + "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Aviso", + "textAccept": "Aceitar", + "textAcceptAllChanges": "Aceitar todas as alterações", + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textAllChangesAcceptedPreview": "Todas as alterações aceitas (Visualizar)", + "textAllChangesEditing": "Todas as alterações (Edição)", + "textAllChangesRejectedPreview": "Todas as alterações rejeitadas (Visualizar)", + "textAtLeast": "Pelo menos", + "textAuto": "Automático", + "textBack": "Voltar", + "textBaseline": "Baseline", + "textBold": "Negrito", + "textBreakBefore": "Quebra de página antes", + "textCancel": "Cancelar", + "textCaps": "Todas maiúsculas", + "textCenter": "Alinhar ao centro", + "textChart": "Gráfico", + "textCollaboration": "Colaboração", + "textColor": "Cor da fonte", + "textComments": "Comentários", + "textContextual": "Não adicionar intervalos entre parágrafos do mesmo estilo", + "textDelete": "Excluir", + "textDeleteComment": "Excluir comentários", + "textDeleted": "Eliminado:", + "textDeleteReply": "Excluir resposta", + "textDisplayMode": "Modo de exibição", + "textDone": "Concluído", + "textDStrikeout": "Tachado duplo", + "textEdit": "Editar", + "textEditComment": "Editar comentário", + "textEditReply": "Editar resposta", + "textEditUser": "Usuários que estão editando o arquivo:", + "textEquation": "Equação", + "textExact": "Exatamente", + "textFinal": "Final", + "textFirstLine": "Primeira linha", + "textFormatted": "Formatado", + "textHighlight": "Cor de realce", + "textImage": "Imagem", + "textIndentLeft": "Recuo à esquerda", + "textIndentRight": "Recuo à direita", + "textInserted": "Inserido:", + "textItalic": "Itálico", + "textJustify": "Alinhamento justificado", + "textKeepLines": "Manter as linhas juntas", + "textKeepNext": "Manter com o próximo", + "textLeft": "Alinhar à esquerda", + "textLineSpacing": "Espaçamento de linha:", + "textMarkup": "Marcação", + "textMessageDeleteComment": "Você quer realmente excluir este comentário?", + "textMessageDeleteReply": "Você realmente quer apagar esta resposta?", + "textMultiple": "Múltiplo", + "textNoBreakBefore": "Sem quebra de página antes", + "textNoChanges": "Não há mudanças.", + "textNoComments": "O documento não contém comentários", + "textNoContextual": "Adicionar intervalo entre parágrafos do mesmo estilo", + "textNoKeepLines": "Não mantenha linhas juntas", + "textNoKeepNext": "Não mantenha com o próximo", + "textNot": "Não", + "textNoWidow": "Sem controle de linhas órfãs/viúvas", + "textNum": "Alterar numeração", + "textOriginal": "Original", + "textParaDeleted": "Parágrafo excluído", + "textParaFormatted": "Parágrafo formatado", + "textParaInserted": "Parágrafo Inserido", + "textParaMoveFromDown": "Movidos para baixo:", + "textParaMoveFromUp": "Movidos para cima:", + "textParaMoveTo": "Movido:", + "textPosition": "Posição", + "textReject": "Rejeitar", + "textRejectAllChanges": "Rejeitar todas as alterações", + "textReopen": "Reabrir", + "textResolve": "Resolver", + "textReview": "Revisão", + "textReviewChange": "Rever Alterações", + "textRight": "Alinhar à direita", + "textShape": "Forma", + "textShd": "Cor do plano de fundo", + "textSmallCaps": "Versalete", + "textSpacing": "Espaçamento", + "textSpacingAfter": "Espaçamento depois", + "textSpacingBefore": "Espaçamento antes", + "textStrikeout": "Tachado", + "textSubScript": "Subscrito", + "textSuperScript": "Sobrescrito", + "textTableChanged": "Configurações da tabela alteradas", + "textTableRowsAdd": "Linhas de tabela adicionadas", + "textTableRowsDel": "Linhas de tabela eliminadas", + "textTabs": "Alterar guias", + "textTrackChanges": "Controlar alterações", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido", + "textUnderline": "Sublinhado", + "textUsers": "Usuários", + "textWidow": "Controle de linhas órfãs/viúvas." + }, + "ThemeColorPalette": { + "textCustomColors": "Cores personalizadas", + "textStandartColors": "Cores padrão", + "textThemeColors": "Cores de tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.", + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar Link", + "menuCancel": "Cancelar", + "menuDelete": "Excluir", + "menuDeleteTable": "Excluir tabela", + "menuEdit": "Editar", + "menuMerge": "Mesclar", + "menuMore": "Mais", + "menuOpenLink": "Abrir link", + "menuReview": "Revisão", + "menuReviewChange": "Rever Alterações", + "menuSplit": "Dividir", + "menuViewComment": "Ver Comentário", + "textColumns": "Colunas", + "textCopyCutPasteActions": "Copiar, Cortar e Colar", + "textDoNotShowAgain": "Não volte a aparecer", + "textRows": "Linhas" + }, + "Edit": { + "notcriticalErrorTitle": "Aviso", + "textActualSize": "Tamanho atual", + "textAddCustomColor": "Adicionar Cor Personalizada", + "textAdditional": "Adicional", + "textAdditionalFormatting": "Formatação adicional", + "textAddress": "Endereço", + "textAdvanced": "Avançado", + "textAdvancedSettings": "Configurações avançadas", + "textAfter": "Depois", + "textAlign": "Alinhar", + "textAllCaps": "Todas maiúsculas", + "textAllowOverlap": "Permitir sobreposição", + "textAuto": "Automático", + "textAutomatic": "Automático", + "textBack": "Voltar", + "textBackground": "Plano de fundo", + "textBandedColumn": "Coluna em faixa", + "textBandedRow": "Linha de Faixa", + "textBefore": "Antes", + "textBehind": "Atrás", + "textBorder": "Borda", + "textBringToForeground": "Trazer para primeiro plano", + "textBullets": "Marcadores", + "textBulletsAndNumbers": "Marcadores e Numerações", + "textCellMargins": "Margens da célula", + "textChart": "Gráfico", + "textClose": "Fechar", + "textColor": "Cor", + "textContinueFromPreviousSection": "Continuar da seção anterior", + "textCustomColor": "Cor personalizada", + "textDifferentFirstPage": "Primeira página diferente", + "textDifferentOddAndEvenPages": "Páginas pares e ímpares diferentes", + "textDisplay": "Exibir", + "textDistanceFromText": "Distância do texto", + "textDoubleStrikethrough": "Tachado duplo", + "textEditLink": "Editar Link", + "textEffects": "Efeitos", + "textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", + "textFill": "Preencher", + "textFirstColumn": "Primeira Coluna", + "textFirstLine": "Primeira linha", + "textFlow": "Fluxo", + "textFontColor": "Cor da fonte", + "textFontColors": "Cor da Fonte", + "textFonts": "Fontes", + "textFooter": "Rodapé", + "textHeader": "Cabeçalho", + "textHeaderRow": "Linha de Cabeçalho", + "textHighlightColor": "Cor de realce", + "textHyperlink": "Hiperlink", + "textImage": "Imagem", + "textImageURL": "Imagem URL", + "textInFront": "Em frente", + "textInline": "Em linha", + "textKeepLinesTogether": "Manter as linhas juntas", + "textKeepWithNext": "Manter com o próximo", + "textLastColumn": "Última coluna", + "textLetterSpacing": "Espaçamento de letra", + "textLineSpacing": "Espaçamento de linha", + "textLink": "Link", + "textLinkSettings": "Configurações de link", + "textLinkToPrevious": "Vincular a Anterior", + "textMoveBackward": "Mover para trás", + "textMoveForward": "Mover para frente", + "textMoveWithText": "Mover com texto", + "textNone": "Nenhum", + "textNoStyles": "Não há estilos para este tipo de gráfico.", + "textNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "textNumbers": "Números", + "textOpacity": "Opacidade", + "textOptions": "Opções", + "textOrphanControl": "Controle de órfão", + "textPageBreakBefore": "Quebra de página antes", + "textPageNumbering": "Numeração da página", + "textParagraph": "Parágrafo", + "textParagraphStyles": "Estilos do parágrafo", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem da URL", + "textPt": "Pt", + "textRemoveChart": "Remover gráfico", + "textRemoveImage": "Remover imagem", + "textRemoveLink": "Remover link", + "textRemoveShape": "Remover forma", + "textRemoveTable": "Remover tabela", + "textReorder": "Reordenar", + "textRepeatAsHeaderRow": "Repetir como linha de cabeçalho", + "textReplace": "Substituir", + "textReplaceImage": "Substituir imagem", + "textResizeToFitContent": "Redimensionar para ajustar o conteúdo", + "textScreenTip": "Dica de tela", + "textSelectObjectToEdit": "Selecione o objeto para editar", + "textSendToBackground": "Enviar para plano de fundo", + "textSettings": "Configurações", + "textShape": "Forma", + "textSize": "Tamanho", + "textSmallCaps": "Versalete", + "textSpaceBetweenParagraphs": "Espaço entre parágrafos", + "textSquare": "Quadrado", + "textStartAt": "Começar em", + "textStrikethrough": "Tachado", + "textStyle": "Estilo", + "textStyleOptions": "Opções de estilo", + "textSubscript": "Subscrito", + "textSuperscript": "Sobrescrito", + "textTable": "Tabela", + "textTableOptions": "Opções de tabela", + "textText": "Тexto", + "textThrough": "Através", + "textTight": "Justo", + "textTopAndBottom": "Parte superior e inferior", + "textTotalRow": "Total de linhas", + "textType": "Tipo", + "textWrap": "Encapsulamento" + }, + "Error": { + "convertationTimeoutText": "Tempo limite de conversão excedido.", + "criticalErrorExtText": "Pressione 'OK' para voltar para a lista de documentos.", + "criticalErrorTitle": "Erro", + "downloadErrorText": "Download falhou.", + "errorAccessDeny": "Você está tentando realizar uma ação para a qual não possui direitos.
    Por favor, entre em contato com o seu administrador.", + "errorBadImageUrl": "URL de imagem está incorreta", + "errorConnectToServer": "Não é possível salvar este documento. Verifique suas configurações de conexão ou entre em contato com o administrador.
    Ao clicar em OK, você será solicitado a baixar o documento.", + "errorDatabaseConnection": "Erro externo.
    Erro de conexão do banco de dados. Entre em contato com o suporte.", + "errorDataEncrypted": "Alteração criptografadas foram recebidas, e não podem ser decifradas.", + "errorDataRange": "Intervalo de dados incorreto.", + "errorDefaultMessage": "Código do erro: %1", + "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
    Baixe o documento para salvar a cópia de backup do arquivo localmente.", + "errorFilePassProtect": "O arquivo é protegido por senha e não pôde ser aberto.", + "errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor.
    Por favor, contate seu administrador.", + "errorKeyEncrypt": "Descritor de chave desconhecido", + "errorKeyExpire": "Descritor de chave expirado", + "errorMailMergeLoadFile": "O carregamento falhou", + "errorMailMergeSaveFile": "Mesclagem falhou.", + "errorSessionAbsolute": "A sessão de edição do documento expirou. Por favor recarregue a página.", + "errorSessionIdle": "O documento não é editado há muito tempo. Por favor recarregue a página.", + "errorSessionToken": "A conexão com o servidor foi interrompida. Por favor recarregue a página.", + "errorStockChart": "Ordem incorreta das linhas. Para construir um gráfico de ações, coloque os dados na folha na seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fechamento.", + "errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada.
    Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.", + "errorUserDrop": "O arquivo não pode ser acessado no momento.", + "errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", + "errorViewerDisconnect": "A conexão foi perdida. Você ainda pode ver o documento,
    mas não poderá baixá-lo até que a conexão seja restaurada e a página recarregada.", + "notcriticalErrorTitle": "Aviso", + "openErrorText": "Ocorreu um erro ao abrir o arquivo", + "saveErrorText": "Ocorreu um erro ao salvar o arquivo", + "scriptLoadError": "A conexão está muito lenta, alguns dos componentes não puderam ser carregados. Por favor recarregue a página.", + "splitDividerErrorText": "O número de linhas deve ser um divisor de %1", + "splitMaxColsErrorText": "O número de colunas deve ser inferior a %1", + "splitMaxRowsErrorText": "O número de linhas deve ser inferior a %1", + "unknownErrorText": "Erro desconhecido.", + "uploadImageExtMessage": "Formato de imagem desconhecido.", + "uploadImageFileCountMessage": "Sem imagens carregadas.", + "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Carregando dados...", + "applyChangesTitleText": "Carregando dados", + "downloadMergeText": "Baixando...", + "downloadMergeTitle": "Baixando", + "downloadTextText": "Baixando documento...", + "downloadTitleText": "Baixando 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", + "mailMergeLoadFileText": "Carregando fonte de dados...", + "mailMergeLoadFileTitle": "Carregando fonte de dados", + "openTextText": "Abrindo documento...", + "openTitleText": "Abrindo documento", + "printTextText": "Imprimindo documento...", + "printTitleText": "Imprimindo documento", + "savePreparingText": "Preparando para salvar", + "savePreparingTitle": "Preparando para salvar. Aguarde...", + "saveTextText": "Salvando documento...", + "saveTitleText": "Salvando documento", + "sendMergeText": "Enviando mesclar...", + "sendMergeTitle": "Enviando Mesclar", + "textLoadingDocument": "Carregando documento", + "txtEditingMode": "Definir modo de edição...", + "uploadImageTextText": "Carregando imagem...", + "uploadImageTitleText": "Carregando imagem", + "waitText": "Por favor, aguarde..." + }, + "Main": { + "criticalErrorTitle": "Erro", + "errorAccessDeny": "Você está tentando realizar uma ação para a qual não tem direitos.
    Por favor, entre em contato com seu administrador.", + "errorOpensource": "Usando a versão gratuita da Comunidade, você pode abrir documentos apenas para visualização. Para acessar editores da web móvel, é necessária uma licença comercial.", + "errorProcessSaveResult": "Salvamento falhou.", + "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": "Você tem mudanças não salvas. Clique em 'Ficar nesta página' para esperar pela auto-salvar. Clique em 'Sair desta página' para descartar todas as mudanças não salvas.", + "notcriticalErrorTitle": "Aviso", + "SDK": { + " -Section ": "-Seção", + "above": "Acima", + "below": "Abaixo", + "Caption": "Legenda", + "Choose an item": "Escolha um item", + "Click to load image": "Clique para carregar imagem", + "Current Document": "Documento atual", + "Diagram Title": "Título do Gráfico", + "endnote text": "Texto de fim de nota", + "Enter a date": "Insira uma data", + "Error! Bookmark not defined": "Erro! Bookmark não definido", + "Error! Main Document Only": "Erro! Documento principal apenas.", + "Error! No text of specified style in document": "Erro! Nenhum texto do estilo especificado no documento.", + "Error! Not a valid bookmark self-reference": "Erro! Não é uma auto-referência de marcador válida.", + "Even Page ": "Página par", + "First Page ": "Primeira Página", + "Footer": "Rodapé", + "footnote text": "Texto de nota de rodapé", + "Header": "Cabeçalho", + "Heading 1": "Cabeçalho 1", + "Heading 2": "Cabeçalho 2", + "Heading 3": "Cabeçalho 3", + "Heading 4": "Cabeçalho 4", + "Heading 5": "Cabeçalho 5", + "Heading 6": "Cabeçalho 6", + "Heading 7": "Cabeçalho 7", + "Heading 8": "Cabeçalho 8", + "Heading 9": "Cabeçalho 9", + "Hyperlink": "Hiperlink", + "Index Too Large": "Índice muito grande", + "Intense Quote": "Citação intensa", + "Is Not In Table": "Não está na Tabela", + "List Paragraph": "Listar parágrafo", + "Missing Argument": "Argumento ausente", + "Missing Operator": "Operador ausente", + "No Spacing": "Sem espaçamento", + "No table of contents entries found": "Não há cabeçalhos no documento. Aplique um estilo de cabeçalho ao texto para que ele apareça no índice.", + "No table of figures entries found": "Nenhuma entrada de tabela de figuras encontrada.", + "None": "Nenhum", + "Normal": "Normal", + "Number Too Large To Format": "Número Muito Extenso para Formatar", + "Odd Page ": "Página ímpar", + "Quote": "Citar", + "Same as Previous": "Mesmo da Anterior", + "Series": "Série", + "Subtitle": "Legenda", + "Syntax Error": "Erro de Sintaxe", + "Table Index Cannot be Zero": "O índice da tabela não pode ser zero", + "Table of Contents": "Tabela de Conteudo", + "table of figures": "Tabela de figuras", + "The Formula Not In Table": "A fórmula não está na tabela", + "Title": "Título", + "TOC Heading": "Rúbrica TOC", + "Type equation here": "Tipo de equação aqui", + "Undefined Bookmark": "Indicador indefinido", + "Unexpected End of Formula": "Fim inesperado da fórmula", + "X Axis": "X Eixo XAS", + "Y Axis": "Eixo Y", + "Your text here": "Seu texto aqui", + "Zero Divide": "Divisão por zero" + }, + "textAnonymous": "Anônimo", + "textBuyNow": "Visitar site", + "textClose": "Fechar", + "textContactUs": "Contate as vendas", + "textCustomLoader": "Desculpe, você não tem o direito de trocar o carregador. Entre em contato com nosso departamento de vendas para obter uma cotação.", + "textGuest": "Convidado(a)", + "textHasMacros": "O arquivo contém macros automáticas.
    Você quer executar macros?", + "textNo": "Não", + "textNoLicenseTitle": "Limite de licença atingido", + "textPaidFeature": "Recurso pago", + "textRemember": "Lembrar minha escolha", + "textYes": "Sim", + "titleLicenseExp": "A licença expirou", + "titleServerVersion": "Editor atualizado", + "titleUpdateVersion": "Versão alterada", + "warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate seu administrador para saber mais.", + "warnLicenseExp": "Sua licença expirou. Por favor, atualize sua licença e atualize a página.", + "warnLicenseLimitedNoAccess": "A licença expirou. Você não tem acesso à funcionalidade de edição de documentos. Por favor, entre em contato com seu administrador.", + "warnLicenseLimitedRenewed": "A licença precisa ser renovada. Você tem acesso limitado à funcionalidade de edição de documentos.
    Entre em contato com o administrador para obter acesso total", + "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", + "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", + "warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", + "warnProcessRightsChange": "Você não tem permissão para editar este arquivo." + }, "Settings": { - "textAbout": "Sobre" + "advDRMOptions": "Arquivo protegido", + "advDRMPassword": "Senha", + "advTxtOptions": "Escolha Opções de TXT", + "closeButtonText": "Fechar Arquivo", + "notcriticalErrorTitle": "Aviso", + "textAbout": "Sobre", + "textApplication": "Aplicativo", + "textApplicationSettings": "Configurações de Aplicativo", + "textAuthor": "Autor", + "textBack": "Voltar", + "textBottom": "Inferior", + "textCancel": "Cancelar", + "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCentimeter": "Centímetro", + "textCollaboration": "Colaboração", + "textColorSchemes": "Esquemas de cor", + "textComment": "Comente", + "textComments": "Comentários", + "textCommentsDisplay": "Tela de comentários", + "textCreated": "Criado", + "textCustomSize": "Tamanho personalizado", + "textDisableAll": "Desabilitar tudo", + "textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação", + "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação", + "textDocumentInfo": "Informações do Documento", + "textDocumentSettings": "Definições do Documento", + "textDocumentTitle": "Título do Documento", + "textDone": "Concluído", + "textDownload": "Baixar", + "textDownloadAs": "Baixar como", + "textDownloadRtf": "Se você continuar a economizar neste formato, algumas das formatações podem ser perdidas. Você tem certeza de que quer continuar?", + "textDownloadTxt": "Se você continuar salvando neste formato todas as características, exceto o texto, serão perdidas. Você tem certeza de que quer continuar?", + "textEnableAll": "Habilitar todos", + "textEnableAllMacrosWithoutNotification": "Habilitar todas as macros sem notificação", + "textEncoding": "Codificação", + "textFind": "Localizar", + "textFindAndReplace": "Localizar e substituir", + "textFindAndReplaceAll": "Encontrar e Substituir Tudo", + "textFormat": "Formato", + "textHelp": "Ajuda", + "textHiddenTableBorders": "Ocultar bordas da tabela", + "textHighlightResults": "Destacar resultados", + "textInch": "Polegada", + "textLandscape": "Paisagem", + "textLastModified": "Última modificação", + "textLastModifiedBy": "Última Modificação Por", + "textLeft": "Esquerda", + "textLoading": "Carregando...", + "textLocation": "Localização", + "textMacrosSettings": "Configurações de macros", + "textMargins": "Margens", + "textMarginsH": "Margens superior e inferior são muito altas para uma determinada altura da página", + "textMarginsW": "Margens são muito grandes para uma determinada largura da página", + "textNoCharacters": "Caracteres não imprimíveis", + "textNoTextFound": "Texto não encontrado", + "textOpenFile": "Inserir a Senha para Abrir o Arquivo", + "textOrientation": "Orientação", + "textOwner": "Proprietário", + "textPoint": "Ponto", + "textPortrait": "Retrato ", + "textPrint": "Imprimir", + "textReaderMode": "Modo de leitura", + "textReplace": "Substituir", + "textReplaceAll": "Substituir tudo", + "textResolvedComments": "Comentários Solucionados", + "textRight": "Direita", + "textSearch": "Pesquisar", + "textSettings": "Configurações", + "textShowNotification": "Mostrar notificação", + "textSpellcheck": "Verificação ortográfica", + "textStatistic": "Estatística", + "textSubject": "Assunto", + "textTitle": "Título", + "textTop": "Parte superior", + "textUnitOfMeasurement": "Unidade de medida", + "textUploaded": "Carregado", + "txtIncorrectPwd": "A senha está incorreta", + "txtProtected": "Depois de inserir a senha e abrir o arquivo, a senha atual será redefinida", + "txtScheme1": "Office", + "txtScheme10": "Mediana", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Balcão envidraçado", + "txtScheme15": "Origem", + "txtScheme16": "Papel", + "txtScheme17": "Solstício", + "txtScheme18": "Técnica", + "txtScheme19": "Viagem", + "txtScheme2": "Escala de cinza", + "txtScheme20": "Urbano", + "txtScheme21": "Verve", + "txtScheme22": "Novo Office", + "txtScheme3": "Ápice", + "txtScheme4": "Aspecto", + "txtScheme5": "Cívico", + "txtScheme6": "Concurso", + "txtScheme7": "Patrimônio Líquido", + "txtScheme8": "Fluxo", + "txtScheme9": "Fundição" + }, + "Toolbar": { + "dlgLeaveMsgText": "Você tem mudanças não salvas. Clique em 'Ficar nesta página' para esperar pela auto-salvar. Clique em 'Sair desta página' para descartar todas as mudanças não salvas.", + "dlgLeaveTitleText": "Você saiu do aplicativo", + "leaveButtonText": "Sair desta página", + "stayButtonText": "Ficar nesta página" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ro.json b/apps/documenteditor/mobile/locale/ro.json index ba6304e35..66fa41d2b 100644 --- a/apps/documenteditor/mobile/locale/ro.json +++ b/apps/documenteditor/mobile/locale/ro.json @@ -1,607 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Adăugare răspuns", - "Common.Controllers.Collaboration.textAtLeast": "cel puțin", - "Common.Controllers.Collaboration.textAuto": "auto", - "Common.Controllers.Collaboration.textBaseline": "Referință", - "Common.Controllers.Collaboration.textBold": "Aldin", - "Common.Controllers.Collaboration.textBreakBefore": "Sfârsit pagină inainte", - "Common.Controllers.Collaboration.textCancel": "Revocare", - "Common.Controllers.Collaboration.textCaps": "Cu majuscule", - "Common.Controllers.Collaboration.textCenter": "Aliniere la centru", - "Common.Controllers.Collaboration.textChart": "Diagramă", - "Common.Controllers.Collaboration.textColor": "Culoare font", - "Common.Controllers.Collaboration.textContextual": "Nu se adaugă spațiu între paragrafele cu același stil", - "Common.Controllers.Collaboration.textDelete": "Ștergere", - "Common.Controllers.Collaboration.textDeleteComment": "Ștergere comentariu", - "Common.Controllers.Collaboration.textDeleted": "Eliminat:", - "Common.Controllers.Collaboration.textDeleteReply": "Ștergere răspuns", - "Common.Controllers.Collaboration.textDone": "Gata", - "Common.Controllers.Collaboration.textDStrikeout": "Tăiere cu două linii", - "Common.Controllers.Collaboration.textEdit": "Editare", - "Common.Controllers.Collaboration.textEditUser": "Fișierul este editat de către:", - "Common.Controllers.Collaboration.textEquation": "Ecuație", - "Common.Controllers.Collaboration.textExact": "exact", - "Common.Controllers.Collaboration.textFirstLine": "Primul rând", - "Common.Controllers.Collaboration.textFormatted": "Formatat", - "Common.Controllers.Collaboration.textHighlight": "Culoare de evidențiere", - "Common.Controllers.Collaboration.textImage": "Imagine", - "Common.Controllers.Collaboration.textIndentLeft": "Indentare stânga", - "Common.Controllers.Collaboration.textIndentRight": "Indentare dreapta", - "Common.Controllers.Collaboration.textInserted": "Inserat:", - "Common.Controllers.Collaboration.textItalic": "Cursiv", - "Common.Controllers.Collaboration.textJustify": "Alinierea stânga-dreapta", - "Common.Controllers.Collaboration.textKeepLines": "Păstrare linii împreună", - "Common.Controllers.Collaboration.textKeepNext": "Păstrare cu următorul", - "Common.Controllers.Collaboration.textLeft": "Aliniere la stânga", - "Common.Controllers.Collaboration.textLineSpacing": "Interlinie:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", - "Common.Controllers.Collaboration.textMultiple": "multiplu", - "Common.Controllers.Collaboration.textNoBreakBefore": "Niciun sfârșit de pagină înainte", - "Common.Controllers.Collaboration.textNoChanges": "Modificările nu s-au produs.", - "Common.Controllers.Collaboration.textNoContextual": "Se adaugă spațiu între paragrafele cu același stil ", - "Common.Controllers.Collaboration.textNoKeepLines": "Nu se păstrează liniile împreună", - "Common.Controllers.Collaboration.textNoKeepNext": "Nu se păstrează cu următorul", - "Common.Controllers.Collaboration.textNot": "Nu", - "Common.Controllers.Collaboration.textNoWidow": "Fără control văduvă", - "Common.Controllers.Collaboration.textNum": "Modificarea numerotării", - "Common.Controllers.Collaboration.textParaDeleted": "Paragraful a fost eliminat", - "Common.Controllers.Collaboration.textParaFormatted": "Paragraful a fost formatat ", - "Common.Controllers.Collaboration.textParaInserted": "Paragraful a fost inserat", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Deplasat în jos:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Deplasat în sus:", - "Common.Controllers.Collaboration.textParaMoveTo": "S-a deplasat:", - "Common.Controllers.Collaboration.textPosition": "Poziție", - "Common.Controllers.Collaboration.textReopen": "Redeschidere", - "Common.Controllers.Collaboration.textResolve": "Rezolvare", - "Common.Controllers.Collaboration.textRight": "Aliniere la dreapta", - "Common.Controllers.Collaboration.textShape": "Forma", - "Common.Controllers.Collaboration.textShd": "Culoare de fundal", - "Common.Controllers.Collaboration.textSmallCaps": "Majuscule reduse", - "Common.Controllers.Collaboration.textSpacing": "Spațiere", - "Common.Controllers.Collaboration.textSpacingAfter": "Spațiere după", - "Common.Controllers.Collaboration.textSpacingBefore": "Spațiere înainte", - "Common.Controllers.Collaboration.textStrikeout": "Tăiere cu o linie", - "Common.Controllers.Collaboration.textSubScript": "Indice", - "Common.Controllers.Collaboration.textSuperScript": "Exponent", - "Common.Controllers.Collaboration.textTableChanged": "Setări tabel s-au mofificat", - "Common.Controllers.Collaboration.textTableRowsAdd": "Rânduri de tabel au fost adăugate", - "Common.Controllers.Collaboration.textTableRowsDel": "Rânduri de tabel au fost șterse", - "Common.Controllers.Collaboration.textTabs": "Modificare file", - "Common.Controllers.Collaboration.textUnderline": "Subliniat", - "Common.Controllers.Collaboration.textWidow": "Control văduvă", - "Common.Controllers.Collaboration.textYes": "Da", - "Common.UI.ThemeColorPalette.textCustomColors": "Culori particularizate", - "Common.UI.ThemeColorPalette.textStandartColors": "Culori standard", - "Common.UI.ThemeColorPalette.textThemeColors": "Culori temă", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Acceptare", - "Common.Views.Collaboration.textAcceptAllChanges": "Acceptați toate modificările", - "Common.Views.Collaboration.textAddReply": "Adăugare răspuns", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Toate modificările sunt acceptate (Previzualizare)", - "Common.Views.Collaboration.textAllChangesEditing": "Toate modificările (Editare)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Toate modificările sunt respinse (Previzualizare)", - "Common.Views.Collaboration.textBack": "Înapoi", - "Common.Views.Collaboration.textCancel": "Revocare", - "Common.Views.Collaboration.textChange": "Revizuire modificări", - "Common.Views.Collaboration.textCollaboration": "Colaborare", - "Common.Views.Collaboration.textDisplayMode": "Modul de afișare", - "Common.Views.Collaboration.textDone": "Gata", - "Common.Views.Collaboration.textEditReply": "Editare răspuns", - "Common.Views.Collaboration.textEditUsers": "Utilizatori", - "Common.Views.Collaboration.textEditСomment": "Editare comentariu", - "Common.Views.Collaboration.textFinal": "Final", - "Common.Views.Collaboration.textMarkup": "Marcaj", - "Common.Views.Collaboration.textNoComments": "Documentul nu cuprinde comentarii", - "Common.Views.Collaboration.textOriginal": "Inițial", - "Common.Views.Collaboration.textReject": "Respingere", - "Common.Views.Collaboration.textRejectAllChanges": "Se resping toate modificările", - "Common.Views.Collaboration.textReview": "Urmărirea modificărilor", - "Common.Views.Collaboration.textReviewing": "Revizuire", - "Common.Views.Collaboration.textСomments": "Comentarii", - "DE.Controllers.AddContainer.textImage": "Imagine", - "DE.Controllers.AddContainer.textOther": "Altele", - "DE.Controllers.AddContainer.textShape": "Forma", - "DE.Controllers.AddContainer.textTable": "Tabel", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.AddImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "DE.Controllers.AddImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.AddOther.textBelowText": "Dedesubt textul", - "DE.Controllers.AddOther.textBottomOfPage": "Josul paginii", - "DE.Controllers.AddOther.textCancel": "Revocare", - "DE.Controllers.AddOther.textContinue": "Continuare", - "DE.Controllers.AddOther.textDelete": "Ștergere", - "DE.Controllers.AddOther.textDeleteDraft": "Sunteți sigur că doriți să stergeți schiță?", - "DE.Controllers.AddOther.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "DE.Controllers.AddTable.textCancel": "Revocare", - "DE.Controllers.AddTable.textColumns": "Coloane", - "DE.Controllers.AddTable.textRows": "Rânduri", - "DE.Controllers.AddTable.textTableSize": "Dimensiune tabel", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", - "DE.Controllers.DocumentHolder.menuAddComment": "Adaugă comentariu", - "DE.Controllers.DocumentHolder.menuAddLink": "Adăugare link", - "DE.Controllers.DocumentHolder.menuCopy": "Copiere", - "DE.Controllers.DocumentHolder.menuCut": "Decupare", - "DE.Controllers.DocumentHolder.menuDelete": "Ștergere", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Ștergere tabel", - "DE.Controllers.DocumentHolder.menuEdit": "Editare", - "DE.Controllers.DocumentHolder.menuMerge": "Îmbinare celule", - "DE.Controllers.DocumentHolder.menuMore": "Mai multe", - "DE.Controllers.DocumentHolder.menuOpenLink": "Deschidere link", - "DE.Controllers.DocumentHolder.menuPaste": "Lipire", - "DE.Controllers.DocumentHolder.menuReview": "Revizuire", - "DE.Controllers.DocumentHolder.menuReviewChange": "Revizuire modificări", - "DE.Controllers.DocumentHolder.menuSplit": "Scindarea celulei", - "DE.Controllers.DocumentHolder.menuViewComment": "Vizualizarea comentariilor", - "DE.Controllers.DocumentHolder.sheetCancel": "Revocare", - "DE.Controllers.DocumentHolder.textCancel": "Revocare", - "DE.Controllers.DocumentHolder.textColumns": "Coloane", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Nu se mai afișează ", - "DE.Controllers.DocumentHolder.textGuest": "Invitat", - "DE.Controllers.DocumentHolder.textRows": "Rânduri", - "DE.Controllers.EditContainer.textChart": "Diagramă", - "DE.Controllers.EditContainer.textFooter": "Subsol", - "DE.Controllers.EditContainer.textHeader": "Antet", - "DE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "DE.Controllers.EditContainer.textImage": "Imagine", - "DE.Controllers.EditContainer.textParagraph": "Paragraf", - "DE.Controllers.EditContainer.textSettings": "Setări", - "DE.Controllers.EditContainer.textShape": "Forma", - "DE.Controllers.EditContainer.textTable": "Tabel", - "DE.Controllers.EditContainer.textText": "Text", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.EditImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "DE.Controllers.EditImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "DE.Controllers.EditText.textAuto": "Auto", - "DE.Controllers.EditText.textFonts": "Fonturi", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Introduceți parola:", - "DE.Controllers.Main.advDRMOptions": "Fișierul protejat", - "DE.Controllers.Main.advDRMPassword": "Parola", - "DE.Controllers.Main.advTxtOptions": "Selectează opțiunea TXT", - "DE.Controllers.Main.applyChangesTextText": "Încărcarea datelor...", - "DE.Controllers.Main.applyChangesTitleText": "Încărcarea datelor", - "DE.Controllers.Main.closeButtonText": "Închide fișierul", - "DE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", - "DE.Controllers.Main.criticalErrorExtText": "Faceți click pe butonul'OK' pentru a vă întoarce la lista documente. ", - "DE.Controllers.Main.criticalErrorTitle": "Eroare", - "DE.Controllers.Main.downloadErrorText": "Descărcare eșuată.", - "DE.Controllers.Main.downloadMergeText": "Progres descărcare...", - "DE.Controllers.Main.downloadMergeTitle": "Progres descărcare", - "DE.Controllers.Main.downloadTextText": "Descărcarea documentului...", - "DE.Controllers.Main.downloadTitleText": "Descărcarea fișierului", - "DE.Controllers.Main.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dumneavoastră de Server Documente.", - "DE.Controllers.Main.errorBadImageUrl": "URL-ul imaginii incorectă", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Conexiunea la server a fost pierdută. Imposibil de editat mai departe.", - "DE.Controllers.Main.errorConnectToServer": "Salvarea documentului nu poate fi finalizată. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", - "DE.Controllers.Main.errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", - "DE.Controllers.Main.errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", - "DE.Controllers.Main.errorDataRange": "Zonă de date incorectă.", - "DE.Controllers.Main.errorDefaultMessage": "Codul de eroare: %1", - "DE.Controllers.Main.errorEditingDownloadas": "S-a produs o eroare în timpul procesării documentului.
    Folosiți funcția de Descărcare pentru a salva copia de rezervă a fișierului pe PC.", - "DE.Controllers.Main.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", - "DE.Controllers.Main.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", - "DE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", - "DE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", - "DE.Controllers.Main.errorMailMergeLoadFile": "Încărcarea fișierului eșuată. Selectați un alt fișier.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Îmbinarea eșuată.", - "DE.Controllers.Main.errorOpensource": "Versiunea gratuită a ediției Community include numai vizualizarea fișierilor. Licența comercială permite utilizarea editoarelor pentru dispozitivele mobile.", - "DE.Controllers.Main.errorProcessSaveResult": "Salvarea a eșuat.", - "DE.Controllers.Main.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", - "DE.Controllers.Main.errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", - "DE.Controllers.Main.errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", - "DE.Controllers.Main.errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", - "DE.Controllers.Main.errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", - "DE.Controllers.Main.errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", - "DE.Controllers.Main.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", - "DE.Controllers.Main.errorUsersExceed": "Limita de utilizatori a fost atinsă", - "DE.Controllers.Main.errorViewerDisconnect": "Conexiunea a fost pierdută. Puteți vizualiza fișierul,
    dar nu și să-l descărcați până când conexiunea se restabilește și această pagină se reîmprospătează.", - "DE.Controllers.Main.leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați salvarea automată. Faceți clic pe Părăsește această pagina ca să renunțați la toate modificările nesalvate.", - "DE.Controllers.Main.loadFontsTextText": "Încărcarea datelor...", - "DE.Controllers.Main.loadFontsTitleText": "Încărcarea datelor", - "DE.Controllers.Main.loadFontTextText": "Încărcarea datelor...", - "DE.Controllers.Main.loadFontTitleText": "Încărcarea datelor", - "DE.Controllers.Main.loadImagesTextText": "Încărcarea imaginilor...", - "DE.Controllers.Main.loadImagesTitleText": "Încărcare imagini", - "DE.Controllers.Main.loadImageTextText": "Încărcarea imaginii...", - "DE.Controllers.Main.loadImageTitleText": "Încărcare imagine", - "DE.Controllers.Main.loadingDocumentTextText": "Încărcarea documentului...", - "DE.Controllers.Main.loadingDocumentTitleText": "Încărcare document", - "DE.Controllers.Main.mailMergeLoadFileText": "Încărcarea sursei de date...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Încărcare sursa de date", - "DE.Controllers.Main.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.Main.openErrorText": "Eroare la deschiderea fișierului.", - "DE.Controllers.Main.openTextText": "Deschiderea fișierului...", - "DE.Controllers.Main.openTitleText": "Deschiderea fișierului ", - "DE.Controllers.Main.printTextText": "Imprimarea documentului...", - "DE.Controllers.Main.printTitleText": "Imprimarea documentului", - "DE.Controllers.Main.saveErrorText": "S-a produs o eroare în timpul încercării de salvare a fișierului.", - "DE.Controllers.Main.savePreparingText": "Pregătire pentru salvare", - "DE.Controllers.Main.savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", - "DE.Controllers.Main.saveTextText": "Salvarea documentului...", - "DE.Controllers.Main.saveTitleText": "Salvare document", - "DE.Controllers.Main.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", - "DE.Controllers.Main.sendMergeText": "Trimitere îmbinare a corespondenței...", - "DE.Controllers.Main.sendMergeTitle": "Trimitere îmbinare a corespondenței ", - "DE.Controllers.Main.splitDividerErrorText": "Numărul de rânduri trebuie împărțit la %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Numărul maxim de coloane este de %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Numărul maxim de rânduri este %1", - "DE.Controllers.Main.textAnonymous": "Anonim", - "DE.Controllers.Main.textBack": "Înapoi", - "DE.Controllers.Main.textBuyNow": "Vizitarea site-ul Web", - "DE.Controllers.Main.textCancel": "Revocare", - "DE.Controllers.Main.textClose": "Închidere", - "DE.Controllers.Main.textContactUs": "Contactați Departamentul de Vânzări", - "DE.Controllers.Main.textCustomLoader": "Vă rugăm să rețineți că conform termenilor de licență nu aveți dreptul să modificați programul de încărcare.
    Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", - "DE.Controllers.Main.textDone": "Gata", - "DE.Controllers.Main.textGuest": "Invitat", - "DE.Controllers.Main.textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", - "DE.Controllers.Main.textLoadingDocument": "Încărcare document", - "DE.Controllers.Main.textNo": "Nu", - "DE.Controllers.Main.textNoLicenseTitle": "Ați atins limita stabilită de licență", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Funcția contra plată", - "DE.Controllers.Main.textPassword": "Parola", - "DE.Controllers.Main.textPreloader": "Se incarca...", - "DE.Controllers.Main.textRemember": "Salvează setările pentru toate fișiere", - "DE.Controllers.Main.textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", - "DE.Controllers.Main.textUsername": "Nume de utilizator", - "DE.Controllers.Main.textYes": "Da", - "DE.Controllers.Main.titleLicenseExp": "Licența a expirat", - "DE.Controllers.Main.titleServerVersion": "Editorul a fost actualizat", - "DE.Controllers.Main.titleUpdateVersion": "Versiunea s-a modificat", - "DE.Controllers.Main.txtAbove": "deasupra", - "DE.Controllers.Main.txtArt": "Textul dvs. aici", - "DE.Controllers.Main.txtBelow": "dedesubt", - "DE.Controllers.Main.txtCurrentDocument": "Documentul curent", - "DE.Controllers.Main.txtDiagramTitle": "Titlu diagramă", - "DE.Controllers.Main.txtEditingMode": "Setare modul de editare...", - "DE.Controllers.Main.txtEvenPage": "Pagină pară", - "DE.Controllers.Main.txtFirstPage": "Prima pagina", - "DE.Controllers.Main.txtFooter": "Subsol", - "DE.Controllers.Main.txtHeader": "Antet", - "DE.Controllers.Main.txtOddPage": "Pagină impară", - "DE.Controllers.Main.txtOnPage": "la pagină", - "DE.Controllers.Main.txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", - "DE.Controllers.Main.txtSameAsPrev": "La fel ca cel anteror", - "DE.Controllers.Main.txtSection": "-Secțiune", - "DE.Controllers.Main.txtSeries": "Serie", - "DE.Controllers.Main.txtStyle_footnote_text": "Textul notei de subsol", - "DE.Controllers.Main.txtStyle_Heading_1": "Titlu 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Titlu 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Titlu 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Titlu 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Titlu 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Titlu 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Titlu 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Titlu 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Titlu 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Citat intens", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Listă paragraf", - "DE.Controllers.Main.txtStyle_No_Spacing": "Fără spațiere", - "DE.Controllers.Main.txtStyle_Normal": "Normal", - "DE.Controllers.Main.txtStyle_Quote": "Citat", - "DE.Controllers.Main.txtStyle_Subtitle": "Subtitrare", - "DE.Controllers.Main.txtStyle_Title": "Titlu", - "DE.Controllers.Main.txtXAxis": "Axa X", - "DE.Controllers.Main.txtYAxis": "Axa Y", - "DE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", - "DE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "DE.Controllers.Main.uploadImageSizeMessage": "Dimensiunea imaginii depășește limita permisă.", - "DE.Controllers.Main.uploadImageTextText": "Încărcarea imaginii...", - "DE.Controllers.Main.uploadImageTitleText": "Încărcarea imaginii", - "DE.Controllers.Main.waitText": "Vă rugăm să așteptați...", - "DE.Controllers.Main.warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
    Pentru detalii, contactați administratorul dvs.", - "DE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.
    Licența urmează să fie reînnoită iar pagina reîmprospătată.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.
    Nu aveți acces la funcții de editare a documentului.
    Contactați administratorul dvs. de rețeea.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
    Funcțiile de editare sunt cu acces limitat.
    Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", - "DE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
    Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.", - "DE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", - "DE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", - "DE.Controllers.Search.textNoTextFound": "Textul nu a fost găsit", - "DE.Controllers.Search.textReplaceAll": "Înlocuire peste tot", - "DE.Controllers.Settings.notcriticalErrorTitle": "Avertisment", - "DE.Controllers.Settings.textCustomSize": "Dimensiune particularizată", - "DE.Controllers.Settings.txtLoading": "Se incarca...", - "DE.Controllers.Settings.unknownText": "Necunoscut", - "DE.Controllers.Settings.warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
    Sunteți sigur că doriți să continuați?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Dacă salvați în acest format de fișier, este posibil ca unele dintre formatări să se piardă.
    Sigur doriți să continuați?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați salvarea automată. Faceți clic pe Părăsește această pagina ca să renunțați la toate modificările nesalvate.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", - "DE.Controllers.Toolbar.leaveButtonText": "Părăsește această pagina", - "DE.Controllers.Toolbar.stayButtonText": "Rămâi în pagină", - "DE.Views.AddImage.textAddress": "Adresă", - "DE.Views.AddImage.textBack": "Înapoi", - "DE.Views.AddImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "DE.Views.AddImage.textFromURL": "Imaginea prin URL", - "DE.Views.AddImage.textImageURL": "URL-ul imaginii", - "DE.Views.AddImage.textInsertImage": "Inserare imagine", - "DE.Views.AddImage.textLinkSettings": "Configurarea link", - "DE.Views.AddOther.textAddComment": "Adaugă comentariu", - "DE.Views.AddOther.textAddLink": "Adăugare link", - "DE.Views.AddOther.textBack": "Înapoi", - "DE.Views.AddOther.textBreak": "Sfârșit", - "DE.Views.AddOther.textCenterBottom": "La centru jos", - "DE.Views.AddOther.textCenterTop": "La centru sus", - "DE.Views.AddOther.textColumnBreak": "Întreruperea de coloană", - "DE.Views.AddOther.textComment": "Comentariu", - "DE.Views.AddOther.textContPage": "Continuu", - "DE.Views.AddOther.textCurrentPos": "Poziția curentă", - "DE.Views.AddOther.textDisplay": "Afișare", - "DE.Views.AddOther.textDone": "Gata", - "DE.Views.AddOther.textEvenPage": "Pagină pară", - "DE.Views.AddOther.textFootnote": "Notă de subsol", - "DE.Views.AddOther.textFormat": "Format", - "DE.Views.AddOther.textInsert": "Inserare", - "DE.Views.AddOther.textInsertFootnote": "Inserarea notei de subsol", - "DE.Views.AddOther.textLeftBottom": "Stânga jos", - "DE.Views.AddOther.textLeftTop": "Stânga sus", - "DE.Views.AddOther.textLink": "Link", - "DE.Views.AddOther.textLocation": "Locația", - "DE.Views.AddOther.textNextPage": "Pagina următoare", - "DE.Views.AddOther.textOddPage": "Pagină impară", - "DE.Views.AddOther.textPageBreak": "Sfârșit pagină", - "DE.Views.AddOther.textPageNumber": "Număr de pagină", - "DE.Views.AddOther.textPosition": "Poziție", - "DE.Views.AddOther.textRightBottom": "Dreapta jos", - "DE.Views.AddOther.textRightTop": "Dreapta sus", - "DE.Views.AddOther.textSectionBreak": "Sfârșit de secțiune", - "DE.Views.AddOther.textStartFrom": "Pornire de la", - "DE.Views.AddOther.textTip": "Sfaturi ecran", - "DE.Views.EditChart.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditChart.textAlign": "Aliniere", - "DE.Views.EditChart.textBack": "Înapoi", - "DE.Views.EditChart.textBackward": "Mutare în ultimul plan", - "DE.Views.EditChart.textBehind": "În urmă", - "DE.Views.EditChart.textBorder": "Bordura", - "DE.Views.EditChart.textColor": "Culoare", - "DE.Views.EditChart.textCustomColor": "Culoare particularizată", - "DE.Views.EditChart.textDistanceText": "Distanță de la text", - "DE.Views.EditChart.textFill": "Umplere", - "DE.Views.EditChart.textForward": "Deplasare înainte", - "DE.Views.EditChart.textInFront": "În prim-plan", - "DE.Views.EditChart.textInline": "În linie", - "DE.Views.EditChart.textMoveText": "Deplasare odată cu textul", - "DE.Views.EditChart.textOverlap": "Se permite suprapunerea", - "DE.Views.EditChart.textRemoveChart": "Ștergere diagrama", - "DE.Views.EditChart.textReorder": "Reordonare", - "DE.Views.EditChart.textSize": "Dimensiune", - "DE.Views.EditChart.textSquare": "Pătrat", - "DE.Views.EditChart.textStyle": "Stil", - "DE.Views.EditChart.textThrough": "Printre", - "DE.Views.EditChart.textTight": "Strâns", - "DE.Views.EditChart.textToBackground": "Trimitere în plan secundar", - "DE.Views.EditChart.textToForeground": "Aducere în prim plan", - "DE.Views.EditChart.textTopBottom": "Sus și jos", - "DE.Views.EditChart.textType": "Tip", - "DE.Views.EditChart.textWrap": "Încadrare", - "DE.Views.EditHeader.textDiffFirst": "Prima pagina diferită", - "DE.Views.EditHeader.textDiffOdd": "Pagini pare și impare diferite", - "DE.Views.EditHeader.textFrom": "Pornire de la", - "DE.Views.EditHeader.textPageNumbering": "Numerotare pagini", - "DE.Views.EditHeader.textPrev": "Continuare din secțiunea anterioară", - "DE.Views.EditHeader.textSameAs": "Legătură la anteriorul", - "DE.Views.EditHyperlink.textDisplay": "Afișare", - "DE.Views.EditHyperlink.textEdit": "Editare link", - "DE.Views.EditHyperlink.textLink": "Link", - "DE.Views.EditHyperlink.textRemove": "Ștergere link", - "DE.Views.EditHyperlink.textTip": "Sfaturi ecran", - "DE.Views.EditImage.textAddress": "Adresă", - "DE.Views.EditImage.textAlign": "Aliniere", - "DE.Views.EditImage.textBack": "Înapoi", - "DE.Views.EditImage.textBackward": "Mutare în ultimul plan", - "DE.Views.EditImage.textBehind": "În urmă", - "DE.Views.EditImage.textDefault": "Dimensiunea reală", - "DE.Views.EditImage.textDistanceText": "Distanță de la text", - "DE.Views.EditImage.textForward": "Deplasare înainte", - "DE.Views.EditImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "DE.Views.EditImage.textFromURL": "Imaginea prin URL", - "DE.Views.EditImage.textImageURL": "URL-ul imaginii", - "DE.Views.EditImage.textInFront": "În prim-plan", - "DE.Views.EditImage.textInline": "În linie", - "DE.Views.EditImage.textLinkSettings": "Configurarea link", - "DE.Views.EditImage.textMoveText": "Deplasare odată cu textul", - "DE.Views.EditImage.textOverlap": "Se permite suprapunerea", - "DE.Views.EditImage.textRemove": "Ștergere imagine", - "DE.Views.EditImage.textReorder": "Reordonare", - "DE.Views.EditImage.textReplace": "Înlocuire", - "DE.Views.EditImage.textReplaceImg": "Înlocuire imagine", - "DE.Views.EditImage.textSquare": "Pătrat", - "DE.Views.EditImage.textThrough": "Printre", - "DE.Views.EditImage.textTight": "Strâns", - "DE.Views.EditImage.textToBackground": "Trimitere în plan secundar", - "DE.Views.EditImage.textToForeground": "Aducere în prim plan", - "DE.Views.EditImage.textTopBottom": "Sus și jos", - "DE.Views.EditImage.textWrap": "Încadrare", - "DE.Views.EditParagraph.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditParagraph.textAdvanced": "Avansat", - "DE.Views.EditParagraph.textAdvSettings": "Setări avansate", - "DE.Views.EditParagraph.textAfter": "După", - "DE.Views.EditParagraph.textAuto": "Auto", - "DE.Views.EditParagraph.textBack": "Înapoi", - "DE.Views.EditParagraph.textBackground": "Fundal", - "DE.Views.EditParagraph.textBefore": "Înainte", - "DE.Views.EditParagraph.textCustomColor": "Culoare particularizată", - "DE.Views.EditParagraph.textFirstLine": "Primul rând", - "DE.Views.EditParagraph.textFromText": "Distanță de la text", - "DE.Views.EditParagraph.textKeepLines": "Păstrare linii împreună", - "DE.Views.EditParagraph.textKeepNext": "Păstrare cu următorul", - "DE.Views.EditParagraph.textOrphan": "Control orfan", - "DE.Views.EditParagraph.textPageBreak": "Sfârsit pagină inainte", - "DE.Views.EditParagraph.textPrgStyles": "Stiluri paragraf", - "DE.Views.EditParagraph.textSpaceBetween": "Spațiere între paragrafe", - "DE.Views.EditShape.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditShape.textAlign": "Aliniere", - "DE.Views.EditShape.textBack": "Înapoi", - "DE.Views.EditShape.textBackward": "Mutare în ultimul plan", - "DE.Views.EditShape.textBehind": "În urmă", - "DE.Views.EditShape.textBorder": "Bordura", - "DE.Views.EditShape.textColor": "Culoare", - "DE.Views.EditShape.textCustomColor": "Culoare particularizată", - "DE.Views.EditShape.textEffects": "Efecte", - "DE.Views.EditShape.textFill": "Umplere", - "DE.Views.EditShape.textForward": "Deplasare înainte", - "DE.Views.EditShape.textFromText": "Distanță de la text", - "DE.Views.EditShape.textInFront": "În prim-plan", - "DE.Views.EditShape.textInline": "În linie", - "DE.Views.EditShape.textOpacity": "Transparență", - "DE.Views.EditShape.textOverlap": "Se permite suprapunerea", - "DE.Views.EditShape.textRemoveShape": "Stergere forma", - "DE.Views.EditShape.textReorder": "Reordonare", - "DE.Views.EditShape.textReplace": "Înlocuire", - "DE.Views.EditShape.textSize": "Dimensiune", - "DE.Views.EditShape.textSquare": "Pătrat", - "DE.Views.EditShape.textStyle": "Stil", - "DE.Views.EditShape.textThrough": "Printre", - "DE.Views.EditShape.textTight": "Strâns", - "DE.Views.EditShape.textToBackground": "Trimitere în plan secundar", - "DE.Views.EditShape.textToForeground": "Aducere în prim plan", - "DE.Views.EditShape.textTopAndBottom": "Sus și jos", - "DE.Views.EditShape.textWithText": "Deplasare odată cu textul", - "DE.Views.EditShape.textWrap": "Încadrare", - "DE.Views.EditTable.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditTable.textAlign": "Aliniere", - "DE.Views.EditTable.textBack": "Înapoi", - "DE.Views.EditTable.textBandedColumn": "Coloana alternantă", - "DE.Views.EditTable.textBandedRow": "Rând alternant", - "DE.Views.EditTable.textBorder": "Bordura", - "DE.Views.EditTable.textCellMargins": "Margini de celulă", - "DE.Views.EditTable.textColor": "Culoare", - "DE.Views.EditTable.textCustomColor": "Culoare particularizată", - "DE.Views.EditTable.textFill": "Umplere", - "DE.Views.EditTable.textFirstColumn": "Prima coloană", - "DE.Views.EditTable.textFlow": "Flux", - "DE.Views.EditTable.textFromText": "Distanță de la text", - "DE.Views.EditTable.textHeaderRow": "Rândul de antet", - "DE.Views.EditTable.textInline": "În linie", - "DE.Views.EditTable.textLastColumn": "Ultima coloană", - "DE.Views.EditTable.textOptions": "Opțiuni", - "DE.Views.EditTable.textRemoveTable": "Ștergere tabel", - "DE.Views.EditTable.textRepeatHeader": "Repetare rânduri antet", - "DE.Views.EditTable.textResizeFit": "Potrivire conținut", - "DE.Views.EditTable.textSize": "Dimensiune", - "DE.Views.EditTable.textStyle": "Stil", - "DE.Views.EditTable.textStyleOptions": "Opțiuni de stil", - "DE.Views.EditTable.textTableOptions": "Opțiuni tabel", - "DE.Views.EditTable.textTotalRow": "Rând total", - "DE.Views.EditTable.textWithText": "Deplasare odată cu textul", - "DE.Views.EditTable.textWrap": "Încadrare", - "DE.Views.EditText.textAddCustomColor": "Adăugarea unei culori particularizate", - "DE.Views.EditText.textAdditional": "Suplimentar", - "DE.Views.EditText.textAdditionalFormat": "Formatare suplimentară", - "DE.Views.EditText.textAllCaps": "Cu majuscule", - "DE.Views.EditText.textAutomatic": "Automat", - "DE.Views.EditText.textBack": "Înapoi", - "DE.Views.EditText.textBullets": "Marcatori", - "DE.Views.EditText.textCharacterBold": "A", - "DE.Views.EditText.textCharacterItalic": "C", - "DE.Views.EditText.textCharacterStrikethrough": "T", - "DE.Views.EditText.textCharacterUnderline": "S", - "DE.Views.EditText.textCustomColor": "Culoare particularizată", - "DE.Views.EditText.textDblStrikethrough": "Tăiere cu două linii", - "DE.Views.EditText.textDblSuperscript": "Exponent", - "DE.Views.EditText.textFontColor": "Culoare font", - "DE.Views.EditText.textFontColors": "Culorile font", - "DE.Views.EditText.textFonts": "Fonturi", - "DE.Views.EditText.textHighlightColor": "Culoare de evidențiere", - "DE.Views.EditText.textHighlightColors": "Culori de evidențiere", - "DE.Views.EditText.textLetterSpacing": "Spațierea dintre caractere", - "DE.Views.EditText.textLineSpacing": "Interlinie", - "DE.Views.EditText.textNone": "Niciunul", - "DE.Views.EditText.textNumbers": "Numere", - "DE.Views.EditText.textSize": "Dimensiune", - "DE.Views.EditText.textSmallCaps": "Majuscule reduse", - "DE.Views.EditText.textStrikethrough": "Tăiere cu o linie", - "DE.Views.EditText.textSubscript": "Indice", - "DE.Views.Search.textCase": "Sensibil la litere mari și mici", - "DE.Views.Search.textDone": "Gata", - "DE.Views.Search.textFind": "Găsire", - "DE.Views.Search.textFindAndReplace": "Găsire și înlocuire", - "DE.Views.Search.textHighlight": "Evidențierea rezultatelor", - "DE.Views.Search.textReplace": "Înlocuire", - "DE.Views.Search.textSearch": "Căutare", - "DE.Views.Settings.textAbout": "Informații", - "DE.Views.Settings.textAddress": "adresă", - "DE.Views.Settings.textAdvancedSettings": "Setări Aplicație", - "DE.Views.Settings.textApplication": "Aplicația", - "DE.Views.Settings.textAuthor": "Autor", - "DE.Views.Settings.textBack": "Înapoi", - "DE.Views.Settings.textBottom": "Jos", - "DE.Views.Settings.textCentimeter": "Centimetru", - "DE.Views.Settings.textCollaboration": "Colaborare", - "DE.Views.Settings.textColorSchemes": "Schema de culori", - "DE.Views.Settings.textComment": "Comentariu", - "DE.Views.Settings.textCommentingDisplay": "Afișare comentarii", - "DE.Views.Settings.textCreated": "A fost creat", - "DE.Views.Settings.textCreateDate": "Creat la", - "DE.Views.Settings.textCustom": "Particularizat", - "DE.Views.Settings.textCustomSize": "Dimensiune particularizată", - "DE.Views.Settings.textDisableAll": "Dezactivare toate", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzile, cu notificare ", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile, fără notificare", - "DE.Views.Settings.textDisplayComments": "Comentarii", - "DE.Views.Settings.textDisplayResolvedComments": "Comentarii rezolvate", - "DE.Views.Settings.textDocInfo": "Informații document", - "DE.Views.Settings.textDocTitle": "Titlul documentului", - "DE.Views.Settings.textDocumentFormats": "Formate de document", - "DE.Views.Settings.textDocumentSettings": "Setări document", - "DE.Views.Settings.textDone": "Gata", - "DE.Views.Settings.textDownload": "Descărcare", - "DE.Views.Settings.textDownloadAs": "Descărcare ca...", - "DE.Views.Settings.textEditDoc": "Editare document", - "DE.Views.Settings.textEmail": "e-mail", - "DE.Views.Settings.textEnableAll": "Se activează toate", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile, fără notificare", - "DE.Views.Settings.textFind": "Găsire", - "DE.Views.Settings.textFindAndReplace": "Găsire și înlocuire", - "DE.Views.Settings.textFormat": "Format", - "DE.Views.Settings.textHelp": "Asistența", - "DE.Views.Settings.textHiddenTableBorders": "Borduri de tabel ascunse", - "DE.Views.Settings.textInch": "Inch", - "DE.Views.Settings.textLandscape": "Vedere", - "DE.Views.Settings.textLastModified": "Data ultimei modificări", - "DE.Views.Settings.textLastModifiedBy": "Modificat ultima dată de către", - "DE.Views.Settings.textLeft": "Stânga", - "DE.Views.Settings.textLoading": "Se incarca...", - "DE.Views.Settings.textLocation": "Locația", - "DE.Views.Settings.textMacrosSettings": "Setări macrocomandă", - "DE.Views.Settings.textMargins": "Margini", - "DE.Views.Settings.textNoCharacters": "Caractere neimprimate", - "DE.Views.Settings.textOrientation": "Orientare", - "DE.Views.Settings.textOwner": "Posesor", - "DE.Views.Settings.textPages": "Pagini", - "DE.Views.Settings.textParagraphs": "Paragrafe", - "DE.Views.Settings.textPoint": "Punct", - "DE.Views.Settings.textPortrait": "Portret", - "DE.Views.Settings.textPoweredBy": "Dezvoltat de", - "DE.Views.Settings.textPrint": "Imprimare", - "DE.Views.Settings.textReader": "Mod citire", - "DE.Views.Settings.textReview": "Urmărirea modificărilor", - "DE.Views.Settings.textRight": "Dreapta", - "DE.Views.Settings.textSettings": "Setări", - "DE.Views.Settings.textShowNotification": "Afișare notificări", - "DE.Views.Settings.textSpaces": "Spații", - "DE.Views.Settings.textSpellcheck": "Verificarea ortografică", - "DE.Views.Settings.textStatistic": "Statistic", - "DE.Views.Settings.textSubject": "Subiect", - "DE.Views.Settings.textSymbols": "Simboluri", - "DE.Views.Settings.textTel": "tel", - "DE.Views.Settings.textTitle": "Titlu", - "DE.Views.Settings.textTop": "Sus", - "DE.Views.Settings.textUnitOfMeasurement": "Unitate de măsură ", - "DE.Views.Settings.textUploaded": "S-a încărcat", - "DE.Views.Settings.textVersion": "Versiune", - "DE.Views.Settings.textWords": "Cuvinte", - "DE.Views.Settings.unknownText": "Necunoscut", - "DE.Views.Toolbar.textBack": "Înapoi" + "About": { + "textAbout": "Despre", + "textAddress": "Adresă", + "textBack": "Înapoi", + "textEmail": "Email", + "textPoweredBy": "Dezvoltat de", + "textTel": "Tel", + "textVersion": "Versiune" + }, + "Add": { + "notcriticalErrorTitle": "Avertisment", + "textAddLink": "Adăugare link", + "textAddress": "Adresă", + "textBack": "Înapoi", + "textBelowText": "Dedesubt textul", + "textBottomOfPage": "Josul paginii", + "textBreak": "Sfârșit", + "textCancel": "Revocare", + "textCenterBottom": "La centru jos", + "textCenterTop": "La centru sus", + "textColumnBreak": "Întreruperea de coloană", + "textColumns": "Coloane", + "textComment": "Comentariu", + "textContinuousPage": "Continuu", + "textCurrentPosition": "Poziția curentă", + "textDisplay": "Afișare", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textEvenPage": "Pagină pară", + "textFootnote": "Notă de subsol", + "textFormat": "Format", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textInsert": "Inserare", + "textInsertFootnote": "Inserarea notei de subsol", + "textInsertImage": "Inserare imagine", + "textLeftBottom": "Stânga jos", + "textLeftTop": "Stânga sus", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLocation": "Locația", + "textNextPage": "Pagina următoare", + "textOddPage": "Pagină impară", + "textOther": "Altele", + "textPageBreak": "Sfârșit pagină", + "textPageNumber": "Număr de pagină", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPosition": "Poziție", + "textRightBottom": "Dreapta jos", + "textRightTop": "Dreapta sus", + "textRows": "Rânduri", + "textScreenTip": "Sfaturi ecran", + "textSectionBreak": "Sfârșit de secțiune", + "textShape": "Forma", + "textStartAt": "Pornire de la", + "textTable": "Tabel", + "textTableSize": "Dimensiune tabel", + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Avertisment", + "textAccept": "Acceptă", + "textAcceptAllChanges": "Acceptați toate modificările", + "textAddComment": "Adaugă comentariu", + "textAddReply": "Adăugare răspuns", + "textAllChangesAcceptedPreview": "Toate modificările sunt acceptate (Previzualizare)", + "textAllChangesEditing": "Toate modificările (Editare)", + "textAllChangesRejectedPreview": "Toate modificările sunt respinse (Previzualizare)", + "textAtLeast": "cel puțin", + "textAuto": "auto", + "textBack": "Înapoi", + "textBaseline": "Referință", + "textBold": "Aldin", + "textBreakBefore": "Sfârsit pagină inainte", + "textCancel": "Revocare", + "textCaps": "Cu majuscule", + "textCenter": "Aliniere la centru", + "textChart": "Diagramă", + "textCollaboration": "Colaborare", + "textColor": "Culoare font", + "textComments": "Comentarii", + "textContextual": "Nu se adaugă spații între paragrafele cu același stil ", + "textDelete": "Șterge", + "textDeleteComment": "Ștergere comentariu", + "textDeleted": "Eliminat:", + "textDeleteReply": "Ștergere răspuns", + "textDisplayMode": "Modul de afișare", + "textDone": "Gata", + "textDStrikeout": "Tăiere cu două linii", + "textEdit": "Editare", + "textEditComment": "Editare comentariu", + "textEditReply": "Editare răspuns", + "textEditUser": "Fișierul este editat de către:", + "textEquation": "Ecuație", + "textExact": "exact", + "textFinal": "Final", + "textFirstLine": "Primul rând", + "textFormatted": "Formatat", + "textHighlight": "Culoare de evidențiere", + "textImage": "Imagine", + "textIndentLeft": "Indentare stânga", + "textIndentRight": "Indentare dreapta", + "textInserted": "Inserat:", + "textItalic": "Cursiv", + "textJustify": "Alinierea stânga-dreapta", + "textKeepLines": "Păstrare linii împreună", + "textKeepNext": "Păstrare cu următorul", + "textLeft": "Aliniere la stânga", + "textLineSpacing": "Interlinie:", + "textMarkup": "Marcaj", + "textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", + "textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", + "textMultiple": "multiplu", + "textNoBreakBefore": "Niciun sfârșit de pagină înainte", + "textNoChanges": "Modificările nu s-au produs.", + "textNoComments": "Documentul nu cuprinde comentarii", + "textNoContextual": "Se adaugă spațiu între paragrafele cu același stil ", + "textNoKeepLines": "Nu se păstrează liniile împreună", + "textNoKeepNext": "Nu se păstrează cu următorul", + "textNot": "Nu", + "textNoWidow": "Fără control văduvă", + "textNum": "Modificarea numerotării", + "textOriginal": "Inițial", + "textParaDeleted": "Paragraful a fost șters", + "textParaFormatted": "Paragraful a fost formatat", + "textParaInserted": "Paragraful a fost adăugat", + "textParaMoveFromDown": "Este mutat în jos:", + "textParaMoveFromUp": "Este mutat în sus:", + "textParaMoveTo": "S-a mutat:", + "textPosition": "Poziție", + "textReject": "Respingere", + "textRejectAllChanges": "Se resping toate modificările", + "textReopen": "Redeschidere", + "textResolve": "Rezolvare", + "textReview": "Revizuire", + "textReviewChange": "Revizuire modificări", + "textRight": "Aliniere la dreapta", + "textShape": "Forma", + "textShd": "Culoare de fundal", + "textSmallCaps": "Majuscule reduse", + "textSpacing": "Spațiere", + "textSpacingAfter": "Spațiere după", + "textSpacingBefore": "Spațiere înainte", + "textStrikeout": "Tăiere cu o linie", + "textSubScript": "Indice", + "textSuperScript": "Exponent", + "textTableChanged": "Setările de tabel au fost modificate", + "textTableRowsAdd": "Au fost adăugate rânduri de tabel", + "textTableRowsDel": "Au fost șterse rânduri de tabel", + "textTabs": "Modificare file", + "textTrackChanges": "Urmărirea modificărilor", + "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", + "textUnderline": "Subliniat", + "textUsers": "Utilizatori", + "textWidow": "Control văduvă" + }, + "ThemeColorPalette": { + "textCustomColors": "Culori particularizate", + "textStandartColors": "Culori standard", + "textThemeColors": "Culori temă" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", + "menuAddComment": "Adaugă comentariu", + "menuAddLink": "Adăugare link", + "menuCancel": "Revocare", + "menuDelete": "Șterge", + "menuDeleteTable": "Ștergere tabel", + "menuEdit": "Editare", + "menuMerge": "Îmbinare", + "menuMore": "Mai multe", + "menuOpenLink": "Deschidere link", + "menuReview": "Revizuire", + "menuReviewChange": "Revizuire modificări", + "menuSplit": "Scindare", + "menuViewComment": "Vizualizarea comentariilor", + "textColumns": "Coloane", + "textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", + "textDoNotShowAgain": "Nu mai afișa", + "textRows": "Rânduri" + }, + "Edit": { + "notcriticalErrorTitle": "Avertisment", + "textActualSize": "Dimensiunea reală", + "textAddCustomColor": "Adăugarea unei culori particularizate", + "textAdditional": "Suplimentar", + "textAdditionalFormatting": "Formatare suplimentară", + "textAddress": "Adresă", + "textAdvanced": "Avansat", + "textAdvancedSettings": "Setări avansate", + "textAfter": "După", + "textAlign": "Aliniere", + "textAllCaps": "Cu majuscule", + "textAllowOverlap": "Se permite suprapunerea", + "textAuto": "Auto", + "textAutomatic": "Automat", + "textBack": "Înapoi", + "textBackground": "Fundal", + "textBandedColumn": "Coloana alternantă", + "textBandedRow": "Rând alternant", + "textBefore": "Înainte", + "textBehind": "În urmă", + "textBorder": "Bordura", + "textBringToForeground": "Aducere în prim plan", + "textBullets": "Marcatori", + "textBulletsAndNumbers": "Marcatori și numerotare", + "textCellMargins": "Margini de celulă", + "textChart": "Diagramă", + "textClose": "Închide", + "textColor": "Culoare", + "textContinueFromPreviousSection": "Continuare din secțiunea anterioară", + "textCustomColor": "Culoare particularizată", + "textDifferentFirstPage": "Prima pagina diferită", + "textDifferentOddAndEvenPages": "Pagini pare și impare diferite", + "textDisplay": "Afișare", + "textDistanceFromText": "Distanță de la text", + "textDoubleStrikethrough": "Tăiere cu două linii", + "textEditLink": "Editare link", + "textEffects": "Efecte", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textFill": "Umplere", + "textFirstColumn": "Prima coloană", + "textFirstLine": "Primul rând", + "textFlow": "Flux", + "textFontColor": "Culoare font", + "textFontColors": "Culorile font", + "textFonts": "Fonturi", + "textFooter": "Subsol", + "textHeader": "Antet", + "textHeaderRow": "Rândul de antet", + "textHighlightColor": "Culoare de evidențiere", + "textHyperlink": "Hyperlink", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textInFront": "În prim-plan", + "textInline": "În linie", + "textKeepLinesTogether": "Păstrare linii împreună", + "textKeepWithNext": "Păstrare cu următorul", + "textLastColumn": "Ultima coloană", + "textLetterSpacing": "Spațierea dintre caractere", + "textLineSpacing": "Interlinie", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkToPrevious": "Legătură la anteriorul", + "textMoveBackward": "Mutare în ultimul plan", + "textMoveForward": "Mutare înainte", + "textMoveWithText": "Mutare odată cu textul", + "textNone": "Niciunul", + "textNoStyles": "Niciun stil pentru acest tip de diagramă.", + "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "textNumbers": "Numere", + "textOpacity": "Transparență", + "textOptions": "Opțiuni", + "textOrphanControl": "Control orfan", + "textPageBreakBefore": "Sfârsit pagină inainte", + "textPageNumbering": "Numerotare pagini", + "textParagraph": "Paragraf", + "textParagraphStyles": "Stiluri paragraf", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPt": "pt", + "textRemoveChart": "Ștergere diagramă", + "textRemoveImage": "Ștergere imagine", + "textRemoveLink": "Ștergere link", + "textRemoveShape": "Stergere forma", + "textRemoveTable": "Ștergere tabel", + "textReorder": "Reordonare", + "textRepeatAsHeaderRow": "Repetare rânduri antet", + "textReplace": "Înlocuire", + "textReplaceImage": "Înlocuire imagine", + "textResizeToFitContent": "Potrivire conținut", + "textScreenTip": "Sfaturi ecran", + "textSelectObjectToEdit": "Selectați obiectul pentru editare", + "textSendToBackground": "Trimitere în plan secundar", + "textSettings": "Setări", + "textShape": "Forma", + "textSize": "Dimensiune", + "textSmallCaps": "Majuscule reduse", + "textSpaceBetweenParagraphs": "Spațiere între paragrafe", + "textSquare": "Pătrat", + "textStartAt": "Pornire de la", + "textStrikethrough": "Tăiere cu o linie", + "textStyle": "Stil", + "textStyleOptions": "Opțiuni de stil", + "textSubscript": "Indice", + "textSuperscript": "Exponent", + "textTable": "Tabel", + "textTableOptions": "Opțiuni tabel", + "textText": "Text", + "textThrough": "Printre", + "textTight": "Strâns", + "textTopAndBottom": "Sus și jos", + "textTotalRow": "Rând total", + "textType": "Tip", + "textWrap": "Încadrare" + }, + "Error": { + "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", + "criticalErrorExtText": "Faceți clic pe OK pentru a reveni la lista de documente.", + "criticalErrorTitle": "Eroare", + "downloadErrorText": "Descărcare eșuată.", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorBadImageUrl": "URL-ul imaginii incorectă", + "errorConnectToServer": "Nu se poate salva documentul. Verificați setările de conexiune sau contactați administratorul
    După ce faceți clic pe butonul OK vi se va solicita să descărcați documentul.", + "errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", + "errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", + "errorDataRange": "Zonă de date incorectă.", + "errorDefaultMessage": "Codul de eroare: %1", + "errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
    Încărcați documentul pentru copierea de rezervă locală. ", + "errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", + "errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dvs.", + "errorKeyEncrypt": "Descriptor cheie nerecunoscut", + "errorKeyExpire": "Descriptor cheie a expirat", + "errorMailMergeLoadFile": "Încărcarea eșuată", + "errorMailMergeSaveFile": "Îmbinarea eșuată.", + "errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", + "errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", + "errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", + "errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", + "errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", + "errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", + "errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", + "errorViewerDisconnect": "Conexiunea a fost pierdută. Încă mai puteți vizualiza documentul,
    dar nu și să-l descărcați până când conexiunea se restabilește și pagina se reîmprospătează.", + "notcriticalErrorTitle": "Avertisment", + "openErrorText": "Eroare la deschiderea fișierului", + "saveErrorText": "Eroare la salvarea fișierului", + "scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "splitDividerErrorText": "Numărul de rânduri trebuie împărțit la %1", + "splitMaxColsErrorText": "Numărul maxim de coloane este de %1", + "splitMaxRowsErrorText": "Numărul maxim de rânduri este %1", + "unknownErrorText": "Eroare necunoscută.", + "uploadImageExtMessage": "Format de imagine nerecunoscut.", + "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Încărcarea datelor...", + "applyChangesTitleText": "Încărcare date", + "downloadMergeText": "Progres descărcare...", + "downloadMergeTitle": "Progres descărcare", + "downloadTextText": "Descărcarea documentului...", + "downloadTitleText": "Descărcarea fișierului", + "loadFontsTextText": "Încărcarea datelor...", + "loadFontsTitleText": "Încărcare date", + "loadFontTextText": "Încărcarea datelor...", + "loadFontTitleText": "Încărcare date", + "loadImagesTextText": "Încărcarea imaginilor...", + "loadImagesTitleText": "Încărcare imagini", + "loadImageTextText": "Încărcarea imaginii...", + "loadImageTitleText": "Încărcare imagine", + "loadingDocumentTextText": "Încărcarea documentului...", + "loadingDocumentTitleText": "Încărcare document", + "mailMergeLoadFileText": "Încărcarea sursei de date...", + "mailMergeLoadFileTitle": "Încărcare sursa de date", + "openTextText": "Deschiderea fișierului...", + "openTitleText": "Deschidere fișier", + "printTextText": "Imprimarea documentului...", + "printTitleText": "Imprimarea documentului", + "savePreparingText": "Pregătire pentru salvare", + "savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", + "saveTextText": "Salvarea documentului...", + "saveTitleText": "Salvare document", + "sendMergeText": "Trimitere îmbinare a corespondenței...", + "sendMergeTitle": "Trimitere îmbinare a corespondenței ", + "textLoadingDocument": "Încărcare document", + "txtEditingMode": "Setare modul de editare...", + "uploadImageTextText": "Încărcarea imaginii...", + "uploadImageTitleText": "Încărcarea imaginii", + "waitText": "Vă rugăm să așteptați..." + }, + "Main": { + "criticalErrorTitle": "Eroare", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorOpensource": "În versiunea Community documentul este disponibil numai pentru vizualizare. Aveți nevoie de o licență comercială pentru accesarea editorului mobil web.", + "errorProcessSaveResult": "Salvarea nu a reușit.", + "errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", + "errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", + "leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "notcriticalErrorTitle": "Avertisment", + "SDK": { + " -Section ": "- Secțiune", + "above": "deasupra", + "below": "dedesubt", + "Caption": "Legenda", + "Choose an item": "Selectați un element", + "Click to load image": "Faceți clic pentru a încărca imaginea", + "Current Document": "Documentul curent", + "Diagram Title": "Titlu diagramă", + "endnote text": "Textul notelei de final ", + "Enter a date": "Introducere data", + "Error! Bookmark not defined": "Eroare! Marcaj nedefinit.", + "Error! Main Document Only": "Eroare! Numai document principal.", + "Error! No text of specified style in document": "Eroare! Textul formatat cu stilul specificat nu este găsit în document.", + "Error! Not a valid bookmark self-reference": "Eroare! Auto-referință la marcaj în document incorectă.", + "Even Page ": "Pagină pară", + "First Page ": "Prima pagina", + "Footer": "Subsol", + "footnote text": "Textul notei de subsol", + "Header": "Antet", + "Heading 1": "Titlu 1", + "Heading 2": "Titlu 2", + "Heading 3": "Titlu 3", + "Heading 4": "Titlu 4", + "Heading 5": "Titlu 5", + "Heading 6": "Titlu 6", + "Heading 7": "Titlu 7", + "Heading 8": "Titlu 8", + "Heading 9": "Titlu 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index prea mare", + "Intense Quote": "Citat intens", + "Is Not In Table": "Nu există în tabelul", + "List Paragraph": "Listă paragraf", + "Missing Argument": "Argumentul lipsește", + "Missing Operator": "Operatorul lipsește", + "No Spacing": "Fără spațiere", + "No table of contents entries found": "Documentul nu are anteturi. Aplicați un stil de titlu pentru textul care va fi inclus în cuprins.", + "No table of figures entries found": "Nu s-a găsit nici o rubrică din tabel de figuri", + "None": "Niciunul", + "Normal": "Normal", + "Number Too Large To Format": "Număr prea mare pentru formatare", + "Odd Page ": "Pagină impară", + "Quote": "Citat", + "Same as Previous": "La fel ca cel anteror", + "Series": "Serie", + "Subtitle": "Subtitrare", + "Syntax Error": "Eroare de sintaxă", + "Table Index Cannot be Zero": "Valoarea index de tabel nu poate fi zero", + "Table of Contents": "Cuprins", + "table of figures": "Tabel de figuri", + "The Formula Not In Table": "Formula nu este din tabel", + "Title": "Titlu", + "TOC Heading": "Titlu Cuprins", + "Type equation here": "Introduceți ecuația aici", + "Undefined Bookmark": "Marcaj neidentificat", + "Unexpected End of Formula": "Sfârsit neașteptat de formulă", + "X Axis": "Axă X (XAS)", + "Y Axis": "Axa Y", + "Your text here": "Textul dvs. aici", + "Zero Divide": "Împărțirea cu zero" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Vizitarea site-ul Web", + "textClose": "Închide", + "textContactUs": "Contactați Departamentul de Vânzări", + "textCustomLoader": "Cu părere de rău nu aveți dreptul să modificați programul de încărcare. Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", + "textGuest": "Invitat", + "textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", + "textNo": "Nu", + "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textPaidFeature": "Funcția contra plată", + "textRemember": "Reține opțiunea mea", + "textYes": "Da", + "titleLicenseExp": "Licența a expirat", + "titleServerVersion": "Editorul a fost actualizat", + "titleUpdateVersion": "Versiunea s-a modificat", + "warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați administratorul dvs pentru mai multe detalii.", + "warnLicenseExp": "Licența dvs. a expirat. Licența urmează să fie reînnoită iar pagina reîmprospătată.", + "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", + "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită. Funcțiile de editare sunt cu acces limitat. Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de actualizare.", + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." + }, + "Settings": { + "advDRMOptions": "Fișierul protejat", + "advDRMPassword": "Parola", + "advTxtOptions": "Selectează opțiunile TXT", + "closeButtonText": "Închide fișierul", + "notcriticalErrorTitle": "Avertisment", + "textAbout": "Despre", + "textApplication": "Aplicația", + "textApplicationSettings": "Setări Aplicație", + "textAuthor": "Autor", + "textBack": "Înapoi", + "textBottom": "Jos", + "textCancel": "Revocare", + "textCaseSensitive": "Sensibil la litere mari și mici", + "textCentimeter": "Centimetru", + "textCollaboration": "Colaborare", + "textColorSchemes": "Scheme de culori", + "textComment": "Comentariu", + "textComments": "Comentarii", + "textCommentsDisplay": "Afișare comentarii", + "textCreated": "A fost creat la", + "textCustomSize": "Dimensiunea particularizată", + "textDisableAll": "Se dezactivează toate", + "textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzileâ cu notificare", + "textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile fără notificare", + "textDocumentInfo": "Informații document", + "textDocumentSettings": "Setări document", + "textDocumentTitle": "Titlul documentului", + "textDone": "Gata", + "textDownload": "Descărcare", + "textDownloadAs": "Descărcare ca", + "textDownloadRtf": "Dacă salvați în acest format de fișier, este posibil ca unele dintre formatări să se piardă. Sigur doriți să continuați?", + "textDownloadTxt": "Dacă salvați în acest format de fișier, toate caracteristici vor fi pierdute, cu excepția textului. Sunteți sigur că doriți să continuați?", + "textEnableAll": "Se activează toate", + "textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile cu notificare ", + "textEncoding": "Codificare", + "textFind": "Găsire", + "textFindAndReplace": "Găsire și înlocuire", + "textFindAndReplaceAll": "Găsire și înlocuire totală", + "textFormat": "Format", + "textHelp": "Ajutor", + "textHiddenTableBorders": "Borduri de tabel ascunse", + "textHighlightResults": "Evidențierea rezultatelor", + "textInch": "Inch", + "textLandscape": "Vedere", + "textLastModified": "Data ultimei modificări", + "textLastModifiedBy": "Modificat ultima dată de către", + "textLeft": "Stânga", + "textLoading": "Se încarcă...", + "textLocation": "Locația", + "textMacrosSettings": "Setări macrocomandă", + "textMargins": "Margini", + "textMarginsH": "Marginile sus și jos sunt prea ridicate pentru această pagină", + "textMarginsW": "Marginile stânga și dreapta sunt prea late pentru această pagină", + "textNoCharacters": "Caractere neimprimate", + "textNoTextFound": "Textul nu a fost găsit", + "textOpenFile": "Introduceți parola pentru deschidere fișier", + "textOrientation": "Orientare", + "textOwner": "Proprietar", + "textPoint": "Punct", + "textPortrait": "Portret", + "textPrint": "Imprimare", + "textReaderMode": "Mod citire", + "textReplace": "Înlocuire", + "textReplaceAll": "Înlocuire peste tot", + "textResolvedComments": "Comentarii rezolvate", + "textRight": "Dreapta", + "textSearch": "Căutare", + "textSettings": "Setări", + "textShowNotification": "Afișare notificări", + "textSpellcheck": "Verificarea ortografică", + "textStatistic": "Statistic", + "textSubject": "Subiect", + "textTitle": "Titlu", + "textTop": "Sus", + "textUnitOfMeasurement": "Unitate de măsură ", + "textUploaded": "S-a încărcat", + "txtIncorrectPwd": "Parolă incorectă", + "txtProtected": "Parola curentă la fișierul va fi resetată, de îndată ce este introdusă și fișierul este deschis", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metrou", + "txtScheme12": "Modul", + "txtScheme13": "Opulent", + "txtScheme14": "Foișor", + "txtScheme15": "Origine", + "txtScheme16": "Hârtie", + "txtScheme17": "Solstițiu", + "txtScheme18": "Tehnic", + "txtScheme19": "Turist", + "txtScheme2": "Tonuri de gri", + "txtScheme20": "Urban", + "txtScheme21": "Vervă", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concurență", + "txtScheme7": "Echilibru", + "txtScheme8": "Flux", + "txtScheme9": "Forjă" + }, + "Toolbar": { + "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", + "leaveButtonText": "Părăsește această pagina", + "stayButtonText": "Rămâi în pagină" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/ru.json b/apps/documenteditor/mobile/locale/ru.json index a16cab60e..5e84fd246 100644 --- a/apps/documenteditor/mobile/locale/ru.json +++ b/apps/documenteditor/mobile/locale/ru.json @@ -205,6 +205,7 @@ "textBehind": "За текстом", "textBorder": "Граница", "textBringToForeground": "Перенести на передний план", + "textBullets": "Маркеры", "textBulletsAndNumbers": "Маркеры и нумерация", "textCellMargins": "Поля ячейки", "textChart": "Диаграмма", @@ -250,7 +251,8 @@ "textNone": "Нет", "textNoStyles": "Для этого типа диаграмм нет стилей.", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", - "textOpacity": "Прозрачность", + "textNumbers": "Нумерация", + "textOpacity": "Непрозрачность", "textOptions": "Параметры", "textOrphanControl": "Запрет висячих строк", "textPageBreakBefore": "С новой страницы", @@ -379,7 +381,22 @@ "leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", "notcriticalErrorTitle": "Внимание", "SDK": { + " -Section ": "-Раздел", + "above": "выше", + "below": "ниже", + "Caption": "Название", + "Choose an item": "Выберите элемент", + "Click to load image": "Нажмите для загрузки изображения", + "Current Document": "Текущий документ", "Diagram Title": "Заголовок диаграммы", + "endnote text": "Текст концевой сноски", + "Enter a date": "Введите дату", + "Error! Bookmark not defined": "Ошибка! Закладка не определена.", + "Error! Main Document Only": "Ошибка! Только основной документ.", + "Error! No text of specified style in document": "Ошибка! В документе отсутствует текст указанного стиля.", + "Error! Not a valid bookmark self-reference": "Ошибка! Неверная ссылка закладки.", + "Even Page ": "Четная страница", + "First Page ": "Первая страница", "Footer": "Нижний колонтитул", "footnote text": "Текст сноски", "Header": "Верхний колонтитул", @@ -392,17 +409,38 @@ "Heading 7": "Заголовок 7", "Heading 8": "Заголовок 8", "Heading 9": "Заголовок 9", + "Hyperlink": "Ссылка", + "Index Too Large": "Индекс слишком большой", "Intense Quote": "Выделенная цитата", + "Is Not In Table": "Не в таблице", "List Paragraph": "Абзац списка", + "Missing Argument": "Отсутствует аргумент", + "Missing Operator": "Отсутствует оператор", "No Spacing": "Без интервала", + "No table of contents entries found": "В документе нет заголовков. Примените стиль заголовка к тексту, чтобы он появился в оглавлении.", + "No table of figures entries found": "Элементы списка иллюстраций не найдены.", + "None": "Нет", "Normal": "Обычный", + "Number Too Large To Format": "Число слишком большое для форматирования", + "Odd Page ": "Нечетная страница", "Quote": "Цитата", + "Same as Previous": "Как в предыдущем", "Series": "Ряд", "Subtitle": "Подзаголовок", + "Syntax Error": "Синтаксическая ошибка", + "Table Index Cannot be Zero": "Индекс таблицы не может быть нулевым", + "Table of Contents": "Оглавление", + "table of figures": "Список иллюстраций", + "The Formula Not In Table": "Формула не в таблице", "Title": "Название", + "TOC Heading": "Заголовок оглавления", + "Type equation here": "Введите здесь уравнение", + "Undefined Bookmark": "Закладка не определена", + "Unexpected End of Formula": "Непредвиденное завершение формулы", "X Axis": "Ось X (XAS)", "Y Axis": "Ось Y", - "Your text here": "Введите ваш текст" + "Your text here": "Введите ваш текст", + "Zero Divide": "Деление на ноль" }, "textAnonymous": "Анонимный пользователь", "textBuyNow": "Перейти на сайт", @@ -481,7 +519,7 @@ "textMacrosSettings": "Настройки макросов", "textMargins": "Поля", "textMarginsH": "Верхнее и нижнее поля слишком высокие для заданной высоты страницы", - "textMarginsW": "Левое и правое поля слишком высокие для заданной высоты страницы", + "textMarginsW": "Левое и правое поля слишком широкие для заданной ширины страницы", "textNoCharacters": "Непечатаемые символы", "textNoTextFound": "Текст не найден", "textOpenFile": "Введите пароль для открытия файла", @@ -506,7 +544,29 @@ "textUnitOfMeasurement": "Единица измерения", "textUploaded": "Загружен", "txtIncorrectPwd": "Неверный пароль", - "txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен" + "txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен", + "txtScheme1": "Стандартная", + "txtScheme10": "Обычная", + "txtScheme11": "Метро", + "txtScheme12": "Модульная", + "txtScheme13": "Изящная", + "txtScheme14": "Эркер", + "txtScheme15": "Начальная", + "txtScheme16": "Бумажная", + "txtScheme17": "Солнцестояние", + "txtScheme18": "Техническая", + "txtScheme19": "Трек", + "txtScheme2": "Оттенки серого", + "txtScheme20": "Городская", + "txtScheme21": "Яркая", + "txtScheme22": "Новая офисная", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Официальная", + "txtScheme6": "Открытая", + "txtScheme7": "Справедливость", + "txtScheme8": "Поток", + "txtScheme9": "Литейная" }, "Toolbar": { "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", diff --git a/apps/documenteditor/mobile/locale/sk.json b/apps/documenteditor/mobile/locale/sk.json index ab4a568d5..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/sk.json +++ b/apps/documenteditor/mobile/locale/sk.json @@ -1,606 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Pridať odpoveď", - "Common.Controllers.Collaboration.textAtLeast": "aspoň", - "Common.Controllers.Collaboration.textAuto": "Auto", - "Common.Controllers.Collaboration.textBaseline": "Východisko", - "Common.Controllers.Collaboration.textBold": "Tučné", - "Common.Controllers.Collaboration.textBreakBefore": "Zlom strany pred", - "Common.Controllers.Collaboration.textCancel": "Zrušiť", - "Common.Controllers.Collaboration.textCaps": "Všetko veľkým", - "Common.Controllers.Collaboration.textCenter": "Zarovnať na stred", - "Common.Controllers.Collaboration.textChart": "Graf", - "Common.Controllers.Collaboration.textColor": "Farba písma", - "Common.Controllers.Collaboration.textContextual": "Nepridávať medzeru medzi odsekmi rovnakého štýlu", - "Common.Controllers.Collaboration.textDelete": "Odstrániť", - "Common.Controllers.Collaboration.textDeleteComment": "Vymazať komentár", - "Common.Controllers.Collaboration.textDeleted": "Odstránené:", - "Common.Controllers.Collaboration.textDeleteReply": "Vymazať odpoveď", - "Common.Controllers.Collaboration.textDone": "Vykonané", - "Common.Controllers.Collaboration.textDStrikeout": "Dvojité prečiarknutie", - "Common.Controllers.Collaboration.textEdit": "Upraviť", - "Common.Controllers.Collaboration.textEditUser": "Používatelia, ktorí súbor upravujú:", - "Common.Controllers.Collaboration.textEquation": "Rovnica", - "Common.Controllers.Collaboration.textExact": "presne", - "Common.Controllers.Collaboration.textFirstLine": "Prvý riadok", - "Common.Controllers.Collaboration.textFormatted": "Formátované", - "Common.Controllers.Collaboration.textHighlight": "Farba zvýraznenia", - "Common.Controllers.Collaboration.textImage": "Obrázok", - "Common.Controllers.Collaboration.textIndentLeft": "Osadenie vľavo", - "Common.Controllers.Collaboration.textIndentRight": "Odsadenie vpravo", - "Common.Controllers.Collaboration.textInserted": "Vložené:", - "Common.Controllers.Collaboration.textItalic": "Kurzíva", - "Common.Controllers.Collaboration.textJustify": "Zarovnať podľa okrajov", - "Common.Controllers.Collaboration.textKeepLines": "Zviazať riadky dohromady", - "Common.Controllers.Collaboration.textKeepNext": "Zviazať s nasledujúcim", - "Common.Controllers.Collaboration.textLeft": "Zarovnať doľava", - "Common.Controllers.Collaboration.textLineSpacing": "Riadkovanie:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Chcete tento komentár skutočne vymazať?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Chcete túto odpoveď skutočne vymazať?", - "Common.Controllers.Collaboration.textMultiple": "Viacnásobný", - "Common.Controllers.Collaboration.textNoBreakBefore": "Nevložiť zlom strany pred", - "Common.Controllers.Collaboration.textNoChanges": "Nie sú žiadne zmeny.", - "Common.Controllers.Collaboration.textNoContextual": "Pridať medzeru medzi odsekmi rovnakého štýlu", - "Common.Controllers.Collaboration.textNoKeepLines": "Neudržuj riadky spolu", - "Common.Controllers.Collaboration.textNoKeepNext": "Nepokračovať s ďalším", - "Common.Controllers.Collaboration.textNot": "Nie", - "Common.Controllers.Collaboration.textNoWidow": "Žiadny ovládací prvok okna", - "Common.Controllers.Collaboration.textNum": "Zmeniť číslovanie", - "Common.Controllers.Collaboration.textParaDeleted": "Odsek odstránený", - "Common.Controllers.Collaboration.textParaFormatted": "Sformátovaný odsek", - "Common.Controllers.Collaboration.textParaInserted": "Vložený odsek ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Presunuté nadol:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Presunuté nahor:", - "Common.Controllers.Collaboration.textParaMoveTo": "Presunuté:", - "Common.Controllers.Collaboration.textPosition": "Pozícia", - "Common.Controllers.Collaboration.textReopen": "Znovu otvoriť", - "Common.Controllers.Collaboration.textResolve": "Vyriešiť", - "Common.Controllers.Collaboration.textRight": "Zarovnať doprava", - "Common.Controllers.Collaboration.textShape": "Tvar", - "Common.Controllers.Collaboration.textShd": "Farba pozadia", - "Common.Controllers.Collaboration.textSmallCaps": "Malé písmená", - "Common.Controllers.Collaboration.textSpacing": "Medzery", - "Common.Controllers.Collaboration.textSpacingAfter": "Medzera za", - "Common.Controllers.Collaboration.textSpacingBefore": "Medzera pred", - "Common.Controllers.Collaboration.textStrikeout": "Preškrtnutie", - "Common.Controllers.Collaboration.textSubScript": "Dolný index", - "Common.Controllers.Collaboration.textSuperScript": "Horný index", - "Common.Controllers.Collaboration.textTableChanged": "Nastavenia tabuľky zmenené", - "Common.Controllers.Collaboration.textTableRowsAdd": "Riadky tabuľky pridané", - "Common.Controllers.Collaboration.textTableRowsDel": "Riadky tabuľky odstránené", - "Common.Controllers.Collaboration.textTabs": "Zmeniť tabuľky", - "Common.Controllers.Collaboration.textUnderline": "Podčiarknuť", - "Common.Controllers.Collaboration.textWidow": "Ovládanie okna", - "Common.Controllers.Collaboration.textYes": "Áno", - "Common.UI.ThemeColorPalette.textCustomColors": "Vlastné farby", - "Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby", - "Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Prijať", - "Common.Views.Collaboration.textAcceptAllChanges": "Akceptovať všetky zmeny", - "Common.Views.Collaboration.textAddReply": "Pridať odpoveď", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Všetky zmeny prijaté (ukážka)", - "Common.Views.Collaboration.textAllChangesEditing": "Všetky zmeny (upravovanie)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Všetky zmeny boli zamietnuté (ukážka)", - "Common.Views.Collaboration.textBack": "Späť", - "Common.Views.Collaboration.textCancel": "Zrušiť", - "Common.Views.Collaboration.textChange": "Posúdiť zmenu", - "Common.Views.Collaboration.textCollaboration": "Spolupráca", - "Common.Views.Collaboration.textDisplayMode": "Režim zobrazenia", - "Common.Views.Collaboration.textDone": "Hotovo", - "Common.Views.Collaboration.textEditReply": "Upraviť odpoveď", - "Common.Views.Collaboration.textEditUsers": "Používatelia", - "Common.Views.Collaboration.textEditСomment": "Upraviť komentár", - "Common.Views.Collaboration.textFinal": "Posledný", - "Common.Views.Collaboration.textMarkup": "Vyznačenie", - "Common.Views.Collaboration.textNoComments": "Tento dokument neobsahuje komentáre", - "Common.Views.Collaboration.textOriginal": "Originál", - "Common.Views.Collaboration.textReject": "Odmietnuť", - "Common.Views.Collaboration.textRejectAllChanges": "Odmietnuť všetky zmeny", - "Common.Views.Collaboration.textReview": "Sledovať zmeny", - "Common.Views.Collaboration.textReviewing": "Prehľad", - "Common.Views.Collaboration.textСomments": "Komentáre", - "DE.Controllers.AddContainer.textImage": "Obrázok", - "DE.Controllers.AddContainer.textOther": "Ostatné", - "DE.Controllers.AddContainer.textShape": "Tvar", - "DE.Controllers.AddContainer.textTable": "Tabuľka", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Upozornenie", - "DE.Controllers.AddImage.textEmptyImgUrl": "Musíte upresniť URL obrázka.", - "DE.Controllers.AddImage.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Upozornenie", - "DE.Controllers.AddOther.textBelowText": "Pod textom", - "DE.Controllers.AddOther.textBottomOfPage": "Spodná časť stránky", - "DE.Controllers.AddOther.textCancel": "Zrušiť", - "DE.Controllers.AddOther.textContinue": "Pokračovať", - "DE.Controllers.AddOther.textDelete": "Vymazať", - "DE.Controllers.AddOther.textDeleteDraft": "Chcete koncept skutočne zmazať?", - "DE.Controllers.AddOther.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", - "DE.Controllers.AddTable.textCancel": "Zrušiť", - "DE.Controllers.AddTable.textColumns": "Stĺpce", - "DE.Controllers.AddTable.textRows": "Riadky", - "DE.Controllers.AddTable.textTableSize": "Veľkosť tabuľky", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Akcie kopírovanie, vystrihnutie a vloženie cez kontextové menu budú vykonané len v tomto súbore.", - "DE.Controllers.DocumentHolder.menuAddComment": "Pridať komentár", - "DE.Controllers.DocumentHolder.menuAddLink": "Pridať odkaz", - "DE.Controllers.DocumentHolder.menuCopy": "Kopírovať", - "DE.Controllers.DocumentHolder.menuCut": "Vystrihnúť", - "DE.Controllers.DocumentHolder.menuDelete": "Vymazať", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Odstrániť tabuľku", - "DE.Controllers.DocumentHolder.menuEdit": "Upraviť", - "DE.Controllers.DocumentHolder.menuMerge": "Zlúčiť bunky", - "DE.Controllers.DocumentHolder.menuMore": "Viac", - "DE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz", - "DE.Controllers.DocumentHolder.menuPaste": "Vložiť", - "DE.Controllers.DocumentHolder.menuReview": "Prehľad", - "DE.Controllers.DocumentHolder.menuReviewChange": "Posúdiť zmenu", - "DE.Controllers.DocumentHolder.menuSplit": "Rozdeliť bunku", - "DE.Controllers.DocumentHolder.menuViewComment": "Pozrieť komentár", - "DE.Controllers.DocumentHolder.sheetCancel": "Zrušiť", - "DE.Controllers.DocumentHolder.textCancel": "Zrušiť", - "DE.Controllers.DocumentHolder.textColumns": "Stĺpce", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Akcia kopírovať, vystrihnúť a prilepiť", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Nezobrazovať znova", - "DE.Controllers.DocumentHolder.textGuest": "Návštevník", - "DE.Controllers.DocumentHolder.textRows": "Riadky", - "DE.Controllers.EditContainer.textChart": "Graf", - "DE.Controllers.EditContainer.textFooter": "Päta stránky", - "DE.Controllers.EditContainer.textHeader": "Hlavička", - "DE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz", - "DE.Controllers.EditContainer.textImage": "Obrázok", - "DE.Controllers.EditContainer.textParagraph": "Odsek", - "DE.Controllers.EditContainer.textSettings": "Nastavenia", - "DE.Controllers.EditContainer.textShape": "Tvar", - "DE.Controllers.EditContainer.textTable": "Tabuľka", - "DE.Controllers.EditContainer.textText": "Text", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Upozornenie", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Je potrebné, aby ste špecifikovali URL obrázka.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Upozornenie", - "DE.Controllers.EditImage.textEmptyImgUrl": "Musíte upresniť URL obrázka.", - "DE.Controllers.EditImage.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", - "DE.Controllers.EditText.textAuto": "Automaticky", - "DE.Controllers.EditText.textFonts": "Písma", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Zadajte svoje heslo:", - "DE.Controllers.Main.advDRMOptions": "Chránený súbor", - "DE.Controllers.Main.advDRMPassword": "Heslo", - "DE.Controllers.Main.advTxtOptions": "Vybrať možnosti TXT", - "DE.Controllers.Main.applyChangesTextText": "Načítavanie dát...", - "DE.Controllers.Main.applyChangesTitleText": "Načítavanie dát", - "DE.Controllers.Main.closeButtonText": "Zatvoriť súbor", - "DE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", - "DE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.", - "DE.Controllers.Main.criticalErrorTitle": "Chyba", - "DE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", - "DE.Controllers.Main.downloadMergeText": "Sťahovanie...", - "DE.Controllers.Main.downloadMergeTitle": "Sťahovanie", - "DE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...", - "DE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu", - "DE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
    Prosím, kontaktujte svojho správcu dokumentového servera. ", - "DE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Spojenie so serverom sa stratilo. Už nemôžete upravovať.", - "DE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
    Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.", - "DE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
    Chyba spojenia databázy. Obráťte sa prosím na podporu.", - "DE.Controllers.Main.errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", - "DE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", - "DE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", - "DE.Controllers.Main.errorEditingDownloadas": "Počas práce s dokumentom sa objavila chyba.
    Použite možnosť \"Stiahnuť\" na uloženie zálohy súboru na hard disk vášho počítača.", - "DE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", - "DE.Controllers.Main.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
    Pre ďalšie podrobnosti kontaktujte prosím vášho správcu dokumentového servera.", - "DE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", - "DE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", - "DE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie dokumentu zlyhalo. Vyberte prosím iný súbor.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.", - "DE.Controllers.Main.errorOpensource": "Pomocou bezplatnej verzie Community môžete otvoriť dokumenty iba na prezeranie. Na prístup k mobilným webovým editorom je potrebná komerčná licencia.", - "DE.Controllers.Main.errorProcessSaveResult": "Uloženie zlyhalo.", - "DE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", - "DE.Controllers.Main.errorSessionAbsolute": "Režim úprav dokumentu vypršal. Prosím, načítajte stránku znova.", - "DE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", - "DE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", - "DE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    začiatočná cena, max cena, min cena, konečná cena.", - "DE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internetové spojenie bolo obnovené a verzia súboru bola zmenená.
    Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", - "DE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", - "DE.Controllers.Main.errorUsersExceed": "Počet používateľov bol prekročený", - "DE.Controllers.Main.errorViewerDisconnect": "Spojenie sa stratilo. Dokument môžete zobraziť,
    ale nebude možné ho prevziať, kým sa spojenie neobnoví a stránka znova nenačíta.", - "DE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", - "DE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", - "DE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", - "DE.Controllers.Main.loadFontTextText": "Načítavanie dát...", - "DE.Controllers.Main.loadFontTitleText": "Načítavanie dát", - "DE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...", - "DE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", - "DE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", - "DE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", - "DE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu ...", - "DE.Controllers.Main.loadingDocumentTitleText": "Načítavanie dokumentu", - "DE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov", - "DE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", - "DE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", - "DE.Controllers.Main.openTextText": "Otváranie dokumentu...", - "DE.Controllers.Main.openTitleText": "Otváranie dokumentu", - "DE.Controllers.Main.printTextText": "Tlač dokumentu...", - "DE.Controllers.Main.printTitleText": "Tlač dokumentu", - "DE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba.", - "DE.Controllers.Main.savePreparingText": "Príprava na uloženie", - "DE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", - "DE.Controllers.Main.saveTextText": "Ukladanie dokumentu...", - "DE.Controllers.Main.saveTitleText": "Ukladanie dokumentu", - "DE.Controllers.Main.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", - "DE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...", - "DE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia", - "DE.Controllers.Main.splitDividerErrorText": "Počet riadkov musí byť deliteľom 1%", - "DE.Controllers.Main.splitMaxColsErrorText": "Počet stĺpcov musí byť menší ako 1%", - "DE.Controllers.Main.splitMaxRowsErrorText": "Počet riadkov musí byť menší ako 1%", - "DE.Controllers.Main.textAnonymous": "Anonymný", - "DE.Controllers.Main.textBack": "Späť", - "DE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", - "DE.Controllers.Main.textCancel": "Zrušiť", - "DE.Controllers.Main.textClose": "Zatvoriť", - "DE.Controllers.Main.textContactUs": "Kontaktujte predajcu", - "DE.Controllers.Main.textCustomLoader": "Všimnite si, prosím, že podľa zmluvných podmienok licencie nemáte oprávnenie zmeniť loader.
    Kontaktujte prosím naše Predajné oddelenie, aby ste získali odhad ceny.", - "DE.Controllers.Main.textDone": "Hotovo", - "DE.Controllers.Main.textGuest": "Hosť", - "DE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
    Chcete makrá spustiť?", - "DE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", - "DE.Controllers.Main.textNo": "Nie", - "DE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Platený prvok", - "DE.Controllers.Main.textPassword": "Heslo", - "DE.Controllers.Main.textPreloader": "Nahrávanie...", - "DE.Controllers.Main.textRemember": "Pamätať si moju voľbu pre všetky súbory", - "DE.Controllers.Main.textTryUndoRedo": "Funkcie späť/opakovať sú pre rýchly spolu-editačný režim vypnuté.", - "DE.Controllers.Main.textUsername": "Užívateľské meno", - "DE.Controllers.Main.textYes": "Áno", - "DE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", - "DE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", - "DE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená", - "DE.Controllers.Main.txtAbove": "Nad", - "DE.Controllers.Main.txtArt": "Váš text tu", - "DE.Controllers.Main.txtBelow": "pod", - "DE.Controllers.Main.txtCurrentDocument": "Aktuálny dokument", - "DE.Controllers.Main.txtDiagramTitle": "Názov grafu", - "DE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...", - "DE.Controllers.Main.txtEvenPage": "Párna stránka", - "DE.Controllers.Main.txtFirstPage": "Prvá strana", - "DE.Controllers.Main.txtFooter": "Päta stránky", - "DE.Controllers.Main.txtHeader": "Hlavička", - "DE.Controllers.Main.txtOddPage": "Nepárna strana", - "DE.Controllers.Main.txtOnPage": "na strane", - "DE.Controllers.Main.txtProtected": "Akonáhle vložíte heslo a otvoríte súbor, terajšie heslo k súboru sa zresetuje.", - "DE.Controllers.Main.txtSameAsPrev": "Rovnaký ako predchádzajúci", - "DE.Controllers.Main.txtSection": "-Sekcia", - "DE.Controllers.Main.txtSeries": "Rady", - "DE.Controllers.Main.txtStyle_footnote_text": "Text poznámky pod čiarou", - "DE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Nadpis 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Nadpis 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Nadpis 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Nadpis 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Nadpis 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Zvýraznená citácia", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Odsek zoznamu", - "DE.Controllers.Main.txtStyle_No_Spacing": "Bez riadkovania", - "DE.Controllers.Main.txtStyle_Normal": "Normálny", - "DE.Controllers.Main.txtStyle_Quote": "Citácia", - "DE.Controllers.Main.txtStyle_Subtitle": "Podtitul", - "DE.Controllers.Main.txtStyle_Title": "Názov", - "DE.Controllers.Main.txtXAxis": "Os X", - "DE.Controllers.Main.txtYAxis": "Os Y", - "DE.Controllers.Main.unknownErrorText": "Neznáma chyba.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", - "DE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maximálny limit veľkosti obrázka bol prekročený.", - "DE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", - "DE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", - "DE.Controllers.Main.waitText": "Čakajte, prosím...", - "DE.Controllers.Main.warnLicenseExceeded": "Počet súbežných spojení s dokumentovým serverom bol prekročený a dokument bude znovu otvorený iba na prezeranie.
    Pre ďalšie informácie kontaktujte prosím vášho správcu.", - "DE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
    Prosím, aktualizujte si svoju licenciu a obnovte stránku.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia vypršala.
    K funkcii úprav dokumentu už nemáte prístup.
    Kontaktujte svojho administrátora, prosím.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.
    K funkciám úprav dokumentov máte obmedzený prístup.
    Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Počet súbežných užívateľov bol prekročený a dokument bude znovu otvorený len na čítanie.
    Pre ďalšie informácie kontaktujte prosím vášho správcu.", - "DE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
    Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", - "DE.Controllers.Main.warnNoLicenseUsers": "Táto verzia %1 editors má určité obmedzenia pre spolupracujúcich používateľov.
    Ak potrebujete viac, zvážte aktualizáciu vašej licencie alebo kúpu komerčnej.", - "DE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", - "DE.Controllers.Search.textNoTextFound": "Text nebol nájdený", - "DE.Controllers.Search.textReplaceAll": "Nahradiť všetko", - "DE.Controllers.Settings.notcriticalErrorTitle": "Upozornenie", - "DE.Controllers.Settings.textCustomSize": "Vlastná veľkosť", - "DE.Controllers.Settings.txtLoading": "Nahrávanie...", - "DE.Controllers.Settings.unknownText": "Neznámy", - "DE.Controllers.Settings.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
    Ste si istý, že chcete pokračovať?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Ak budete pokračovať v ukladaní tohto formátu, časť z formátovania sa môže stratiť.
    Ste si istí, že chcete pokračovať?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Opúšťate aplikáciu", - "DE.Controllers.Toolbar.leaveButtonText": "Opustiť túto stránku", - "DE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke", - "DE.Views.AddImage.textAddress": "Adresa", - "DE.Views.AddImage.textBack": "Späť", - "DE.Views.AddImage.textFromLibrary": "Obrázok z Knižnice", - "DE.Views.AddImage.textFromURL": "Obrázok z URL adresy", - "DE.Views.AddImage.textImageURL": "URL obrázka", - "DE.Views.AddImage.textInsertImage": "Vložiť obrázok", - "DE.Views.AddImage.textLinkSettings": "Nastavenia odkazu", - "DE.Views.AddOther.textAddComment": "Pridať komentár", - "DE.Views.AddOther.textAddLink": "Pridať odkaz", - "DE.Views.AddOther.textBack": "Späť", - "DE.Views.AddOther.textCenterBottom": "Dole uprostred", - "DE.Views.AddOther.textCenterTop": "Centrovať nahor", - "DE.Views.AddOther.textColumnBreak": "Príznak nového stĺpca", - "DE.Views.AddOther.textComment": "Komentár", - "DE.Views.AddOther.textContPage": "Neprerušovaná strana", - "DE.Views.AddOther.textCurrentPos": "Aktuálna pozícia", - "DE.Views.AddOther.textDisplay": "Zobraziť", - "DE.Views.AddOther.textDone": "Hotovo", - "DE.Views.AddOther.textEvenPage": "Párna stránka", - "DE.Views.AddOther.textFootnote": "Poznámka pod čiarou", - "DE.Views.AddOther.textFormat": "Formát", - "DE.Views.AddOther.textInsert": "Vložiť", - "DE.Views.AddOther.textInsertFootnote": "Vložiť poznámku pod čiarou", - "DE.Views.AddOther.textLeftBottom": "Vľavo dole", - "DE.Views.AddOther.textLeftTop": "Vľavo hore", - "DE.Views.AddOther.textLink": "Odkaz", - "DE.Views.AddOther.textLocation": "Umiestnenie", - "DE.Views.AddOther.textNextPage": "Ďalšia stránka", - "DE.Views.AddOther.textOddPage": "Nepárna strana", - "DE.Views.AddOther.textPageBreak": "Oddeľovač stránky/zlom strany", - "DE.Views.AddOther.textPageNumber": "Číslo strany", - "DE.Views.AddOther.textPosition": "Pozícia", - "DE.Views.AddOther.textRightBottom": "Vpravo dole", - "DE.Views.AddOther.textRightTop": "Vpravo hore", - "DE.Views.AddOther.textSectionBreak": "Koniec odseku", - "DE.Views.AddOther.textStartFrom": "Začať na", - "DE.Views.AddOther.textTip": "Nápoveda", - "DE.Views.EditChart.textAddCustomColor": "Pridať vlastnú farbu", - "DE.Views.EditChart.textAlign": "Zarovnať", - "DE.Views.EditChart.textBack": "Späť", - "DE.Views.EditChart.textBackward": "Posunúť späť", - "DE.Views.EditChart.textBehind": "Za", - "DE.Views.EditChart.textBorder": "Orámovanie", - "DE.Views.EditChart.textColor": "Farba", - "DE.Views.EditChart.textCustomColor": "Vlastná farba", - "DE.Views.EditChart.textDistanceText": "Vzdialenosť od textu", - "DE.Views.EditChart.textFill": "Vyplniť", - "DE.Views.EditChart.textForward": "Posunúť vpred", - "DE.Views.EditChart.textInFront": "vpredu", - "DE.Views.EditChart.textInline": "Zarovno s textom", - "DE.Views.EditChart.textMoveText": "Presunúť s textom", - "DE.Views.EditChart.textOverlap": "Povoliť prekrývanie", - "DE.Views.EditChart.textRemoveChart": "Odstrániť graf", - "DE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia", - "DE.Views.EditChart.textSize": "Veľkosť", - "DE.Views.EditChart.textSquare": "Štvorec", - "DE.Views.EditChart.textStyle": "Štýl", - "DE.Views.EditChart.textThrough": "Cez", - "DE.Views.EditChart.textTight": "Tesný", - "DE.Views.EditChart.textToBackground": "Presunúť do pozadia", - "DE.Views.EditChart.textToForeground": "Premiestniť do popredia", - "DE.Views.EditChart.textTopBottom": "Hore a dole", - "DE.Views.EditChart.textType": "Typ", - "DE.Views.EditChart.textWrap": "Zabaliť", - "DE.Views.EditHeader.textDiffFirst": "Odlišná prvá stránka", - "DE.Views.EditHeader.textDiffOdd": "Rozdielne nepárne a párne stránky", - "DE.Views.EditHeader.textFrom": "Začať na", - "DE.Views.EditHeader.textPageNumbering": "Číslovanie strany", - "DE.Views.EditHeader.textPrev": "Pokračovať z predošlej sekcie", - "DE.Views.EditHeader.textSameAs": "Odkaz na predchádzajúci", - "DE.Views.EditHyperlink.textDisplay": "Zobraziť", - "DE.Views.EditHyperlink.textEdit": "Upraviť odkaz", - "DE.Views.EditHyperlink.textLink": "Odkaz", - "DE.Views.EditHyperlink.textRemove": "Odstrániť odkaz", - "DE.Views.EditHyperlink.textTip": "Nápoveda", - "DE.Views.EditImage.textAddress": "Adresa", - "DE.Views.EditImage.textAlign": "Zarovnať", - "DE.Views.EditImage.textBack": "Späť", - "DE.Views.EditImage.textBackward": "Posunúť späť", - "DE.Views.EditImage.textBehind": "Za", - "DE.Views.EditImage.textDefault": "Aktuálna veľkosť", - "DE.Views.EditImage.textDistanceText": "Vzdialenosť od textu", - "DE.Views.EditImage.textForward": "Posunúť vpred", - "DE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice", - "DE.Views.EditImage.textFromURL": "Obrázok z URL adresy", - "DE.Views.EditImage.textImageURL": "URL obrázka", - "DE.Views.EditImage.textInFront": "vpredu", - "DE.Views.EditImage.textInline": "Zarovno s textom", - "DE.Views.EditImage.textLinkSettings": "Nastavenia odkazu", - "DE.Views.EditImage.textMoveText": "Presunúť s textom", - "DE.Views.EditImage.textOverlap": "Povoliť prekrývanie", - "DE.Views.EditImage.textRemove": "Odstrániť obrázok", - "DE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia", - "DE.Views.EditImage.textReplace": "Nahradiť", - "DE.Views.EditImage.textReplaceImg": "Nahradiť obrázok", - "DE.Views.EditImage.textSquare": "Štvorec", - "DE.Views.EditImage.textThrough": "Cez", - "DE.Views.EditImage.textTight": "Tesný", - "DE.Views.EditImage.textToBackground": "Presunúť do pozadia", - "DE.Views.EditImage.textToForeground": "Premiestniť do popredia", - "DE.Views.EditImage.textTopBottom": "Hore a dole", - "DE.Views.EditImage.textWrap": "Zabaliť", - "DE.Views.EditParagraph.textAddCustomColor": "Pridať vlastnú farbu", - "DE.Views.EditParagraph.textAdvanced": "Pokročilé", - "DE.Views.EditParagraph.textAdvSettings": "Pokročilé nastavenia", - "DE.Views.EditParagraph.textAfter": "Po", - "DE.Views.EditParagraph.textAuto": "Automaticky", - "DE.Views.EditParagraph.textBack": "Späť", - "DE.Views.EditParagraph.textBackground": "Pozadie", - "DE.Views.EditParagraph.textBefore": "Pred", - "DE.Views.EditParagraph.textCustomColor": "Vlastná farba", - "DE.Views.EditParagraph.textFirstLine": "Prvý riadok", - "DE.Views.EditParagraph.textFromText": "Vzdialenosť od textu", - "DE.Views.EditParagraph.textKeepLines": "Zviazať riadky dohromady", - "DE.Views.EditParagraph.textKeepNext": "Zviazať s nasledujúcim", - "DE.Views.EditParagraph.textOrphan": "Kontrola osamotených riadkov", - "DE.Views.EditParagraph.textPageBreak": "Zlom strany pred", - "DE.Views.EditParagraph.textPrgStyles": "Štýly odsekov", - "DE.Views.EditParagraph.textSpaceBetween": "Medzera medzi odsekmi", - "DE.Views.EditShape.textAddCustomColor": "Pridať vlastnú farbu", - "DE.Views.EditShape.textAlign": "Zarovnať", - "DE.Views.EditShape.textBack": "Späť", - "DE.Views.EditShape.textBackward": "Posunúť späť", - "DE.Views.EditShape.textBehind": "Za", - "DE.Views.EditShape.textBorder": "Orámovanie", - "DE.Views.EditShape.textColor": "Farba", - "DE.Views.EditShape.textCustomColor": "Vlastná farba", - "DE.Views.EditShape.textEffects": "Efekty", - "DE.Views.EditShape.textFill": "Vyplniť", - "DE.Views.EditShape.textForward": "Posunúť vpred", - "DE.Views.EditShape.textFromText": "Vzdialenosť od textu", - "DE.Views.EditShape.textInFront": "vpredu", - "DE.Views.EditShape.textInline": "Zarovno s textom", - "DE.Views.EditShape.textOpacity": "Priehľadnosť", - "DE.Views.EditShape.textOverlap": "Povoliť prekrývanie", - "DE.Views.EditShape.textRemoveShape": "Odstrániť tvar", - "DE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia", - "DE.Views.EditShape.textReplace": "Nahradiť", - "DE.Views.EditShape.textSize": "Veľkosť", - "DE.Views.EditShape.textSquare": "Štvorec", - "DE.Views.EditShape.textStyle": "Štýl", - "DE.Views.EditShape.textThrough": "Cez", - "DE.Views.EditShape.textTight": "Tesný", - "DE.Views.EditShape.textToBackground": "Presunúť do pozadia", - "DE.Views.EditShape.textToForeground": "Premiestniť do popredia", - "DE.Views.EditShape.textTopAndBottom": "Hore a dole", - "DE.Views.EditShape.textWithText": "Presunúť s textom", - "DE.Views.EditShape.textWrap": "Zabaliť", - "DE.Views.EditTable.textAddCustomColor": "Pridať vlastnú farbu", - "DE.Views.EditTable.textAlign": "Zarovnať", - "DE.Views.EditTable.textBack": "Späť", - "DE.Views.EditTable.textBandedColumn": "Pruhovaný stĺpec", - "DE.Views.EditTable.textBandedRow": "Pruhovaný riadok", - "DE.Views.EditTable.textBorder": "Orámovanie", - "DE.Views.EditTable.textCellMargins": "Okraje bunky", - "DE.Views.EditTable.textColor": "Farba", - "DE.Views.EditTable.textCustomColor": "Vlastná farba", - "DE.Views.EditTable.textFill": "Vyplniť", - "DE.Views.EditTable.textFirstColumn": "Prvý stĺpec", - "DE.Views.EditTable.textFlow": "Prietok", - "DE.Views.EditTable.textFromText": "Vzdialenosť od textu", - "DE.Views.EditTable.textHeaderRow": "Riadok hlavičky", - "DE.Views.EditTable.textInline": "Zarovno s textom", - "DE.Views.EditTable.textLastColumn": "Posledný stĺpec", - "DE.Views.EditTable.textOptions": "Možnosti", - "DE.Views.EditTable.textRemoveTable": "Odstrániť tabuľku", - "DE.Views.EditTable.textRepeatHeader": "Opakovať ako riadok záhlavia", - "DE.Views.EditTable.textResizeFit": "Zmeniť veľkosť na prispôsobenie obsahu", - "DE.Views.EditTable.textSize": "Veľkosť", - "DE.Views.EditTable.textStyle": "Štýl", - "DE.Views.EditTable.textStyleOptions": "Možnosti štýlu", - "DE.Views.EditTable.textTableOptions": "Možnosti tabuľky", - "DE.Views.EditTable.textTotalRow": "Celkový riadok", - "DE.Views.EditTable.textWithText": "Presunúť s textom", - "DE.Views.EditTable.textWrap": "Zabaliť", - "DE.Views.EditText.textAddCustomColor": "Pridať vlastnú farbu", - "DE.Views.EditText.textAdditional": "Ďalšie", - "DE.Views.EditText.textAdditionalFormat": "Ďalšie formátovanie", - "DE.Views.EditText.textAllCaps": "Všetko veľkými", - "DE.Views.EditText.textAutomatic": "Automaticky", - "DE.Views.EditText.textBack": "Späť", - "DE.Views.EditText.textBullets": "Odrážky", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "S", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Vlastná farba", - "DE.Views.EditText.textDblStrikethrough": "Dvojité preškrtnutie", - "DE.Views.EditText.textDblSuperscript": "Horný index", - "DE.Views.EditText.textFontColor": "Farba písma", - "DE.Views.EditText.textFontColors": "Farby písma", - "DE.Views.EditText.textFonts": "Písma", - "DE.Views.EditText.textHighlightColor": "Farba zvýraznenia", - "DE.Views.EditText.textHighlightColors": "Farby zvýraznenia", - "DE.Views.EditText.textLetterSpacing": "Rozstup medzi písmenami", - "DE.Views.EditText.textLineSpacing": "Riadkovanie", - "DE.Views.EditText.textNone": "žiadny", - "DE.Views.EditText.textNumbers": "Čísla", - "DE.Views.EditText.textSize": "Veľkosť", - "DE.Views.EditText.textSmallCaps": "Malé písmená", - "DE.Views.EditText.textStrikethrough": "Prečiarknuť", - "DE.Views.EditText.textSubscript": "Dolný index", - "DE.Views.Search.textCase": "Rozlišovať veľkosť písmen", - "DE.Views.Search.textDone": "Hotovo", - "DE.Views.Search.textFind": "Nájsť", - "DE.Views.Search.textFindAndReplace": "Nájsť a nahradiť", - "DE.Views.Search.textHighlight": "Zvýrazniť výsledky", - "DE.Views.Search.textReplace": "Nahradiť", - "DE.Views.Search.textSearch": "Hľadať", - "DE.Views.Settings.textAbout": "O aplikácii", - "DE.Views.Settings.textAddress": "adresa", - "DE.Views.Settings.textAdvancedSettings": "Nastavenia aplikácie", - "DE.Views.Settings.textApplication": "Aplikácia", - "DE.Views.Settings.textAuthor": "Autor", - "DE.Views.Settings.textBack": "Späť", - "DE.Views.Settings.textBottom": "Dole", - "DE.Views.Settings.textCentimeter": "Centimeter", - "DE.Views.Settings.textCollaboration": "Spolupráca", - "DE.Views.Settings.textColorSchemes": "Farebné schémy", - "DE.Views.Settings.textComment": "Komentár", - "DE.Views.Settings.textCommentingDisplay": "Zobrazenie komentárov", - "DE.Views.Settings.textCreated": "Vytvorené", - "DE.Views.Settings.textCreateDate": "Dátum vytvorenia", - "DE.Views.Settings.textCustom": "Vlastný", - "DE.Views.Settings.textCustomSize": "Vlastná veľkosť", - "DE.Views.Settings.textDisableAll": "Všetko zablokovať", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Zablokovať všetky makrá s upozornením", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Zablokovať všetky makrá bez upozornenia", - "DE.Views.Settings.textDisplayComments": "Komentáre", - "DE.Views.Settings.textDisplayResolvedComments": "Vyriešené komentáre", - "DE.Views.Settings.textDocInfo": "Informácie o dokumente", - "DE.Views.Settings.textDocTitle": "Názov dokumentu", - "DE.Views.Settings.textDocumentFormats": "Formáty dokumentu", - "DE.Views.Settings.textDocumentSettings": "Nastavenia dokumentu", - "DE.Views.Settings.textDone": "Hotovo", - "DE.Views.Settings.textDownload": "Stiahnuť", - "DE.Views.Settings.textDownloadAs": "Stiahnuť ako...", - "DE.Views.Settings.textEditDoc": "Upraviť dokument", - "DE.Views.Settings.textEmail": "E-mail", - "DE.Views.Settings.textEnableAll": "Umožniť všetko", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Umožniť všetky makrá bez oznámenia", - "DE.Views.Settings.textFind": "Nájsť", - "DE.Views.Settings.textFindAndReplace": "Nájsť a nahradiť", - "DE.Views.Settings.textFormat": "Formát", - "DE.Views.Settings.textHelp": "Pomoc", - "DE.Views.Settings.textHiddenTableBorders": "Skryté orámovania tabuľky", - "DE.Views.Settings.textInch": "Palec", - "DE.Views.Settings.textLandscape": "Na šírku", - "DE.Views.Settings.textLastModified": "Naposledy upravené", - "DE.Views.Settings.textLastModifiedBy": "Naposledy upravené ", - "DE.Views.Settings.textLeft": "Vľavo", - "DE.Views.Settings.textLoading": "Nahrávanie...", - "DE.Views.Settings.textLocation": "Umiestnenie", - "DE.Views.Settings.textMacrosSettings": "Nastavenia makier", - "DE.Views.Settings.textMargins": "Okraje", - "DE.Views.Settings.textNoCharacters": "Formátovacie značky", - "DE.Views.Settings.textOrientation": "Orientácia", - "DE.Views.Settings.textOwner": "Majiteľ", - "DE.Views.Settings.textPages": "Strany", - "DE.Views.Settings.textParagraphs": "Odseky", - "DE.Views.Settings.textPoint": "Bod", - "DE.Views.Settings.textPortrait": "Na výšku", - "DE.Views.Settings.textPoweredBy": "Poháňaný ", - "DE.Views.Settings.textPrint": "Tlačiť", - "DE.Views.Settings.textReader": "Režim Čitateľ", - "DE.Views.Settings.textReview": "Sledovať zmeny", - "DE.Views.Settings.textRight": "Vpravo", - "DE.Views.Settings.textSettings": "Nastavenia", - "DE.Views.Settings.textShowNotification": "Ukázať oznámenie", - "DE.Views.Settings.textSpaces": "Medzery", - "DE.Views.Settings.textSpellcheck": "Kontrola pravopisu", - "DE.Views.Settings.textStatistic": "Štatistický", - "DE.Views.Settings.textSubject": "Predmet", - "DE.Views.Settings.textSymbols": "Symboly", - "DE.Views.Settings.textTel": "Tel", - "DE.Views.Settings.textTitle": "Názov dokumentu", - "DE.Views.Settings.textTop": "Hore", - "DE.Views.Settings.textUnitOfMeasurement": "Jednotka merania", - "DE.Views.Settings.textUploaded": "Nahratý", - "DE.Views.Settings.textVersion": "Verzia", - "DE.Views.Settings.textWords": "Slová", - "DE.Views.Settings.unknownText": "Neznámy", - "DE.Views.Toolbar.textBack": "Späť" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/sl.json b/apps/documenteditor/mobile/locale/sl.json index b2e049844..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/sl.json +++ b/apps/documenteditor/mobile/locale/sl.json @@ -1,556 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Dodaj odgovor", - "Common.Controllers.Collaboration.textAtLeast": "minimalno", - "Common.Controllers.Collaboration.textAuto": "Samodejno", - "Common.Controllers.Collaboration.textBaseline": "Osnovna linija", - "Common.Controllers.Collaboration.textBold": "Krepko", - "Common.Controllers.Collaboration.textBreakBefore": "Prelom strani pred", - "Common.Controllers.Collaboration.textCancel": "Prekliči", - "Common.Controllers.Collaboration.textCaps": "Vse z veliko", - "Common.Controllers.Collaboration.textCenter": "Poravnava na sredino", - "Common.Controllers.Collaboration.textChart": "Graf", - "Common.Controllers.Collaboration.textColor": "Barva pisave", - "Common.Controllers.Collaboration.textContextual": "Ne dodajte intervala med odstavki istega sloga", - "Common.Controllers.Collaboration.textDelete": "Izbriši", - "Common.Controllers.Collaboration.textDeleteComment": "Izbriši komentar", - "Common.Controllers.Collaboration.textDeleted": "Izbrisano:", - "Common.Controllers.Collaboration.textDeleteReply": "Izbriši odgovor", - "Common.Controllers.Collaboration.textDone": "Končano", - "Common.Controllers.Collaboration.textDStrikeout": "Dvojno podčrtavanje", - "Common.Controllers.Collaboration.textEdit": "Uredi", - "Common.Controllers.Collaboration.textEquation": "Enačba", - "Common.Controllers.Collaboration.textExact": "točno", - "Common.Controllers.Collaboration.textFirstLine": "Prva vrstica", - "Common.Controllers.Collaboration.textFormatted": "Oblikovano", - "Common.Controllers.Collaboration.textHighlight": "Označi barvo", - "Common.Controllers.Collaboration.textImage": "Slika", - "Common.Controllers.Collaboration.textInserted": "Vstavljeno:", - "Common.Controllers.Collaboration.textItalic": "Ležeče", - "Common.Controllers.Collaboration.textJustify": "Poravnava obojestransko", - "Common.Controllers.Collaboration.textKeepLines": "Linije ohrani skupaj", - "Common.Controllers.Collaboration.textKeepNext": "Ohrani z naslednjim", - "Common.Controllers.Collaboration.textLeft": "Poravnaj levo", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Ste prepričani da želite izbrisati ta komentar?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Želite res izbrisati ta odgovor?", - "Common.Controllers.Collaboration.textMultiple": "Večkratno", - "Common.Controllers.Collaboration.textNoChanges": "Tukaj ni sprememb.", - "Common.Controllers.Collaboration.textNoContextual": "Dodajte interval med odstavki istega sloga", - "Common.Controllers.Collaboration.textNoKeepNext": "Ne nadaljuj z naslednjim", - "Common.Controllers.Collaboration.textNot": "Ne", - "Common.Controllers.Collaboration.textNum": "Spremeni oštevilčevanje", - "Common.Controllers.Collaboration.textParaDeleted": "Odstavek je izbrisan", - "Common.Controllers.Collaboration.textParaFormatted": "Oblikovanje odstavka", - "Common.Controllers.Collaboration.textParaInserted": "Odstavek vstavljen ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Premaknjeno navzdol:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Premakni se navzgor", - "Common.Controllers.Collaboration.textParaMoveTo": "Premakni:", - "Common.Controllers.Collaboration.textPosition": "Položaj", - "Common.Controllers.Collaboration.textReopen": "Ponovno odpri", - "Common.Controllers.Collaboration.textResolve": "Razreši", - "Common.Controllers.Collaboration.textRight": "Poravnaj desno", - "Common.Controllers.Collaboration.textShape": "Oblika", - "Common.Controllers.Collaboration.textShd": "Barva ozadja", - "Common.Controllers.Collaboration.textSmallCaps": "Male črke", - "Common.Controllers.Collaboration.textSpacing": "Razmik", - "Common.Controllers.Collaboration.textSpacingAfter": "Razmik pred", - "Common.Controllers.Collaboration.textSpacingBefore": "Razmik za", - "Common.Controllers.Collaboration.textStrikeout": "Prečrtano", - "Common.Controllers.Collaboration.textSubScript": "Podpisano", - "Common.Controllers.Collaboration.textSuperScript": "Nadpisano", - "Common.Controllers.Collaboration.textTableChanged": "Nastavitve tabele so se spremenile ", - "Common.Controllers.Collaboration.textTableRowsAdd": "Dodan stolpec v tabelo", - "Common.Controllers.Collaboration.textTableRowsDel": "Vrstica tabele je izbrisana", - "Common.Controllers.Collaboration.textUnderline": "Podčrtaj", - "Common.Controllers.Collaboration.textYes": "Da", - "Common.UI.ThemeColorPalette.textCustomColors": "Barve po meri", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardne barve", - "Common.UI.ThemeColorPalette.textThemeColors": "Barve teme", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAccept": "Sprejmi", - "Common.Views.Collaboration.textAcceptAllChanges": "Sprejmi vse spremembe", - "Common.Views.Collaboration.textAddReply": "Dodaj odgovor", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Vse spremembe so sprejete (Predogled)", - "Common.Views.Collaboration.textAllChangesEditing": "Vse spremembe (urejanje)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Vse spremembe zavrnjene (Predogled)", - "Common.Views.Collaboration.textBack": "Nazaj", - "Common.Views.Collaboration.textCancel": "Prekliči", - "Common.Views.Collaboration.textCollaboration": "Skupinsko delo", - "Common.Views.Collaboration.textDisplayMode": "Način pogleda", - "Common.Views.Collaboration.textDone": "Končano", - "Common.Views.Collaboration.textEditReply": "Uredi odgovor", - "Common.Views.Collaboration.textEditUsers": "Uporabniki", - "Common.Views.Collaboration.textEditСomment": "Uredi komentar", - "Common.Views.Collaboration.textFinal": "Končno", - "Common.Views.Collaboration.textMarkup": "Označevanje", - "Common.Views.Collaboration.textNoComments": "Ta datoteka ne vsebuje komentarjev", - "Common.Views.Collaboration.textOriginal": "Original", - "Common.Views.Collaboration.textReject": "Zavrni", - "Common.Views.Collaboration.textRejectAllChanges": "Zavrni vse spremembe", - "Common.Views.Collaboration.textReview": "Sledi spremembam", - "Common.Views.Collaboration.textReviewing": "Pregled", - "Common.Views.Collaboration.textСomments": "Komentarji", - "DE.Controllers.AddContainer.textImage": "Slika", - "DE.Controllers.AddContainer.textOther": "Drugo", - "DE.Controllers.AddContainer.textShape": "Oblika", - "DE.Controllers.AddContainer.textTable": "Tabela", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Opozorilo", - "DE.Controllers.AddImage.textEmptyImgUrl": "Določiti morate URL slike.", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Opozorilo", - "DE.Controllers.AddOther.textBelowText": "Pod besedilo", - "DE.Controllers.AddOther.textBottomOfPage": "Konec strani", - "DE.Controllers.AddOther.textCancel": "Prekliči", - "DE.Controllers.AddOther.textContinue": "Nadaljuj", - "DE.Controllers.AddOther.textDelete": "Izbriši", - "DE.Controllers.AddOther.textDeleteDraft": "Ali res želite izbrisati osnutek?", - "DE.Controllers.AddTable.textCancel": "Prekliči", - "DE.Controllers.AddTable.textColumns": "Stolpci", - "DE.Controllers.AddTable.textRows": "Vrstice", - "DE.Controllers.AddTable.textTableSize": "Velikost tabele", - "DE.Controllers.DocumentHolder.menuAddComment": "Dodaj komentar", - "DE.Controllers.DocumentHolder.menuAddLink": "Dodaj povezavo", - "DE.Controllers.DocumentHolder.menuCopy": "Kopiraj", - "DE.Controllers.DocumentHolder.menuCut": "Izreži", - "DE.Controllers.DocumentHolder.menuDelete": "Izbriši", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Izbriši tabelo", - "DE.Controllers.DocumentHolder.menuEdit": "Uredi", - "DE.Controllers.DocumentHolder.menuMerge": "Združi celice", - "DE.Controllers.DocumentHolder.menuMore": "Več", - "DE.Controllers.DocumentHolder.menuOpenLink": "Odpri povezavo", - "DE.Controllers.DocumentHolder.menuPaste": "Prilepi", - "DE.Controllers.DocumentHolder.menuReview": "Pregled", - "DE.Controllers.DocumentHolder.menuSplit": "Razdeli celico", - "DE.Controllers.DocumentHolder.menuViewComment": "Ogled komentarja", - "DE.Controllers.DocumentHolder.sheetCancel": "Prekliči", - "DE.Controllers.DocumentHolder.textCancel": "Prekliči", - "DE.Controllers.DocumentHolder.textColumns": "Stolpci", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Kopiraj, izreži in prilepi dejanja", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne pokaži znova", - "DE.Controllers.DocumentHolder.textGuest": "Gost", - "DE.Controllers.DocumentHolder.textRows": "Vrstice", - "DE.Controllers.EditContainer.textChart": "Graf", - "DE.Controllers.EditContainer.textFooter": "Noga", - "DE.Controllers.EditContainer.textHeader": "Glava", - "DE.Controllers.EditContainer.textHyperlink": "Hiperpovezava", - "DE.Controllers.EditContainer.textImage": "Slika", - "DE.Controllers.EditContainer.textParagraph": "Odstavek", - "DE.Controllers.EditContainer.textSettings": "Nastavitve", - "DE.Controllers.EditContainer.textShape": "Oblika", - "DE.Controllers.EditContainer.textTable": "Tabela", - "DE.Controllers.EditContainer.textText": "Besedilo", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Opozorilo", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Določiti morate URL slike.", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Opozorilo", - "DE.Controllers.EditImage.textEmptyImgUrl": "Določiti morate URL slike.", - "DE.Controllers.EditText.textAuto": "Samodejno", - "DE.Controllers.EditText.textFonts": "Fonti", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Vnesite geslo:", - "DE.Controllers.Main.advDRMOptions": "Zaščitena datoteka", - "DE.Controllers.Main.advDRMPassword": "Geslo", - "DE.Controllers.Main.advTxtOptions": "Izberite opcijo za TXT datoteke", - "DE.Controllers.Main.applyChangesTextText": "Nalaganje podatkov ...", - "DE.Controllers.Main.applyChangesTitleText": "Nalaganje podatkov", - "DE.Controllers.Main.closeButtonText": "Zapri datoteko", - "DE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.", - "DE.Controllers.Main.criticalErrorExtText": "Pritisnite »V redu«, da se vrnete na seznam dokumentov.", - "DE.Controllers.Main.criticalErrorTitle": "Napaka", - "DE.Controllers.Main.downloadErrorText": "Prenos ni uspel.", - "DE.Controllers.Main.downloadMergeText": "Prenašanje ...", - "DE.Controllers.Main.downloadMergeTitle": "Prenašanje", - "DE.Controllers.Main.downloadTextText": "Prenašanje dokumenta ...", - "DE.Controllers.Main.downloadTitleText": "Prenašanje dokumenta", - "DE.Controllers.Main.errorAccessDeny": "Poskušate izvesti dejanje, za katerega nimate pravic.
    Obrnite se na skrbnika strežnika dokumentov.", - "DE.Controllers.Main.errorBadImageUrl": "URL slike je napačen", - "DE.Controllers.Main.errorConnectToServer": "Dokumenta ni bilo mogoče shraniti. Preverite nastavitve povezave ali se obrnite na skrbnika.
    Ko kliknete gumb »V redu«, boste pozvani, da prenesete dokument.", - "DE.Controllers.Main.errorDatabaseConnection": "Zunanje težave.
    Težave s povezavo s podatkovno bazo. Prosimo kontaktirajte podporo.", - "DE.Controllers.Main.errorDataEncrypted": "Prejete so šifrirane spremembe, ki jih ni mogoče razvozlati.", - "DE.Controllers.Main.errorDataRange": "Nepravilen obseg podatkov.", - "DE.Controllers.Main.errorDefaultMessage": "Koda napake: %1", - "DE.Controllers.Main.errorFilePassProtect": "Dokument je zaščiten z geslom in ga ni mogoče odpreti.", - "DE.Controllers.Main.errorFileSizeExceed": "Velikost datoteke presega omejitev, nastavljeno za vaš strežnik.
    Za podrobnosti se obrnite na skrbnika strežnika dokumentov.", - "DE.Controllers.Main.errorKeyEncrypt": "Neznan ključni deskriptor", - "DE.Controllers.Main.errorKeyExpire": "Ključni deskriptor je potekel", - "DE.Controllers.Main.errorMailMergeLoadFile": "Nalaganje dokumenta ni uspelo. Izberite drugo datoteko.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Spajanje je neuspešno", - "DE.Controllers.Main.errorOpensource": "Z brezplačno različico Community lahko dokumente odprete samo za ogled. Za dostop do mobilnih spletnih urejevalnikov je potrebna komercialna licenca.", - "DE.Controllers.Main.errorProcessSaveResult": "Shranjevanje je bilo neuspešno.", - "DE.Controllers.Main.errorServerVersion": "Različica urejevalnika je posodobljena. Stran bo ponovno naložena, da bo spremenila spremembe.", - "DE.Controllers.Main.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
    otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", - "DE.Controllers.Main.errorUpdateVersion": "Različica datoteke je bila spremenjena. Stran bo osvežena.", - "DE.Controllers.Main.errorUserDrop": "Do datoteke v tem trenutku ni možno dostopati.", - "DE.Controllers.Main.errorUsersExceed": "Število uporabnikov je bilo preseženo", - "DE.Controllers.Main.leavePageText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", - "DE.Controllers.Main.loadFontsTextText": "Nalaganje podatkov ...", - "DE.Controllers.Main.loadFontsTitleText": "Nalaganje podatkov", - "DE.Controllers.Main.loadFontTextText": "Nalaganje podatkov ...", - "DE.Controllers.Main.loadFontTitleText": "Nalaganje podatkov", - "DE.Controllers.Main.loadImagesTextText": "Nalaganje slik ...", - "DE.Controllers.Main.loadImagesTitleText": "Nalaganje slik", - "DE.Controllers.Main.loadImageTextText": "Nalaganje slike ...", - "DE.Controllers.Main.loadImageTitleText": "Nalaganje slike", - "DE.Controllers.Main.loadingDocumentTextText": "Nalaganje dokumenta ...", - "DE.Controllers.Main.loadingDocumentTitleText": "Nalaganje dokumenta", - "DE.Controllers.Main.mailMergeLoadFileText": "Nalaganje vira podatkov ...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Nalaganje vira podatkov", - "DE.Controllers.Main.notcriticalErrorTitle": "Opozorilo", - "DE.Controllers.Main.openTextText": "Odpiranje dokumenta ...", - "DE.Controllers.Main.openTitleText": "Odpiranje dokumenta", - "DE.Controllers.Main.printTextText": "Tiskanje dokumenta ...", - "DE.Controllers.Main.printTitleText": "Tiskanje dokumenta", - "DE.Controllers.Main.savePreparingText": "Priprava za shranjevanje", - "DE.Controllers.Main.savePreparingTitle": "Priprava za shranjevanje. Prosim počakajte ...", - "DE.Controllers.Main.saveTextText": "Shranjevanje dokumenta ...", - "DE.Controllers.Main.saveTitleText": "Shranjevanje dokumenta", - "DE.Controllers.Main.scriptLoadError": "Povezava je počasna, nekatere komponente niso pravilno naložene. Prosimo osvežite stran.", - "DE.Controllers.Main.splitDividerErrorText": "Število vrstic mora biti deljivo s številom %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Število stolpcev mora biti manjše od %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Število vrstic mora biti manjše od %1", - "DE.Controllers.Main.textAnonymous": "Anonimno", - "DE.Controllers.Main.textBack": "Nazaj", - "DE.Controllers.Main.textBuyNow": "Obišči spletno mesto", - "DE.Controllers.Main.textCancel": "Prekliči", - "DE.Controllers.Main.textClose": "Zapri", - "DE.Controllers.Main.textContactUs": "Kontaktirajte oddelek za prodajo", - "DE.Controllers.Main.textDone": "Končano", - "DE.Controllers.Main.textHasMacros": "Ta datoteka vsebuje avtomatske makroje.
    Jih želite res zagnati.", - "DE.Controllers.Main.textLoadingDocument": "Nalaganje dokumenta", - "DE.Controllers.Main.textNo": "Ne", - "DE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave", - "DE.Controllers.Main.textOK": "V redu", - "DE.Controllers.Main.textPaidFeature": "Plačljive funkcije", - "DE.Controllers.Main.textPassword": "Geslo", - "DE.Controllers.Main.textPreloader": "Nalaganje ...", - "DE.Controllers.Main.textRemember": "Zapomni si mojo izbiro", - "DE.Controllers.Main.textTryUndoRedo": "Funkcije Undo / Redo so onemogočene za način hitrega urejanja.", - "DE.Controllers.Main.textUsername": "Uporabniško ime", - "DE.Controllers.Main.textYes": "Da", - "DE.Controllers.Main.titleLicenseExp": "Licenca je potekla", - "DE.Controllers.Main.titleServerVersion": "Urednik je bil posodobljen", - "DE.Controllers.Main.titleUpdateVersion": "Različica spremenjena", - "DE.Controllers.Main.txtArt": "Vaše besedilo pride tukaj.", - "DE.Controllers.Main.txtDiagramTitle": "Naslov grafa", - "DE.Controllers.Main.txtEditingMode": "Nastavi način urejanja ...", - "DE.Controllers.Main.txtFooter": "Noga", - "DE.Controllers.Main.txtHeader": "Glava", - "DE.Controllers.Main.txtProtected": "Ko vnesete geslo in odprete datoteko, bo trenutno geslo datoteke ponastavljeno", - "DE.Controllers.Main.txtSeries": "Niz", - "DE.Controllers.Main.txtStyle_footnote_text": "Besedilo sprotne opombe", - "DE.Controllers.Main.txtStyle_Heading_1": "Naslov 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Naslov 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Naslov 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Naslov 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Naslov 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Naslov 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Naslov 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Naslov 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Naslov 9", - "DE.Controllers.Main.txtStyle_No_Spacing": "Brez razmika", - "DE.Controllers.Main.txtStyle_Normal": "Normalno", - "DE.Controllers.Main.txtStyle_Quote": "Citiraj", - "DE.Controllers.Main.txtStyle_Subtitle": "Podnaslov", - "DE.Controllers.Main.txtStyle_Title": "Naslov", - "DE.Controllers.Main.txtXAxis": "X os", - "DE.Controllers.Main.txtYAxis": "Y os", - "DE.Controllers.Main.unknownErrorText": "Neznana napaka.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Vaš brskalnik ni podprt.", - "DE.Controllers.Main.uploadImageExtMessage": "Neznan format slike.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Ni naloženih slik.", - "DE.Controllers.Main.uploadImageSizeMessage": "Maksimalni limit velikosti slike je presežen.", - "DE.Controllers.Main.uploadImageTextText": "Nalaganje slike ...", - "DE.Controllers.Main.uploadImageTitleText": "Nalaganje slike", - "DE.Controllers.Main.waitText": "Prosimo počakajte ...", - "DE.Controllers.Main.warnLicenseExceeded": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
    Če želite izvedeti več, se obrnite na skrbnika.", - "DE.Controllers.Main.warnLicenseExp": "Vaša licnenca je potekla.
    Prosimo nadgradite licenco in osvežite stran.", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Dosegli ste omejitev uporabnikov za %1 urednike. Če želite izvedeti več, se obrnite na skrbnika.", - "DE.Controllers.Main.warnNoLicense": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
    Za osebne pogoje nadgradnje se obrnite na %1 prodajno ekipo.", - "DE.Controllers.Main.warnNoLicenseUsers": "Dosegli ste omejitev uporabnika za %1 urednike. Za osebne pogoje nadgradnje se obrnite na %1 prodajno ekipo.", - "DE.Controllers.Main.warnProcessRightsChange": "Pravica, da urejate datoteko je bila zavrnjena.", - "DE.Controllers.Search.textNoTextFound": "Besedila ni mogoče najti", - "DE.Controllers.Search.textReplaceAll": "Zamenjaj vse", - "DE.Controllers.Settings.notcriticalErrorTitle": "Opozorilo", - "DE.Controllers.Settings.textCustomSize": "Velikost po meri", - "DE.Controllers.Settings.txtLoading": "Nalaganje ...", - "DE.Controllers.Settings.unknownText": "Neznan", - "DE.Controllers.Settings.warnDownloadAs": "Če boste nadaljevali s shranjevanje v tem formatu bodo vse funkcije razen besedila izgubljene.
    Ste prepričani, da želite nadaljevati?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Zapuščate aplikacijo", - "DE.Controllers.Toolbar.leaveButtonText": "Zapusti to stran", - "DE.Controllers.Toolbar.stayButtonText": "Ostani na tej strani", - "DE.Views.AddImage.textAddress": "Naslov", - "DE.Views.AddImage.textBack": "Nazaj", - "DE.Views.AddImage.textFromLibrary": "Slika iz knjižnice", - "DE.Views.AddImage.textFromURL": "Slika iz URL", - "DE.Views.AddImage.textImageURL": "URL naslov slike", - "DE.Views.AddImage.textInsertImage": "Vstavi sliko", - "DE.Views.AddImage.textLinkSettings": "Nastavitve pozevave", - "DE.Views.AddOther.textAddComment": "Dodaj komentar", - "DE.Views.AddOther.textAddLink": "Dodaj povezavo", - "DE.Views.AddOther.textBack": "Nazaj", - "DE.Views.AddOther.textBreak": "Prelom", - "DE.Views.AddOther.textCenterBottom": "Sredina spodaj", - "DE.Views.AddOther.textCenterTop": "Sredina zgoraj", - "DE.Views.AddOther.textColumnBreak": "Prelom stolpca", - "DE.Views.AddOther.textComment": "Komentar", - "DE.Views.AddOther.textContPage": "Nadaljuj stran", - "DE.Views.AddOther.textCurrentPos": "Trenutna pozicija", - "DE.Views.AddOther.textDisplay": "Prikaži", - "DE.Views.AddOther.textDone": "Končano", - "DE.Views.AddOther.textEvenPage": "Soda stran", - "DE.Views.AddOther.textFootnote": "Sprotna opomba", - "DE.Views.AddOther.textFormat": "Format", - "DE.Views.AddOther.textInsert": "Vstavi", - "DE.Views.AddOther.textInsertFootnote": "Vstavi sprotno opombo", - "DE.Views.AddOther.textLeftBottom": "Levo spodaj", - "DE.Views.AddOther.textLeftTop": "Levo zgoraj", - "DE.Views.AddOther.textLink": "Povezava", - "DE.Views.AddOther.textLocation": "Lokacija", - "DE.Views.AddOther.textNextPage": "Naslednja stran", - "DE.Views.AddOther.textOddPage": "Liha stran", - "DE.Views.AddOther.textPageBreak": "Prelom strani", - "DE.Views.AddOther.textPageNumber": "Številka strani", - "DE.Views.AddOther.textPosition": "Položaj", - "DE.Views.AddOther.textRightBottom": "Desno spodaj", - "DE.Views.AddOther.textRightTop": "Desno zgoraj", - "DE.Views.AddOther.textSectionBreak": "Prelom sekcije", - "DE.Views.AddOther.textStartFrom": "Začni pri", - "DE.Views.AddOther.textTip": "Nasvet", - "DE.Views.EditChart.textAddCustomColor": "Dodaj barvo po meri", - "DE.Views.EditChart.textAlign": "Poravnava", - "DE.Views.EditChart.textBack": "Nazaj", - "DE.Views.EditChart.textBackward": "Premakni nazaj", - "DE.Views.EditChart.textBehind": "Za", - "DE.Views.EditChart.textBorder": "Obrobe", - "DE.Views.EditChart.textColor": "Barva", - "DE.Views.EditChart.textCustomColor": "Barva po meri", - "DE.Views.EditChart.textDistanceText": "Oddaljenost od besedila", - "DE.Views.EditChart.textFill": "Zapolni", - "DE.Views.EditChart.textForward": "Premakni naprej", - "DE.Views.EditChart.textInFront": "v ospredju", - "DE.Views.EditChart.textInline": "V vrstici", - "DE.Views.EditChart.textMoveText": "Premakni z besedilom", - "DE.Views.EditChart.textOverlap": "Dovoli prekrivanje", - "DE.Views.EditChart.textRemoveChart": "Odstrni graf", - "DE.Views.EditChart.textReorder": "Preuredi", - "DE.Views.EditChart.textSize": "Velikost", - "DE.Views.EditChart.textSquare": "Kvadrat", - "DE.Views.EditChart.textStyle": "Slog", - "DE.Views.EditChart.textThrough": "Preko", - "DE.Views.EditChart.textTight": "Tesen", - "DE.Views.EditChart.textToBackground": "Pošlji v ozadje", - "DE.Views.EditChart.textToForeground": "Premakni v ospredje", - "DE.Views.EditChart.textTopBottom": "Vrh in dno", - "DE.Views.EditChart.textType": "Tip", - "DE.Views.EditHeader.textDiffFirst": "Različna prva stran", - "DE.Views.EditHeader.textDiffOdd": "Različne sode in lihe strani", - "DE.Views.EditHeader.textFrom": "Začni pri", - "DE.Views.EditHeader.textPageNumbering": "Oštevilčevanje strani", - "DE.Views.EditHeader.textSameAs": "Povezava k prejšnji", - "DE.Views.EditHyperlink.textDisplay": "Prikaži", - "DE.Views.EditHyperlink.textEdit": "Uredi povezavo", - "DE.Views.EditHyperlink.textLink": "Povezava", - "DE.Views.EditHyperlink.textRemove": "Odstrani povezavo", - "DE.Views.EditHyperlink.textTip": "Nasvet", - "DE.Views.EditImage.textAddress": "Naslov", - "DE.Views.EditImage.textAlign": "Poravnava", - "DE.Views.EditImage.textBack": "Nazaj", - "DE.Views.EditImage.textBackward": "Premakni nazaj", - "DE.Views.EditImage.textBehind": "Za", - "DE.Views.EditImage.textDefault": "Dejanska velikost", - "DE.Views.EditImage.textDistanceText": "Oddaljenost od besedila", - "DE.Views.EditImage.textForward": "Premakni naprej", - "DE.Views.EditImage.textFromLibrary": "Slika iz knjižnice", - "DE.Views.EditImage.textFromURL": "Slika iz URL", - "DE.Views.EditImage.textImageURL": "URL naslov slike", - "DE.Views.EditImage.textInFront": "v ospredju", - "DE.Views.EditImage.textInline": "V vrstici", - "DE.Views.EditImage.textLinkSettings": "Nastavitve povezave", - "DE.Views.EditImage.textMoveText": "Premakni z besedilom", - "DE.Views.EditImage.textOverlap": "Dovoli prekrivanje", - "DE.Views.EditImage.textRemove": "Odstrani sliko", - "DE.Views.EditImage.textReorder": "Preuredi", - "DE.Views.EditImage.textReplace": "Zamenjaj", - "DE.Views.EditImage.textReplaceImg": "Zamenjaj sliko", - "DE.Views.EditImage.textSquare": "Kvadrat", - "DE.Views.EditImage.textThrough": "Preko", - "DE.Views.EditImage.textTight": "Tesen", - "DE.Views.EditImage.textToBackground": "Pošlji v ozadje", - "DE.Views.EditImage.textToForeground": "Premakni v ospredje", - "DE.Views.EditImage.textTopBottom": "Vrh in dno", - "DE.Views.EditParagraph.textAddCustomColor": "Dodaj barvo po meri", - "DE.Views.EditParagraph.textAdvanced": "Dodatno", - "DE.Views.EditParagraph.textAdvSettings": "Napredne nastavitve", - "DE.Views.EditParagraph.textAfter": "PO", - "DE.Views.EditParagraph.textAuto": "Samodejno", - "DE.Views.EditParagraph.textBack": "Nazaj", - "DE.Views.EditParagraph.textBackground": "Ozadje", - "DE.Views.EditParagraph.textBefore": "Pred", - "DE.Views.EditParagraph.textCustomColor": "Barva po meri", - "DE.Views.EditParagraph.textFirstLine": "Prva vrstica", - "DE.Views.EditParagraph.textFromText": "Oddaljenost od besedila", - "DE.Views.EditParagraph.textKeepLines": "Linije ohrani skupaj", - "DE.Views.EditParagraph.textKeepNext": "Ohrani z naslednjim", - "DE.Views.EditParagraph.textPageBreak": "Prelom strani pred", - "DE.Views.EditParagraph.textPrgStyles": "Oblikovanje odstavka", - "DE.Views.EditParagraph.textSpaceBetween": "Razmik med odstavki", - "DE.Views.EditShape.textAddCustomColor": "Dodaj barvo po meri", - "DE.Views.EditShape.textAlign": "Poravnava", - "DE.Views.EditShape.textBack": "Nazaj", - "DE.Views.EditShape.textBackward": "Premakni nazaj", - "DE.Views.EditShape.textBehind": "Za", - "DE.Views.EditShape.textBorder": "Obrobe", - "DE.Views.EditShape.textColor": "Barva", - "DE.Views.EditShape.textCustomColor": "Barva po meri", - "DE.Views.EditShape.textEffects": "Učinki", - "DE.Views.EditShape.textFill": "Zapolni", - "DE.Views.EditShape.textForward": "Premakni naprej", - "DE.Views.EditShape.textFromText": "Oddaljenost od besedila", - "DE.Views.EditShape.textInFront": "v ospredju", - "DE.Views.EditShape.textInline": "V vrstici", - "DE.Views.EditShape.textOpacity": "Prosojnost", - "DE.Views.EditShape.textOverlap": "Dovoli prekrivanje", - "DE.Views.EditShape.textRemoveShape": "Odstrani obliko", - "DE.Views.EditShape.textReorder": "Preuredi", - "DE.Views.EditShape.textReplace": "Zamenjaj", - "DE.Views.EditShape.textSize": "Velikost", - "DE.Views.EditShape.textSquare": "Kvadrat", - "DE.Views.EditShape.textStyle": "Slog", - "DE.Views.EditShape.textThrough": "Preko", - "DE.Views.EditShape.textTight": "Tesen", - "DE.Views.EditShape.textToBackground": "Pošlji v ozadje", - "DE.Views.EditShape.textToForeground": "Premakni v ospredje", - "DE.Views.EditShape.textTopAndBottom": "Vrh in dno", - "DE.Views.EditShape.textWithText": "Premakni z besedilom", - "DE.Views.EditTable.textAddCustomColor": "Dodaj barvo po meri", - "DE.Views.EditTable.textAlign": "Poravnava", - "DE.Views.EditTable.textBack": "Nazaj", - "DE.Views.EditTable.textBandedColumn": "Stolpec", - "DE.Views.EditTable.textBandedRow": "Povezana vrstica", - "DE.Views.EditTable.textBorder": "Obrobe", - "DE.Views.EditTable.textCellMargins": "Robovi celice", - "DE.Views.EditTable.textColor": "Barva", - "DE.Views.EditTable.textCustomColor": "Barva po meri", - "DE.Views.EditTable.textFill": "Zapolni", - "DE.Views.EditTable.textFirstColumn": "Prvi stolpec", - "DE.Views.EditTable.textFlow": "Tok", - "DE.Views.EditTable.textFromText": "Oddaljenost od besedila", - "DE.Views.EditTable.textHeaderRow": "Vrstica v glavi", - "DE.Views.EditTable.textInline": "V vrstici", - "DE.Views.EditTable.textLastColumn": "Zadnji stolpec", - "DE.Views.EditTable.textOptions": "Možnosti", - "DE.Views.EditTable.textRemoveTable": "Odstrani tabelo", - "DE.Views.EditTable.textSize": "Velikost", - "DE.Views.EditTable.textStyle": "Slog", - "DE.Views.EditTable.textStyleOptions": "Možnosti oblikovanja", - "DE.Views.EditTable.textTableOptions": "Možnosti tabele", - "DE.Views.EditTable.textTotalRow": "Skupno število vrstic", - "DE.Views.EditTable.textWithText": "Premakni z besedilom", - "DE.Views.EditText.textAddCustomColor": "Dodaj barvo po meri", - "DE.Views.EditText.textAdditional": "Dodatno", - "DE.Views.EditText.textAdditionalFormat": "Dodatno oblikovanje", - "DE.Views.EditText.textAllCaps": "Vse z veliko", - "DE.Views.EditText.textAutomatic": "Samodejeno", - "DE.Views.EditText.textBack": "Nazaj", - "DE.Views.EditText.textBullets": "Krogle", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCharacterStrikethrough": "S", - "DE.Views.EditText.textCharacterUnderline": "U", - "DE.Views.EditText.textCustomColor": "Barva po meri", - "DE.Views.EditText.textDblStrikethrough": "Dvojno prečrtanje", - "DE.Views.EditText.textDblSuperscript": "Nadpisano", - "DE.Views.EditText.textFontColor": "Barva pisave", - "DE.Views.EditText.textFontColors": "Barve pisave", - "DE.Views.EditText.textFonts": "Fonti", - "DE.Views.EditText.textHighlightColor": "Barva za označevanje besedila", - "DE.Views.EditText.textHighlightColors": "Barve za označevanje besedila", - "DE.Views.EditText.textLetterSpacing": "Razmik med črkami", - "DE.Views.EditText.textLineSpacing": "Razmik med vrsticami", - "DE.Views.EditText.textNone": "Nič", - "DE.Views.EditText.textNumbers": "Števila", - "DE.Views.EditText.textSize": "Velikost", - "DE.Views.EditText.textSmallCaps": "Male črke", - "DE.Views.EditText.textStrikethrough": "Prečrtano", - "DE.Views.EditText.textSubscript": "Podpisano", - "DE.Views.Search.textCase": "Občutljiv na velike in male črke", - "DE.Views.Search.textDone": "Končano", - "DE.Views.Search.textFind": "Najdi", - "DE.Views.Search.textFindAndReplace": "Najdi in zamenjaj", - "DE.Views.Search.textHighlight": "Označi rezultate", - "DE.Views.Search.textReplace": "Zamenjaj", - "DE.Views.Search.textSearch": "Iskanje", - "DE.Views.Settings.textAbout": "O programu", - "DE.Views.Settings.textAddress": "naslov", - "DE.Views.Settings.textAdvancedSettings": "Nastavitve aplikacije", - "DE.Views.Settings.textApplication": "Aplikacija", - "DE.Views.Settings.textAuthor": "Avtor", - "DE.Views.Settings.textBack": "Nazaj", - "DE.Views.Settings.textBottom": "Dno", - "DE.Views.Settings.textCentimeter": "Centimeter", - "DE.Views.Settings.textCollaboration": "Skupinsko delo", - "DE.Views.Settings.textColorSchemes": "Barvna shema", - "DE.Views.Settings.textComment": "Komentar", - "DE.Views.Settings.textCommentingDisplay": "Prikaz komentarjev", - "DE.Views.Settings.textCreated": "Ustvarjeno", - "DE.Views.Settings.textCreateDate": "Datum nastanka", - "DE.Views.Settings.textCustom": "Po meri", - "DE.Views.Settings.textCustomSize": "Velikost po meri", - "DE.Views.Settings.textDisableAll": "Onemogoči vse", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Onemogoči vse makroje z obvestilom", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Onemogoči vse makroje brez obvestila", - "DE.Views.Settings.textDisplayComments": "Komentarji", - "DE.Views.Settings.textDisplayResolvedComments": "Reši komentar", - "DE.Views.Settings.textDocInfo": "Informacije o dokumentu", - "DE.Views.Settings.textDocTitle": "Naziv dokumenta", - "DE.Views.Settings.textDocumentFormats": "Format dokumenata", - "DE.Views.Settings.textDocumentSettings": "Nastavitve dokumenta", - "DE.Views.Settings.textDone": "Končano", - "DE.Views.Settings.textDownload": "Prenesi", - "DE.Views.Settings.textDownloadAs": "Prenesi kot ...", - "DE.Views.Settings.textEditDoc": "Uredi dokument", - "DE.Views.Settings.textEmail": "e-naslov", - "DE.Views.Settings.textEnableAll": "Omogoči vse", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Omogoči vse makroje brez obvestila", - "DE.Views.Settings.textFind": "Najdi", - "DE.Views.Settings.textFindAndReplace": "Najdi in zamenjaj", - "DE.Views.Settings.textFormat": "Format", - "DE.Views.Settings.textHelp": "Pomoč", - "DE.Views.Settings.textHiddenTableBorders": "Skrite meje tabele", - "DE.Views.Settings.textInch": "Palec", - "DE.Views.Settings.textLandscape": "Ležeče", - "DE.Views.Settings.textLastModified": "Nazadnje spremenjeno", - "DE.Views.Settings.textLastModifiedBy": "Nazadnje spremenjenil/a", - "DE.Views.Settings.textLeft": "Levo", - "DE.Views.Settings.textLoading": "Nalaganje ...", - "DE.Views.Settings.textLocation": "Lokacija", - "DE.Views.Settings.textMacrosSettings": "Nastavitve makrojev", - "DE.Views.Settings.textMargins": "Robovi", - "DE.Views.Settings.textNoCharacters": "Nenatisljivi znaki", - "DE.Views.Settings.textOrientation": "Usmerjenost", - "DE.Views.Settings.textOwner": "Lastnik", - "DE.Views.Settings.textPages": "Strani", - "DE.Views.Settings.textParagraphs": "Odstavki", - "DE.Views.Settings.textPoint": "Točka", - "DE.Views.Settings.textPortrait": "Portret", - "DE.Views.Settings.textPoweredBy": "Poganja", - "DE.Views.Settings.textPrint": "Natisni", - "DE.Views.Settings.textReader": "Način branja", - "DE.Views.Settings.textReview": "Sledi spremembam", - "DE.Views.Settings.textRight": "Desno", - "DE.Views.Settings.textSettings": "Nastavitve", - "DE.Views.Settings.textShowNotification": "Prikaži obvestila", - "DE.Views.Settings.textSpaces": "Razmiki", - "DE.Views.Settings.textSpellcheck": "Preverjanje črkovanja", - "DE.Views.Settings.textStatistic": "Statistika", - "DE.Views.Settings.textSubject": "Zadeva", - "DE.Views.Settings.textSymbols": "Simboli", - "DE.Views.Settings.textTel": "Telefon", - "DE.Views.Settings.textTitle": "Naslov", - "DE.Views.Settings.textTop": "Vrh", - "DE.Views.Settings.textUnitOfMeasurement": "Merilna enota", - "DE.Views.Settings.textUploaded": "Naloženo", - "DE.Views.Settings.textVersion": "Različica", - "DE.Views.Settings.textWords": "Besede", - "DE.Views.Settings.unknownText": "Neznan", - "DE.Views.Toolbar.textBack": "Nazaj" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/sv.json b/apps/documenteditor/mobile/locale/sv.json index 67527ecf2..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/sv.json +++ b/apps/documenteditor/mobile/locale/sv.json @@ -1,407 +1,577 @@ { - "Common.Controllers.Collaboration.textAuto": "auto", - "Common.Controllers.Collaboration.textBaseline": "Baslinje", - "Common.Controllers.Collaboration.textBold": "Fet", - "Common.Controllers.Collaboration.textBreakBefore": "Sidbrytning före", - "Common.Controllers.Collaboration.textCaps": "Alla versaler", - "Common.Controllers.Collaboration.textCenter": "Centrera", - "Common.Controllers.Collaboration.textChart": "Diagram", - "Common.Controllers.Collaboration.textColor": "Teckensnittsfärg", - "Common.Controllers.Collaboration.textContextual": "Lägg inte till mellanrum mellan stycken med samma formatmall", - "Common.Controllers.Collaboration.textDeleted": "Raderad:", - "Common.Controllers.Collaboration.textDStrikeout": "Dubbel överstrykning", - "Common.Controllers.Collaboration.textEditUser": "Dokumentet redigeras för närvarande av flera användare.", - "Common.Controllers.Collaboration.textEquation": "Ekvation", - "Common.Controllers.Collaboration.textExact": "exakt", - "Common.Controllers.Collaboration.textFirstLine": "Första raden", - "Common.Controllers.Collaboration.textFormatted": "Formaterad", - "Common.Controllers.Collaboration.textHighlight": "Markera färg", - "Common.Controllers.Collaboration.textImage": "Bild", - "Common.Controllers.Collaboration.textIndentLeft": "Indrag vänster", - "Common.Controllers.Collaboration.textIndentRight": "Indrag höger", - "Common.Controllers.Collaboration.textInserted": "Infogad:", - "Common.Controllers.Collaboration.textItalic": "Kursiv", - "Common.Controllers.Collaboration.textJustify": "Justera", - "Common.Controllers.Collaboration.textKeepLines": "Håll ihop rader", - "Common.Controllers.Collaboration.textKeepNext": "Behåll med nästa", - "Common.Controllers.Collaboration.textLeft": "Vänsterjustera", - "Common.Controllers.Collaboration.textLineSpacing": "Radavstånd:", - "Common.Controllers.Collaboration.textNoBreakBefore": "Ingen sidbrytning före", - "Common.Controllers.Collaboration.textNoContextual": "Lägg till intervall mellan punkterna i samma stil", - "Common.Controllers.Collaboration.textNoKeepLines": "Håll inte ihop raderna", - "Common.Controllers.Collaboration.textNoKeepNext": "Behåll inte med nästa", - "Common.Controllers.Collaboration.textNot": "Inte", - "Common.Controllers.Collaboration.textNum": "Ändra numrering", - "Common.Controllers.Collaboration.textParaDeleted": "Stycke raderat ", - "Common.Controllers.Collaboration.textParaFormatted": "Stycke formaterat", - "Common.Controllers.Collaboration.textParaInserted": "Stycke infogat ", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Nedflyttade:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Uppflyttade:", - "Common.Controllers.Collaboration.textParaMoveTo": "Flyttade:", - "Common.Controllers.Collaboration.textRight": "Högerjustera", - "Common.Controllers.Collaboration.textShape": "Form", - "Common.Controllers.Collaboration.textShd": "Bakgrundsfärg", - "Common.Controllers.Collaboration.textSmallCaps": "Gemener", - "Common.Controllers.Collaboration.textSpacing": "Avstånd", - "Common.Controllers.Collaboration.textSpacingAfter": "Avstånd efter", - "Common.Controllers.Collaboration.textSpacingBefore": "Avstånd före", - "Common.Controllers.Collaboration.textTableChanged": "Tabellinställningar ändrade", - "Common.Controllers.Collaboration.textTableRowsAdd": "Tabellrader tillagda", - "Common.Controllers.Collaboration.textTableRowsDel": "Tabellrader raderade", - "Common.Controllers.Collaboration.textTabs": "Ändra tabbar", - "Common.UI.ThemeColorPalette.textCustomColors": "Anpassade färger", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardfärger", - "Common.UI.ThemeColorPalette.textThemeColors": "Temafärger", - "Common.Utils.Metric.txtCm": "cm", - "Common.Views.Collaboration.textAcceptAllChanges": "Acceptera alla ändringar", - "Common.Views.Collaboration.textBack": "Tillbaka", - "Common.Views.Collaboration.textChange": "Granska ändring", - "Common.Views.Collaboration.textCollaboration": "Samarbete", - "Common.Views.Collaboration.textDisplayMode": "Visningsläge", - "Common.Views.Collaboration.textEditUsers": "Användare", - "Common.Views.Collaboration.textFinal": "Slutlig", - "Common.Views.Collaboration.textMarkup": "Markering", - "Common.Views.Collaboration.textNoComments": "Detta dokument innehåller inga kommentarer", - "Common.Views.Collaboration.textOriginal": "Original", - "Common.Views.Collaboration.textRejectAllChanges": "Avvisa alla ändringar", - "Common.Views.Collaboration.textReview": "Spåra ändringar", - "Common.Views.Collaboration.textReviewing": "Granska", - "DE.Controllers.AddContainer.textImage": "Bild", - "DE.Controllers.AddContainer.textOther": "Annat", - "DE.Controllers.AddContainer.textShape": "Form", - "DE.Controllers.AddContainer.textTable": "Tabell", - "DE.Controllers.AddOther.textBelowText": "Under texten", - "DE.Controllers.AddOther.textBottomOfPage": "Nederst på sidan", - "DE.Controllers.AddTable.textCancel": "Avbryt", - "DE.Controllers.AddTable.textColumns": "Kolumner", - "DE.Controllers.AddTable.textRows": "Rader", - "DE.Controllers.AddTable.textTableSize": "Tabellstorlek", - "DE.Controllers.DocumentHolder.menuAddLink": "Lägg till länk", - "DE.Controllers.DocumentHolder.menuCopy": "Kopiera", - "DE.Controllers.DocumentHolder.menuCut": "Klipp ut", - "DE.Controllers.DocumentHolder.menuDelete": "Radera", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Radera tabell", - "DE.Controllers.DocumentHolder.menuEdit": "Redigera", - "DE.Controllers.DocumentHolder.menuMerge": "Slå ihop celler", - "DE.Controllers.DocumentHolder.menuPaste": "Klistra in", - "DE.Controllers.DocumentHolder.menuReview": "Granska", - "DE.Controllers.DocumentHolder.menuReviewChange": "Granska ändring", - "DE.Controllers.DocumentHolder.sheetCancel": "Avbryt", - "DE.Controllers.DocumentHolder.textCancel": "Avbryt", - "DE.Controllers.DocumentHolder.textColumns": "Kolumner", - "DE.Controllers.DocumentHolder.textGuest": "Gäst", - "DE.Controllers.DocumentHolder.textRows": "Rader", - "DE.Controllers.EditContainer.textChart": "Diagram", - "DE.Controllers.EditContainer.textFooter": "Sidfot", - "DE.Controllers.EditContainer.textHeader": "Huvud", - "DE.Controllers.EditContainer.textHyperlink": "Hyperlänk", - "DE.Controllers.EditContainer.textImage": "Bild", - "DE.Controllers.EditContainer.textParagraph": "Stycke", - "DE.Controllers.EditContainer.textSettings": "Inställningar", - "DE.Controllers.EditContainer.textShape": "Form", - "DE.Controllers.EditContainer.textTable": "Tabell", - "DE.Controllers.EditText.textAuto": "Auto", - "DE.Controllers.EditText.textFonts": "Teckensnitt", - "DE.Controllers.Main.advDRMEnterPassword": "Ange ditt lösenord:", - "DE.Controllers.Main.advDRMPassword": "Lösenord", - "DE.Controllers.Main.advTxtOptions": "Välj TXT-alternativ", - "DE.Controllers.Main.applyChangesTextText": "Laddar data...", - "DE.Controllers.Main.applyChangesTitleText": "Laddar data", - "DE.Controllers.Main.closeButtonText": "Stäng fil", - "DE.Controllers.Main.convertationTimeoutText": "Omvandlingstiden har överskridits.", - "DE.Controllers.Main.criticalErrorTitle": "Fel", - "DE.Controllers.Main.downloadErrorText": "Nedladdningen misslyckades", - "DE.Controllers.Main.downloadMergeText": "Laddar ner...", - "DE.Controllers.Main.downloadMergeTitle": "Laddar ner", - "DE.Controllers.Main.downloadTextText": "Laddar ner dokumentet...", - "DE.Controllers.Main.downloadTitleText": "Laddar ner dokument", - "DE.Controllers.Main.errorBadImageUrl": "Bildens URL är felaktig", - "DE.Controllers.Main.errorDatabaseConnection": "Externt fel.
    Databasanslutningsfel. Var snäll och kontakta support.", - "DE.Controllers.Main.errorDataEncrypted": "Krypterade ändringar har tagits emot, de kan inte avkodas.", - "DE.Controllers.Main.errorDataRange": "Felaktigt dataområde", - "DE.Controllers.Main.errorDefaultMessage": "Felkod: %1", - "DE.Controllers.Main.errorKeyExpire": "Nyckelns beskrivning har utgått", - "DE.Controllers.Main.errorMailMergeLoadFile": "Misslyckades att ladda", - "DE.Controllers.Main.errorStockChart": "Felaktig ordningsföljd. För att bygga ett aktiediagram placerar du uppgifterna på kalkylarket i följande ordning:
    öppningspris, maxpris, minipris, slutkurs.", - "DE.Controllers.Main.errorViewerDisconnect": "Anslutningen är förlorad. Du kan fortfarande visa dokumentet,
    men kommer inte kunna ladda ner det till dess anslutningen återställts och sidan laddats om.", - "DE.Controllers.Main.loadFontsTextText": "Laddar data...", - "DE.Controllers.Main.loadFontsTitleText": "Laddar data", - "DE.Controllers.Main.loadFontTextText": "Laddar data...", - "DE.Controllers.Main.loadFontTitleText": "Laddar data", - "DE.Controllers.Main.loadImagesTextText": "Laddar bilder...", - "DE.Controllers.Main.loadImagesTitleText": "Laddar bilder", - "DE.Controllers.Main.loadImageTextText": "Laddar bild...", - "DE.Controllers.Main.loadImageTitleText": "Laddar bild", - "DE.Controllers.Main.loadingDocumentTextText": "Laddar dokument...", - "DE.Controllers.Main.loadingDocumentTitleText": "Laddar dokument", - "DE.Controllers.Main.mailMergeLoadFileText": "Laddar från datakälla...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Laddar från datakälla", - "DE.Controllers.Main.openErrorText": "Ett fel uppstod när filen skulle öppnas", - "DE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas", - "DE.Controllers.Main.saveTextText": "Sparar dokument...", - "DE.Controllers.Main.saveTitleText": "Sparar dokument", - "DE.Controllers.Main.splitMaxColsErrorText": "Antalet kolumner måste vara mindre än %1", - "DE.Controllers.Main.textAnonymous": "Anonym", - "DE.Controllers.Main.textBack": "Tillbaka", - "DE.Controllers.Main.textCancel": "Avbryt", - "DE.Controllers.Main.textClose": "Stäng", - "DE.Controllers.Main.textContactUs": "Kontakta säljare", - "DE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren.
    Kontakta vår försäljningsavdelning för att få en offert.", - "DE.Controllers.Main.textDone": "Klart", - "DE.Controllers.Main.textLoadingDocument": "Laddar dokument", - "DE.Controllers.Main.textNoLicenseTitle": "%1 anslutningsbegränsning", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPaidFeature": "Betald funktion", - "DE.Controllers.Main.textPassword": "Lösenord", - "DE.Controllers.Main.textPreloader": "Laddar...", - "DE.Controllers.Main.titleLicenseExp": "Licensen har gått ut", - "DE.Controllers.Main.titleServerVersion": "Editorn är uppdaterad", - "DE.Controllers.Main.txtDiagramTitle": "Diagramtitel", - "DE.Controllers.Main.txtFooter": "Sidfot", - "DE.Controllers.Main.txtHeader": "Huvud", - "DE.Controllers.Main.txtStyle_footnote_text": "Fotnotstext", - "DE.Controllers.Main.txtStyle_Heading_1": "Rubrik 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Rubrik 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Rubrik 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Rubrik 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Rubrik 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Rubrik 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Rubrik 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Rubrik 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Rubrik 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Intensivt citat", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Lista avsnitt", - "DE.Controllers.Main.txtStyle_No_Spacing": "Inget avstånd", - "DE.Controllers.Main.txtStyle_Normal": "Normal", - "DE.Controllers.Main.txtStyle_Quote": "Citat", - "DE.Controllers.Main.txtStyle_Subtitle": "Undertitel", - "DE.Controllers.Main.txtStyle_Title": "Titel", - "DE.Controllers.Main.uploadImageSizeMessage": "Maximal bildstorlek har överskridits.", - "DE.Controllers.Search.textReplaceAll": "Ersätt alla", - "DE.Controllers.Settings.txtLoading": "Laddar...", - "DE.Controllers.Settings.warnDownloadAs": "Om du fortsätter att spara i det här formatet kommer alla funktioner utom texten att gå förlorade.
    Är du säker på att du vill fortsätta?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Om du fortsätter att spara i det här formatet kan en del av formateringen gå förlorad.
    Är du säker på att du vill fortsätta?", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Du lämnar appen", - "DE.Controllers.Toolbar.leaveButtonText": "Lämna denna sidan", - "DE.Views.AddImage.textAddress": "Adress", - "DE.Views.AddImage.textBack": "Tillbaka", - "DE.Views.AddImage.textFromLibrary": "Bild från biblioteket", - "DE.Views.AddImage.textFromURL": "Bild från URL", - "DE.Views.AddImage.textImageURL": "Bild-URL", - "DE.Views.AddImage.textInsertImage": "Infoga bild", - "DE.Views.AddImage.textLinkSettings": "Länkinställningar", - "DE.Views.AddOther.textAddLink": "Lägg till länk", - "DE.Views.AddOther.textBack": "Tillbaka", - "DE.Views.AddOther.textCenterBottom": "Centrerad nederkant", - "DE.Views.AddOther.textCenterTop": "Centrerad överkant", - "DE.Views.AddOther.textColumnBreak": "Kolumnbrytning", - "DE.Views.AddOther.textContPage": "Kontinuerliga sida", - "DE.Views.AddOther.textCurrentPos": "Nuvarande position", - "DE.Views.AddOther.textDisplay": "Visa", - "DE.Views.AddOther.textEvenPage": "Jämn sida", - "DE.Views.AddOther.textFootnote": "Fotnot", - "DE.Views.AddOther.textFormat": "Format", - "DE.Views.AddOther.textInsert": "Infoga", - "DE.Views.AddOther.textInsertFootnote": "Infoga fotnot", - "DE.Views.AddOther.textLeftBottom": "Vänster nederkant", - "DE.Views.AddOther.textLeftTop": "Vänster överkant", - "DE.Views.AddOther.textLink": "Länk", - "DE.Views.AddOther.textLocation": "Plats", - "DE.Views.AddOther.textNextPage": "Nästa sida", - "DE.Views.AddOther.textOddPage": "Udda sida", - "DE.Views.AddOther.textPageBreak": "Sidbrytning", - "DE.Views.AddOther.textRightBottom": "Höger nederkant", - "DE.Views.AddOther.textRightTop": "Höger överkant", - "DE.Views.AddOther.textSectionBreak": "Brytning avsnitt", - "DE.Views.AddOther.textStartFrom": "Börja på", - "DE.Views.AddOther.textTip": "Skärmtips", - "DE.Views.EditChart.textAddCustomColor": "Lägg till anpassad färg", - "DE.Views.EditChart.textAlign": "Justera", - "DE.Views.EditChart.textBack": "Tillbaka", - "DE.Views.EditChart.textBackward": "Flytta bakåt", - "DE.Views.EditChart.textBehind": "Bakom", - "DE.Views.EditChart.textBorder": "Gräns", - "DE.Views.EditChart.textColor": "Färg", - "DE.Views.EditChart.textCustomColor": "Anpassad färg", - "DE.Views.EditChart.textDistanceText": "Avstånd från text", - "DE.Views.EditChart.textFill": "Fyll", - "DE.Views.EditChart.textForward": "Flytta framåt", - "DE.Views.EditChart.textInFront": "Längst fram", - "DE.Views.EditChart.textMoveText": "Flytta med text", - "DE.Views.EditChart.textOverlap": "Tillåt överlappning", - "DE.Views.EditChart.textSize": "Storlek", - "DE.Views.EditChart.textToForeground": "Flytta till förgrund", - "DE.Views.EditChart.textTopBottom": "Övre och nedre", - "DE.Views.EditHeader.textDiffFirst": "Annan förstasida", - "DE.Views.EditHeader.textDiffOdd": "Olika udda och jämna sidor", - "DE.Views.EditHeader.textFrom": "Börja på", - "DE.Views.EditHeader.textPageNumbering": "Sidnumrering", - "DE.Views.EditHeader.textPrev": "Fortsätt från föregående", - "DE.Views.EditHeader.textSameAs": "Länk till förgående", - "DE.Views.EditHyperlink.textDisplay": "Visa", - "DE.Views.EditHyperlink.textEdit": "Redigera länk", - "DE.Views.EditHyperlink.textLink": "Länk", - "DE.Views.EditHyperlink.textTip": "Skärmtips", - "DE.Views.EditImage.textAddress": "Adress", - "DE.Views.EditImage.textAlign": "Justera", - "DE.Views.EditImage.textBack": "Tillbaka", - "DE.Views.EditImage.textBackward": "Flytta bakåt", - "DE.Views.EditImage.textBehind": "Bakom", - "DE.Views.EditImage.textDefault": "Egentlig Storlek", - "DE.Views.EditImage.textDistanceText": "Avstånd från text", - "DE.Views.EditImage.textForward": "Flytta framåt", - "DE.Views.EditImage.textFromLibrary": "Bild från biblioteket", - "DE.Views.EditImage.textFromURL": "Bild från URL", - "DE.Views.EditImage.textImageURL": "Bild-URL", - "DE.Views.EditImage.textInFront": "Längst fram", - "DE.Views.EditImage.textLinkSettings": "Länkinställningar", - "DE.Views.EditImage.textMoveText": "Flytta med text", - "DE.Views.EditImage.textOverlap": "Tillåt överlappning", - "DE.Views.EditImage.textReplace": "Ersätt", - "DE.Views.EditImage.textReplaceImg": "Ersätt bild", - "DE.Views.EditImage.textToForeground": "Flytta till förgrund", - "DE.Views.EditImage.textTopBottom": "Övre och nedre", - "DE.Views.EditParagraph.textAddCustomColor": "Lägg till anpassad färg", - "DE.Views.EditParagraph.textAdvanced": "Avancerad", - "DE.Views.EditParagraph.textAdvSettings": "Avancerade inställningar", - "DE.Views.EditParagraph.textAfter": "Efter", - "DE.Views.EditParagraph.textAuto": "auto", - "DE.Views.EditParagraph.textBack": "Tillbaka", - "DE.Views.EditParagraph.textBackground": "Bakgrund", - "DE.Views.EditParagraph.textBefore": "Före", - "DE.Views.EditParagraph.textCustomColor": "Anpassad färg", - "DE.Views.EditParagraph.textFirstLine": "Första raden", - "DE.Views.EditParagraph.textFromText": "Avstånd från text", - "DE.Views.EditParagraph.textKeepLines": "Håll ihop rader", - "DE.Views.EditParagraph.textKeepNext": "Behåll med nästa", - "DE.Views.EditParagraph.textPageBreak": "Sidbrytning före", - "DE.Views.EditParagraph.textPrgStyles": "Avsnittstilar", - "DE.Views.EditParagraph.textSpaceBetween": "Avstånd mellan", - "DE.Views.EditShape.textAddCustomColor": "Lägg till anpassad färg", - "DE.Views.EditShape.textAlign": "Justera", - "DE.Views.EditShape.textBack": "Tillbaka", - "DE.Views.EditShape.textBackward": "Flytta bakåt", - "DE.Views.EditShape.textBehind": "Bakom", - "DE.Views.EditShape.textBorder": "Gräns", - "DE.Views.EditShape.textColor": "Färg", - "DE.Views.EditShape.textCustomColor": "Anpassad färg", - "DE.Views.EditShape.textEffects": "Effekter", - "DE.Views.EditShape.textFill": "Fyll", - "DE.Views.EditShape.textForward": "Flytta framåt", - "DE.Views.EditShape.textFromText": "Avstånd från text", - "DE.Views.EditShape.textInFront": "Längst fram", - "DE.Views.EditShape.textOpacity": "Opacitet", - "DE.Views.EditShape.textOverlap": "Tillåt överlappning", - "DE.Views.EditShape.textReplace": "Ersätt", - "DE.Views.EditShape.textSize": "Storlek", - "DE.Views.EditShape.textToForeground": "Flytta till förgrund", - "DE.Views.EditShape.textTopAndBottom": "Övre och nedre", - "DE.Views.EditShape.textWithText": "Flytta med text", - "DE.Views.EditTable.textAddCustomColor": "Lägg till anpassad färg", - "DE.Views.EditTable.textAlign": "Justera", - "DE.Views.EditTable.textBack": "Tillbaka", - "DE.Views.EditTable.textBorder": "Gräns", - "DE.Views.EditTable.textCellMargins": "Cell-marginal", - "DE.Views.EditTable.textColor": "Färg", - "DE.Views.EditTable.textCustomColor": "Anpassad färg", - "DE.Views.EditTable.textFill": "Fyll", - "DE.Views.EditTable.textFirstColumn": "Första kolumnen", - "DE.Views.EditTable.textFlow": "Flöde", - "DE.Views.EditTable.textFromText": "Avstånd från text", - "DE.Views.EditTable.textHeaderRow": "Huvudrad", - "DE.Views.EditTable.textLastColumn": "Sista kolumnen", - "DE.Views.EditTable.textRemoveTable": "Radera tabell", - "DE.Views.EditTable.textSize": "Storlek", - "DE.Views.EditTable.textTableOptions": "Tabellegenskaper", - "DE.Views.EditTable.textWithText": "Flytta med text", - "DE.Views.EditText.textAddCustomColor": "Lägg till anpassad färg", - "DE.Views.EditText.textAdditional": "Extra", - "DE.Views.EditText.textAdditionalFormat": "Ytterligare formatering", - "DE.Views.EditText.textAllCaps": "Alla versaler", - "DE.Views.EditText.textAutomatic": "Automatisk", - "DE.Views.EditText.textBack": "Tillbaka", - "DE.Views.EditText.textBullets": "Punktlista", - "DE.Views.EditText.textCharacterBold": "B", - "DE.Views.EditText.textCharacterItalic": "I", - "DE.Views.EditText.textCustomColor": "Anpassad färg", - "DE.Views.EditText.textDblStrikethrough": "Dubbel genomstrykning", - "DE.Views.EditText.textDblSuperscript": "Upphöjd", - "DE.Views.EditText.textFontColor": "Teckensnittsfärg", - "DE.Views.EditText.textFontColors": "Teckensnittsfärger", - "DE.Views.EditText.textFonts": "Teckensnitt", - "DE.Views.EditText.textHighlightColor": "Markera färg", - "DE.Views.EditText.textHighlightColors": "Markera färger", - "DE.Views.EditText.textLetterSpacing": "Teckenavstånd", - "DE.Views.EditText.textLineSpacing": "Radavstånd", - "DE.Views.EditText.textNone": "ingen", - "DE.Views.EditText.textNumbers": "Nummer", - "DE.Views.EditText.textSize": "Storlek", - "DE.Views.EditText.textSmallCaps": "Gemener", - "DE.Views.EditText.textStrikethrough": "Genomstruken", - "DE.Views.EditText.textSubscript": "Nedsänkt", - "DE.Views.Search.textCase": "Skiftlägeskänslig", - "DE.Views.Search.textDone": "Klart", - "DE.Views.Search.textFind": "Sök", - "DE.Views.Search.textFindAndReplace": "Sök och ersätt", - "DE.Views.Search.textHighlight": "Markera resultat", - "DE.Views.Search.textReplace": "Ersätt", - "DE.Views.Settings.textAbout": "Om", - "DE.Views.Settings.textAddress": "adress", - "DE.Views.Settings.textAdvancedSettings": "Appinställningar", - "DE.Views.Settings.textApplication": "Program", - "DE.Views.Settings.textAuthor": "Författare", - "DE.Views.Settings.textBack": "Tillbaka", - "DE.Views.Settings.textBottom": "Nederst", - "DE.Views.Settings.textCentimeter": "Centimeter", - "DE.Views.Settings.textCollaboration": "Samarbete", - "DE.Views.Settings.textColorSchemes": "Färgschema", - "DE.Views.Settings.textComment": "Kommentar", - "DE.Views.Settings.textCommentingDisplay": "Visa kommentarer", - "DE.Views.Settings.textCreated": "Skapad ", - "DE.Views.Settings.textCreateDate": "Skapandedatum", - "DE.Views.Settings.textCustom": "Anpassad", - "DE.Views.Settings.textCustomSize": "Anpassad storlek", - "DE.Views.Settings.textDisplayComments": "Kommentarer", - "DE.Views.Settings.textDisplayResolvedComments": "Lösta kommentarer", - "DE.Views.Settings.textDocInfo": "Dokumentinformation", - "DE.Views.Settings.textDocTitle": "Dokumenttitel", - "DE.Views.Settings.textDocumentFormats": "Dokumentformat", - "DE.Views.Settings.textDocumentSettings": "Dokumentinställningar", - "DE.Views.Settings.textDone": "Klart", - "DE.Views.Settings.textDownload": "Ladda ner", - "DE.Views.Settings.textDownloadAs": "Ladda ner som...", - "DE.Views.Settings.textEditDoc": "Redigera dokument", - "DE.Views.Settings.textEmail": "E-post", - "DE.Views.Settings.textFind": "Sök", - "DE.Views.Settings.textFindAndReplace": "Sök och ersätt", - "DE.Views.Settings.textFormat": "Format", - "DE.Views.Settings.textHelp": "Hjälp", - "DE.Views.Settings.textHiddenTableBorders": "Gömda tabellramar", - "DE.Views.Settings.textInch": "Tum", - "DE.Views.Settings.textLandscape": "Landskap", - "DE.Views.Settings.textLastModified": "Senast ändrad", - "DE.Views.Settings.textLastModifiedBy": "Senast ändrad av", - "DE.Views.Settings.textLeft": "Vänster", - "DE.Views.Settings.textLoading": "Laddar...", - "DE.Views.Settings.textLocation": "Plats", - "DE.Views.Settings.textMargins": "Marginaler", - "DE.Views.Settings.textNoCharacters": "Dolda tecken", - "DE.Views.Settings.textOrientation": "Orientering", - "DE.Views.Settings.textOwner": "Ägare", - "DE.Views.Settings.textPages": "Sidor", - "DE.Views.Settings.textParagraphs": "Stycken", - "DE.Views.Settings.textPoint": "Punkt", - "DE.Views.Settings.textPortrait": "Porträtt", - "DE.Views.Settings.textReview": "Spåra ändringar", - "DE.Views.Settings.textRight": "Höger", - "DE.Views.Settings.textSettings": "Inställningar", - "DE.Views.Settings.textSpaces": "Mellanslag", - "DE.Views.Settings.textSpellcheck": "Stavningskontroll", - "DE.Views.Settings.textStatistic": "Statistik", - "DE.Views.Settings.textSymbols": "Symboler", - "DE.Views.Settings.textTitle": "Titel", - "DE.Views.Settings.textTop": "Överst", - "DE.Views.Settings.textUnitOfMeasurement": "Måttenhet", - "DE.Views.Settings.textWords": "Ord", - "DE.Views.Toolbar.textBack": "Tillbaka" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/tr.json b/apps/documenteditor/mobile/locale/tr.json index 155dd8810..6e7de01d7 100644 --- a/apps/documenteditor/mobile/locale/tr.json +++ b/apps/documenteditor/mobile/locale/tr.json @@ -1,36 +1,577 @@ { "About": { "textAbout": "Hakkında", - "textAddress": "adres" + "textAddress": "adres", + "textBack": "Geri", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" }, "Add": { - "textAddLink": "Bağlantı Ekle" + "textAddLink": "Bağlantı Ekle", + "textAddress": "adres", + "textBack": "Geri", + "textBelowText": "Alt Metin", + "textBottomOfPage": "Sayfanın alt kısmı", + "textBreak": "Yeni Sayfa", + "textCancel": "İptal Et", + "textCenterBottom": "Orta Alt", + "textColumnBreak": "Sütun Sonu", + "notcriticalErrorTitle": "Warning", + "textCenterTop": "Center Top", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" }, "Common": { "Collaboration": { "textAccept": "Onayla", "textAcceptAllChanges": "Tüm Değişikliği Onayla", "textAddReply": "Cevap ekle", + "textAllChangesAcceptedPreview": "Tüm değişiklikler onaylandı (Önizleme)", + "textAllChangesEditing": "Tüm değişiklikler (Düzenleme)", + "textAtLeast": "En az", + "textAuto": "Otomatik", + "textBack": "Geri", + "textBaseline": "Kenar çizgisi", + "textBold": "Kalın", + "textCancel": "İptal Et", + "textCaps": "Tümü büyük harf", "textCenter": "Ortaya Hizala", + "textChart": "Grafik", + "textCollaboration": "Ortak çalışma", "textJustify": "İki yana hizala", "textLeft": "Sola Hizala", "textNoContextual": "Aynı stildeki paragraflar arasına aralık ekle", - "textRight": "Sağa Hizala" + "textRight": "Sağa Hizala", + "textShd": "Arka plan rengi", + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add comment", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textBreakBefore": "Page break before", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textShape": "Shape", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" } }, "ContextMenu": { - "menuAddLink": "Bağlantı Ekle" + "menuAddLink": "Bağlantı Ekle", + "menuCancel": "İptal Et", + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" }, "Edit": { "textActualSize": "Gerçek Boyut", "textAddCustomColor": "Özel Renk Ekle", "textAdditional": "Ek", + "textAdditionalFormatting": "Ek biçimlendirme", + "textAddress": "adres", "textAdvanced": "Gelişmiş", "textAdvancedSettings": "Gelişmiş Ayarlar", "textAfter": "sonra", - "textAlign": "Hizala" + "textAlign": "Hizala", + "textAllCaps": "Tümü büyük harf", + "textAuto": "Otomatik", + "textAutomatic": "Otomatik", + "textBack": "Geri", + "textBackground": "Arka Plan", + "textBandedColumn": "Çizgili Sütun", + "textBandedRow": "Çizgili Satır", + "textBefore": "Önce", + "textBehind": "Arkada", + "textBorder": "Sınır", + "textBringToForeground": "Önplana Getir", + "textBulletsAndNumbers": "madde imleri ve numaralandırma", + "textCellMargins": "Hücre Kenar Boşluğu", + "textChart": "Grafik", + "textClose": "Kapat", + "textColor": "Renk", + "notcriticalErrorTitle": "Warning", + "textAllowOverlap": "Allow overlap", + "textBullets": "Bullets", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap" + }, + "Error": { + "openErrorText": "Dosya açılırken bir hata oluştu.", + "saveErrorText": "Dosya kaydedilirken bir hata oluştu", + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "Main": { + "SDK": { + "Diagram Title": "Grafik başlığı", + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonim", + "textClose": "Kapat", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "textBuyNow": "Visit website", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." }, "Settings": { - "textAbout": "Hakkında" + "advTxtOptions": "TXT Seçeneklerini Belirle", + "closeButtonText": "Dosyayı Kapat", + "textAbout": "Hakkında", + "textApplication": "Uygulama", + "textApplicationSettings": "Uygulama Ayarları", + "textAuthor": "Sahibi", + "textBack": "Geri", + "textBottom": "Alt", + "textCancel": "İptal Et", + "textCaseSensitive": "Büyük küçük harfe duyarlı", + "textCentimeter": "Santimetre", + "textCollaboration": "Ortak çalışma", + "textColorSchemes": "Renk Şeması", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "notcriticalErrorTitle": "Warning", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/uk.json b/apps/documenteditor/mobile/locale/uk.json index 49b31da1d..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/uk.json +++ b/apps/documenteditor/mobile/locale/uk.json @@ -1,607 +1,577 @@ { - "Common.Controllers.Collaboration.textAddReply": "Додати відповідь", - "Common.Controllers.Collaboration.textAtLeast": "мінімально", - "Common.Controllers.Collaboration.textAuto": "Авто", - "Common.Controllers.Collaboration.textBaseline": "Базова лінія", - "Common.Controllers.Collaboration.textBold": "Грубий", - "Common.Controllers.Collaboration.textBreakBefore": "З нової сторінки", - "Common.Controllers.Collaboration.textCancel": "Скасувати", - "Common.Controllers.Collaboration.textCaps": "Усі прописні", - "Common.Controllers.Collaboration.textCenter": "Вирівняти по центру", - "Common.Controllers.Collaboration.textChart": "Діаграма", - "Common.Controllers.Collaboration.textColor": "Колір шрифту", - "Common.Controllers.Collaboration.textContextual": "Не додавати інтервал між абзацами одного стилю", - "Common.Controllers.Collaboration.textDelete": "Видалити", - "Common.Controllers.Collaboration.textDeleteComment": "Видалити коментар", - "Common.Controllers.Collaboration.textDeleted": "Вилучено:", - "Common.Controllers.Collaboration.textDeleteReply": "Видалити відповідь", - "Common.Controllers.Collaboration.textDone": "Готово", - "Common.Controllers.Collaboration.textDStrikeout": "Подвійне закреслення", - "Common.Controllers.Collaboration.textEdit": "Редагувати", - "Common.Controllers.Collaboration.textEditUser": "Користувачі, що редагують документ:", - "Common.Controllers.Collaboration.textEquation": "Рівняння", - "Common.Controllers.Collaboration.textExact": "точно", - "Common.Controllers.Collaboration.textFirstLine": "Перша строка", - "Common.Controllers.Collaboration.textFormatted": "Відформатовано", - "Common.Controllers.Collaboration.textHighlight": "Колір позначення", - "Common.Controllers.Collaboration.textImage": "Зображення", - "Common.Controllers.Collaboration.textIndentLeft": "Відступ ліворуч", - "Common.Controllers.Collaboration.textIndentRight": "Відступ праворуч", - "Common.Controllers.Collaboration.textInserted": "Вставлено:", - "Common.Controllers.Collaboration.textItalic": "Курсив", - "Common.Controllers.Collaboration.textJustify": "Вирівняти по ширині", - "Common.Controllers.Collaboration.textKeepLines": "Не розривати абзац", - "Common.Controllers.Collaboration.textKeepNext": "Не відривати від наступного", - "Common.Controllers.Collaboration.textLeft": "Вирівняти зліва", - "Common.Controllers.Collaboration.textLineSpacing": "Міжрядковий інтервал:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Ви дійсно хочете видалити цей коментар?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Ви дійсно хочете видалити цю відповідь?", - "Common.Controllers.Collaboration.textMultiple": "множник", - "Common.Controllers.Collaboration.textNoBreakBefore": "Не з нової сторінки", - "Common.Controllers.Collaboration.textNoChanges": "Зміни відсутні.", - "Common.Controllers.Collaboration.textNoContextual": "Додати інтервал між абзацами того самого стилю", - "Common.Controllers.Collaboration.textNoKeepLines": "Дозволити розриви абзацу", - "Common.Controllers.Collaboration.textNoKeepNext": "Дозволити розрив з наступного", - "Common.Controllers.Collaboration.textNot": "Не", - "Common.Controllers.Collaboration.textNoWidow": "Дозволено висячі рядки", - "Common.Controllers.Collaboration.textNum": "Зміна нумерації", - "Common.Controllers.Collaboration.textParaDeleted": "Параграф Вилучено", - "Common.Controllers.Collaboration.textParaFormatted": "Абзац відформатований", - "Common.Controllers.Collaboration.textParaInserted": "Абзац вставлено", - "Common.Controllers.Collaboration.textParaMoveFromDown": "Переміщено вниз:", - "Common.Controllers.Collaboration.textParaMoveFromUp": "Переміщено вгору:", - "Common.Controllers.Collaboration.textParaMoveTo": "Переміщено:", - "Common.Controllers.Collaboration.textPosition": "Положення", - "Common.Controllers.Collaboration.textReopen": "Відкрити наново", - "Common.Controllers.Collaboration.textResolve": "Вирішити", - "Common.Controllers.Collaboration.textRight": "Вирівняти справа", - "Common.Controllers.Collaboration.textShape": "Фігура", - "Common.Controllers.Collaboration.textShd": "Колір тла", - "Common.Controllers.Collaboration.textSmallCaps": "Малі прописні", - "Common.Controllers.Collaboration.textSpacing": "Інтервал", - "Common.Controllers.Collaboration.textSpacingAfter": "Інтервал після абзацу", - "Common.Controllers.Collaboration.textSpacingBefore": "Інтервал перед абзацем", - "Common.Controllers.Collaboration.textStrikeout": "Викреслення", - "Common.Controllers.Collaboration.textSubScript": "Підрядковий", - "Common.Controllers.Collaboration.textSuperScript": "Надрядковий", - "Common.Controllers.Collaboration.textTableChanged": "Змінено налаштування таблиці", - "Common.Controllers.Collaboration.textTableRowsAdd": "Рядки таблиці додано", - "Common.Controllers.Collaboration.textTableRowsDel": "Рядки таблиці видалено", - "Common.Controllers.Collaboration.textTabs": "Змінити вкладки", - "Common.Controllers.Collaboration.textUnderline": "Підкреслений", - "Common.Controllers.Collaboration.textWidow": "Заборона висячих рядків", - "Common.Controllers.Collaboration.textYes": "Так", - "Common.UI.ThemeColorPalette.textCustomColors": "Власні кольори", - "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", - "Common.UI.ThemeColorPalette.textThemeColors": "Кольори теми", - "Common.Utils.Metric.txtCm": "см", - "Common.Utils.Metric.txtPt": "Пт", - "Common.Views.Collaboration.textAccept": "Прийняти", - "Common.Views.Collaboration.textAcceptAllChanges": "Прийняти усі зміни", - "Common.Views.Collaboration.textAddReply": "Додати відповідь", - "Common.Views.Collaboration.textAllChangesAcceptedPreview": "Усі зміни прийняті (попередній перегляд)", - "Common.Views.Collaboration.textAllChangesEditing": "Усі зміни (редагування)", - "Common.Views.Collaboration.textAllChangesRejectedPreview": "Усі зміни відхилено (попередній перегляд)", - "Common.Views.Collaboration.textBack": "Назад", - "Common.Views.Collaboration.textCancel": "Скасувати", - "Common.Views.Collaboration.textChange": "Перегляд змін", - "Common.Views.Collaboration.textCollaboration": "Співпраця", - "Common.Views.Collaboration.textDisplayMode": "Режим показу", - "Common.Views.Collaboration.textDone": "Готово", - "Common.Views.Collaboration.textEditReply": "Редагувати відповідь", - "Common.Views.Collaboration.textEditUsers": "Користувачі", - "Common.Views.Collaboration.textEditСomment": "Редагувати коментар", - "Common.Views.Collaboration.textFinal": "Фінальний", - "Common.Views.Collaboration.textMarkup": "Зміни", - "Common.Views.Collaboration.textNoComments": "Цей документ не містить коментарів", - "Common.Views.Collaboration.textOriginal": "Початковий", - "Common.Views.Collaboration.textReject": "Відхилити", - "Common.Views.Collaboration.textRejectAllChanges": "Відхилити усі зміни", - "Common.Views.Collaboration.textReview": "Відстежування змін", - "Common.Views.Collaboration.textReviewing": "Рецензування", - "Common.Views.Collaboration.textСomments": "Коментаріі", - "DE.Controllers.AddContainer.textImage": "Зображення", - "DE.Controllers.AddContainer.textOther": "Інший", - "DE.Controllers.AddContainer.textShape": "Форма", - "DE.Controllers.AddContainer.textTable": "Таблиця", - "DE.Controllers.AddImage.notcriticalErrorTitle": "Увага", - "DE.Controllers.AddImage.textEmptyImgUrl": "Потрібно вказати URL-адресу зображення.", - "DE.Controllers.AddImage.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "DE.Controllers.AddOther.notcriticalErrorTitle": "Увага", - "DE.Controllers.AddOther.textBelowText": "Нижче тексту", - "DE.Controllers.AddOther.textBottomOfPage": "Внизу сторінки", - "DE.Controllers.AddOther.textCancel": "Скасувати", - "DE.Controllers.AddOther.textContinue": "Продовжити", - "DE.Controllers.AddOther.textDelete": "Видалити", - "DE.Controllers.AddOther.textDeleteDraft": "Ви дійсно хочете видалити чернетку?", - "DE.Controllers.AddOther.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "DE.Controllers.AddTable.textCancel": "Скасувати", - "DE.Controllers.AddTable.textColumns": "Стовпці", - "DE.Controllers.AddTable.textRows": "Рядки", - "DE.Controllers.AddTable.textTableSize": "Розмір таблиці", - "DE.Controllers.DocumentHolder.errorCopyCutPaste": "Дії копіювання, вирізання та вставки через контекстне меню виконуватимуться лише в поточному файлі.", - "DE.Controllers.DocumentHolder.menuAddComment": "Додати коментар", - "DE.Controllers.DocumentHolder.menuAddLink": "Додати посилання", - "DE.Controllers.DocumentHolder.menuCopy": "Копіювати", - "DE.Controllers.DocumentHolder.menuCut": "Вирізати", - "DE.Controllers.DocumentHolder.menuDelete": "Видалити", - "DE.Controllers.DocumentHolder.menuDeleteTable": "Видалити таблицю", - "DE.Controllers.DocumentHolder.menuEdit": "Редагувати", - "DE.Controllers.DocumentHolder.menuMerge": "Об'єднати комірки", - "DE.Controllers.DocumentHolder.menuMore": "Більше", - "DE.Controllers.DocumentHolder.menuOpenLink": "Відкрити посилання", - "DE.Controllers.DocumentHolder.menuPaste": "Вставити", - "DE.Controllers.DocumentHolder.menuReview": "Рецензування", - "DE.Controllers.DocumentHolder.menuReviewChange": "Перегляд змін", - "DE.Controllers.DocumentHolder.menuSplit": "Розділити комірку", - "DE.Controllers.DocumentHolder.menuViewComment": "Переглянути коментар", - "DE.Controllers.DocumentHolder.sheetCancel": "Скасувати", - "DE.Controllers.DocumentHolder.textCancel": "Скасувати", - "DE.Controllers.DocumentHolder.textColumns": "Стовпці", - "DE.Controllers.DocumentHolder.textCopyCutPasteActions": "Дії копіювання, вирізки та вставки", - "DE.Controllers.DocumentHolder.textDoNotShowAgain": "Більше не відображати", - "DE.Controllers.DocumentHolder.textGuest": "Гість", - "DE.Controllers.DocumentHolder.textRows": "Рядки", - "DE.Controllers.EditContainer.textChart": "Діаграма", - "DE.Controllers.EditContainer.textFooter": "Колонтитул", - "DE.Controllers.EditContainer.textHeader": "Колонтитул", - "DE.Controllers.EditContainer.textHyperlink": "Гіперсилка", - "DE.Controllers.EditContainer.textImage": "Зображення", - "DE.Controllers.EditContainer.textParagraph": "Параграф", - "DE.Controllers.EditContainer.textSettings": "Налаштування", - "DE.Controllers.EditContainer.textShape": "Форма", - "DE.Controllers.EditContainer.textTable": "Таблиця", - "DE.Controllers.EditContainer.textText": "Текст", - "DE.Controllers.EditHyperlink.notcriticalErrorTitle": "Увага", - "DE.Controllers.EditHyperlink.textEmptyImgUrl": "Потрібно вказати URL-адресу зображення.", - "DE.Controllers.EditHyperlink.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com'", - "DE.Controllers.EditImage.notcriticalErrorTitle": "Увага", - "DE.Controllers.EditImage.textEmptyImgUrl": "Потрібно вказати URL-адресу зображення.", - "DE.Controllers.EditImage.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "DE.Controllers.EditText.textAuto": "Авто", - "DE.Controllers.EditText.textFonts": "Шрифти", - "DE.Controllers.EditText.textPt": "Пт", - "DE.Controllers.Main.advDRMEnterPassword": "Введіть свій пароль:", - "DE.Controllers.Main.advDRMOptions": "Захищений файл", - "DE.Controllers.Main.advDRMPassword": "Пароль", - "DE.Controllers.Main.advTxtOptions": "Виберіть параметри TXT", - "DE.Controllers.Main.applyChangesTextText": "Завантаження дати...", - "DE.Controllers.Main.applyChangesTitleText": "Дата завантаження", - "DE.Controllers.Main.closeButtonText": "Закрити файл", - "DE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.", - "DE.Controllers.Main.criticalErrorExtText": "Натисніть \"ОК\", щоб повернутися до списку документів.", - "DE.Controllers.Main.criticalErrorTitle": "Помилка", - "DE.Controllers.Main.downloadErrorText": "Завантаження не вдалося", - "DE.Controllers.Main.downloadMergeText": "Завантаження...", - "DE.Controllers.Main.downloadMergeTitle": "Завантаження", - "DE.Controllers.Main.downloadTextText": "Завантаження документу...", - "DE.Controllers.Main.downloadTitleText": "Завантаження документу", - "DE.Controllers.Main.errorAccessDeny": "Ви намагаєтеся виконати дію, для якої у вас немає прав.
    Будь ласка, зв'яжіться з адміністратором Сервера документів.", - "DE.Controllers.Main.errorBadImageUrl": "URL-адреса зображення невірна", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "З'єднання з сервером втрачено. Ви більше не можете редагувати.", - "DE.Controllers.Main.errorConnectToServer": "Не вдалося зберегти документ. Будь ласка, перевірте налаштування з'єднання або зверніться до свого адміністратора.
    Після натискання кнопки «ОК» вам буде запропоновано завантажити документ.", - "DE.Controllers.Main.errorDatabaseConnection": "Зовнішня помилка.
    Помилка підключення до бази даних. Будь ласка, зв'яжіться зі службою підтримки.", - "DE.Controllers.Main.errorDataEncrypted": "Отримані зашифровані зміни, їх неможливо розшифрувати.", - "DE.Controllers.Main.errorDataRange": "Неправильний діапазон даних.", - "DE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ", - "DE.Controllers.Main.errorEditingDownloadas": "Під час роботи з документом сталася помилка.
    Скористайтеся опцією \"Завантажити\" для збереження резервної копії файлу на жорсткому диску комп’ютера.", - "DE.Controllers.Main.errorFilePassProtect": "Документ захищено паролем", - "DE.Controllers.Main.errorFileSizeExceed": "Розмір файлу перевищує обмеження, встановлені для вашого сервера.
    Для детальної інформації зверніться до адміністратора Сервера документів.", - "DE.Controllers.Main.errorKeyEncrypt": "Невідомий дескриптор ключа", - "DE.Controllers.Main.errorKeyExpire": "Ключовий дескриптор закінчився", - "DE.Controllers.Main.errorMailMergeLoadFile": "Завантаження не вдалося. Оберіть інший файл.", - "DE.Controllers.Main.errorMailMergeSaveFile": "Помилка Об'єднання", - "DE.Controllers.Main.errorOpensource": "Використовуючи безкоштовну версію спільноти ви можете відкривати документи лише для перегляду. Для доступу до мобільних веб-редакторів потрібна комерційна ліцензія.", - "DE.Controllers.Main.errorProcessSaveResult": "Помилка збереження", - "DE.Controllers.Main.errorServerVersion": "Версія редактора була оновлена. Сторінка буде перезавантажена, щоб застосувати зміни.", - "DE.Controllers.Main.errorSessionAbsolute": "Сесія редагування документа закінчилася. Будь ласка, перезавантажте сторінку.", - "DE.Controllers.Main.errorSessionIdle": "Документ тривалий час не редагувався. Перезавантажте сторінку.", - "DE.Controllers.Main.errorSessionToken": "З'єднання з сервером було перервано. Перезавантажте сторінку", - "DE.Controllers.Main.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", - "DE.Controllers.Main.errorUpdateVersion": "Версія файлу була змінена. Сторінка буде перезавантажена.", - "DE.Controllers.Main.errorUpdateVersionOnDisconnect": "Підключення до Інтернету було відновлено, а версія файлу змінена.
    Перш ніж продовжувати роботу, потрібно завантажити файл або скопіювати його вміст, щоб забезпечити цілісність даних, а потім перезавантажити дану сторінку.", - "DE.Controllers.Main.errorUserDrop": "На даний момент файл не доступний.", - "DE.Controllers.Main.errorUsersExceed": "Кількість користувачів перевищено", - "DE.Controllers.Main.errorViewerDisconnect": "З'єднання втрачено. Ви все ще можете переглянути документ,
    але не зможете завантажувати його до відновлення зеднання та оновлення сторінки.", - "DE.Controllers.Main.leavePageText": "У цьому документі є незбережені зміни. Натисніть \"Залишатися на цій сторінці\", щоб дочекатись автоматичного збереження документа. Натисніть \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", - "DE.Controllers.Main.loadFontsTextText": "Завантаження дати...", - "DE.Controllers.Main.loadFontsTitleText": "Дата завантаження", - "DE.Controllers.Main.loadFontTextText": "Завантаження дати...", - "DE.Controllers.Main.loadFontTitleText": "Дата завантаження", - "DE.Controllers.Main.loadImagesTextText": "Завантаження зображень...", - "DE.Controllers.Main.loadImagesTitleText": "Завантаження зображень", - "DE.Controllers.Main.loadImageTextText": "Завантаження зображення...", - "DE.Controllers.Main.loadImageTitleText": "Завантаження зображення", - "DE.Controllers.Main.loadingDocumentTextText": "Завантаження документа...", - "DE.Controllers.Main.loadingDocumentTitleText": "Завантаження документа", - "DE.Controllers.Main.mailMergeLoadFileText": "Завантаження джерела даних...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Завантаження джерела даних", - "DE.Controllers.Main.notcriticalErrorTitle": "Застереження", - "DE.Controllers.Main.openErrorText": "Під час відкриття файлу сталася помилка.", - "DE.Controllers.Main.openTextText": "Відкриття документа...", - "DE.Controllers.Main.openTitleText": "Відкриття документа", - "DE.Controllers.Main.printTextText": "Роздрукування документа...", - "DE.Controllers.Main.printTitleText": "Роздрукування документа", - "DE.Controllers.Main.saveErrorText": "Під час збереження файлу сталася помилка.", - "DE.Controllers.Main.savePreparingText": "Підготовка до зберігання", - "DE.Controllers.Main.savePreparingTitle": "Підготовка до зберігання. Будь ласка, зачекайте...", - "DE.Controllers.Main.saveTextText": "Збереження документа...", - "DE.Controllers.Main.saveTitleText": "Збереження документа", - "DE.Controllers.Main.scriptLoadError": "З'єднання занадто повільне, деякі компоненти не вдалося завантажити. Перезавантажте сторінку.", - "DE.Controllers.Main.sendMergeText": "Відправлення злиття...", - "DE.Controllers.Main.sendMergeTitle": "Відправлення злиття", - "DE.Controllers.Main.splitDividerErrorText": "Кількість рядків повинна бути дільником% 1", - "DE.Controllers.Main.splitMaxColsErrorText": "Кількість стовпців повинна бути меншою за% 1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Кількість рядків повинна бути менше% 1", - "DE.Controllers.Main.textAnonymous": "Aнонім", - "DE.Controllers.Main.textBack": "Назад", - "DE.Controllers.Main.textBuyNow": "Відвідати сайт", - "DE.Controllers.Main.textCancel": "Скасувати", - "DE.Controllers.Main.textClose": "Закрити", - "DE.Controllers.Main.textContactUs": "Відділ продажів", - "DE.Controllers.Main.textCustomLoader": "Зверніть увагу, що згідно з умовами ліцензії ви не маєте права змінювати завантажувач.
    Будь ласка, зв'яжіться з нашим відділом продажів, щоб виконати запит.", - "DE.Controllers.Main.textDone": "Готово", - "DE.Controllers.Main.textGuest": "Гість", - "DE.Controllers.Main.textHasMacros": "Файл містить автоматичні макроси.
    Запустити макроси?", - "DE.Controllers.Main.textLoadingDocument": "Завантаження документа", - "DE.Controllers.Main.textNo": "Ні", - "DE.Controllers.Main.textNoLicenseTitle": "Досягнуто ліміту ліцензії", - "DE.Controllers.Main.textOK": "OК", - "DE.Controllers.Main.textPaidFeature": "Платна функція", - "DE.Controllers.Main.textPassword": "Пароль", - "DE.Controllers.Main.textPreloader": "Завантаження...", - "DE.Controllers.Main.textRemember": "Запам’ятати мій вибір для всіх файлів", - "DE.Controllers.Main.textTryUndoRedo": "Функції Undo / Redo відключені для режиму швидкого редагування.", - "DE.Controllers.Main.textUsername": "Ім'я користувача", - "DE.Controllers.Main.textYes": "Так", - "DE.Controllers.Main.titleLicenseExp": "Термін дії ліцензії закінчився", - "DE.Controllers.Main.titleServerVersion": "Редактор оновлено", - "DE.Controllers.Main.titleUpdateVersion": "Версію змінено", - "DE.Controllers.Main.txtAbove": "вище", - "DE.Controllers.Main.txtArt": "Ваш текст тут", - "DE.Controllers.Main.txtBelow": "нижче", - "DE.Controllers.Main.txtCurrentDocument": "Поточний документ", - "DE.Controllers.Main.txtDiagramTitle": "Назва діграми", - "DE.Controllers.Main.txtEditingMode": "Встановити режим редагування ...", - "DE.Controllers.Main.txtEvenPage": "З парної сторінки", - "DE.Controllers.Main.txtFirstPage": "Перша сторінка", - "DE.Controllers.Main.txtFooter": "Нижній колонтитул", - "DE.Controllers.Main.txtHeader": "Верхній колонтитул", - "DE.Controllers.Main.txtOddPage": "З непарної сторінки", - "DE.Controllers.Main.txtOnPage": "на сторінці", - "DE.Controllers.Main.txtProtected": "Після введення пароля та відкриття файлу поточний пароль буде скинуто", - "DE.Controllers.Main.txtSameAsPrev": "Як в попередньому", - "DE.Controllers.Main.txtSection": "-Розділ", - "DE.Controllers.Main.txtSeries": "Серії", - "DE.Controllers.Main.txtStyle_footnote_text": "Текст виноски", - "DE.Controllers.Main.txtStyle_Heading_1": "Заголовок 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Заголовок 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Заголовок 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Заголовок 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Заголовок 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Заголовок 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Заголовок 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Заголовок 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Заголовок 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Інтенсивне цитування", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Список абзацу", - "DE.Controllers.Main.txtStyle_No_Spacing": "Немає пропусків", - "DE.Controllers.Main.txtStyle_Normal": "Нормальний", - "DE.Controllers.Main.txtStyle_Quote": "Цитувати", - "DE.Controllers.Main.txtStyle_Subtitle": "Субтитри", - "DE.Controllers.Main.txtStyle_Title": "Назва", - "DE.Controllers.Main.txtXAxis": "X Ось", - "DE.Controllers.Main.txtYAxis": "Y ось", - "DE.Controllers.Main.unknownErrorText": "Невідома помилка.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не підтримується", - "DE.Controllers.Main.uploadImageExtMessage": "Невідомий формат зображення.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Не завантажено жодного зображення.", - "DE.Controllers.Main.uploadImageSizeMessage": "Максимальний розмір зображення перевищено.", - "DE.Controllers.Main.uploadImageTextText": "Завантаження зображення...", - "DE.Controllers.Main.uploadImageTitleText": "Завантаження зображення", - "DE.Controllers.Main.waitText": "Будь ласка, зачекайте...", - "DE.Controllers.Main.warnLicenseExceeded": "Ви досягли ліміту одночасного підключення до редакторів %1. Цей документ буде відкритий лише для перегляду.
    Щоб дізнатися більше, зв’яжіться зі своїм адміністратором.", - "DE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув.
    Будь ласка, оновіть свою ліцензію та оновіть сторінку.", - "DE.Controllers.Main.warnLicenseLimitedNoAccess": "Термін дії ліцензії закінчився.
    Вам закрито доступ до функцій редагування документів.
    Просимо звернутися до свого адміністратора.", - "DE.Controllers.Main.warnLicenseLimitedRenewed": "Потрібно поновити ліцензію.
    У вас обмежений доступ до функцій редагування документів.
    Просимо звернутися до свого адміністратора, щоб отримати повний доступ", - "DE.Controllers.Main.warnLicenseUsersExceeded": "Ви досягли ліміту на кількість користувачів редакторів %1.
    Зв'яжіться з адміністратором, щоб дізнатися більше.", - "DE.Controllers.Main.warnNoLicense": "Ви досягли ліміту одночасного підключення до %1 редакторів. Цей документ буде відкритий лише для перегляду.
    Для персональних умов оновлення зв’яжіться з персоналом продажів %1. ", - "DE.Controllers.Main.warnNoLicenseUsers": "Ви досягли ліміту на одночасне підключення до редакторів %1.
    Напишіть у відділ продаж %1, для обговорення індивідуальних умов ліцензування.", - "DE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", - "DE.Controllers.Search.textNoTextFound": "Текст не знайдено", - "DE.Controllers.Search.textReplaceAll": "Замінити усе", - "DE.Controllers.Settings.notcriticalErrorTitle": "Застереження", - "DE.Controllers.Settings.textCustomSize": "Спеціальний розмір", - "DE.Controllers.Settings.txtLoading": "Завантаження...", - "DE.Controllers.Settings.unknownText": "Невідомий", - "DE.Controllers.Settings.warnDownloadAs": "Якщо ви продовжите збереження в цьому форматі, всі функції, окрім тексту, буде втрачено.
    Ви впевнені, що хочете продовжити?", - "DE.Controllers.Settings.warnDownloadAsRTF": "Якщо продовжувати зберігати у цьому форматі, деяке форматування може бути втрачено.
    Ви впевнені, що хочете продовжити?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "У цьому документі є незбережені зміни. Натисніть \"Залишатися на цій сторінці\", щоб дочекатись автоматичного збереження документа. Натисніть \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Ви залишили заявку", - "DE.Controllers.Toolbar.leaveButtonText": "Залишити цю сторінку", - "DE.Controllers.Toolbar.stayButtonText": "Залишатись на цій сторінці", - "DE.Views.AddImage.textAddress": "Адреса", - "DE.Views.AddImage.textBack": "Назад", - "DE.Views.AddImage.textFromLibrary": "Зображення з бібліотеки", - "DE.Views.AddImage.textFromURL": "Зображення з URL", - "DE.Views.AddImage.textImageURL": "URL зображення", - "DE.Views.AddImage.textInsertImage": "Вставити зображення", - "DE.Views.AddImage.textLinkSettings": "Налаштування посилання", - "DE.Views.AddOther.textAddComment": "Додати коментар", - "DE.Views.AddOther.textAddLink": "Додати посилання", - "DE.Views.AddOther.textBack": "Назад", - "DE.Views.AddOther.textBreak": "Розрив", - "DE.Views.AddOther.textCenterBottom": "Центр внизу", - "DE.Views.AddOther.textCenterTop": "Центр зверху", - "DE.Views.AddOther.textColumnBreak": "Розрив стовпця", - "DE.Views.AddOther.textComment": "Коментар", - "DE.Views.AddOther.textContPage": "Неперервна Сторінка", - "DE.Views.AddOther.textCurrentPos": "Поточна позиція", - "DE.Views.AddOther.textDisplay": "Дісплей", - "DE.Views.AddOther.textDone": "Готово", - "DE.Views.AddOther.textEvenPage": "Навіть сторінка", - "DE.Views.AddOther.textFootnote": "Виноска", - "DE.Views.AddOther.textFormat": "Формат", - "DE.Views.AddOther.textInsert": "Вставити", - "DE.Views.AddOther.textInsertFootnote": "Вставити виноску", - "DE.Views.AddOther.textLeftBottom": "Зліва знизу", - "DE.Views.AddOther.textLeftTop": "Зліва направо", - "DE.Views.AddOther.textLink": "Посилання", - "DE.Views.AddOther.textLocation": "Розташування", - "DE.Views.AddOther.textNextPage": "Наступна сторінка", - "DE.Views.AddOther.textOddPage": "Непарна сторінка", - "DE.Views.AddOther.textPageBreak": "Розрив сторінки", - "DE.Views.AddOther.textPageNumber": "Номер сторінки", - "DE.Views.AddOther.textPosition": "Позиція", - "DE.Views.AddOther.textRightBottom": "Праворуч внизу", - "DE.Views.AddOther.textRightTop": "Праворуч зверху", - "DE.Views.AddOther.textSectionBreak": "Розбиття на розділ", - "DE.Views.AddOther.textStartFrom": "Розпочати з", - "DE.Views.AddOther.textTip": "Підказка для екрана", - "DE.Views.EditChart.textAddCustomColor": "Додати власний колір", - "DE.Views.EditChart.textAlign": "Вирівняти", - "DE.Views.EditChart.textBack": "Назад", - "DE.Views.EditChart.textBackward": "Перемістити назад", - "DE.Views.EditChart.textBehind": "Позаду", - "DE.Views.EditChart.textBorder": "Межа", - "DE.Views.EditChart.textColor": "Колір", - "DE.Views.EditChart.textCustomColor": "Власний колір", - "DE.Views.EditChart.textDistanceText": "Відстань від тексту", - "DE.Views.EditChart.textFill": "Заповнити", - "DE.Views.EditChart.textForward": "Перемістити вперед", - "DE.Views.EditChart.textInFront": "Попереду", - "DE.Views.EditChart.textInline": "Вбудований", - "DE.Views.EditChart.textMoveText": "Перемістити з текстом", - "DE.Views.EditChart.textOverlap": "Дозволити перекриття", - "DE.Views.EditChart.textRemoveChart": "Видалити діаграму", - "DE.Views.EditChart.textReorder": "Змінити порядок", - "DE.Views.EditChart.textSize": "Розмір", - "DE.Views.EditChart.textSquare": "Площа", - "DE.Views.EditChart.textStyle": "Стиль", - "DE.Views.EditChart.textThrough": "Через", - "DE.Views.EditChart.textTight": "Тісно", - "DE.Views.EditChart.textToBackground": "Надіслати до фону", - "DE.Views.EditChart.textToForeground": "Перенести на передній план", - "DE.Views.EditChart.textTopBottom": "Верх і низ", - "DE.Views.EditChart.textType": "Тип", - "DE.Views.EditChart.textWrap": "Обернути", - "DE.Views.EditHeader.textDiffFirst": "Різна перша сторінка", - "DE.Views.EditHeader.textDiffOdd": "Різні непарні та рівноцінні сторінки", - "DE.Views.EditHeader.textFrom": "Розпочати з", - "DE.Views.EditHeader.textPageNumbering": "Нумерація сторінок", - "DE.Views.EditHeader.textPrev": "Продовження з попереднього розділу", - "DE.Views.EditHeader.textSameAs": "З'єднати з попереднім", - "DE.Views.EditHyperlink.textDisplay": "Дісплей", - "DE.Views.EditHyperlink.textEdit": "Редагувати посилання", - "DE.Views.EditHyperlink.textLink": "Посилання", - "DE.Views.EditHyperlink.textRemove": "Видалити посилання", - "DE.Views.EditHyperlink.textTip": "Підказка для екрана", - "DE.Views.EditImage.textAddress": "Адреса", - "DE.Views.EditImage.textAlign": "Вирівняти", - "DE.Views.EditImage.textBack": "Назад", - "DE.Views.EditImage.textBackward": "Перемістити назад", - "DE.Views.EditImage.textBehind": "Позаду", - "DE.Views.EditImage.textDefault": "Реальний розмір", - "DE.Views.EditImage.textDistanceText": "Відстань від тексту", - "DE.Views.EditImage.textForward": "Перемістити вперед", - "DE.Views.EditImage.textFromLibrary": "Зображення з бібліотеки", - "DE.Views.EditImage.textFromURL": "Зображення з URL", - "DE.Views.EditImage.textImageURL": "URL зображення", - "DE.Views.EditImage.textInFront": "Попереду", - "DE.Views.EditImage.textInline": "Вбудований", - "DE.Views.EditImage.textLinkSettings": "Налаштування посилання", - "DE.Views.EditImage.textMoveText": "Перемістити з текстом", - "DE.Views.EditImage.textOverlap": "Дозволити перекриття", - "DE.Views.EditImage.textRemove": "Видалити зображення", - "DE.Views.EditImage.textReorder": "Змінити порядок", - "DE.Views.EditImage.textReplace": "Замінити", - "DE.Views.EditImage.textReplaceImg": "Замінити зображення", - "DE.Views.EditImage.textSquare": "Площа", - "DE.Views.EditImage.textThrough": "Через", - "DE.Views.EditImage.textTight": "Тісно", - "DE.Views.EditImage.textToBackground": "Надіслати до фону", - "DE.Views.EditImage.textToForeground": "Перенести на передній план", - "DE.Views.EditImage.textTopBottom": "Верх і низ", - "DE.Views.EditImage.textWrap": "Обернути", - "DE.Views.EditParagraph.textAddCustomColor": "Додати власний колір", - "DE.Views.EditParagraph.textAdvanced": "Розширений", - "DE.Views.EditParagraph.textAdvSettings": "Додаткові налаштування", - "DE.Views.EditParagraph.textAfter": "Після", - "DE.Views.EditParagraph.textAuto": "Авто", - "DE.Views.EditParagraph.textBack": "Назад", - "DE.Views.EditParagraph.textBackground": "Колір тла", - "DE.Views.EditParagraph.textBefore": "Перед", - "DE.Views.EditParagraph.textCustomColor": "Власний колір", - "DE.Views.EditParagraph.textFirstLine": "Перша строка", - "DE.Views.EditParagraph.textFromText": "Відстань від тексту", - "DE.Views.EditParagraph.textKeepLines": "Тримайте лінії разом", - "DE.Views.EditParagraph.textKeepNext": "Зберегати з текстом", - "DE.Views.EditParagraph.textOrphan": "Сирітський контроль", - "DE.Views.EditParagraph.textPageBreak": "Розрив сторінки перед", - "DE.Views.EditParagraph.textPrgStyles": "Стилі параграфу", - "DE.Views.EditParagraph.textSpaceBetween": "Простір між параграфами", - "DE.Views.EditShape.textAddCustomColor": "Додати власний колір", - "DE.Views.EditShape.textAlign": "Вирівняти", - "DE.Views.EditShape.textBack": "Назад", - "DE.Views.EditShape.textBackward": "Перемістити назад", - "DE.Views.EditShape.textBehind": "Позаду", - "DE.Views.EditShape.textBorder": "Межа", - "DE.Views.EditShape.textColor": "Колір", - "DE.Views.EditShape.textCustomColor": "Власний колір", - "DE.Views.EditShape.textEffects": "Ефекти", - "DE.Views.EditShape.textFill": "Заповнити", - "DE.Views.EditShape.textForward": "Перемістити вперед", - "DE.Views.EditShape.textFromText": "Відстань від тексту", - "DE.Views.EditShape.textInFront": "Попереду", - "DE.Views.EditShape.textInline": "Вбудований", - "DE.Views.EditShape.textOpacity": "Непрозорість", - "DE.Views.EditShape.textOverlap": "Дозволити перекриття", - "DE.Views.EditShape.textRemoveShape": "Видалити форму", - "DE.Views.EditShape.textReorder": "Змінити порядок", - "DE.Views.EditShape.textReplace": "Замінити", - "DE.Views.EditShape.textSize": "Розмір", - "DE.Views.EditShape.textSquare": "Площа", - "DE.Views.EditShape.textStyle": "Стиль", - "DE.Views.EditShape.textThrough": "Через", - "DE.Views.EditShape.textTight": "Тісно", - "DE.Views.EditShape.textToBackground": "Надіслати до фону", - "DE.Views.EditShape.textToForeground": "Перенести на передній план", - "DE.Views.EditShape.textTopAndBottom": "Верх і низ", - "DE.Views.EditShape.textWithText": "Перемістити з текстом", - "DE.Views.EditShape.textWrap": "Обернути", - "DE.Views.EditTable.textAddCustomColor": "Додати власний колір", - "DE.Views.EditTable.textAlign": "Вирівняти", - "DE.Views.EditTable.textBack": "Назад", - "DE.Views.EditTable.textBandedColumn": "Колонка з бланками", - "DE.Views.EditTable.textBandedRow": "Рядок з бланками", - "DE.Views.EditTable.textBorder": "Межа", - "DE.Views.EditTable.textCellMargins": "Поля клітини", - "DE.Views.EditTable.textColor": "Колір", - "DE.Views.EditTable.textCustomColor": "Власний колір", - "DE.Views.EditTable.textFill": "Заповнити", - "DE.Views.EditTable.textFirstColumn": "Перша колонка", - "DE.Views.EditTable.textFlow": "Розпливатися", - "DE.Views.EditTable.textFromText": "Відстань від тексту", - "DE.Views.EditTable.textHeaderRow": "Рядок заголовка", - "DE.Views.EditTable.textInline": "Вбудований", - "DE.Views.EditTable.textLastColumn": "Остання колонка", - "DE.Views.EditTable.textOptions": "Опції", - "DE.Views.EditTable.textRemoveTable": "Видалити таблицю", - "DE.Views.EditTable.textRepeatHeader": "Повторити рядок заголовка", - "DE.Views.EditTable.textResizeFit": "Зміна розміру за розміром вмісту", - "DE.Views.EditTable.textSize": "Розмір", - "DE.Views.EditTable.textStyle": "Стиль", - "DE.Views.EditTable.textStyleOptions": "Опції стилю", - "DE.Views.EditTable.textTableOptions": "Опції таблиці", - "DE.Views.EditTable.textTotalRow": "Загальні рядки", - "DE.Views.EditTable.textWithText": "Перемістити з текстом", - "DE.Views.EditTable.textWrap": "Обернути", - "DE.Views.EditText.textAddCustomColor": "Додати власний колір", - "DE.Views.EditText.textAdditional": "Додатковий", - "DE.Views.EditText.textAdditionalFormat": "Додаткове форматування", - "DE.Views.EditText.textAllCaps": "Усі прописні", - "DE.Views.EditText.textAutomatic": "Автоматично", - "DE.Views.EditText.textBack": "Назад", - "DE.Views.EditText.textBullets": "Кулі", - "DE.Views.EditText.textCharacterBold": "Ж", - "DE.Views.EditText.textCharacterItalic": "К", - "DE.Views.EditText.textCharacterStrikethrough": "Т", - "DE.Views.EditText.textCharacterUnderline": "Ч", - "DE.Views.EditText.textCustomColor": "Власний колір", - "DE.Views.EditText.textDblStrikethrough": "Подвійне перекреслення", - "DE.Views.EditText.textDblSuperscript": "Надрядковий", - "DE.Views.EditText.textFontColor": "Колір шрифту", - "DE.Views.EditText.textFontColors": "Кольори шрифту", - "DE.Views.EditText.textFonts": "Шрифти", - "DE.Views.EditText.textHighlightColor": "Виділити колір", - "DE.Views.EditText.textHighlightColors": "Виділити кольорами", - "DE.Views.EditText.textLetterSpacing": "Міжрядковий інтервал", - "DE.Views.EditText.textLineSpacing": "Лінія інтервалу", - "DE.Views.EditText.textNone": "Жоден", - "DE.Views.EditText.textNumbers": "Номери", - "DE.Views.EditText.textSize": "Розмір", - "DE.Views.EditText.textSmallCaps": "Зменшені великі", - "DE.Views.EditText.textStrikethrough": "Перекреслення", - "DE.Views.EditText.textSubscript": "Підрядковий", - "DE.Views.Search.textCase": "Чутливість до регістору символів", - "DE.Views.Search.textDone": "Готово", - "DE.Views.Search.textFind": "Знайти", - "DE.Views.Search.textFindAndReplace": "Знайти та перемістити", - "DE.Views.Search.textHighlight": "Виділіть результати", - "DE.Views.Search.textReplace": "Замінити", - "DE.Views.Search.textSearch": "Пошук", - "DE.Views.Settings.textAbout": "Про програму", - "DE.Views.Settings.textAddress": "Адреса", - "DE.Views.Settings.textAdvancedSettings": "Налаштування додатка", - "DE.Views.Settings.textApplication": "Додаток", - "DE.Views.Settings.textAuthor": "Автор", - "DE.Views.Settings.textBack": "Назад", - "DE.Views.Settings.textBottom": "Внизу", - "DE.Views.Settings.textCentimeter": "Сантиметр", - "DE.Views.Settings.textCollaboration": "Співпраця", - "DE.Views.Settings.textColorSchemes": "Схеми кольорів", - "DE.Views.Settings.textComment": "Коментар", - "DE.Views.Settings.textCommentingDisplay": "Відображення коментарів", - "DE.Views.Settings.textCreated": "Створено", - "DE.Views.Settings.textCreateDate": "Дата створення", - "DE.Views.Settings.textCustom": "Користувальницький", - "DE.Views.Settings.textCustomSize": "Спеціальний розмір", - "DE.Views.Settings.textDisableAll": "Вимкнути все", - "DE.Views.Settings.textDisableAllMacrosWithNotification": "Вимкнути всі макроси з сповіщенням", - "DE.Views.Settings.textDisableAllMacrosWithoutNotification": "Вимкнути всі макроси без сповіщення", - "DE.Views.Settings.textDisplayComments": "Коментарі", - "DE.Views.Settings.textDisplayResolvedComments": "Вирішені коментарі", - "DE.Views.Settings.textDocInfo": "Інофрмація документа", - "DE.Views.Settings.textDocTitle": "Назва документу", - "DE.Views.Settings.textDocumentFormats": "Формати документа", - "DE.Views.Settings.textDocumentSettings": "Налаштування документа", - "DE.Views.Settings.textDone": "Готово", - "DE.Views.Settings.textDownload": "Скачати", - "DE.Views.Settings.textDownloadAs": "Завантажити як...", - "DE.Views.Settings.textEditDoc": "Редагувати документ", - "DE.Views.Settings.textEmail": "Пошта", - "DE.Views.Settings.textEnableAll": "Увімкнути все", - "DE.Views.Settings.textEnableAllMacrosWithoutNotification": "Задіяти всі макроси без сповіщення", - "DE.Views.Settings.textFind": "Знайти", - "DE.Views.Settings.textFindAndReplace": "Знайти та перемістити", - "DE.Views.Settings.textFormat": "Формат", - "DE.Views.Settings.textHelp": "Допомога", - "DE.Views.Settings.textHiddenTableBorders": "Приховані границі таблиці", - "DE.Views.Settings.textInch": "Дюйм", - "DE.Views.Settings.textLandscape": "ландшафт", - "DE.Views.Settings.textLastModified": "Остання зміна", - "DE.Views.Settings.textLastModifiedBy": "Востаннє змінено", - "DE.Views.Settings.textLeft": "Лівий", - "DE.Views.Settings.textLoading": "Завантаження...", - "DE.Views.Settings.textLocation": "Розташування", - "DE.Views.Settings.textMacrosSettings": "Налаштування макросів", - "DE.Views.Settings.textMargins": "Поля", - "DE.Views.Settings.textNoCharacters": "Недруковані символи", - "DE.Views.Settings.textOrientation": "Орієнтація", - "DE.Views.Settings.textOwner": "Власник", - "DE.Views.Settings.textPages": "Сторінки", - "DE.Views.Settings.textParagraphs": "Параграфи", - "DE.Views.Settings.textPoint": "Пункт", - "DE.Views.Settings.textPortrait": "Портрет", - "DE.Views.Settings.textPoweredBy": "Під керуванням", - "DE.Views.Settings.textPrint": "Роздрукувати", - "DE.Views.Settings.textReader": "Режим читання", - "DE.Views.Settings.textReview": "Відстежувати зміни", - "DE.Views.Settings.textRight": "Право", - "DE.Views.Settings.textSettings": "Налаштування", - "DE.Views.Settings.textShowNotification": "Показати сповіщення", - "DE.Views.Settings.textSpaces": "Пробіли", - "DE.Views.Settings.textSpellcheck": "Перевірка орфографії", - "DE.Views.Settings.textStatistic": "Статистика", - "DE.Views.Settings.textSubject": "Тема", - "DE.Views.Settings.textSymbols": "Символи", - "DE.Views.Settings.textTel": "Телефон", - "DE.Views.Settings.textTitle": "Заголовок", - "DE.Views.Settings.textTop": "Верхнє", - "DE.Views.Settings.textUnitOfMeasurement": "Одиниця виміру", - "DE.Views.Settings.textUploaded": "Завантажено", - "DE.Views.Settings.textVersion": "Версія", - "DE.Views.Settings.textWords": "Слова", - "DE.Views.Settings.unknownText": "Невідомий", - "DE.Views.Toolbar.textBack": "Назад" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/vi.json b/apps/documenteditor/mobile/locale/vi.json index 328146810..f1387717c 100644 --- a/apps/documenteditor/mobile/locale/vi.json +++ b/apps/documenteditor/mobile/locale/vi.json @@ -1,377 +1,577 @@ { - "Common.UI.ThemeColorPalette.textStandartColors": "Màu chuẩn", - "Common.UI.ThemeColorPalette.textThemeColors": "Màu theme", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "DE.Controllers.AddContainer.textImage": "Hình ảnh", - "DE.Controllers.AddContainer.textOther": "Khác", - "DE.Controllers.AddContainer.textShape": "Hình dạng", - "DE.Controllers.AddContainer.textTable": "Bảng", - "DE.Controllers.AddImage.textEmptyImgUrl": "Bạn cần chỉ định URL hình ảnh.", - "DE.Controllers.AddImage.txtNotUrl": "Trường này phải là một URL có định dạng 'http://www.example.com'", - "DE.Controllers.AddOther.txtNotUrl": "Trường này phải là một URL có định dạng 'http://www.example.com'", - "DE.Controllers.AddTable.textCancel": "Hủy", - "DE.Controllers.AddTable.textColumns": "Cột", - "DE.Controllers.AddTable.textRows": "Hàng", - "DE.Controllers.AddTable.textTableSize": "Kích thước bảng", - "DE.Controllers.DocumentHolder.menuAddLink": "Thêm liên kết", - "DE.Controllers.DocumentHolder.menuCopy": "Sao chép", - "DE.Controllers.DocumentHolder.menuCut": "Cắt", - "DE.Controllers.DocumentHolder.menuDelete": "Xóa", - "DE.Controllers.DocumentHolder.menuEdit": "Chỉnh sửa", - "DE.Controllers.DocumentHolder.menuMore": "Thêm", - "DE.Controllers.DocumentHolder.menuOpenLink": "Mở liên kết", - "DE.Controllers.DocumentHolder.menuPaste": "Dán", - "DE.Controllers.DocumentHolder.sheetCancel": "Hủy", - "DE.Controllers.DocumentHolder.textGuest": "Khách", - "DE.Controllers.EditContainer.textChart": "Biểu đồ", - "DE.Controllers.EditContainer.textHyperlink": "Siêu liên kết", - "DE.Controllers.EditContainer.textImage": "Hình ảnh", - "DE.Controllers.EditContainer.textParagraph": "Đoạn văn bản", - "DE.Controllers.EditContainer.textSettings": "Cài đặt", - "DE.Controllers.EditContainer.textShape": "Hình dạng", - "DE.Controllers.EditContainer.textTable": "Bảng", - "DE.Controllers.EditContainer.textText": "Văn bản", - "DE.Controllers.EditImage.textEmptyImgUrl": "Bạn cần chỉ định URL hình ảnh.", - "DE.Controllers.EditImage.txtNotUrl": "Trường này phải là một URL có định dạng 'http://www.example.com'", - "DE.Controllers.EditText.textAuto": "Tự động", - "DE.Controllers.EditText.textFonts": "Phông chữ", - "DE.Controllers.EditText.textPt": "pt", - "DE.Controllers.Main.advDRMEnterPassword": "Nhập mật khẩu của bạn:", - "DE.Controllers.Main.advDRMOptions": "File được bảo vệ", - "DE.Controllers.Main.advDRMPassword": "Mật khẩu", - "DE.Controllers.Main.advTxtOptions": "Chọn tùy chọn TXT", - "DE.Controllers.Main.applyChangesTextText": "Đang tải dữ liệu...", - "DE.Controllers.Main.applyChangesTitleText": "Đang tải Dữ liệu", - "DE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.", - "DE.Controllers.Main.criticalErrorExtText": "Ấn 'OK' để trở lại danh sách tài liệu.", - "DE.Controllers.Main.criticalErrorTitle": "Lỗi", - "DE.Controllers.Main.downloadErrorText": "Tải về không thành công.", - "DE.Controllers.Main.downloadMergeText": "Đang tải...", - "DE.Controllers.Main.downloadMergeTitle": "Đang tải về", - "DE.Controllers.Main.downloadTextText": "Đang tải tài liệu...", - "DE.Controllers.Main.downloadTitleText": "Đang tải tài liệu...", - "DE.Controllers.Main.errorBadImageUrl": "URL hình ảnh không chính xác", - "DE.Controllers.Main.errorCoAuthoringDisconnect": "Kết nối máy chủ bị mất. Bạn không thể chỉnh sửa nữa.", - "DE.Controllers.Main.errorConnectToServer": "Không thể lưu tài liệu. Vui lòng kiểm tra cài đặt kết nối hoặc liên hệ với quản trị viên của bạn.
    Khi bạn nhấp vào nút 'OK', bạn sẽ được nhắc tải xuống tài liệu.", - "DE.Controllers.Main.errorDatabaseConnection": "Lỗi bên ngoài.
    Lỗi kết nối cơ sở dữ liệu. Vui lòng liên hệ bộ phận hỗ trợ.", - "DE.Controllers.Main.errorDataRange": "Phạm vi dữ liệu không chính xác.", - "DE.Controllers.Main.errorDefaultMessage": "Mã lỗi: %1", - "DE.Controllers.Main.errorFilePassProtect": "Tài liệu được bảo vệ bằng mật khẩu.", - "DE.Controllers.Main.errorKeyEncrypt": "Key descriptor không xác định", - "DE.Controllers.Main.errorKeyExpire": "Key của descriptor đã hết hạn", - "DE.Controllers.Main.errorMailMergeLoadFile": "Tải không thành công", - "DE.Controllers.Main.errorMailMergeSaveFile": "Trộn không thành công.", - "DE.Controllers.Main.errorProcessSaveResult": "Lưu không thành công.", - "DE.Controllers.Main.errorServerVersion": "Phiên bản trình chỉnh sửa này đã được cập nhật. Trang sẽ được tải lại để áp dụng các thay đổi.", - "DE.Controllers.Main.errorStockChart": "Thứ tự hàng không chính xác. Để xây dựng một biểu đồ chứng khoán đặt dữ liệu trên giấy theo thứ tự sau:
    giá mở phiên, giá cao nhất, giá thấp nhất, giá đóng phiên.", - "DE.Controllers.Main.errorUpdateVersion": "Phiên bản file này đã được thay đổi. Trang này sẽ được tải lại.", - "DE.Controllers.Main.errorUserDrop": "Không thể truy cập file ngay lúc này.", - "DE.Controllers.Main.errorUsersExceed": "Đã vượt quá số lượng người dùng", - "DE.Controllers.Main.errorViewerDisconnect": "Mất kết nối. Bạn vẫn có thể xem tài liệu,
    nhưng sẽ không thể tải về cho đến khi kết nối được khôi phục.", - "DE.Controllers.Main.leavePageText": "Bạn có những thay đổi chưa lưu trong tài liệu này. Nhấp vào 'Ở lại Trang này' để chờ tự động lưu tài liệu. Nhấp vào 'Rời Trang này' để bỏ tất cả các thay đổi chưa lưu.", - "DE.Controllers.Main.loadFontsTextText": "Đang tải dữ liệu...", - "DE.Controllers.Main.loadFontsTitleText": "Đang tải Dữ liệu", - "DE.Controllers.Main.loadFontTextText": "Đang tải dữ liệu...", - "DE.Controllers.Main.loadFontTitleText": "Đang tải Dữ liệu", - "DE.Controllers.Main.loadImagesTextText": "Đang tải hình ảnh...", - "DE.Controllers.Main.loadImagesTitleText": "Đang tải hình ảnh", - "DE.Controllers.Main.loadImageTextText": "Đang tải hình ảnh...", - "DE.Controllers.Main.loadImageTitleText": "Đang tải hình ảnh", - "DE.Controllers.Main.loadingDocumentTextText": "Đang tải tài liệu...", - "DE.Controllers.Main.loadingDocumentTitleText": "Đang tải tài liệu", - "DE.Controllers.Main.mailMergeLoadFileText": "Đang tải nguồn dữ liệu...", - "DE.Controllers.Main.mailMergeLoadFileTitle": "Đang tải nguồn dữ liệu", - "DE.Controllers.Main.notcriticalErrorTitle": "Cảnh báo", - "DE.Controllers.Main.openErrorText": "Xảy ra lỗi khi mở file", - "DE.Controllers.Main.openTextText": "Đang mở tài liệu...", - "DE.Controllers.Main.openTitleText": "Đang mở tài liệu...", - "DE.Controllers.Main.printTextText": "Đang in Tài liệu...", - "DE.Controllers.Main.printTitleText": "Đang in Tài liệu", - "DE.Controllers.Main.saveErrorText": "Xảy ra lỗi khi lưu file", - "DE.Controllers.Main.savePreparingText": "Chuẩn bị lưu", - "DE.Controllers.Main.savePreparingTitle": "Chuẩn bị lưu. Vui lòng chờ...", - "DE.Controllers.Main.saveTextText": "Đang lưu tài liệu...", - "DE.Controllers.Main.saveTitleText": "Đang lưu tài liệu...", - "DE.Controllers.Main.sendMergeText": "Đang gửi Trộn...", - "DE.Controllers.Main.sendMergeTitle": "Đang gửi Trộn", - "DE.Controllers.Main.splitDividerErrorText": "Số hàng phải là ước của %1", - "DE.Controllers.Main.splitMaxColsErrorText": "Số cột phải nhỏ hơn %1", - "DE.Controllers.Main.splitMaxRowsErrorText": "Số hàng phải nhỏ hơn %1", - "DE.Controllers.Main.textAnonymous": "Nặc danh", - "DE.Controllers.Main.textBack": "Quay lại", - "DE.Controllers.Main.textBuyNow": "Truy cập trang web", - "DE.Controllers.Main.textCancel": "Hủy", - "DE.Controllers.Main.textClose": "Đóng", - "DE.Controllers.Main.textContactUs": "Phòng kinh doanh", - "DE.Controllers.Main.textDone": "Hoàn tất", - "DE.Controllers.Main.textLoadingDocument": "Đang tải tài liệu", - "DE.Controllers.Main.textNoLicenseTitle": "Phiên bản mã nguồn mở ONLYOFFICE", - "DE.Controllers.Main.textOK": "OK", - "DE.Controllers.Main.textPassword": "Mật khẩu", - "DE.Controllers.Main.textPreloader": "Đang tải...", - "DE.Controllers.Main.textTryUndoRedo": "Chức năng Hoàn tác/Làm lại bị vô hiệu hóa cho chế độ đồng chỉnh sửa Nhanh.", - "DE.Controllers.Main.textUsername": "Tên đăng nhập", - "DE.Controllers.Main.titleLicenseExp": "Giấy phép hết hạn", - "DE.Controllers.Main.titleServerVersion": "Đã cập nhật trình chỉnh sửa", - "DE.Controllers.Main.titleUpdateVersion": "Đã thay đổi phiên bản", - "DE.Controllers.Main.txtArt": "Văn bản của bạn ở đây", - "DE.Controllers.Main.txtDiagramTitle": "Tiêu đề biểu đồ", - "DE.Controllers.Main.txtEditingMode": "Đặt chế độ chỉnh sửa...", - "DE.Controllers.Main.txtSeries": "Chuỗi", - "DE.Controllers.Main.txtStyle_Heading_1": "Tiêu đề 1", - "DE.Controllers.Main.txtStyle_Heading_2": "Tiêu đề 2", - "DE.Controllers.Main.txtStyle_Heading_3": "Tiêu đề 3", - "DE.Controllers.Main.txtStyle_Heading_4": "Tiêu đề 4", - "DE.Controllers.Main.txtStyle_Heading_5": "Tiêu đề 5", - "DE.Controllers.Main.txtStyle_Heading_6": "Tiêu đề 6", - "DE.Controllers.Main.txtStyle_Heading_7": "Tiêu đề 7", - "DE.Controllers.Main.txtStyle_Heading_8": "Tiêu đề 8", - "DE.Controllers.Main.txtStyle_Heading_9": "Tiêu đề 9", - "DE.Controllers.Main.txtStyle_Intense_Quote": "Trích dẫn mạnh mẽ", - "DE.Controllers.Main.txtStyle_List_Paragraph": "Đoạn danh sách", - "DE.Controllers.Main.txtStyle_No_Spacing": "Không cách", - "DE.Controllers.Main.txtStyle_Normal": "Thường", - "DE.Controllers.Main.txtStyle_Quote": "Trích dẫn", - "DE.Controllers.Main.txtStyle_Subtitle": "Phụ đề", - "DE.Controllers.Main.txtStyle_Title": "Tiêu đề", - "DE.Controllers.Main.txtXAxis": "Trục X", - "DE.Controllers.Main.txtYAxis": "Trục Y", - "DE.Controllers.Main.unknownErrorText": "Lỗi không xác định.", - "DE.Controllers.Main.unsupportedBrowserErrorText": "Trình duyệt của bạn không được hỗ trợ.", - "DE.Controllers.Main.uploadImageExtMessage": "Định dạng hình ảnh không xác định.", - "DE.Controllers.Main.uploadImageFileCountMessage": "Không có hình ảnh được tải lên.", - "DE.Controllers.Main.uploadImageSizeMessage": "Đã vượt quá giới hạn kích thước tối đa của hình ảnh.", - "DE.Controllers.Main.uploadImageTextText": "Đang tải lên hình ảnh...", - "DE.Controllers.Main.uploadImageTitleText": "Đang tải lên hình ảnh", - "DE.Controllers.Main.warnLicenseExp": "Giấy phép của bạn đã hết hạn.
    Vui lòng cập nhật giấy phép và làm mới trang.", - "DE.Controllers.Main.warnNoLicense": "Bạn đang sử dụng phiên bản nguồn mở của %1. Phiên bản có giới hạn các kết nối đồng thời với server tài liệu (20 kết nối cùng một lúc).
    Nếu bạn cần thêm, hãy cân nhắc mua giấy phép thương mại.", - "DE.Controllers.Main.warnProcessRightsChange": "Bạn đã bị từ chối quyền chỉnh sửa file này.", - "DE.Controllers.Search.textNoTextFound": "Không tìm thấy nội dung", - "DE.Controllers.Search.textReplaceAll": "Thay thế tất cả", - "DE.Controllers.Settings.notcriticalErrorTitle": "Cảnh báo", - "DE.Controllers.Settings.txtLoading": "Đang tải...", - "DE.Controllers.Settings.unknownText": "Không xác định", - "DE.Controllers.Settings.warnDownloadAs": "Nếu bạn tiếp tục lưu ở định dạng này tất cả các tính năng trừ văn bản sẽ bị mất.
    Bạn có chắc là muốn tiếp tục?", - "DE.Controllers.Toolbar.dlgLeaveMsgText": "Bạn có những thay đổi chưa lưu trong tài liệu này. Nhấp vào 'Ở lại Trang này' để chờ tự động lưu tài liệu. Nhấp vào 'Rời Trang này' để bỏ tất cả các thay đổi chưa lưu.", - "DE.Controllers.Toolbar.dlgLeaveTitleText": "Bạn rời khỏi ứng dụng", - "DE.Controllers.Toolbar.leaveButtonText": "Rời trang này", - "DE.Controllers.Toolbar.stayButtonText": "Ở lại trang này", - "DE.Views.AddImage.textAddress": "Địa chỉ", - "DE.Views.AddImage.textBack": "Quay lại", - "DE.Views.AddImage.textFromLibrary": "Hình ảnh từ Thư viện", - "DE.Views.AddImage.textFromURL": "Hình ảnh từ URL", - "DE.Views.AddImage.textImageURL": "URL hình ảnh", - "DE.Views.AddImage.textInsertImage": "Chèn hình ảnh", - "DE.Views.AddImage.textLinkSettings": "Cài đặt Liên kết", - "DE.Views.AddOther.textAddLink": "Thêm liên kết", - "DE.Views.AddOther.textBack": "Quay lại", - "DE.Views.AddOther.textCenterBottom": "Chính giữa bên dưới", - "DE.Views.AddOther.textCenterTop": "Chính giữa bên trên", - "DE.Views.AddOther.textColumnBreak": "Ngắt cột", - "DE.Views.AddOther.textContPage": "Trang liên tục", - "DE.Views.AddOther.textCurrentPos": "Vị trí hiện tại", - "DE.Views.AddOther.textDisplay": "Hiển thị", - "DE.Views.AddOther.textEvenPage": "Trang chẵn", - "DE.Views.AddOther.textInsert": "Chèn", - "DE.Views.AddOther.textLeftBottom": "Dưới dùng bên trái", - "DE.Views.AddOther.textLeftTop": "Trên dùng bên trái", - "DE.Views.AddOther.textLink": "Liên kết", - "DE.Views.AddOther.textNextPage": "Trang tiếp theo", - "DE.Views.AddOther.textOddPage": "Trang lẻ", - "DE.Views.AddOther.textPageBreak": "Ngắt trang", - "DE.Views.AddOther.textPageNumber": "Số trang", - "DE.Views.AddOther.textPosition": "Vị trí", - "DE.Views.AddOther.textRightBottom": "Dưới cùng bên phải", - "DE.Views.AddOther.textRightTop": "Trên cùng bên phải", - "DE.Views.AddOther.textSectionBreak": "Ngắt phần", - "DE.Views.AddOther.textTip": "Screen Tip", - "DE.Views.EditChart.textAlign": "Căn chỉnh", - "DE.Views.EditChart.textBack": "Quay lại", - "DE.Views.EditChart.textBackward": "Di chuyển ngược lại", - "DE.Views.EditChart.textBehind": "Sau", - "DE.Views.EditChart.textBorder": "Đường viền", - "DE.Views.EditChart.textColor": "Màu sắc", - "DE.Views.EditChart.textDistanceText": "Khoảng cách từ văn bản", - "DE.Views.EditChart.textFill": "Đổ màu", - "DE.Views.EditChart.textForward": "Di chuyển tiến lên", - "DE.Views.EditChart.textInFront": "Ở trước", - "DE.Views.EditChart.textInline": "Cùng dòng", - "DE.Views.EditChart.textMoveText": "Di chuyển cùng văn bản", - "DE.Views.EditChart.textOverlap": "Cho phép chồng chéo", - "DE.Views.EditChart.textRemoveChart": "Xóa biểu đồ", - "DE.Views.EditChart.textReorder": "Đặt lại", - "DE.Views.EditChart.textSize": "Kích thước", - "DE.Views.EditChart.textSquare": "Vuông", - "DE.Views.EditChart.textStyle": "Kiểu", - "DE.Views.EditChart.textThrough": "Xuyên qua", - "DE.Views.EditChart.textTight": "Sát", - "DE.Views.EditChart.textToBackground": "Gửi tới Nền", - "DE.Views.EditChart.textToForeground": "Đưa lên Cận cảnh", - "DE.Views.EditChart.textTopBottom": "Trên cùng và dưới cùng", - "DE.Views.EditChart.textType": "Loại", - "DE.Views.EditChart.textWrap": "Ngắt dòng", - "DE.Views.EditHyperlink.textDisplay": "Hiển thị", - "DE.Views.EditHyperlink.textEdit": "Chỉnh sửa Liên kết", - "DE.Views.EditHyperlink.textLink": "Liên kết", - "DE.Views.EditHyperlink.textRemove": "Xóa liên kết", - "DE.Views.EditHyperlink.textTip": "Screen Tip", - "DE.Views.EditImage.textAddress": "Địa chỉ", - "DE.Views.EditImage.textAlign": "Căn chỉnh", - "DE.Views.EditImage.textBack": "Sau", - "DE.Views.EditImage.textBackward": "Di chuyển ngược lại", - "DE.Views.EditImage.textBehind": "Sau", - "DE.Views.EditImage.textDefault": "Kích thước mặc định", - "DE.Views.EditImage.textDistanceText": "Khoảng cách từ văn bản", - "DE.Views.EditImage.textForward": "Di chuyển tiến lên", - "DE.Views.EditImage.textFromLibrary": "Hình ảnh từ Thư viện", - "DE.Views.EditImage.textFromURL": "Hình ảnh từ URL", - "DE.Views.EditImage.textImageURL": "URL hình ảnh", - "DE.Views.EditImage.textInFront": "Ở trước", - "DE.Views.EditImage.textInline": "Cùng dòng", - "DE.Views.EditImage.textLinkSettings": "Cài đặt Liên kết", - "DE.Views.EditImage.textMoveText": "Di chuyển cùng văn bản", - "DE.Views.EditImage.textOverlap": "Cho phép chồng chéo", - "DE.Views.EditImage.textRemove": "Xóa hình ảnh", - "DE.Views.EditImage.textReorder": "Đặt lại", - "DE.Views.EditImage.textReplace": "Thay thế", - "DE.Views.EditImage.textReplaceImg": "Thay thế ảnh", - "DE.Views.EditImage.textSquare": "Vuông", - "DE.Views.EditImage.textThrough": "Xuyên qua", - "DE.Views.EditImage.textTight": "Sát", - "DE.Views.EditImage.textToBackground": "Gửi tới Nền", - "DE.Views.EditImage.textToForeground": "Đưa lên Cận cảnh", - "DE.Views.EditImage.textTopBottom": "Trên cùng và dưới cùng", - "DE.Views.EditImage.textWrap": "Ngắt dòng", - "DE.Views.EditParagraph.textAdvanced": "Nâng cao", - "DE.Views.EditParagraph.textAdvSettings": "Cài đặt nâng cao", - "DE.Views.EditParagraph.textAfter": "Sau", - "DE.Views.EditParagraph.textAuto": "Tự động", - "DE.Views.EditParagraph.textBack": "Quay lại", - "DE.Views.EditParagraph.textBackground": "Nền", - "DE.Views.EditParagraph.textBefore": "Trước", - "DE.Views.EditParagraph.textFromText": "Khoảng cách từ văn bản", - "DE.Views.EditParagraph.textKeepLines": "Giữ các dòng cùng nhau", - "DE.Views.EditParagraph.textKeepNext": "Giữ cho tiếp theo", - "DE.Views.EditParagraph.textOrphan": "Kiểm soát dòng lẻ đầu trang sau", - "DE.Views.EditParagraph.textPageBreak": "Ngắt trang đằng trước", - "DE.Views.EditParagraph.textPrgStyles": "Kiểu đoạn văn bản", - "DE.Views.EditParagraph.textSpaceBetween": "Khoảng cách giữa các đoạn", - "DE.Views.EditShape.textAlign": "Căn chỉnh", - "DE.Views.EditShape.textBack": "Quay lại", - "DE.Views.EditShape.textBackward": "Di chuyển ngược lại", - "DE.Views.EditShape.textBehind": "Sau", - "DE.Views.EditShape.textBorder": "Đường viền", - "DE.Views.EditShape.textColor": "Màu sắc", - "DE.Views.EditShape.textEffects": "Hiệu ứng", - "DE.Views.EditShape.textFill": "Đổ màu", - "DE.Views.EditShape.textForward": "Di chuyển tiến lên", - "DE.Views.EditShape.textFromText": "Khoảng cách từ văn bản", - "DE.Views.EditShape.textInFront": "Ở trước", - "DE.Views.EditShape.textInline": "Cùng dòng", - "DE.Views.EditShape.textOpacity": "Độ mờ", - "DE.Views.EditShape.textOverlap": "Cho phép chồng chéo", - "DE.Views.EditShape.textRemoveShape": "Xóa hình", - "DE.Views.EditShape.textReorder": "Đặt lại", - "DE.Views.EditShape.textReplace": "Thay thế", - "DE.Views.EditShape.textSize": "Kích thước", - "DE.Views.EditShape.textSquare": "Vuông", - "DE.Views.EditShape.textStyle": "Kiểu", - "DE.Views.EditShape.textThrough": "Xuyên qua", - "DE.Views.EditShape.textTight": "Sát", - "DE.Views.EditShape.textToBackground": "Gửi tới Nền", - "DE.Views.EditShape.textToForeground": "Đưa lên Cận cảnh", - "DE.Views.EditShape.textTopAndBottom": "Trên cùng và dưới cùng", - "DE.Views.EditShape.textWithText": "Di chuyển cùng văn bản", - "DE.Views.EditShape.textWrap": "Ngắt dòng", - "DE.Views.EditTable.textAlign": "Căn chỉnh", - "DE.Views.EditTable.textBack": "Quay lại", - "DE.Views.EditTable.textBandedColumn": "Cột gắn dải màu", - "DE.Views.EditTable.textBandedRow": "Hàng gắn dải màu", - "DE.Views.EditTable.textBorder": "Đường viền", - "DE.Views.EditTable.textCellMargins": "Lề của ô", - "DE.Views.EditTable.textColor": "Màu sắc", - "DE.Views.EditTable.textFill": "Đổ màu", - "DE.Views.EditTable.textFirstColumn": "Cột đầu tiên", - "DE.Views.EditTable.textFlow": "Flow", - "DE.Views.EditTable.textFromText": "Khoảng cách từ văn bản", - "DE.Views.EditTable.textHeaderRow": "Dòng Header", - "DE.Views.EditTable.textInline": "Cùng dòng", - "DE.Views.EditTable.textLastColumn": "Cột cuối cùng", - "DE.Views.EditTable.textOptions": "Tùy chọn", - "DE.Views.EditTable.textRemoveTable": "Xóa bảng", - "DE.Views.EditTable.textRepeatHeader": "Lặp lại như hàng Header", - "DE.Views.EditTable.textResizeFit": "Thay đổi kích thước để phù hợp với nội dung", - "DE.Views.EditTable.textSize": "Kích thước", - "DE.Views.EditTable.textStyle": "Kiểu", - "DE.Views.EditTable.textStyleOptions": "Tùy chọn kiểu", - "DE.Views.EditTable.textTableOptions": "Tùy chọn bảng", - "DE.Views.EditTable.textTotalRow": "Tổng số hàng", - "DE.Views.EditTable.textWithText": "Di chuyển cùng văn bản", - "DE.Views.EditTable.textWrap": "Ngắt dòng", - "DE.Views.EditText.textAdditional": "Bổ sung", - "DE.Views.EditText.textAdditionalFormat": "Định dạng bổ sung", - "DE.Views.EditText.textAllCaps": "Tất cả Drop cap", - "DE.Views.EditText.textAutomatic": "Tự động", - "DE.Views.EditText.textBack": "Quay lại", - "DE.Views.EditText.textBullets": "Dấu đầu dòng", - "DE.Views.EditText.textDblStrikethrough": "Gạch đôi giữa chữ", - "DE.Views.EditText.textDblSuperscript": "Chỉ số trên", - "DE.Views.EditText.textFontColor": "Màu chữ", - "DE.Views.EditText.textFontColors": "Màu chữ", - "DE.Views.EditText.textFonts": "Phông chữ", - "DE.Views.EditText.textHighlightColor": "Màu tô sáng", - "DE.Views.EditText.textHighlightColors": "Màu tô sáng", - "DE.Views.EditText.textLetterSpacing": "Khoảng cách chữ cái", - "DE.Views.EditText.textLineSpacing": "Khoảng cách dòng", - "DE.Views.EditText.textNone": "Không", - "DE.Views.EditText.textNumbers": "Số", - "DE.Views.EditText.textSize": "Kích thước", - "DE.Views.EditText.textSmallCaps": "Drop cap nhỏ", - "DE.Views.EditText.textStrikethrough": "Gạch giữa chữ", - "DE.Views.EditText.textSubscript": "Chỉ số dưới", - "DE.Views.Search.textCase": "Phân biệt chữ hoa chữ thường", - "DE.Views.Search.textDone": "Hoàn tất", - "DE.Views.Search.textFind": "Tìm", - "DE.Views.Search.textFindAndReplace": "Tìm và Thay thế", - "DE.Views.Search.textHighlight": "Tô sáng kết quả", - "DE.Views.Search.textReplace": "Thay thế", - "DE.Views.Search.textSearch": "Tìm kiếm", - "DE.Views.Settings.textAbout": "Giới thiệu", - "DE.Views.Settings.textAddress": "địa chỉ", - "DE.Views.Settings.textAuthor": "Tác giả", - "DE.Views.Settings.textBack": "Quay lại", - "DE.Views.Settings.textCreateDate": "Ngày tạo", - "DE.Views.Settings.textCustom": "Tuỳ chỉnh", - "DE.Views.Settings.textCustomSize": "Tùy chỉnh kích thước", - "DE.Views.Settings.textDocInfo": "Thông tin Tài liệu", - "DE.Views.Settings.textDocTitle": "Tiêu đề tài liệu", - "DE.Views.Settings.textDocumentFormats": "Định dạng Tài liệu", - "DE.Views.Settings.textDocumentSettings": "Cài đặt tài liệu", - "DE.Views.Settings.textDone": "Hoàn tất", - "DE.Views.Settings.textDownload": "Tải về", - "DE.Views.Settings.textDownloadAs": "Tải về dưới dạng...", - "DE.Views.Settings.textEditDoc": "Chỉnh sửa Tài liệu", - "DE.Views.Settings.textEmail": "email", - "DE.Views.Settings.textFind": "Tìm", - "DE.Views.Settings.textFindAndReplace": "Tìm và Thay thế", - "DE.Views.Settings.textFormat": "Định dạng", - "DE.Views.Settings.textHelp": "Trợ giúp", - "DE.Views.Settings.textLandscape": "Nằm ngang", - "DE.Views.Settings.textLoading": "Đang tải...", - "DE.Views.Settings.textOrientation": "Hướng", - "DE.Views.Settings.textPages": "Trang", - "DE.Views.Settings.textParagraphs": "Đoạn văn bản", - "DE.Views.Settings.textPortrait": "Thẳng đứng", - "DE.Views.Settings.textPoweredBy": "Được hỗ trợ bởi", - "DE.Views.Settings.textReader": "Chế độ đọc", - "DE.Views.Settings.textSettings": "Cài đặt", - "DE.Views.Settings.textSpaces": "Khoảng cách", - "DE.Views.Settings.textStatistic": "Thống kê", - "DE.Views.Settings.textSymbols": "Biểu tượng", - "DE.Views.Settings.textTel": "ĐT", - "DE.Views.Settings.textVersion": "Phiên bản", - "DE.Views.Settings.textWords": "Từ", - "DE.Views.Settings.unknownText": "Không xác định", - "DE.Views.Toolbar.textBack": "Quay lại" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add link", + "textAddress": "Address", + "textBack": "Back", + "textBelowText": "Below text", + "textBottomOfPage": "Bottom of page", + "textBreak": "Break", + "textCancel": "Cancel", + "textCenterBottom": "Center Bottom", + "textCenterTop": "Center Top", + "textColumnBreak": "Column Break", + "textColumns": "Columns", + "textComment": "Comment", + "textContinuousPage": "Continuous Page", + "textCurrentPosition": "Current Position", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify image URL.", + "textEvenPage": "Even Page", + "textFootnote": "Footnote", + "textFormat": "Format", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertFootnote": "Insert Footnote", + "textInsertImage": "Insert Image", + "textLeftBottom": "Left Bottom", + "textLeftTop": "Left Top", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLocation": "Location", + "textNextPage": "Next Page", + "textOddPage": "Odd Page", + "textOther": "Other", + "textPageBreak": "Page Break", + "textPageNumber": "Page Number", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPosition": "Position", + "textRightBottom": "Right Bottom", + "textRightTop": "Right Top", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textSectionBreak": "Section Break", + "textShape": "Shape", + "textStartAt": "Start At", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAccept": "Accept", + "textAcceptAllChanges": "Accept all changes", + "textAddComment": "Add comment", + "textAddReply": "Add reply", + "textAllChangesAcceptedPreview": "All changes accepted (Preview)", + "textAllChangesEditing": "All changes (Editing)", + "textAllChangesRejectedPreview": "All changes rejected (Preview)", + "textAtLeast": "at least", + "textAuto": "auto", + "textBack": "Back", + "textBaseline": "Baseline", + "textBold": "Bold", + "textBreakBefore": "Page break before", + "textCancel": "Cancel", + "textCaps": "All caps", + "textCenter": "Align center", + "textChart": "Chart", + "textCollaboration": "Collaboration", + "textColor": "Font color", + "textComments": "Comments", + "textContextual": "Don't add intervals between paragraphs of the same style", + "textDelete": "Delete", + "textDeleteComment": "Delete Comment", + "textDeleted": "Deleted:", + "textDeleteReply": "Delete Reply", + "textDisplayMode": "Display Mode", + "textDone": "Done", + "textDStrikeout": "Double strikeout", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textEquation": "Equation", + "textExact": "exactly", + "textFinal": "Final", + "textFirstLine": "First line", + "textFormatted": "Formatted", + "textHighlight": "Highlight color", + "textImage": "Image", + "textIndentLeft": "Indent left", + "textIndentRight": "Indent right", + "textInserted": "Inserted:", + "textItalic": "Italic", + "textJustify": "Align justified ", + "textKeepLines": "Keep lines together", + "textKeepNext": "Keep with next", + "textLeft": "Align left", + "textLineSpacing": "Line Spacing: ", + "textMarkup": "Markup", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textMultiple": "multiple", + "textNoBreakBefore": "No page break before", + "textNoChanges": "There are no changes.", + "textNoComments": "This document doesn't contain comments", + "textNoContextual": "Add interval between paragraphs of the same style", + "textNoKeepLines": "Don't keep lines together", + "textNoKeepNext": "Don't keep with next", + "textNot": "Not ", + "textNoWidow": "No widow control", + "textNum": "Change numbering", + "textOriginal": "Original", + "textParaDeleted": "Paragraph Deleted", + "textParaFormatted": "Paragraph Formatted", + "textParaInserted": "Paragraph Inserted", + "textParaMoveFromDown": "Moved Down:", + "textParaMoveFromUp": "Moved Up:", + "textParaMoveTo": "Moved:", + "textPosition": "Position", + "textReject": "Reject", + "textRejectAllChanges": "Reject All Changes", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textReview": "Review", + "textReviewChange": "Review Change", + "textRight": "Align right", + "textShape": "Shape", + "textShd": "Background color", + "textSmallCaps": "Small caps", + "textSpacing": "Spacing", + "textSpacingAfter": "Spacing after", + "textSpacingBefore": "Spacing before", + "textStrikeout": "Strikeout", + "textSubScript": "Subscript", + "textSuperScript": "Superscript", + "textTableChanged": "Table Settings Changed", + "textTableRowsAdd": "Table Rows Added", + "textTableRowsDel": "Table Rows Deleted", + "textTabs": "Change tabs", + "textTrackChanges": "Track Changes", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUnderline": "Underline", + "textUsers": "Users", + "textWidow": "Widow control" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add comment", + "menuAddLink": "Add link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuReview": "Review", + "menuReviewChange": "Review Change", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual size", + "textAddCustomColor": "Add custom color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional formatting", + "textAddress": "Address", + "textAdvanced": "Advanced", + "textAdvancedSettings": "Advanced settings", + "textAfter": "After", + "textAlign": "Align", + "textAllCaps": "All caps", + "textAllowOverlap": "Allow overlap", + "textAuto": "Auto", + "textAutomatic": "Automatic", + "textBack": "Back", + "textBackground": "Background", + "textBandedColumn": "Banded column", + "textBandedRow": "Banded row", + "textBefore": "Before", + "textBehind": "Behind", + "textBorder": "Border", + "textBringToForeground": "Bring to foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClose": "Close", + "textColor": "Color", + "textContinueFromPreviousSection": "Continue from previous section", + "textCustomColor": "Custom Color", + "textDifferentFirstPage": "Different first page", + "textDifferentOddAndEvenPages": "Different odd and even pages", + "textDisplay": "Display", + "textDistanceFromText": "Distance from text", + "textDoubleStrikethrough": "Double Strikethrough", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify image URL.", + "textFill": "Fill", + "textFirstColumn": "First Column", + "textFirstLine": "FirstLine", + "textFlow": "Flow", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFooter": "Footer", + "textHeader": "Header", + "textHeaderRow": "Header Row", + "textHighlightColor": "Highlight Color", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textInFront": "In Front", + "textInline": "Inline", + "textKeepLinesTogether": "Keep Lines Together", + "textKeepWithNext": "Keep with Next", + "textLastColumn": "Last Column", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkToPrevious": "Link to Previous", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textMoveWithText": "Move with Text", + "textNone": "None", + "textNoStyles": "No styles for this type of charts.", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textOpacity": "Opacity", + "textOptions": "Options", + "textOrphanControl": "Orphan Control", + "textPageBreakBefore": "Page Break Before", + "textPageNumbering": "Page Numbering", + "textParagraph": "Paragraph", + "textParagraphStyles": "Paragraph Styles", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPt": "pt", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textRepeatAsHeaderRow": "Repeat as Header Row", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textResizeToFitContent": "Resize to Fit Content", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSize": "Size", + "textSmallCaps": "Small Caps", + "textSpaceBetweenParagraphs": "Space Between Paragraphs", + "textSquare": "Square", + "textStartAt": "Start at", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textTableOptions": "Table Options", + "textText": "Text", + "textThrough": "Through", + "textTight": "Tight", + "textTopAndBottom": "Top and Bottom", + "textTotalRow": "Total Row", + "textType": "Type", + "textWrap": "Wrap", + "textNumbers": "Numbers" + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact the admin.
    When you click OK, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Download document to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limit.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorMailMergeLoadFile": "Loading failed", + "errorMailMergeSaveFile": "Merge failed.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file can't be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadMergeText": "Downloading...", + "downloadMergeTitle": "Downloading", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "mailMergeLoadFileText": "Loading Data Source...", + "mailMergeLoadFileTitle": "Loading Data Source", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "sendMergeText": "Sending Merge...", + "sendMergeTitle": "Sending Merge", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your administrator.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "Diagram Title": "Chart Title", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Footer": "Footer", + "footnote text": "Footnote Text", + "Header": "Header", + "Heading 1": "Heading 1", + "Heading 2": "Heading 2", + "Heading 3": "Heading 3", + "Heading 4": "Heading 4", + "Heading 5": "Heading 5", + "Heading 6": "Heading 6", + "Heading 7": "Heading 7", + "Heading 8": "Heading 8", + "Heading 9": "Heading 9", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Intense Quote": "Intense Quote", + "Is Not In Table": "Is Not In Table", + "List Paragraph": "List Paragraph", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "No Spacing": "No Spacing", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Normal": "Normal", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Quote": "Quote", + "Same as Previous": "Same as Previous", + "Series": "Series", + "Subtitle": "Subtitle", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "Title": "Title", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here", + "Zero Divide": "Zero Divide" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update your license and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit this file." + }, + "Settings": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "advTxtOptions": "Choose TXT Options", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textApplication": "Application", + "textApplicationSettings": "Application settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textCancel": "Cancel", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textComments": "Comments", + "textCommentsDisplay": "Comments Display", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDocumentInfo": "Document Info", + "textDocumentSettings": "Document Settings", + "textDocumentTitle": "Document Title", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textDownloadRtf": "If you continue saving in this format some of the formatting might be lost. Are you sure you want to continue?", + "textDownloadTxt": "If you continue saving in this format all features except the text will be lost. Are you sure you want to continue?", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textEncoding": "Encoding", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textHelp": "Help", + "textHiddenTableBorders": "Hidden Table Borders", + "textHighlightResults": "Highlight Results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMarginsH": "Top and bottom margins are too high for a given page height", + "textMarginsW": "Left and right margins are too wide for a given page width", + "textNoCharacters": "Nonprinting Characters", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPrint": "Print", + "textReaderMode": "Reader Mode", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSpellcheck": "Spell Checking", + "textStatistic": "Statistic", + "textSubject": "Subject", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this page" + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/locale/zh.json b/apps/documenteditor/mobile/locale/zh.json index 2fe7791d1..cd6e28cd1 100644 --- a/apps/documenteditor/mobile/locale/zh.json +++ b/apps/documenteditor/mobile/locale/zh.json @@ -293,7 +293,9 @@ "textTopAndBottom": "上下", "textTotalRow": "总行", "textType": "类型", - "textWrap": "包裹" + "textWrap": "包裹", + "textBullets": "Bullets", + "textNumbers": "Numbers" }, "Error": { "convertationTimeoutText": "转换超时", @@ -402,7 +404,43 @@ "Title": "标题", "X Axis": "X 轴 XAS", "Y Axis": "Y 轴", - "Your text here": "你的文本在此" + "Your text here": "你的文本在此", + " -Section ": " -Section ", + "above": "above", + "below": "below", + "Caption": "Caption", + "Choose an item": "Choose an item", + "Click to load image": "Click to load image", + "Current Document": "Current Document", + "endnote text": "Endnote Text", + "Enter a date": "Enter a date", + "Error! Bookmark not defined": "Error! Bookmark not defined.", + "Error! Main Document Only": "Error! Main Document Only.", + "Error! No text of specified style in document": "Error! No text of specified style in document.", + "Error! Not a valid bookmark self-reference": "Error! Not a valid bookmark self-reference.", + "Even Page ": "Even Page ", + "First Page ": "First Page ", + "Hyperlink": "Hyperlink", + "Index Too Large": "Index Too Large", + "Is Not In Table": "Is Not In Table", + "Missing Argument": "Missing Argument", + "Missing Operator": "Missing Operator", + "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.", + "No table of figures entries found": "No table of figures entries found.", + "None": "None", + "Number Too Large To Format": "Number Too Large To Format", + "Odd Page ": "Odd Page ", + "Same as Previous": "Same as Previous", + "Syntax Error": "Syntax Error", + "Table Index Cannot be Zero": "Table Index Cannot be Zero", + "Table of Contents": "Table of Contents", + "table of figures": "Table of figures", + "The Formula Not In Table": "The Formula Not In Table", + "TOC Heading": "TOC Heading", + "Type equation here": "Type equation here", + "Undefined Bookmark": "Undefined Bookmark", + "Unexpected End of Formula": "Unexpected End of Formula", + "Zero Divide": "Zero Divide" }, "textAnonymous": "匿名", "textBuyNow": "访问网站", @@ -506,7 +544,29 @@ "textUnitOfMeasurement": "计量单位", "textUploaded": "已上传", "txtIncorrectPwd": "密码有误", - "txtProtected": "输入密码并打开文件后,当前密码将会被重设。" + "txtProtected": "输入密码并打开文件后,当前密码将会被重设。", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" }, "Toolbar": { "dlgLeaveMsgText": "你有未保存的修改。点击“留在该页”可等待自动保存完成。点击“离开该页”将丢弃全部未经保存的修改。", diff --git a/apps/documenteditor/mobile/src/app.js b/apps/documenteditor/mobile/src/app.js index 7d923bd3a..dc39d91b6 100644 --- a/apps/documenteditor/mobile/src/app.js +++ b/apps/documenteditor/mobile/src/app.js @@ -36,7 +36,7 @@ Framework7.use(Framework7React) ReactDOM.render( - + diff --git a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx index a64f6620f..ceba79997 100644 --- a/apps/documenteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/documenteditor/mobile/src/controller/ContextMenu.jsx @@ -16,7 +16,8 @@ import EditorUIController from '../lib/patch'; canCoAuthoring: stores.storeAppOptions.canCoAuthoring, canReview: stores.storeAppOptions.canReview, users: stores.users, - isDisconnected: stores.users.isDisconnected + isDisconnected: stores.users.isDisconnected, + displayMode: stores.storeReview.displayMode })) class ContextMenu extends ContextMenuController { constructor(props) { diff --git a/apps/documenteditor/mobile/src/controller/Encoding.jsx b/apps/documenteditor/mobile/src/controller/Encoding.jsx new file mode 100644 index 000000000..52ad79181 --- /dev/null +++ b/apps/documenteditor/mobile/src/controller/Encoding.jsx @@ -0,0 +1,89 @@ +import React, { Component } from 'react'; +import { Device } from '../../../../common/mobile/utils/device'; +import { f7 } from "framework7-react"; +import { Encoding } from "../view/Encoding"; + +class EncodingController extends Component { + constructor(props) { + super(props); + + this.onSaveFormat = this.onSaveFormat.bind(this); + this.closeModal = this.closeModal.bind(this); + this.state = { + isOpen: false + }; + + Common.Notifications.on('engineCreated', api => { + api.asc_registerCallback('asc_onAdvancedOptions', (type, advOptions, mode, formatOptions) => { + this.initEncoding(type, advOptions, mode, formatOptions); + }); + }); + + Common.Notifications.on('openEncoding', (type, advOptions, mode, formatOptions) => { + this.initEncoding(type, advOptions, mode, formatOptions); + }); + } + + initEncoding(type, advOptions, mode, formatOptions) { + if(type === Asc.c_oAscAdvancedOptionsID.TXT) { + Common.Notifications.trigger('preloader:close'); + Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); + + this.mode = mode; + this.advOptions = advOptions; + this.formatOptions = formatOptions; + this.pages = []; + this.pagesName = []; + + const recommendedSettings = this.advOptions.asc_getRecommendedSettings(); + + this.initPages(); + this.valueEncoding = recommendedSettings.asc_getCodePage(); + + this.setState({ + isOpen: true + }); + } + } + + initPages() { + for (let page of this.advOptions.asc_getCodePages()) { + this.pages.push(page.asc_getCodePage()); + this.pagesName.push(page.asc_getCodePageName()); + } + } + + closeModal() { + f7.sheet.close('.encoding-popup', true); + this.setState({isOpen: false}); + } + + onSaveFormat(valueEncoding) { + const api = Common.EditorApi.get(); + + this.closeModal(); + + if(this.mode === 2) { + this.formatOptions && this.formatOptions.asc_setAdvancedOptions(new Asc.asc_CTextOptions(valueEncoding)); + api.asc_DownloadAs(this.formatOptions); + } else { + api.asc_setAdvancedOptions(Asc.c_oAscAdvancedOptionsID.TXT, new Asc.asc_CTextOptions(valueEncoding)); + } + } + + render() { + return ( + this.state.isOpen && + + ); + } +} + +export default EncodingController; \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/controller/Main.jsx b/apps/documenteditor/mobile/src/controller/Main.jsx index dc2d27292..7970ca136 100644 --- a/apps/documenteditor/mobile/src/controller/Main.jsx +++ b/apps/documenteditor/mobile/src/controller/Main.jsx @@ -16,8 +16,9 @@ import EditorUIController from '../lib/patch'; import ErrorController from "./Error"; import LongActionsController from "./LongActions"; import PluginsController from '../../../../common/mobile/lib/controller/Plugins.jsx'; - +import EncodingController from "./Encoding"; @inject( + "users", "storeAppOptions", "storeDocumentSettings", "storeFocusObjects", @@ -27,7 +28,8 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. "storeDocumentInfo", "storeChartSettings", "storeApplicationSettings", - "storeLinkSettings" + "storeLinkSettings", + "storeToolbarSettings" ) class MainController extends Component { constructor(props) { @@ -534,6 +536,8 @@ class MainController extends Component { //text settings const storeTextSettings = this.props.storeTextSettings; + storeTextSettings.resetFontsRecent(LocalStorage.getItem('dde-settings-recent-fonts')); + EditorUIController.initFonts && EditorUIController.initFonts(storeTextSettings); EditorUIController.initFocusObjects && EditorUIController.initFocusObjects(this.props.storeFocusObjects); @@ -614,11 +618,26 @@ class MainController extends Component { }); // Downloaded Advanced Options + this.api.asc_registerCallback('asc_onAdvancedOptions', (type, advOptions, mode, formatOptions) => { const {t} = this.props; const _t = t("Settings", { returnObjects: true }); - onAdvancedOptions(type, advOptions, mode, formatOptions, _t, this._isDocReady, this.props.storeAppOptions.canRequestClose, this.isDRM); - if(type == Asc.c_oAscAdvancedOptionsID.DRM) this.isDRM = true; + if(type == Asc.c_oAscAdvancedOptionsID.DRM) { + onAdvancedOptions(type, _t, this._isDocReady, this.props.storeAppOptions.canRequestClose, this.isDRM); + this.isDRM = true; + } + }); + + // Toolbar settings + + const storeToolbarSettings = this.props.storeToolbarSettings; + this.api.asc_registerCallback('asc_onCanUndo', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanUndo(can); + }); + this.api.asc_registerCallback('asc_onCanRedo', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanRedo(can); }); } @@ -670,9 +689,9 @@ class MainController extends Component { } } - onDownloadUrl () { + onDownloadUrl (url, fileType) { if (this._state.isFromGatewayDownloadAs) { - Common.Gateway.downloadAs(url); + Common.Gateway.downloadAs(url, fileType); } this._state.isFromGatewayDownloadAs = false; @@ -824,6 +843,7 @@ class MainController extends Component { {EditorUIController.getEditCommentControllers && EditorUIController.getEditCommentControllers()} + ) } diff --git a/apps/documenteditor/mobile/src/controller/Toolbar.jsx b/apps/documenteditor/mobile/src/controller/Toolbar.jsx index 79286c70a..6fcbbbf64 100644 --- a/apps/documenteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/documenteditor/mobile/src/controller/Toolbar.jsx @@ -4,7 +4,7 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(observer(props => { +const ToolbarController = inject('storeAppOptions', 'users', 'storeReview', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => { const {t} = useTranslation(); const _t = t("Toolbar", { returnObjects: true }); @@ -15,25 +15,20 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse const displayCollaboration = props.users.hasEditUsers || appOptions.canViewComments || appOptions.canReview || appOptions.canViewReview; const readerMode = appOptions.readerMode; + const objectLocked = props.storeFocusObjects.objectLocked; + + const storeToolbarSettings = props.storeToolbarSettings; + const isCanUndo = storeToolbarSettings.isCanUndo; + const isCanRedo = storeToolbarSettings.isCanRedo; + const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; useEffect(() => { - const onDocumentReady = () => { - const api = Common.EditorApi.get(); - api.asc_registerCallback('asc_onCanUndo', onApiCanUndo); - api.asc_registerCallback('asc_onCanRedo', onApiCanRedo); - api.asc_registerCallback('asc_onFocusObject', onApiFocusObject); - Common.Notifications.on('toolbar:activatecontrols', activateControls); - Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); - Common.Notifications.on('goback', goBack); - }; - if ( !Common.EditorApi ) { - Common.Notifications.on('document:ready', onDocumentReady); - Common.Notifications.on('setdoctitle', setDocTitle); - Common.Gateway.on('init', loadConfig); - } else { - onDocumentReady(); - } + Common.Notifications.on('setdoctitle', setDocTitle); + Common.Gateway.on('init', loadConfig); + Common.Notifications.on('toolbar:activatecontrols', activateControls); + Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); + Common.Notifications.on('goback', goBack); if (isDisconnected) { f7.popover.close(); @@ -42,16 +37,10 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse } return () => { - Common.Notifications.off('document:ready', onDocumentReady); Common.Notifications.off('setdoctitle', setDocTitle); Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('goback', goBack); - - const api = Common.EditorApi.get(); - api.asc_unregisterCallback('asc_onCanUndo', onApiCanUndo); - api.asc_unregisterCallback('asc_onCanRedo', onApiCanRedo); - api.asc_unregisterCallback('asc_onFocusObject', onApiFocusObject); } }); @@ -106,17 +95,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse } } - // Undo and Redo - const [isCanUndo, setCanUndo] = useState(true); - const [isCanRedo, setCanRedo] = useState(true); - const onApiCanUndo = (can) => { - if (isDisconnected) return; - setCanUndo(can); - }; - const onApiCanRedo = (can) => { - if (isDisconnected) return; - setCanRedo(can); - }; const onUndo = () => { const api = Common.EditorApi.get(); if (api) { @@ -130,30 +108,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse } } - const [isObjectLocked, setObjectLocked] = useState(false); - const onApiFocusObject = (objects) => { - if (isDisconnected) return; - - if (objects.length > 0) { - const getTopObject = (objects) => { - const arrObj = objects.reverse(); - let obj; - for (let i=0; i { @@ -184,7 +138,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(obse isCanRedo={isCanRedo} onUndo={onUndo} onRedo={onRedo} - isObjectLocked={isObjectLocked} + isObjectLocked={objectLocked} stateDisplayMode={stateDisplayMode} disabledControls={disabledControls} disabledEditControls={disabledEditControls} diff --git a/apps/documenteditor/mobile/src/controller/settings/ApplicationSettings.jsx b/apps/documenteditor/mobile/src/controller/settings/ApplicationSettings.jsx index dbad0f696..2dd0d8bf0 100644 --- a/apps/documenteditor/mobile/src/controller/settings/ApplicationSettings.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/ApplicationSettings.jsx @@ -39,8 +39,8 @@ class ApplicationSettingsController extends Component { this.props.storeAppOptions.changeCanViewComments(value); if (!value) { - api.asc_hideComments(); this.switchDisplayResolved(value); + api.asc_hideComments(); LocalStorage.setBool("de-settings-resolvedcomment", false); } else { const resolved = LocalStorage.getBool("de-settings-resolvedcomment"); diff --git a/apps/documenteditor/mobile/src/controller/settings/Download.jsx b/apps/documenteditor/mobile/src/controller/settings/Download.jsx index d23411208..ba1df754d 100644 --- a/apps/documenteditor/mobile/src/controller/settings/Download.jsx +++ b/apps/documenteditor/mobile/src/controller/settings/Download.jsx @@ -13,7 +13,7 @@ class DownloadController extends Component { closeModal() { if (Device.phone) { - f7.sheet.close('.settings-popup', true); + f7.sheet.close('.settings-popup', false); } else { f7.popover.close('#settings-popover'); } @@ -25,17 +25,18 @@ class DownloadController extends Component { const _t = t("Settings", { returnObjects: true }); if(format) { - this.closeModal(); if (format == Asc.c_oAscFileType.TXT || format == Asc.c_oAscFileType.RTF) { f7.dialog.confirm( (format === Asc.c_oAscFileType.TXT) ? _t.textDownloadTxt : _t.textDownloadRtf, _t.notcriticalErrorTitle, () => { - if (format == Asc.c_oAscFileType.TXT) { - const isDocReady = this.props.storeAppOptions.isDocReady; - onAdvancedOptions(Asc.c_oAscAdvancedOptionsID.TXT, api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format), _t, isDocReady); + if (format === Asc.c_oAscFileType.TXT) { + const advOptions = api.asc_getAdvancedOptions(); + this.closeModal(); + Common.Notifications.trigger('openEncoding', Asc.c_oAscAdvancedOptionsID.TXT, advOptions, 2, new Asc.asc_CDownloadOptions(format)); } else { + this.closeModal(); setTimeout(() => { api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format)); }, 400); @@ -44,6 +45,7 @@ class DownloadController extends Component { ); } else { + this.closeModal(); setTimeout(() => { api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format)); }, 400); @@ -60,110 +62,51 @@ class DownloadController extends Component { const DownloadWithTranslation = inject("storeAppOptions")(observer(withTranslation()(DownloadController))); -const onAdvancedOptions = (type, advOptions, mode, formatOptions, _t, isDocReady, canRequestClose, isDRM) => { +const onAdvancedOptions = (type, _t, isDocReady, canRequestClose, isDRM) => { if ($$('.dlg-adv-options.modal-in').length > 0) return; const api = Common.EditorApi.get(); - if (type == Asc.c_oAscAdvancedOptionsID.TXT) { - let picker; - const pages = []; - const pagesName = []; - for (let page of advOptions.asc_getCodePages()) { - pages.push(page.asc_getCodePage()); - pagesName.push(page.asc_getCodePageName()); - } - Common.Notifications.trigger('preloader:close'); - Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); - const buttons = []; - if (mode === 2) { - buttons.push({ - text: _t.textCancel - }); - } - buttons.push({ - text: 'OK', - bold: true, - onClick: function() { - const encoding = picker.value; - if (mode==2) { - formatOptions && formatOptions.asc_setAdvancedOptions(new Asc.asc_CTextOptions(encoding)); - api.asc_DownloadAs(formatOptions); - } else { - api.asc_setAdvancedOptions(type, new Asc.asc_CTextOptions(encoding)); - } - if (!isDocReady) { - Common.Notifications.trigger('preloader:beginAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256); - } - } - }); - const dialog = f7.dialog.create({ - title: _t.advTxtOptions, - text: '', - content: - '
    ' + - '
    ' + - '
    ' + _t.textEncoding + '
    ' + - '
    ' + - '
    ' + - '
    ', - buttons: buttons, - cssClass: 'dlg-adv-options' - }).open(); - dialog.on('opened', () => { - picker = f7.picker.create({ - containerEl: document.getElementById('txt-encoding'), - cols: [ - { - values: pages, - displayValues: pagesName - } - ], - toolbar: false, - rotateEffect: true, - value: [advOptions.asc_getRecommendedSettings().asc_getCodePage()], - }); - }); - } else if (type == Asc.c_oAscAdvancedOptionsID.DRM) { - Common.Notifications.trigger('preloader:close'); - Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); - const buttons = [{ - text: 'OK', - bold: true, - onClick: function () { - const password = document.getElementById('modal-password').value; - api.asc_setAdvancedOptions(type, new Asc.asc_CDRMAdvancedOptions(password)); - if (!isDocReady) { - Common.Notifications.trigger('preloader:beginAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256); - } - } - }]; - if(isDRM) { - f7.dialog.create({ - text: _t.txtIncorrectPwd, - buttons : [{ - text: 'OK', - bold: true, - }] - }).open(); - } + Common.Notifications.trigger('preloader:close'); + Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); - if (canRequestClose) - buttons.push({ - text: _t.closeButtonText, - onClick: function () { - Common.Gateway.requestClose(); - } - }); + const buttons = [{ + text: 'OK', + bold: true, + onClick: function () { + const password = document.getElementById('modal-password').value; + api.asc_setAdvancedOptions(type, new Asc.asc_CDRMAdvancedOptions(password)); + if (!isDocReady) { + Common.Notifications.trigger('preloader:beginAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256); + } + } + }]; + + if(isDRM) { f7.dialog.create({ - title: _t.advDRMOptions, - text: _t.textOpenFile, - content: Device.ios ? - '
    ' : '
    ', - buttons: buttons, - cssClass: 'dlg-adv-options' + text: _t.txtIncorrectPwd, + buttons : [{ + text: 'OK', + bold: true, + }] }).open(); } + + if (canRequestClose) + buttons.push({ + text: _t.closeButtonText, + onClick: function () { + Common.Gateway.requestClose(); + } + }); + f7.dialog.create({ + title: _t.advDRMOptions, + text: _t.textOpenFile, + content: Device.ios ? + '
    ' : '
    ', + buttons: buttons, + cssClass: 'dlg-adv-options' + }).open(); }; diff --git a/apps/documenteditor/mobile/src/less/app-ios.less b/apps/documenteditor/mobile/src/less/app-ios.less index c565dd189..d4d95057a 100644 --- a/apps/documenteditor/mobile/src/less/app-ios.less +++ b/apps/documenteditor/mobile/src/less/app-ios.less @@ -1,6 +1,6 @@ .ios { .view { - .page-content{ + .bullets-numbers{ background: #fff; } } diff --git a/apps/documenteditor/mobile/src/page/main.jsx b/apps/documenteditor/mobile/src/page/main.jsx index a502fca1a..371c3fa27 100644 --- a/apps/documenteditor/mobile/src/page/main.jsx +++ b/apps/documenteditor/mobile/src/page/main.jsx @@ -28,35 +28,49 @@ class MainPage extends Component { handleClickToOpenOptions = (opts, showOpts) => { ContextMenu.closeContextMenu(); - this.setState(state => { - if ( opts == 'edit' ) - return {editOptionsVisible: true}; - else if ( opts == 'add' ) - return { - addOptionsVisible: true, - addShowOptions: showOpts - }; - else if ( opts == 'settings' ) - return {settingsVisible: true}; - else if ( opts == 'coauth' ) - return { - collaborationVisible: true, - collaborationPage: showOpts - }; - }); + setTimeout(() => { + let opened = false; + const newState = {}; + if ( opts === 'edit' ) { + this.state.editOptionsVisible && (opened = true); + newState.editOptionsVisible = true; + } else if ( opts === 'add' ) { + this.state.addOptionsVisible && (opened = true); + newState.addOptionsVisible = true; + newState.addShowOptions = showOpts; + } else if ( opts === 'settings' ) { + this.state.settingsVisible && (opened = true); + newState.settingsVisible = true; + } else if ( opts === 'coauth' ) { + this.state.collaborationVisible && (opened = true); + newState.collaborationVisible = true; + } - if ((opts === 'edit' || opts === 'coauth') && Device.phone) { - f7.navbar.hide('.main-navbar'); - } + for (let key in this.state) { + if (this.state[key] && !opened) { + setTimeout(() => { + this.handleClickToOpenOptions(opts, showOpts); + }, 10); + return; + } + } + + if (!opened) { + this.setState(newState); + if ((opts === 'edit' || opts === 'coauth') && Device.phone) { + f7.navbar.hide('.main-navbar'); + } + } + }, 10); }; handleOptionsViewClosed = opts => { - (async () => { - await 1 && this.setState(state => { + setTimeout(() => { + this.setState(state => { if ( opts == 'edit' ) return {editOptionsVisible: false}; else if ( opts == 'add' ) - return {addOptionsVisible: false}; + return {addOptionsVisible: false, addShowOptions: null}; else if ( opts == 'settings' ) return {settingsVisible: false}; else if ( opts == 'coauth' ) @@ -65,7 +79,8 @@ class MainPage extends Component { if ((opts === 'edit' || opts === 'coauth') && Device.phone) { f7.navbar.show('.main-navbar'); } - })(); + }, 1); + }; render() { diff --git a/apps/documenteditor/mobile/src/store/focusObjects.js b/apps/documenteditor/mobile/src/store/focusObjects.js index 00cba2705..cab6518c7 100644 --- a/apps/documenteditor/mobile/src/store/focusObjects.js +++ b/apps/documenteditor/mobile/src/store/focusObjects.js @@ -16,7 +16,8 @@ export class storeFocusObjects { tableObject: computed, isTableInStack: computed, chartObject: computed, - linkObject: computed + linkObject: computed, + objectLocked: computed }); } @@ -77,4 +78,25 @@ export class storeFocusObjects { get linkObject() { return !!this.intf ? this.intf.getLinkObject() : null; } + + get objectLocked() { + if (this._focusObjects && this._focusObjects.length > 0) { + const getTopObject = (objects) => { + const arrObj = objects; + let obj; + for (let i=arrObj.length-1; i>=0; i--) { + if (arrObj[i].get_ObjectType() != Asc.c_oAscTypeSelectElement.SpellCheck) { + obj = arrObj[i]; + break; + } + } + return obj; + }; + const topObject = getTopObject(this._focusObjects); + const topObjectValue = topObject.get_ObjectValue(); + const objectLocked = (typeof topObjectValue.get_Locked === 'function') ? topObjectValue.get_Locked() : false; + + return objectLocked; + } + } } \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/store/mainStore.js b/apps/documenteditor/mobile/src/store/mainStore.js index d9a85af99..1c1d2cc29 100644 --- a/apps/documenteditor/mobile/src/store/mainStore.js +++ b/apps/documenteditor/mobile/src/store/mainStore.js @@ -13,8 +13,9 @@ import {storeLinkSettings} from './linkSettings'; import {storeApplicationSettings} from './applicationSettings'; import {storeAppOptions} from "./appOptions"; import {storePalette} from "./palette"; -import {storeReview} from "./review"; +import {storeReview} from '../../../../common/mobile/lib/store/review'; import {storeComments} from "../../../../common/mobile/lib/store/comments"; +import {storeToolbarSettings} from "./toolbar"; export const stores = { storeAppOptions: new storeAppOptions(), @@ -32,6 +33,7 @@ export const stores = { storeApplicationSettings: new storeApplicationSettings(), storePalette: new storePalette(), storeReview: new storeReview(), - storeComments: new storeComments() + storeComments: new storeComments(), + storeToolbarSettings: new storeToolbarSettings() }; diff --git a/apps/documenteditor/mobile/src/store/textSettings.js b/apps/documenteditor/mobile/src/store/textSettings.js index a132bdac9..c35369f92 100644 --- a/apps/documenteditor/mobile/src/store/textSettings.js +++ b/apps/documenteditor/mobile/src/store/textSettings.js @@ -5,6 +5,7 @@ export class storeTextSettings { makeObservable(this, { fontsArray: observable, fontName: observable, + arrayRecentFonts:observable, fontSize: observable, isBold: observable, isItalic: observable, @@ -22,6 +23,7 @@ export class storeTextSettings { backgroundColor: observable, initEditorFonts: action, resetFontName: action, + resetFontsRecent:action, resetFontSize: action, resetIsBold: action, resetIsItalic: action, @@ -39,11 +41,13 @@ export class storeTextSettings { changeCustomTextColors: action, resetLineSpacing: action, resetBackgroundColor: action, - changeFontFamily: action + changeFontFamily: action, + addFontToRecent:action }); } fontsArray = []; + arrayRecentFonts = []; fontName = ''; fontSize = undefined; isBold = false; @@ -85,6 +89,12 @@ export class storeTextSettings { let name = (typeof font.get_Name) === "function" ? font.get_Name() : font.asc_getName(); this.fontName = name; } + + resetFontsRecent(fonts) { + this.arrayRecentFonts = fonts; + this.arrayRecentFonts = this.arrayRecentFonts ? this.arrayRecentFonts.split(';') : []; + } + resetFontSize (size) { this.fontSize = size; } @@ -173,6 +183,15 @@ export class storeTextSettings { this.fontName = name; } + addFontToRecent (font) { + this.arrayRecentFonts.forEach(item => { + if (item === font) this.arrayRecentFonts.splice(this.arrayRecentFonts.indexOf(item),1); + }) + this.arrayRecentFonts.unshift(font); + + if (this.arrayRecentFonts.length > 5) this.arrayRecentFonts.splice(4,1); + } + resetLineSpacing (vc) { let line = (vc.get_Line() === null || vc.get_LineRule() === null || vc.get_LineRule() != 1) ? -1 : vc.get_Line(); this.lineSpacing = line; diff --git a/apps/documenteditor/mobile/src/store/toolbar.js b/apps/documenteditor/mobile/src/store/toolbar.js new file mode 100644 index 000000000..ff0d1764a --- /dev/null +++ b/apps/documenteditor/mobile/src/store/toolbar.js @@ -0,0 +1,24 @@ +import {action, observable, makeObservable} from 'mobx'; + +export class storeToolbarSettings { + constructor() { + makeObservable(this, { + isCanUndo: observable, + setCanUndo: action, + isCanRedo: observable, + setCanRedo: action + }) + } + + isCanUndo = false; + + setCanUndo(can) { + this.isCanUndo = can; + } + + isCanRedo = false; + + setCanRedo(can) { + this.isCanRedo = can; + } +} \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/view/Encoding.jsx b/apps/documenteditor/mobile/src/view/Encoding.jsx new file mode 100644 index 000000000..3911a2d85 --- /dev/null +++ b/apps/documenteditor/mobile/src/view/Encoding.jsx @@ -0,0 +1,118 @@ +import React, {Component, useEffect, useState} from 'react'; +import { f7, Page, Navbar, List, ListItem, BlockTitle, ListButton, Popover, Popup, View, Link } from "framework7-react"; +import { useTranslation } from "react-i18next"; +import { Device } from '../../../../common/mobile/utils/device'; + +const PageEncoding = props => { + const { t } = useTranslation(); + const _t = t("Settings", { returnObjects: true }); + const pagesName = props.pagesName; + const pages = props.pages; + const [stateEncoding, setStateEncoding] = useState(props.valueEncoding); + const nameEncoding = pagesName[pages.indexOf(stateEncoding)]; + const mode = props.mode; + + const changeStateEncoding = value => { + setStateEncoding(value); + } + + return ( + + + + {_t.textEncoding} + + + + + {mode === 2 ? + props.closeModal()}> + : null} + props.onSaveFormat(stateEncoding)}> + + + + + ) +}; + +const PageEncodingList = props => { + const { t } = useTranslation(); + const _t = t("Settings", { returnObjects: true }); + const [currentEncoding, changeCurrentEncoding] = useState(props.stateEncoding); + const pages = props.pages; + const pagesName = props.pagesName; + + return ( + + + {_t.textChooseEncoding} + + {pagesName.map((name, index) => { + return ( + { + changeCurrentEncoding(pages[index]); + props.changeStateEncoding(pages[index]); + f7.views.current.router.back(); + }}> + ) + })} + + + ) +}; + +class EncodingView extends Component { + constructor(props) { + super(props); + } + + render() { + return ( + + + + ) + } +} + +const routes = [ + { + path: '/encoding-list/', + component: PageEncodingList + } +]; + +const Encoding = props => { + useEffect(() => { + f7.popup.open('.encoding-popup'); + + return () => { + } + }); + + return ( + + ) +}; + +export {Encoding, PageEncodingList} \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/view/add/Add.jsx b/apps/documenteditor/mobile/src/view/add/Add.jsx index 6538f5a21..a53800be8 100644 --- a/apps/documenteditor/mobile/src/view/add/Add.jsx +++ b/apps/documenteditor/mobile/src/view/add/Add.jsx @@ -202,7 +202,7 @@ class AddView extends Component { const show_popover = this.props.usePopover; return ( show_popover ? - this.props.onclosed()}> + this.props.onclosed()}> : this.props.onclosed()}> diff --git a/apps/documenteditor/mobile/src/view/add/AddLink.jsx b/apps/documenteditor/mobile/src/view/add/AddLink.jsx index d5b6a2eda..1dade24c8 100644 --- a/apps/documenteditor/mobile/src/view/add/AddLink.jsx +++ b/apps/documenteditor/mobile/src/view/add/AddLink.jsx @@ -24,16 +24,20 @@ const PageLink = props => { type="text" placeholder={_t.textLink} value={stateLink} - onChange={(event) => {setLink(event.target.value); - if(stateAutoUpdate) setDisplay(event.target.value); }} + onChange={(event) => { + setLink(event.target.value); + if((!stateDisplay || stateDisplay === stateLink) && stateAutoUpdate) setDisplay(event.target.value); + }} > {setDisplay(event.target.value); - setAutoUpdate(event.target.value == ''); }} + onChange={(event) => { + setDisplay(event.target.value); + setAutoUpdate(event.target.value == ''); + }} > { const storeFocusObjects = props.storeFocusObjects; const imageObject = storeFocusObjects.imageObject; const pluginGuid = imageObject.asc_getPluginGuid(); + const wrapType = props.storeImageSettings.getWrapType(imageObject); return ( @@ -254,9 +255,9 @@ const EditImage = props => { onReplaceByFile: props.onReplaceByFile, onReplaceByUrl: props.onReplaceByUrl }}> - + }}> } {props.onDefaulSize()}}/> @@ -266,7 +267,7 @@ const EditImage = props => { ) }; -const EditImageContainer = inject("storeFocusObjects")(observer(EditImage)); +const EditImageContainer = inject("storeFocusObjects", "storeImageSettings")(observer(EditImage)); const PageWrapContainer = inject("storeFocusObjects", "storeImageSettings")(observer(PageWrap)); const PageReplaceContainer = inject("storeFocusObjects")(observer(PageReplace)); const PageReorderContainer = inject("storeFocusObjects")(observer(PageReorder)); diff --git a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx index b4c785b50..85095537b 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditShape.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditShape.jsx @@ -506,9 +506,8 @@ const EditShape = props => { const { t } = useTranslation(); const _t = t('Edit', {returnObjects: true}); const canFill = props.storeFocusObjects.shapeObject.get_ShapeProperties().get_CanFill(); - const storeShapeSettings = props.storeShapeSettings; const shapeObject = props.storeFocusObjects.shapeObject; - const wrapType = storeShapeSettings.getWrapType(shapeObject); + const wrapType = props.storeShapeSettings.getWrapType(shapeObject); let disableRemove = !!props.storeFocusObjects.paragraphObject; @@ -537,9 +536,9 @@ const EditShape = props => { - + }}> } {props.onRemoveShape()}} className={`button-red button-fill button-raised${disableRemove ? ' disabled' : ''}`} /> diff --git a/apps/documenteditor/mobile/src/view/edit/EditText.jsx b/apps/documenteditor/mobile/src/view/edit/EditText.jsx index ec5acafa6..7af30bef8 100644 --- a/apps/documenteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/documenteditor/mobile/src/view/edit/EditText.jsx @@ -3,8 +3,8 @@ import {observer, inject} from "mobx-react"; import {f7, Swiper, View, SwiperSlide, List, ListItem, Icon, Row, Button, Page, Navbar, NavRight, Segmented, BlockTitle, Link} from 'framework7-react'; import { useTranslation } from 'react-i18next'; import {Device} from '../../../../../common/mobile/utils/device'; - import { ThemeColorPalette, CustomColorPicker } from '../../../../../common/mobile/lib/component/ThemeColorPalette.jsx'; +import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage'; const PageFonts = props => { const isAndroid = Device.android; @@ -14,11 +14,21 @@ const PageFonts = props => { const displaySize = typeof size === 'undefined' ? t('Edit.textAuto') : size + ' ' + t('Edit.textPt'); const curFontName = storeTextSettings.fontName; const fonts = storeTextSettings.fontsArray; + const arrayFonts = storeTextSettings.arrayRecentFonts; + + const addRecentStorage = () => { + let arr = []; + arrayFonts.forEach(item => arr.push(item)); + arr = arr.join(';'); + LocalStorage.setItem('dde-settings-recent-fonts', arr); + } + const [vlFonts, setVlFonts] = useState({ vlData: { items: [], } }); + const renderExternal = (vl, vlData) => { setVlFonts((prevState) => { let fonts = [...prevState.vlData.items]; @@ -57,6 +67,20 @@ const PageFonts = props => { {t('Edit.textFonts')} + {!!arrayFonts.length && + + {arrayFonts.map((item,index) => ( + {storeTextSettings.changeFontFamily(item); props.changeFontFamily(item);}} + /> + ))} + + } { checked={curFontName === item.name} title={item.name} style={{fontFamily: `${item.name}`}} - onClick={() => {storeTextSettings.changeFontFamily(item.name); props.changeFontFamily(item.name)}} + onClick={() => {storeTextSettings.changeFontFamily(item.name); props.changeFontFamily(item.name); + storeTextSettings.addFontToRecent(item.name); addRecentStorage()}} > ))} @@ -119,13 +144,13 @@ const PageAdditionalFormatting = props => { - {!isAndroid &&
    {letterSpacing + ' ' + Common.Utils.Metric.getCurrentMetricName()}
    } + {!isAndroid &&
    {(Number.isInteger(letterSpacing) ? letterSpacing : letterSpacing.toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName()}
    }
    - {isAndroid && } + {isAndroid && } @@ -274,7 +299,7 @@ const PageBulletsAndNumbers = props => { const storeTextSettings = props.storeTextSettings; return ( - + {Device.phone && diff --git a/apps/documenteditor/mobile/src/view/settings/ApplicationSettings.jsx b/apps/documenteditor/mobile/src/view/settings/ApplicationSettings.jsx index 848438779..ca26d3f6c 100644 --- a/apps/documenteditor/mobile/src/view/settings/ApplicationSettings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/ApplicationSettings.jsx @@ -6,6 +6,7 @@ import { useTranslation } from "react-i18next"; const PageApplicationSettings = props => { const { t } = useTranslation(); const _t = t("Settings", { returnObjects: true }); + const displayMode = props.storeReview.displayMode; const store = props.storeApplicationSettings; const unitMeasurement = store.unitMeasurement; const isSpellChecking = store.isSpellChecking; @@ -49,7 +50,7 @@ const PageApplicationSettings = props => { - {/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */} + {/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */} { store.changeNoCharacters(!isNonprintingCharacters); @@ -57,7 +58,7 @@ const PageApplicationSettings = props => { }} /> - {/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */} + {/*ToDo: if (DisplayMode == "final" || DisplayMode == "original") {disabled} */} { store.changeShowTableEmptyLine(!isHiddenTableBorders); @@ -124,7 +125,7 @@ const PageMacrosSettings = props => { ); }; -const ApplicationSettings = inject("storeApplicationSettings", "storeAppOptions")(observer(PageApplicationSettings)); +const ApplicationSettings = inject("storeApplicationSettings", "storeAppOptions", "storeReview")(observer(PageApplicationSettings)); const MacrosSettings = inject("storeApplicationSettings")(observer(PageMacrosSettings)); export {ApplicationSettings, MacrosSettings}; \ No newline at end of file diff --git a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx index 89111190b..e9430a4f8 100644 --- a/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/DocumentSettings.jsx @@ -159,20 +159,20 @@ const PageDocumentColorSchemes = props => { const { t } = useTranslation(); const curScheme = props.initPageColorSchemes(); const [stateScheme, setScheme] = useState(curScheme); - const _t = t('Settings', {returnObjects: true}); const storeSettings = props.storeDocumentSettings; const allSchemes = storeSettings.allSchemes; - const SchemeNames = [ - _t.txtScheme1, _t.txtScheme2, _t.txtScheme3, _t.txtScheme4, _t.txtScheme5, - _t.txtScheme6, _t.txtScheme7, _t.txtScheme8, _t.txtScheme9, _t.txtScheme10, - _t.txtScheme11, _t.txtScheme12, _t.txtScheme13, _t.txtScheme14, _t.txtScheme15, - _t.txtScheme16, _t.txtScheme17, _t.txtScheme18, _t.txtScheme19, _t.txtScheme20, - _t.txtScheme21, _t.txtScheme22 + const SchemeNames = [ t('Settings.txtScheme22'), + t('Settings.txtScheme1'), t('Settings.txtScheme2'), t('Settings.txtScheme3'), t('Settings.txtScheme4'), + t('Settings.txtScheme5'), t('Settings.txtScheme6'), t('Settings.txtScheme7'), t('Settings.txtScheme8'), + t('Settings.txtScheme9'), t('Settings.txtScheme10'), t('Settings.txtScheme11'), t('Settings.txtScheme12'), + t('Settings.txtScheme13'), t('Settings.txtScheme14'), t('Settings.txtScheme15'), t('Settings.txtScheme16'), + t('Settings.txtScheme17'), t('Settings.txtScheme18'), t('Settings.txtScheme19'), t('Settings.txtScheme20'), + t('Settings.txtScheme21') ]; return ( - + { allSchemes ? allSchemes.map((scheme, index) => { diff --git a/apps/documenteditor/mobile/src/view/settings/Settings.jsx b/apps/documenteditor/mobile/src/view/settings/Settings.jsx index 93f40c4aa..4e2a5bef6 100644 --- a/apps/documenteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/documenteditor/mobile/src/view/settings/Settings.jsx @@ -57,9 +57,11 @@ const routes = [ ]; -const SettingsList = inject("storeAppOptions")(observer(props => { +const SettingsList = inject("storeAppOptions", "storeReview")(observer(props => { const { t } = useTranslation(); const _t = t('Settings', {returnObjects: true}); + const storeReview = props.storeReview; + const displayMode = storeReview.displayMode; const navbar = {!props.inPopover && {_t.textDone}} ; @@ -139,7 +141,8 @@ const SettingsList = inject("storeAppOptions")(observer(props => { } {_isEdit && - + } diff --git a/apps/presentationeditor/embed/index.html b/apps/presentationeditor/embed/index.html index 991f9b627..363632511 100644 --- a/apps/presentationeditor/embed/index.html +++ b/apps/presentationeditor/embed/index.html @@ -50,7 +50,7 @@ .loadmask > .brendpanel .loading-logo > img { display: inline-block; - max-width: 100px; + max-width: 124px; max-height: 20px; margin-top: 2px; opacity: 0; @@ -206,8 +206,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/embed/index.html.deploy b/apps/presentationeditor/embed/index.html.deploy index a3a0347ab..f28da779f 100644 --- a/apps/presentationeditor/embed/index.html.deploy +++ b/apps/presentationeditor/embed/index.html.deploy @@ -48,7 +48,7 @@ .loadmask > .brendpanel .loading-logo > img { display: inline-block; - max-width: 100px; + max-width: 124px; max-height: 20px; margin-top: 2px; opacity: 0; @@ -200,8 +200,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/embed/index_loader.html b/apps/presentationeditor/embed/index_loader.html index e90de1d35..5b3142e62 100644 --- a/apps/presentationeditor/embed/index_loader.html +++ b/apps/presentationeditor/embed/index_loader.html @@ -224,8 +224,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/embed/index_loader.html.deploy b/apps/presentationeditor/embed/index_loader.html.deploy index ee5f914c6..f69ed41d9 100644 --- a/apps/presentationeditor/embed/index_loader.html.deploy +++ b/apps/presentationeditor/embed/index_loader.html.deploy @@ -217,8 +217,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/presentationeditor/embed/js/ApplicationController.js b/apps/presentationeditor/embed/js/ApplicationController.js index 78df5f6a2..2fbd34e2f 100644 --- a/apps/presentationeditor/embed/js/ApplicationController.js +++ b/apps/presentationeditor/embed/js/ApplicationController.js @@ -225,8 +225,8 @@ PE.ApplicationController = new(function(){ } } - function onDownloadUrl(url) { - Common.Gateway.downloadAs(url); + function onDownloadUrl(url, fileType) { + Common.Gateway.downloadAs(url, fileType); } function onPrint() { @@ -568,6 +568,11 @@ PE.ApplicationController = new(function(){ message = me.errorAccessDeny; break; + case Asc.c_oAscError.ID.ForceSaveButton: + case Asc.c_oAscError.ID.ForceSaveTimeout: + message = me.errorForceSave; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -712,6 +717,7 @@ PE.ApplicationController = new(function(){ errorFileSizeExceed: 'The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.', errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.', textGuest: 'Guest', - textAnonymous: 'Anonymous' + textAnonymous: 'Anonymous', + errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later." } })(); diff --git a/apps/presentationeditor/embed/locale/ca.json b/apps/presentationeditor/embed/locale/ca.json index e08517311..cb844e4e5 100644 --- a/apps/presentationeditor/embed/locale/ca.json +++ b/apps/presentationeditor/embed/locale/ca.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", "PE.ApplicationController.notcriticalErrorTitle": "Advertiment", "PE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "PE.ApplicationController.textAnonymous": "Anònim", + "PE.ApplicationController.textGuest": "Convidat", "PE.ApplicationController.textLoadingDocument": "Carregant presentació", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Tancar", diff --git a/apps/presentationeditor/embed/locale/de.json b/apps/presentationeditor/embed/locale/de.json index b9d8923fc..bb6a7f753 100644 --- a/apps/presentationeditor/embed/locale/de.json +++ b/apps/presentationeditor/embed/locale/de.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.", "PE.ApplicationController.notcriticalErrorTitle": "Warnung", "PE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", + "PE.ApplicationController.textAnonymous": "Anonym", + "PE.ApplicationController.textGuest": "Gast", "PE.ApplicationController.textLoadingDocument": "Präsentation wird geladen", "PE.ApplicationController.textOf": "von", "PE.ApplicationController.txtClose": "Schließen", diff --git a/apps/presentationeditor/embed/locale/el.json b/apps/presentationeditor/embed/locale/el.json index b75235358..51974b652 100644 --- a/apps/presentationeditor/embed/locale/el.json +++ b/apps/presentationeditor/embed/locale/el.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "PE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "PE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", + "PE.ApplicationController.textAnonymous": "Ανώνυμος", + "PE.ApplicationController.textGuest": "Επισκέπτης", "PE.ApplicationController.textLoadingDocument": "Γίνεται φόρτωση παρουσίασης", "PE.ApplicationController.textOf": "του", "PE.ApplicationController.txtClose": "Κλείσιμο", diff --git a/apps/presentationeditor/embed/locale/en.json b/apps/presentationeditor/embed/locale/en.json index f2de99d90..21d4323fc 100644 --- a/apps/presentationeditor/embed/locale/en.json +++ b/apps/presentationeditor/embed/locale/en.json @@ -13,6 +13,7 @@ "PE.ApplicationController.errorDefaultMessage": "Error code: %1", "PE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "PE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.", + "PE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "PE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "PE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "PE.ApplicationController.notcriticalErrorTitle": "Warning", diff --git a/apps/presentationeditor/embed/locale/es.json b/apps/presentationeditor/embed/locale/es.json index f32a35560..98c392ab3 100644 --- a/apps/presentationeditor/embed/locale/es.json +++ b/apps/presentationeditor/embed/locale/es.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", "PE.ApplicationController.notcriticalErrorTitle": "Aviso", "PE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", + "PE.ApplicationController.textAnonymous": "Anónimo", + "PE.ApplicationController.textGuest": "Invitado", "PE.ApplicationController.textLoadingDocument": "Cargando presentación", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Cerrar", diff --git a/apps/presentationeditor/embed/locale/fr.json b/apps/presentationeditor/embed/locale/fr.json index fc61fb9d2..9f0063f17 100644 --- a/apps/presentationeditor/embed/locale/fr.json +++ b/apps/presentationeditor/embed/locale/fr.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "PE.ApplicationController.notcriticalErrorTitle": "Avertissement", "PE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "PE.ApplicationController.textAnonymous": "Anonyme", + "PE.ApplicationController.textGuest": "Invité", "PE.ApplicationController.textLoadingDocument": "Chargement de la présentation", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Fermer", diff --git a/apps/presentationeditor/embed/locale/it.json b/apps/presentationeditor/embed/locale/it.json index 6a4f27670..c18e7ba7d 100644 --- a/apps/presentationeditor/embed/locale/it.json +++ b/apps/presentationeditor/embed/locale/it.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "PE.ApplicationController.notcriticalErrorTitle": "Avviso", "PE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", + "PE.ApplicationController.textAnonymous": "Anonimo", + "PE.ApplicationController.textGuest": "Ospite", "PE.ApplicationController.textLoadingDocument": "Caricamento della presentazione", "PE.ApplicationController.textOf": "di", "PE.ApplicationController.txtClose": "Chiudi", diff --git a/apps/presentationeditor/embed/locale/ja.json b/apps/presentationeditor/embed/locale/ja.json index 2d4ca4ccb..a22a88d8f 100644 --- a/apps/presentationeditor/embed/locale/ja.json +++ b/apps/presentationeditor/embed/locale/ja.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。", "PE.ApplicationController.notcriticalErrorTitle": "警告", "PE.ApplicationController.scriptLoadError": "接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。", + "PE.ApplicationController.textAnonymous": "匿名", + "PE.ApplicationController.textGuest": "ゲスト", "PE.ApplicationController.textLoadingDocument": "プレゼンテーションを読み込み中...", "PE.ApplicationController.textOf": "から", "PE.ApplicationController.txtClose": "閉じる", @@ -25,6 +27,7 @@ "PE.ApplicationController.waitText": "少々お待ちください...", "PE.ApplicationView.txtDownload": "ダウンロード", "PE.ApplicationView.txtEmbed": "埋め込み", + "PE.ApplicationView.txtFileLocation": "ファイルを開く", "PE.ApplicationView.txtFullScreen": "全画面表示", "PE.ApplicationView.txtPrint": "印刷する", "PE.ApplicationView.txtShare": "シェア" diff --git a/apps/presentationeditor/embed/locale/nl.json b/apps/presentationeditor/embed/locale/nl.json index 6290e968b..39c3e1f8d 100644 --- a/apps/presentationeditor/embed/locale/nl.json +++ b/apps/presentationeditor/embed/locale/nl.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "PE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "PE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", + "PE.ApplicationController.textAnonymous": "Anoniem", + "PE.ApplicationController.textGuest": "Gast", "PE.ApplicationController.textLoadingDocument": "Presentatie wordt geladen", "PE.ApplicationController.textOf": "van", "PE.ApplicationController.txtClose": "Afsluiten", @@ -25,6 +27,7 @@ "PE.ApplicationController.waitText": "Een moment geduld", "PE.ApplicationView.txtDownload": "Downloaden", "PE.ApplicationView.txtEmbed": "Invoegen", + "PE.ApplicationView.txtFileLocation": "Open bestandslocatie", "PE.ApplicationView.txtFullScreen": "Volledig scherm", "PE.ApplicationView.txtPrint": "Afdrukken", "PE.ApplicationView.txtShare": "Delen" diff --git a/apps/presentationeditor/embed/locale/pt.json b/apps/presentationeditor/embed/locale/pt.json index 40f3e353a..782bc2a95 100644 --- a/apps/presentationeditor/embed/locale/pt.json +++ b/apps/presentationeditor/embed/locale/pt.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "PE.ApplicationController.notcriticalErrorTitle": "Aviso", "PE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns componentes não foram carregados. Por favor, recarregue a página.", + "PE.ApplicationController.textAnonymous": "Anônimo", + "PE.ApplicationController.textGuest": "Convidado(a)", "PE.ApplicationController.textLoadingDocument": "Carregando apresentação", "PE.ApplicationController.textOf": "de", "PE.ApplicationController.txtClose": "Fechar", diff --git a/apps/presentationeditor/embed/locale/ro.json b/apps/presentationeditor/embed/locale/ro.json index d53edef04..33ef83a3f 100644 --- a/apps/presentationeditor/embed/locale/ro.json +++ b/apps/presentationeditor/embed/locale/ro.json @@ -17,10 +17,12 @@ "PE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "PE.ApplicationController.notcriticalErrorTitle": "Avertisment", "PE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "PE.ApplicationController.textAnonymous": "Anonim", + "PE.ApplicationController.textGuest": "Invitat", "PE.ApplicationController.textLoadingDocument": "Încărcare prezentare", "PE.ApplicationController.textOf": "din", "PE.ApplicationController.txtClose": "Închidere", - "PE.ApplicationController.unknownErrorText": "Eroare Necunoscut.", + "PE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "PE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "PE.ApplicationController.waitText": "Vă rugăm să așteptați...", "PE.ApplicationView.txtDownload": "Descărcare", diff --git a/apps/presentationeditor/embed/locale/sv.json b/apps/presentationeditor/embed/locale/sv.json index 4337bea37..c3af82160 100644 --- a/apps/presentationeditor/embed/locale/sv.json +++ b/apps/presentationeditor/embed/locale/sv.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "PE.ApplicationController.notcriticalErrorTitle": "Varning", "PE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", + "PE.ApplicationController.textAnonymous": "Anonym", + "PE.ApplicationController.textGuest": "Gäst", "PE.ApplicationController.textLoadingDocument": "Laddar prentationen", "PE.ApplicationController.textOf": "av", "PE.ApplicationController.txtClose": "Stäng", @@ -25,6 +27,7 @@ "PE.ApplicationController.waitText": "Var snäll och vänta...", "PE.ApplicationView.txtDownload": "Ladda ner", "PE.ApplicationView.txtEmbed": "Inbädda", + "PE.ApplicationView.txtFileLocation": "Gå till filens plats", "PE.ApplicationView.txtFullScreen": "Fullskärm", "PE.ApplicationView.txtPrint": "Skriva ut", "PE.ApplicationView.txtShare": "Dela" diff --git a/apps/presentationeditor/embed/locale/zh.json b/apps/presentationeditor/embed/locale/zh.json index fbb4fa02e..6597c40ac 100644 --- a/apps/presentationeditor/embed/locale/zh.json +++ b/apps/presentationeditor/embed/locale/zh.json @@ -17,6 +17,8 @@ "PE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "PE.ApplicationController.notcriticalErrorTitle": "警告", "PE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", + "PE.ApplicationController.textAnonymous": "匿名", + "PE.ApplicationController.textGuest": "访客", "PE.ApplicationController.textLoadingDocument": "载入演示", "PE.ApplicationController.textOf": "的", "PE.ApplicationController.txtClose": "关闭", diff --git a/apps/presentationeditor/main/app.js b/apps/presentationeditor/main/app.js index f2551484d..b28e2da91 100644 --- a/apps/presentationeditor/main/app.js +++ b/apps/presentationeditor/main/app.js @@ -162,6 +162,7 @@ require([ ,'Common.Controllers.ExternalDiagramEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' + ,'Transitions' ] }); @@ -197,6 +198,7 @@ require([ ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' ,'common/main/lib/controller/Desktop' + ,'presentationeditor/main/app/controller/Transitions' ], function() { app.start(); }); diff --git a/apps/presentationeditor/main/app/controller/LeftMenu.js b/apps/presentationeditor/main/app/controller/LeftMenu.js index 5d8b50d0f..31b3eaa98 100644 --- a/apps/presentationeditor/main/app/controller/LeftMenu.js +++ b/apps/presentationeditor/main/app/controller/LeftMenu.js @@ -156,7 +156,8 @@ define([ this.api.asc_registerCallback('asc_onAddComments', _.bind(this.onApiAddComments, this)); var collection = this.getApplication().getCollection('Common.Collections.Comments'); for (var i = 0; i < collection.length; ++i) { - if (collection.at(i).get('userid') !== this.mode.user.id) { + var comment = collection.at(i); + if (!comment.get('hide') && comment.get('userid') !== this.mode.user.id) { this.leftMenu.markCoauthOptions('comments', true); break; } @@ -169,6 +170,7 @@ define([ this.leftMenu.getMenu('file').setApi(api); if (this.mode.canUseHistory) this.getApplication().getController('Common.Controllers.History').setApi(this.api).setMode(this.mode); + this.leftMenu.btnThumbs.toggle(true); return this; }, @@ -208,7 +210,6 @@ define([ (this.mode.trialMode || this.mode.isBeta) && this.leftMenu.setDeveloperMode(this.mode.trialMode, this.mode.isBeta, this.mode.buildVersion); /** coauthoring end **/ Common.util.Shortcuts.resumeEvents(); - this.leftMenu.btnThumbs.toggle(true); return this; }, @@ -295,7 +296,7 @@ define([ menu.hide(); }, - onDownloadUrl: function(url) { + onDownloadUrl: function(url, fileType) { if (this.isFromFileDownloadAs) { var me = this, defFileName = this.getApplication().getController('Viewport').getView('Common.Views.Header').getDocumentCaption(); @@ -308,7 +309,7 @@ define([ } if (me.mode.canRequestSaveAs) { - Common.Gateway.requestSaveAs(url, defFileName); + Common.Gateway.requestSaveAs(url, defFileName, fileType); } else { me._saveCopyDlg = new Common.Views.SaveAsDlg({ saveFolderUrl: me.mode.saveAsUrl, @@ -578,13 +579,13 @@ define([ }, onApiAddComment: function(id, data) { - if (data && data.asc_getUserId() !== this.mode.user.id) + if (data && data.asc_getUserId() !== this.mode.user.id && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) this.leftMenu.markCoauthOptions('comments'); }, onApiAddComments: function(data) { for (var i = 0; i < data.length; ++i) { - if (data[i].asc_getUserId() !== this.mode.user.id) { + if (data[i].asc_getUserId() !== this.mode.user.id && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) { this.leftMenu.markCoauthOptions('comments'); break; } diff --git a/apps/presentationeditor/main/app/controller/Main.js b/apps/presentationeditor/main/app/controller/Main.js index d7f23db01..3262bedd7 100644 --- a/apps/presentationeditor/main/app/controller/Main.js +++ b/apps/presentationeditor/main/app/controller/Main.js @@ -479,7 +479,10 @@ define([ Asc.c_oAscFileType.PDF, Asc.c_oAscFileType.PDFA, Asc.c_oAscFileType.POTX, - Asc.c_oAscFileType.OTP + Asc.c_oAscFileType.OTP, + Asc.c_oAscFileType.PPTM, + Asc.c_oAscFileType.PNG, + Asc.c_oAscFileType.JPG ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -727,7 +730,7 @@ define([ this.loadMask.setTitle(title); if (!this.isShowOpenDialog) - this.loadMask.show(); + this.loadMask.show(action.id===Asc.c_oAscAsyncAction['Open']); } else { this.getApplication().getController('Statusbar').setStatusCaption(text, force); } @@ -821,7 +824,7 @@ define([ pluginsController = application.getController('Common.Controllers.Plugins'); leftmenuController.getView('LeftMenu').getMenu('file').loadDocument({doc:me.document}); - leftmenuController.setMode(me.appOptions).setApi(me.api).createDelayedElements(); + leftmenuController.setMode(me.appOptions).createDelayedElements().setApi(me.api); chatController.setApi(this.api).setMode(this.appOptions); application.getController('Common.Controllers.ExternalDiagramEditor').setApi(this.api).loadConfig({config:this.editorConfig, customization: this.editorConfig.customization}); @@ -1289,6 +1292,7 @@ define([ me.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(me.onAuthParticipantsChanged, me)); me.api.asc_registerCallback('asc_onParticipantsChanged', _.bind(me.onAuthParticipantsChanged, me)); me.api.asc_registerCallback('asc_onConnectionStateChanged', _.bind(me.onUserConnection, me)); + me.api.asc_registerCallback('asc_onConvertEquationToMath', _.bind(me.onConvertEquationToMath, me)); /** coauthoring end **/ if (me.stackLongActions.exist({id: ApplyEditRights, type: Asc.c_oAscAsyncActionType['BlockInteraction']})) { @@ -1699,9 +1703,10 @@ define([ }); }, - onDownloadUrl: function(url) { - if (this._state.isFromGatewayDownloadAs) - Common.Gateway.downloadAs(url); + onDownloadUrl: function(url, fileType) { + if (this._state.isFromGatewayDownloadAs) { + Common.Gateway.downloadAs(url, fileType); + } this._state.isFromGatewayDownloadAs = false; }, @@ -2330,7 +2335,8 @@ define([ selected: (opts.data.currentVersion == version.version), canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1), isExpanded: true, - serverVersion: version.serverVersion + serverVersion: version.serverVersion, + fileType: 'pptx' })); if (opts.data.currentVersion == version.version) { currentVersion = arrVersions[arrVersions.length-1]; @@ -2380,7 +2386,8 @@ define([ canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload, isRevision: false, isVisible: true, - serverVersion: version.serverVersion + serverVersion: version.serverVersion, + fileType: 'pptx' })); arrColors.push(user.get('colorval')); } @@ -2421,6 +2428,30 @@ define([ this.getApplication().getController('DocumentHolder').getView().focus(); }, + onConvertEquationToMath: function(equation) { + var me = this, + win; + var msg = this.textConvertEquation + '

    ' + this.textLearnMore + ''; + win = Common.UI.warning({ + width: 500, + msg: msg, + buttons: ['yes', 'cancel'], + primary: 'yes', + dontshow: true, + textDontShow: this.textApplyAll, + callback: _.bind(function(btn, dontshow){ + if (btn == 'yes') { + this.api.asc_ConvertEquationToMath(equation, dontshow); + } + this.onEditComplete(); + }, this) + }); + win.$window.find('#id-equation-convert-help').on('click', function (e) { + win && win.close(); + me.getApplication().getController('LeftMenu').getView('LeftMenu').showMenu('file:help', 'UsageInstructions\/InsertEquation.htm#convertequation'); + }) + }, + // Translation leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.', criticalErrorTitle: 'Error', @@ -2789,7 +2820,10 @@ define([ leavePageTextOnClose: 'All unsaved changes in this document will be lost.
    Click \'Cancel\' then \'Save\' to save them. Click \'OK\' to discard all the unsaved changes.', textTryUndoRedoWarn: 'The Undo/Redo functions are disabled for the Fast co-editing mode.', txtNone: 'None', - textDisconnect: 'Connection is lost' + textDisconnect: 'Connection is lost', + textConvertEquation: 'This equation was created with an old version of equation editor which is no longer supported. Converting this equation to Office Math ML format will make it editable.
    Do you want to convert this equation?', + textApplyAll: 'Apply to all equations', + textLearnMore: 'Learn More' } })(), PE.Controllers.Main || {})) }); diff --git a/apps/presentationeditor/main/app/controller/RightMenu.js b/apps/presentationeditor/main/app/controller/RightMenu.js index a79cfb9c5..c6f83d14a 100644 --- a/apps/presentationeditor/main/app/controller/RightMenu.js +++ b/apps/presentationeditor/main/app/controller/RightMenu.js @@ -137,8 +137,8 @@ define([ if (settingsType==Common.Utils.documentSettingsType.Slide) { this._settings[settingsType].locked = value.get_LockDelete(); this._settings[settingsType].lockedBackground = value.get_LockBackground(); - this._settings[settingsType].lockedEffects = value.get_LockTransition(); - this._settings[settingsType].lockedTransition = value.get_LockTransition(); + /*this._settings[settingsType].lockedEffects = value.get_LockTransition(); + this._settings[settingsType].lockedTransition = value.get_LockTransition();*/ this._settings[settingsType].lockedHeader = !!value.get_LockHeader && value.get_LockHeader(); } else { this._settings[settingsType].locked = value.get_Locked(); @@ -182,8 +182,6 @@ define([ if (i == Common.Utils.documentSettingsType.Slide) { if (pnl.locked!==undefined) this.rightmenu.slideSettings.setLocked(this._state.no_slides || pnl.lockedBackground || pnl.locked, - this._state.no_slides || pnl.lockedEffects || pnl.locked, - this._state.no_slides || pnl.lockedTransition || pnl.locked, this._state.no_slides || pnl.lockedHeader || pnl.locked); } else pnl.panel.setLocked(pnl.locked); @@ -220,7 +218,7 @@ define([ SetDisabled: function(disabled, allowSignature) { this.setMode({isEdit: !disabled}); if (this.rightmenu && this.rightmenu.paragraphSettings) { - this.rightmenu.slideSettings.SetSlideDisabled(disabled, disabled, disabled, disabled); + this.rightmenu.slideSettings.SetSlideDisabled(disabled, disabled); this.rightmenu.paragraphSettings.disableControls(disabled); this.rightmenu.shapeSettings.disableControls(disabled); this.rightmenu.textartSettings.disableControls(disabled); diff --git a/apps/presentationeditor/main/app/controller/Statusbar.js b/apps/presentationeditor/main/app/controller/Statusbar.js index 3f9f00ecb..7d3dd803c 100644 --- a/apps/presentationeditor/main/app/controller/Statusbar.js +++ b/apps/presentationeditor/main/app/controller/Statusbar.js @@ -106,6 +106,7 @@ define([ me.btnSpelling.render( me.statusbar.$el.find('#btn-doc-spell') ); me.btnDocLang = review.getButton('doclang', 'statusbar'); me.btnDocLang.render( me.statusbar.$el.find('#btn-doc-lang') ); + } else { me.statusbar.$el.find('.el-edit, .el-review').hide(); } diff --git a/apps/presentationeditor/main/app/controller/Toolbar.js b/apps/presentationeditor/main/app/controller/Toolbar.js index 954c77685..50652a01b 100644 --- a/apps/presentationeditor/main/app/controller/Toolbar.js +++ b/apps/presentationeditor/main/app/controller/Toolbar.js @@ -52,6 +52,7 @@ define([ 'common/main/lib/view/SymbolTableDialog', 'common/main/lib/util/define', 'presentationeditor/main/app/collection/SlideThemes', + 'presentationeditor/main/app/controller/Transitions', 'presentationeditor/main/app/view/Toolbar', 'presentationeditor/main/app/view/DateTimeDialog', 'presentationeditor/main/app/view/HeaderFooterDialog', @@ -160,7 +161,10 @@ define([ Asc.c_oAscFileType.ODP, Asc.c_oAscFileType.PDFA, Asc.c_oAscFileType.POTX, - Asc.c_oAscFileType.OTP + Asc.c_oAscFileType.OTP, + Asc.c_oAscFileType.PPTM, + Asc.c_oAscFileType.PNG, + Asc.c_oAscFileType.JPG ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -2396,20 +2400,25 @@ define([ } else if ( config.customization && config.customization.compactToolbar ) compactview = true; - } + } me.toolbar.render(_.extend({compactview: compactview}, config)); var tab = {action: 'review', caption: me.toolbar.textTabCollaboration}; var $panel = me.getApplication().getController('Common.Controllers.ReviewChanges').createToolbarPanel(); if ( $panel ) { - me.toolbar.addTab(tab, $panel, 3); + me.toolbar.addTab(tab, $panel, 4); me.toolbar.setVisible('review', config.isEdit || config.canViewReview || config.canCoAuthoring && config.canComments); } if ( config.isEdit ) { me.toolbar.setMode(config); + var transitController = me.getApplication().getController('Transitions'); + transitController.setApi(me.api).setConfig({toolbar: me,mode:config}).createToolbarPanel(); + Array.prototype.push.apply(me.toolbar.lockControls,transitController.getView().getButtons()); + Array.prototype.push.apply(me.toolbar.slideOnlyControls,transitController.getView().getButtons()); + me.toolbar.btnSave.on('disabled', _.bind(me.onBtnChangeState, me, 'save:disabled')); if (!(config.customization && config.customization.compactHeader)) { @@ -2455,6 +2464,7 @@ define([ if (btn.cmpEl.closest('#review-changes-panel').length>0) btn.setCaption(me.toolbar.capBtnAddComment); }, this); + this.toolbar.lockToolbar(PE.enumLock.noSlides, this._state.no_slides, { array: this.btnsComment }); } } diff --git a/apps/presentationeditor/main/app/controller/Transitions.js b/apps/presentationeditor/main/app/controller/Transitions.js new file mode 100644 index 000000000..09a8a81a2 --- /dev/null +++ b/apps/presentationeditor/main/app/controller/Transitions.js @@ -0,0 +1,294 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2019 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * +*/ +/** + * Transitions.js + * + * Created by Olga.Transitions on 15.07.21 + * Copyright (c) 2021 Ascensio System SIA. All rights reserved. + * + */ + +define([ + 'core', + 'jquery', + 'underscore', + 'backbone', + 'presentationeditor/main/app/view/Transitions' +], function () { + 'use strict'; + + PE.Controllers.Transitions = Backbone.Controller.extend(_.extend({ + models : [], + collections : [], + views : [ + 'PE.Views.Transitions' + ], + options: { + alias: 'Transitions' + }, + sdkViewName : '#id_main', + + initialize: function () { + + this.addListeners({ + 'PE.Views.Transitions': { + 'transit:preview': _.bind(this.onPreviewClick, this), + 'transit:parameters': _.bind(this.onParameterClick, this), + 'transit:duration': _.bind(this.onDurationChange, this), + 'transit:applytoall': _.bind(this.onApplyToAllClick, this), + 'transit:selecteffect': _.bind(this.onEffectSelect, this), + 'transit:startonclick': _.bind(this.onStartOnClickChange, this), + 'transit:delay': _.bind(this.onDelayChange, this), + 'transit:checkdelay': _.bind(this.onCheckDelayChange, this) + }, + 'Toolbar': { + 'tab:active': _.bind(this.onActiveTab, this) + } + }); + + }, + + onLaunch: function () { + this._state = {}; + }, + + setConfig: function (config) { + this.appConfig = config.mode; + + this.view = this.createView('PE.Views.Transitions', { + toolbar: config.toolbar, + mode: config.mode + }); + return this; + }, + + setApi: function (api) { + this.api = api; + this.api.asc_registerCallback('asc_onFocusObject', _.bind(this.onFocusObject, this)); + this.api.asc_registerCallback('asc_onCountPages', _.bind(this.onApiCountPages, this)); + return this; + }, + + onApiCountPages: function (count) { + if (this._state.no_slides !== (count<=0)) { + this._state.no_slides = (count<=0); + this.lockToolbar(PE.enumLock.noSlides, this._state.no_slides); + } + }, + + createToolbarPanel: function() { + return this.view.getPanel(); + }, + + getView: function(name) { + return !name && this.view ? + this.view : Backbone.Controller.prototype.getView.call(this, name); + }, + + onPreviewClick: function() { + if (this.api) { + this.api.SlideTransitionPlay(); + } + }, + + onParameterClick: function (item) { + this.EffectType = item.value; + if (this.api && !this._noApply) { + var props = new Asc.CAscSlideProps(); + var transition = new Asc.CAscSlideTransition(); + transition.put_TransitionType(this.Effect); + transition.put_TransitionOption(this.EffectType); + props.put_transition(transition); + this.api.SetSlideProps(props); + } + }, + + onDurationChange: function(field, newValue, oldValue, eOpts) { + if (this.api && !this._noApply) { + var props = new Asc.CAscSlideProps(); + var transition = new Asc.CAscSlideTransition(); + transition.put_TransitionDuration(field.getNumberValue()*1000); + props.put_transition(transition); + this.api.SetSlideProps(props); + } + }, + + onStartOnClickChange: function(field, newValue, oldValue, eOpts) { + if (this.api && !this._noApply) { + var props = new Asc.CAscSlideProps(); + var transition = new Asc.CAscSlideTransition(); + transition.put_SlideAdvanceOnMouseClick(field.getValue() == 'checked'); + props.put_transition(transition); + this.api.SetSlideProps(props); + } + }, + + onDelayChange: function(field, newValue, oldValue, eOpts) { + if (this.api && !this._noApply) { + var props = new Asc.CAscSlideProps(); + var transition = new Asc.CAscSlideTransition(); + transition.put_SlideAdvanceDuration(field.getNumberValue()*1000); + props.put_transition(transition); + this.api.SetSlideProps(props); + } + }, + + onCheckDelayChange: function(field, newValue, oldValue, eOpts) { + this.view.numDelay.setDisabled(field.getValue() !== 'checked'); + if (this.api && !this._noApply) { + var props = new Asc.CAscSlideProps(); + var transition = new Asc.CAscSlideTransition(); + transition.put_SlideAdvanceAfter(field.getValue() == 'checked'); + props.put_transition(transition); + this.api.SetSlideProps(props); + } + }, + + onApplyToAllClick: function () { + if (this.api) this.api.SlideTransitionApplyToAll(); + }, + + onEffectSelect: function (combo, record) { + var type = record.get('value'); + + if (this.Effect !== type && + !((this.Effect === Asc.c_oAscSlideTransitionTypes.Wipe || this.Effect === Asc.c_oAscSlideTransitionTypes.UnCover || this.Effect === Asc.c_oAscSlideTransitionTypes.Cover)&& + (type === Asc.c_oAscSlideTransitionTypes.Wipe || type === Asc.c_oAscSlideTransitionTypes.UnCover || type === Asc.c_oAscSlideTransitionTypes.Cover))) { + var parameter = this.view.setMenuParameters(type); + if (parameter) + this.onParameterClick(parameter); + } + this.Effect = type; + + if (this.api && !this._noApply) { + var props = new Asc.CAscSlideProps(); + var transition = new Asc.CAscSlideTransition(); + transition.put_TransitionType(type); + transition.put_TransitionOption(this.EffectType); + props.put_transition(transition); + this.api.SetSlideProps(props); + } + }, + + onFocusObject: function(selectedObjects) { + var me = this; + + for (var i = 0; i 0.001 || + (this._state.Duration === null || value === null) && (this._state.Duration !== value) || + (this._state.Duration === undefined || value === undefined) && (this._state.Duration !== value)) { + this._state.Duration = value; + } + + value = transition.get_SlideAdvanceDuration(); + if (Math.abs(this._state.Delay - value) > 0.001 || + (this._state.Delay === null || value === null) && (this._state.Delay !== value) || + (this._state.Delay === undefined || value === undefined) && (this._state.Delay !== value)) { + this._state.Delay = value; + } + + this._state.OnMouseClick = transition.get_SlideAdvanceOnMouseClick(); + this._state.AdvanceAfter = transition.get_SlideAdvanceAfter(); + } + }, + + onActiveTab: function(tab) { + if (tab == 'transit') { + this._state.onactivetab = true; + this.setLocked(); + this.setSettings(); + } + else this._state.onactivetab = false; + }, + + lockToolbar: function (causes, lock, opts) { + Common.Utils.lockControls(causes, lock, opts, this.view.lockedControls); + }, + + setLocked: function() { + if (this._state.lockedtransition != undefined) + this.lockToolbar(PE.enumLock.transitLock, this._state.lockedtransition); + }, + + setSettings: function () { + var me = this.view; + + if (this._state.Effect !== undefined) { + var item = me.listEffects.store.findWhere({value: this._state.Effect}); + me.listEffects.menuPicker.selectRecord(item ? item : me.listEffects.menuPicker.items[0]); + this.view.btnParameters.setIconCls('toolbar__icon icon ' + item.get('imageUrl')); + } + + if (me.btnParameters.menu.items.length > 0 && this._state.EffectType !== undefined) + me.setMenuParameters(this._state.Effect, this._state.EffectType); + + me.numDuration.setValue((this._state.Duration !== null && this._state.Duration !== undefined) ? this._state.Duration / 1000. : '', true); + me.numDelay.setValue((this._state.Delay !== null && this._state.Delay !== undefined) ? this._state.Delay / 1000. : '', true); + me.chStartOnClick.setValue((this._state.OnMouseClick !== null && this._state.OnMouseClick !== undefined) ? this._state.OnMouseClick : 'indeterminate', true); + me.chDelay.setValue((this._state.AdvanceAfter !== null && this._state.AdvanceAfter !== undefined) ? this._state.AdvanceAfter : 'indeterminate', true); + me.numDelay.setDisabled(me.chDelay.getValue() !== 'checked' || me.chDelay.disabled); + } + + }, PE.Controllers.Transitions || {})); +}); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/template/SlideSettings.template b/apps/presentationeditor/main/app/template/SlideSettings.template index e156bddbd..df87a6486 100644 --- a/apps/presentationeditor/main/app/template/SlideSettings.template +++ b/apps/presentationeditor/main/app/template/SlideSettings.template @@ -117,57 +117,6 @@
    - - - - - - - -
    - - - - -
    - - - - -
    - -
    -
    - - - - - - - - - -
    - - - - -
    -
    -
    -
    - - - - - - - - - -
    - -
    diff --git a/apps/presentationeditor/main/app/template/Toolbar.template b/apps/presentationeditor/main/app/template/Toolbar.template index e467ca86c..14e7722d5 100644 --- a/apps/presentationeditor/main/app/template/Toolbar.template +++ b/apps/presentationeditor/main/app/template/Toolbar.template @@ -142,6 +142,42 @@
    +
    +
    + +
    + +
    +
    +
    +
    + + +
    +
    + +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    +
    \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/DateTimeDialog.js b/apps/presentationeditor/main/app/view/DateTimeDialog.js index 3b382bec4..ce875c21a 100644 --- a/apps/presentationeditor/main/app/view/DateTimeDialog.js +++ b/apps/presentationeditor/main/app/view/DateTimeDialog.js @@ -88,8 +88,8 @@ define([ render: function () { Common.UI.Window.prototype.render.call(this); - var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, + { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/presentationeditor/main/app/view/FileMenu.js b/apps/presentationeditor/main/app/view/FileMenu.js index a6ee850eb..c7de276c4 100644 --- a/apps/presentationeditor/main/app/view/FileMenu.js +++ b/apps/presentationeditor/main/app/view/FileMenu.js @@ -313,7 +313,7 @@ define([ return this; }, - show: function(panel) { + show: function(panel, opts) { if (this.isVisible() && panel===undefined || !this.mode) return; if ( !this.rendered ) @@ -324,7 +324,7 @@ define([ panel = this.active || defPanel; this.$el.show(); this.scroller.update(); - this.selectMenu(panel, defPanel); + this.selectMenu(panel, opts, defPanel); this.api && this.api.asc_enableKeyEvents(false); @@ -402,11 +402,11 @@ define([ } if (this.mode.canDownload) { - !this.panels['saveas'] && (this.panels['saveas'] = ((new PE.Views.FileMenuPanels.ViewSaveAs({menu: this})).render())); + !this.panels['saveas'] && (this.panels['saveas'] = ((new PE.Views.FileMenuPanels.ViewSaveAs({menu: this, fileType: this.document.fileType})).render())); } if (this.mode.canDownload && (this.mode.canRequestSaveAs || this.mode.saveAsUrl)) { - !this.panels['save-copy'] && (this.panels['save-copy'] = ((new PE.Views.FileMenuPanels.ViewSaveCopy({menu: this})).render())); + !this.panels['save-copy'] && (this.panels['save-copy'] = ((new PE.Views.FileMenuPanels.ViewSaveCopy({menu: this, fileType: this.document.fileType})).render())); } if (this.mode.canHelp && !this.panels['help']) { @@ -450,7 +450,7 @@ define([ this.document = data.doc; }, - selectMenu: function(menu, defMenu) { + selectMenu: function(menu, opts, defMenu) { if ( menu ) { var item = this._getMenuItem(menu), panel = this.panels[menu]; @@ -463,7 +463,7 @@ define([ item.$el.addClass('active'); this.$el.find('.content-box:visible').hide(); - panel.show(); + panel.show(opts); if (this.scroller) { var itemTop = item.$el.position().top, diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index f4d891317..94fed64a6 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -61,6 +61,10 @@ define([ {name: 'POTX', imgCls: 'potx', type: Asc.c_oAscFileType.POTX}, {name: 'PDFA', imgCls: 'pdfa', type: Asc.c_oAscFileType.PDFA}, {name: 'OTP', imgCls: 'otp', type: Asc.c_oAscFileType.OTP} + ], [ + {name: 'PPTM', imgCls: 'pptm', type: Asc.c_oAscFileType.PPTM}, + {name: 'PNG', imgCls: 'png', type: Asc.c_oAscFileType.PNG}, + {name: 'JPG', imgCls: 'jpg', type: Asc.c_oAscFileType.JPG} ]], @@ -69,9 +73,11 @@ define([ '<% _.each(rows, function(row) { %>', '', '<% _.each(row, function(item) { %>', + '<% if (item.type!==Asc.c_oAscFileType.PPTM || fileType=="pptm") { %>', '
    ', '', '
    ', + '<% } %>', '<% }) %>', '', '<% }) %>', @@ -82,10 +88,11 @@ define([ Common.UI.BaseView.prototype.initialize.call(this,arguments); this.menu = options.menu; + this.fileType = options.fileType; }, render: function() { - this.$el.html(this.template({rows:this.formats})); + this.$el.html(this.template({rows:this.formats, fileType: (this.fileType || 'pptx').toLowerCase()})); $('.btn-doc-format',this.el).on('click', _.bind(this.onFormatClick,this)); if (_.isUndefined(this.scroller)) { @@ -124,6 +131,10 @@ define([ {name: 'POTX', imgCls: 'potx', type: Asc.c_oAscFileType.POTX, ext: '.potx'}, {name: 'PDFA', imgCls: 'pdfa', type: Asc.c_oAscFileType.PDFA, ext: '.pdf'}, {name: 'OTP', imgCls: 'otp', type: Asc.c_oAscFileType.OTP, ext: '.otp'} + ], [ + {name: 'PPTM', imgCls: 'pptm', type: Asc.c_oAscFileType.PPTM, ext: '.pptm'}, + {name: 'PNG', imgCls: 'png', type: Asc.c_oAscFileType.PNG, ext: '.png'}, + {name: 'JPG', imgCls: 'jpg', type: Asc.c_oAscFileType.JPG, ext: '.jpg'} ]], template: _.template([ @@ -131,9 +142,11 @@ define([ '<% _.each(rows, function(row) { %>', '', '<% _.each(row, function(item) { %>', + '<% if (item.type!==Asc.c_oAscFileType.PPTM || fileType=="pptm") { %>', '
    ', '', '
    ', + '<% } %>', '<% }) %>', '', '<% }) %>', @@ -144,10 +157,11 @@ define([ Common.UI.BaseView.prototype.initialize.call(this,arguments); this.menu = options.menu; + this.fileType = options.fileType; }, render: function() { - this.$el.html(this.template({rows:this.formats})); + this.$el.html(this.template({rows:this.formats, fileType: (this.fileType || 'pptx').toLowerCase()})); $('.btn-doc-format',this.el).on('click', _.bind(this.onFormatClick,this)); if (_.isUndefined(this.scroller)) { @@ -250,7 +264,7 @@ define([ '', '', '', - '', + '', '', '
    ', '' @@ -1373,6 +1387,7 @@ define([ this.menu = options.menu; this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; + this.openUrl = null; this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Presentation Editor user interface", "headername": "Program Interface"}, @@ -1436,7 +1451,7 @@ define([ }); this.viewHelpPicker.on('item:select', function(dataview, itemview, record) { - me.iFrame.src = me.urlPref + record.get('src'); + me.onSelectItem(record.get('src')); }); this.iFrame = document.createElement('iframe'); @@ -1482,9 +1497,14 @@ define([ } }, success: function () { - var rec = store.at(0); - me.viewHelpPicker.selectRecord(rec); - me.iFrame.src = me.urlPref + rec.get('src'); + var rec = me.openUrl ? store.find(function(record){ + return (me.openUrl.indexOf(record.get('src'))>=0); + }) : store.at(0); + if (rec) { + me.viewHelpPicker.selectRecord(rec, true); + me.viewHelpPicker.scrollToRecord(rec); + } + me.onSelectItem(me.openUrl ? me.openUrl : rec.get('src')); } }; store.url = 'resources/help/' + lang + '/Contents.json'; @@ -1493,12 +1513,29 @@ define([ } }, - show: function () { + show: function (url) { Common.UI.BaseView.prototype.show.call(this); if (!this._scrollerInited) { this.viewHelpPicker.scroller.update(); this._scrollerInited = true; } + if (url) { + if (this.viewHelpPicker.store.length>0) { + var rec = this.viewHelpPicker.store.find(function(record){ + return (url.indexOf(record.get('src'))>=0); + }); + if (rec) { + this.viewHelpPicker.selectRecord(rec, true); + this.viewHelpPicker.scrollToRecord(rec); + } + this.onSelectItem(url); + } else + this.openUrl = url; + } + }, + + onSelectItem: function(src) { + this.iFrame.src = this.urlPref + src; } }); diff --git a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js index 67163c9c1..9eac4598e 100644 --- a/apps/presentationeditor/main/app/view/HeaderFooterDialog.js +++ b/apps/presentationeditor/main/app/view/HeaderFooterDialog.js @@ -122,8 +122,8 @@ define(['text!presentationeditor/main/app/template/HeaderFooterDialog.template', style : 'width: 100%;' }); - var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, - { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, + var data = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, + { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; data.forEach(function(item) { var langinfo = Common.util.LanguageInfo.getLocalLanguageName(item.value); diff --git a/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js b/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js index 9bb50805a..0b98ddbe8 100644 --- a/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js +++ b/apps/presentationeditor/main/app/view/HyperlinkSettingsDialog.js @@ -416,6 +416,7 @@ define([ }, onSelectItem: function(picker, item, record, e){ + if (!record) return; this.btnOk.setDisabled(record.get('index')==4); if (this.isAutoUpdate) { this.inputDisplay.setValue((record.get('level') || record.get('index')<4) ? record.get('name') : ''); diff --git a/apps/presentationeditor/main/app/view/LeftMenu.js b/apps/presentationeditor/main/app/view/LeftMenu.js index c39fa0106..c1868b7db 100644 --- a/apps/presentationeditor/main/app/view/LeftMenu.js +++ b/apps/presentationeditor/main/app/view/LeftMenu.js @@ -320,10 +320,10 @@ define([ this.btnPlugins.setDisabled(disable); }, - showMenu: function(menu) { + showMenu: function(menu, opts) { var re = /^(\w+):?(\w*)$/.exec(menu); if ( re[1] == 'file' ) { - this.menuFile.show(re[2].length ? re[2] : undefined); + this.menuFile.show(re[2].length ? re[2] : undefined, opts); } else { /** coauthoring begin **/ if (menu == 'chat') { diff --git a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js index 5e33c00fe..57d45949b 100644 --- a/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/presentationeditor/main/app/view/ParagraphSettingsAdvanced.js @@ -726,6 +726,7 @@ define([ 'text!presentationeditor/main/app/template/ParagraphSettingsAdvanced }, onSelectTab: function(lisvView, itemView, record) { + if (!record) return; var rawData = {}, isViewSelect = _.isFunction(record.toJSON); diff --git a/apps/presentationeditor/main/app/view/SlideSettings.js b/apps/presentationeditor/main/app/view/SlideSettings.js index 826484ab7..97bb099fd 100644 --- a/apps/presentationeditor/main/app/view/SlideSettings.js +++ b/apps/presentationeditor/main/app/view/SlideSettings.js @@ -79,8 +79,6 @@ define([ this._locked = { background: false, - effects: false, - transition: false, header: false }; this._stateDisabled = {}; @@ -188,141 +186,6 @@ define([ this.FillGradientContainer = $('#slide-panel-gradient-fill'); this.TransparencyContainer = $('#slide-panel-transparent-fill'); - this._arrEffectName = [ - {displayValue: this.textNone, value: Asc.c_oAscSlideTransitionTypes.None}, - {displayValue: this.textFade, value: Asc.c_oAscSlideTransitionTypes.Fade}, - {displayValue: this.textPush, value: Asc.c_oAscSlideTransitionTypes.Push}, - {displayValue: this.textWipe, value: Asc.c_oAscSlideTransitionTypes.Wipe}, - {displayValue: this.textSplit, value: Asc.c_oAscSlideTransitionTypes.Split}, - {displayValue: this.textUnCover, value: Asc.c_oAscSlideTransitionTypes.UnCover}, - {displayValue: this.textCover, value: Asc.c_oAscSlideTransitionTypes.Cover}, - {displayValue: this.textClock, value: Asc.c_oAscSlideTransitionTypes.Clock}, - {displayValue: this.textZoom, value: Asc.c_oAscSlideTransitionTypes.Zoom} - ]; - - this.cmbEffectName = new Common.UI.ComboBox({ - el: $('#slide-combo-effect-name'), - cls: 'input-group-nr', - style: 'width: 100%;', - menuStyle: 'min-width: 100%;', - editable: false, - data: this._arrEffectName, - disabled: true, - dataHint: '1', - dataHintDirection: 'bottom', - dataHintOffset: 'big' - }); - this.cmbEffectName.setValue(''); - this.cmbEffectName.on('selected', _.bind(this.onEffectNameSelect, this)); - - this._arrEffectType = [ - {displayValue: this.textSmoothly, value: Asc.c_oAscSlideTransitionParams.Fade_Smoothly}, - {displayValue: this.textBlack, value: Asc.c_oAscSlideTransitionParams.Fade_Through_Black}, - {displayValue: this.textLeft, value: Asc.c_oAscSlideTransitionParams.Param_Left}, - {displayValue: this.textTop, value: Asc.c_oAscSlideTransitionParams.Param_Top}, - {displayValue: this.textRight, value: Asc.c_oAscSlideTransitionParams.Param_Right}, - {displayValue: this.textBottom, value: Asc.c_oAscSlideTransitionParams.Param_Bottom}, - {displayValue: this.textTopLeft, value: Asc.c_oAscSlideTransitionParams.Param_TopLeft}, - {displayValue: this.textTopRight, value: Asc.c_oAscSlideTransitionParams.Param_TopRight}, - {displayValue: this.textBottomLeft, value: Asc.c_oAscSlideTransitionParams.Param_BottomLeft}, - {displayValue: this.textBottomRight, value: Asc.c_oAscSlideTransitionParams.Param_BottomRight}, - {displayValue: this.textVerticalIn, value: Asc.c_oAscSlideTransitionParams.Split_VerticalIn}, - {displayValue: this.textVerticalOut, value: Asc.c_oAscSlideTransitionParams.Split_VerticalOut}, - {displayValue: this.textHorizontalIn, value: Asc.c_oAscSlideTransitionParams.Split_HorizontalIn}, - {displayValue: this.textHorizontalOut, value: Asc.c_oAscSlideTransitionParams.Split_HorizontalOut}, - {displayValue: this.textClockwise, value: Asc.c_oAscSlideTransitionParams.Clock_Clockwise}, - {displayValue: this.textCounterclockwise, value: Asc.c_oAscSlideTransitionParams.Clock_Counterclockwise}, - {displayValue: this.textWedge, value: Asc.c_oAscSlideTransitionParams.Clock_Wedge}, - {displayValue: this.textZoomIn, value: Asc.c_oAscSlideTransitionParams.Zoom_In}, - {displayValue: this.textZoomOut, value: Asc.c_oAscSlideTransitionParams.Zoom_Out}, - {displayValue: this.textZoomRotate, value: Asc.c_oAscSlideTransitionParams.Zoom_AndRotate} - ]; - - this.cmbEffectType = new Common.UI.ComboBox({ - el: $('#slide-combo-effect-type'), - cls: 'input-group-nr', - style: 'width: 100%;', - menuStyle: 'min-width: 100%;', - editable: false, - data: this._arrEffectType, - disabled: true, - dataHint: '1', - dataHintDirection: 'bottom', - dataHintOffset: 'big' - }); - this.cmbEffectType.setValue(''); - this.cmbEffectType.on('selected', _.bind(this.onEffectTypeSelect, this)); - - this.numDuration = new Common.UI.MetricSpinner({ - el: $('#slide-spin-duration'), - step: 1, - width: 70, - value: '', - defaultUnit : this.textSec, - maxValue: 300, - minValue: 0, - disabled: true, - dataHint: '1', - dataHintDirection: 'bottom', - dataHintOffset: 'big' - }); - this.numDuration.on('change', _.bind(this.onDurationChange, this)); - this.numDuration.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); - - this.numDelay = new Common.UI.MetricSpinner({ - el: $('#slide-spin-delay'), - step: 1, - width: 70, - value: '', - defaultUnit : this.textSec, - maxValue: 300, - minValue: 0, - disabled: true, - dataHint: '1', - dataHintDirection: 'bottom', - dataHintOffset: 'big' - }); - this.numDelay.on('change', _.bind(this.onDelayChange, this)); - this.numDelay.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); - - this.chStartOnClick = new Common.UI.CheckBox({ - el: $('#slide-checkbox-start-click'), - labelText: this.strStartOnClick, - disabled: true, - dataHint: '1', - dataHintDirection: 'left', - dataHintOffset: 'small' - }); - this.chStartOnClick.on('change', _.bind(this.onStartOnClickChange, this)); - - this.chDelay = new Common.UI.CheckBox({ - el: $('#slide-checkbox-delay'), - labelText: this.strDelay, - disabled: true, - dataHint: '1', - dataHintDirection: 'left', - dataHintOffset: 'small' - }); - this.chDelay.on('change', _.bind(this.onCheckDelayChange, this)); - - this.btnPreview = new Common.UI.Button({ - el: $('#slide-button-preview'), - disabled: true - }); - this.btnPreview.on('click', _.bind(function(btn){ - if (this.api) this.api.SlideTransitionPlay(); - this.fireEvent('editcomplete', this); - }, this)); - - this.btnApplyToAll = new Common.UI.Button({ - el: $('#slide-button-apply-all'), - disabled: true - }); - this.btnApplyToAll.on('click', _.bind(function(btn){ - if (this.api) this.api.SlideTransitionApplyToAll(); - this.fireEvent('editcomplete', this); - }, this)); - this.chSlideNum = new Common.UI.CheckBox({ el: $('#slide-checkbox-slidenum'), labelText: this.strSlideNum, @@ -1158,122 +1021,6 @@ define([ this.fireEvent('editcomplete', this); }, - fillEffectTypeCombo: function (type) { - var arr = []; - switch (type) { - case Asc.c_oAscSlideTransitionTypes.Fade: - arr.push(this._arrEffectType[0], this._arrEffectType[1]); - break; - case Asc.c_oAscSlideTransitionTypes.Push: - arr = this._arrEffectType.slice(2, 6); - break; - case Asc.c_oAscSlideTransitionTypes.Wipe: - arr = this._arrEffectType.slice(2, 10); - break; - case Asc.c_oAscSlideTransitionTypes.Split: - arr = this._arrEffectType.slice(10, 14); - break; - case Asc.c_oAscSlideTransitionTypes.UnCover: - arr = this._arrEffectType.slice(2, 10); - break; - case Asc.c_oAscSlideTransitionTypes.Cover: - arr = this._arrEffectType.slice(2, 10); - break; - case Asc.c_oAscSlideTransitionTypes.Clock: - arr = this._arrEffectType.slice(14, 17); - break; - case Asc.c_oAscSlideTransitionTypes.Zoom: - arr = this._arrEffectType.slice(17); - break; - } - if (arr.length>0) { - this.cmbEffectType.store.reset(arr); - this.cmbEffectType.setValue(arr[0].value); - this.EffectType = arr[0].value; - } else { - this.cmbEffectType.store.reset(); - this.EffectType = undefined; - } - - this.cmbEffectType.setDisabled(arr.length<1 || this._locked.effects); - this.numDuration.setDisabled(arr.length<1 || this._locked.effects); - this.btnPreview.setDisabled(arr.length<1 || this._locked.effects); - }, - - onEffectNameSelect: function(combo, record) { - var type = record.value; - if (this.Effect !== type && - !((this.Effect===Asc.c_oAscSlideTransitionTypes.Wipe || this.Effect===Asc.c_oAscSlideTransitionTypes.UnCover || this.Effect===Asc.c_oAscSlideTransitionTypes.Cover)&& - (type===Asc.c_oAscSlideTransitionTypes.Wipe || type===Asc.c_oAscSlideTransitionTypes.UnCover || type===Asc.c_oAscSlideTransitionTypes.Cover)) ) - this.fillEffectTypeCombo(type); - this.Effect = type; - if (this.api && !this._noApply) { - var props = new Asc.CAscSlideProps(); - var transition = new Asc.CAscSlideTransition(); - transition.put_TransitionType(type); - transition.put_TransitionOption(this.EffectType); - props.put_transition(transition); - this.api.SetSlideProps(props); - } - this.fireEvent('editcomplete', this); - }, - - onEffectTypeSelect: function(combo, record) { - this.EffectType = record.value; - if (this.api && !this._noApply) { - var props = new Asc.CAscSlideProps(); - var transition = new Asc.CAscSlideTransition(); - transition.put_TransitionType(this.Effect); - transition.put_TransitionOption(this.EffectType); - props.put_transition(transition); - this.api.SetSlideProps(props); - } - this.fireEvent('editcomplete', this); - }, - - onDurationChange: function(field, newValue, oldValue, eOpts){ - if (this.api && !this._noApply) { - var props = new Asc.CAscSlideProps(); - var transition = new Asc.CAscSlideTransition(); - transition.put_TransitionDuration(field.getNumberValue()*1000); - props.put_transition(transition); - this.api.SetSlideProps(props); - } - }, - - onDelayChange: function(field, newValue, oldValue, eOpts){ - if (this.api && !this._noApply) { - var props = new Asc.CAscSlideProps(); - var transition = new Asc.CAscSlideTransition(); - transition.put_SlideAdvanceDuration(field.getNumberValue()*1000); - props.put_transition(transition); - this.api.SetSlideProps(props); - } - }, - - onStartOnClickChange: function(field, newValue, oldValue, eOpts){ - if (this.api && !this._noApply) { - var props = new Asc.CAscSlideProps(); - var transition = new Asc.CAscSlideTransition(); - transition.put_SlideAdvanceOnMouseClick(field.getValue()=='checked'); - props.put_transition(transition); - this.api.SetSlideProps(props); - } - this.fireEvent('editcomplete', this); - }, - - onCheckDelayChange: function(field, newValue, oldValue, eOpts){ - this.numDelay.setDisabled(field.getValue()!=='checked'); - if (this.api && !this._noApply) { - var props = new Asc.CAscSlideProps(); - var transition = new Asc.CAscSlideTransition(); - transition.put_SlideAdvanceAfter(field.getValue()=='checked'); - props.put_transition(transition); - this.api.SetSlideProps(props); - } - this.fireEvent('editcomplete', this); - }, - onHeaderChange: function(type, field, newValue, oldValue, eOpts){ if (this.api && !this._noApply) { var props = this.api.asc_getHeaderFooterProperties(); @@ -1341,7 +1088,7 @@ define([ ChangeSettings: function(props) { if (this._initSettings) this.createDelayedElements(); - this.SetSlideDisabled(this._locked.background, this._locked.effects, this._locked.transition, this._locked.header); + this.SetSlideDisabled(this._locked.background, this._locked.header); if (props) { @@ -1538,65 +1285,6 @@ define([ this._state.SlideColor = this.SlideColor.Color; } - var transition = props.get_transition(); - if (transition) { - var value = transition.get_TransitionType(); - var found = false; - if (this._state.Effect !== value) { - var item = this.cmbEffectName.store.findWhere({value: value}); - if (item) { - found = true; - this.cmbEffectName.setValue(item.get('value')); - } else - this.cmbEffectName.setValue(''); - - this.fillEffectTypeCombo((found) ? value : undefined); - this.Effect = value; - this._state.Effect = value; - } - - value = transition.get_TransitionOption(); - if (this._state.EffectType !== value || found) { - found = false; - item = this.cmbEffectType.store.findWhere({value: value}); - if (item) { - found = true; - this.cmbEffectType.setValue(item.get('value')); - } else - this.cmbEffectType.setValue(''); - - this._state.EffectType = value; - } - - value = transition.get_TransitionDuration(); - if ( Math.abs(this._state.Duration-value)>0.001 || - (this._state.Duration===null || value===null)&&(this._state.Duration!==value) || - (this._state.Duration===undefined || value===undefined)&&(this._state.Duration!==value) ) { - this.numDuration.setValue((value !== null && value !== undefined) ? value/1000. : '', true); - this._state.Duration=value; - } - - value = transition.get_SlideAdvanceDuration(); - if ( Math.abs(this._state.Delay-value)>0.001 || - (this._state.Delay===null || value===null)&&(this._state.Delay!==value) || - (this._state.Delay===undefined || value===undefined)&&(this._state.Delay!==value) ) { - this.numDelay.setValue((value !== null && value !== undefined) ? value/1000. : '', true); - this._state.Delay=value; - } - - value = transition.get_SlideAdvanceOnMouseClick(); - if ( this._state.OnMouseClick!==value ) { - this.chStartOnClick.setValue((value !== null && value !== undefined) ? value : 'indeterminate', true); - this._state.OnMouseClick=value; - } - value = transition.get_SlideAdvanceAfter(); - if ( this._state.AdvanceAfter!==value ) { - this.chDelay.setValue((value !== null && value !== undefined) ? value : 'indeterminate', true); - this.numDelay.setDisabled(this.chDelay.getValue()!=='checked'); - this._state.AdvanceAfter=value; - } - } - // pattern colors type1 = typeof(this.FGColor.Color); type2 = typeof(this._state.FGColor); @@ -1683,15 +1371,15 @@ define([ } }, - setLocked: function (background, effects, transition, header) { + setLocked: function (background, header) { this._locked = { - background: background, effects: effects, transition: transition, header: header + background: background, header: header }; }, - SetSlideDisabled: function(background, effects, transition, header) { + SetSlideDisabled: function(background, header) { this._locked = { - background: background, effects: effects, transition: transition, header: header + background: background, header: header }; if (this._initSettings) return; @@ -1705,21 +1393,6 @@ define([ this.numGradientAngle.setDisabled(background || this.GradFillType !== Asc.c_oAscFillGradType.GRAD_LINEAR); this._stateDisabled.background = background; } - if (effects !== this._stateDisabled.effects) { - var length = this.cmbEffectType.store.length; - this.cmbEffectName.setDisabled(effects); - this.cmbEffectType.setDisabled(length<1 || effects); - this.numDuration.setDisabled(length<1 || effects); - this.btnPreview.setDisabled(length<1 || effects); - this._stateDisabled.effects = effects; - } - if (transition !== this._stateDisabled.transition) { - this.chStartOnClick.setDisabled(transition); - this.chDelay.setDisabled(transition); - this.numDelay.setDisabled(transition || this.chDelay.getValue()!=='checked'); - this.btnApplyToAll.setDisabled(transition); - this._stateDisabled.transition = transition; - } if (header !== this._stateDisabled.header) { this.chSlideNum.setDisabled(header); this.chDateTime.setDisabled(header); @@ -1821,41 +1494,6 @@ define([ textAdvanced : 'Show advanced settings', textNoFill : 'No Fill', textSelectTexture : 'Select', - textNone: 'None', - textFade: 'Fade', - textPush: 'Push', - textWipe: 'Wipe', - textSplit: 'Split', - textUnCover: 'UnCover', - textCover: 'Cover', - textClock: 'Clock', - textZoom: 'Zoom', - textSmoothly: 'Smoothly', - textBlack: 'Through Black', - textLeft: 'Left', - textTop: 'Top', - textRight: 'Right', - textBottom: 'Bottom', - textTopLeft: 'Top-Left', - textTopRight: 'Top-Right', - textBottomLeft: 'Bottom-Left', - textBottomRight: 'Bottom-Right', - textVerticalIn: 'Vertical In', - textVerticalOut: 'Vertical Out', - textHorizontalIn: 'Horizontal In', - textHorizontalOut: 'Horizontal Out', - textClockwise: 'Clockwise', - textCounterclockwise: 'Counterclockwise', - textWedge: 'Wedge', - textZoomIn: 'Zoom In', - textZoomOut: 'Zoom Out', - textZoomRotate: 'Zoom and Rotate', - strStartOnClick: 'Start On Click', - strDelay: 'Delay', - textApplyAll: 'Apply to All Slides', - textPreview: 'Preview', - strEffect: 'Effect', - strDuration: 'Duration', textGradientFill: 'Gradient Fill', textPatternFill: 'Pattern', strBackground: 'Background color', @@ -1867,7 +1505,6 @@ define([ textDirection: 'Direction', textStyle: 'Style', textGradient: 'Gradient Points', - textSec: 's', strSlideNum: 'Show Slide Number', strDateTime: 'Show Date and Time', textFromStorage: 'From Storage', diff --git a/apps/presentationeditor/main/app/view/Toolbar.js b/apps/presentationeditor/main/app/view/Toolbar.js index 27f2fb72f..703405ae8 100644 --- a/apps/presentationeditor/main/app/view/Toolbar.js +++ b/apps/presentationeditor/main/app/view/Toolbar.js @@ -82,7 +82,8 @@ define([ noTextSelected: 'no-text', inEquation: 'in-equation', commentLock: 'can-comment', - noColumns: 'no-columns' + noColumns: 'no-columns', + transitLock: 'transit-lock' }; PE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend((function(){ @@ -129,7 +130,8 @@ define([ tabs: [ {caption: me.textTabFile, action: 'file', extcls: 'canedit', haspanel:false}, {caption: me.textTabHome, action: 'home', extcls: 'canedit'}, - {caption: me.textTabInsert, action: 'ins', extcls: 'canedit'} + {caption: me.textTabInsert, action: 'ins', extcls: 'canedit'}, + {caption: me.textTabTransitions, action: 'transit', extcls: 'canedit'} ] } ); @@ -1096,6 +1098,7 @@ define([ me.isCompactView = mode.compactview; if ( mode.isEdit ) { me.$el.html(me.rendererComponents(me.$layout)); + } else { me.$layout.find('.canedit').hide(); me.$layout.addClass('folded'); @@ -1110,10 +1113,12 @@ define([ Common.UI.Mixtbar.prototype.onResize.apply(me, arguments); } }); - + //_.bind(function (element){ + //},me); if ( mode.isEdit ) { me.setTab('home'); me.processPanelVisible(); + } if ( me.isCompactView ) @@ -1143,7 +1148,6 @@ define([ var _injectComponent = function (id, cmp) { Common.Utils.injectComponent($host.find(id), cmp); }; - _injectComponent('#slot-field-fontname', this.cmbFontName); _injectComponent('#slot-field-fontsize', this.cmbFontSize); _injectComponent('#slot-btn-changeslide', this.btnChangeSlide); @@ -1407,15 +1411,15 @@ define([ restoreHeight: 138, allowScrollbar: false, store: new Common.UI.DataViewStore([ - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: -1}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 1}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 2}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 3}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 4}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 5}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 6}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 7}}, - {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 8}} + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: -1}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 1}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 2}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 3}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 4}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 5}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 6}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 7}, skipRenderOnChange: true}, + {id: 'id-markers-' + Common.UI.getId(), data: {type: 0, subtype: 8}, skipRenderOnChange: true} ]), itemTemplate: _.template('
    ') }); @@ -1428,14 +1432,14 @@ define([ restoreHeight: 92, allowScrollbar: false, store: new Common.UI.DataViewStore([ - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: -1}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 4}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 5}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 6}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 1}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 2}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 3}}, - {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 7}} + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: -1}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 4}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 5}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 6}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 1}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 2}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 3}, skipRenderOnChange: true}, + {id: 'id-numbers-' + Common.UI.getId(), data: {type: 1, subtype: 7}, skipRenderOnChange: true} ]), itemTemplate: _.template('
    ') }); @@ -1921,7 +1925,8 @@ define([ mniToggleCase: 'tOGGLE cASE', strMenuNoFill: 'No Fill', tipHighlightColor: 'Highlight color', - txtScheme22: 'New Office' + txtScheme22: 'New Office', + textTabTransitions: 'Transitions' } }()), PE.Views.Toolbar || {})); }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app/view/Transitions.js b/apps/presentationeditor/main/app/view/Transitions.js new file mode 100644 index 000000000..3751874af --- /dev/null +++ b/apps/presentationeditor/main/app/view/Transitions.js @@ -0,0 +1,465 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2019 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * +*/ +/** + * Transitions.js + * + * View + * + * Created by Olga.Sharova on 15.07.21 + * Copyright (c) 2021 Ascensio System SIA. All rights reserved. + * + */ + + + +define([ + 'common/main/lib/util/utils', + 'common/main/lib/component/Button', + 'common/main/lib/component/DataView', + 'common/main/lib/component/ComboDataView', + 'common/main/lib/component/Layout', + 'presentationeditor/main/app/view/SlideSettings', + 'common/main/lib/component/MetricSpinner', + 'common/main/lib/component/Window' +], function () { + 'use strict'; + + PE.Views.Transitions = Common.UI.BaseView.extend(_.extend((function() { + function setEvents() { + var me = this; + if (me.listEffects) { + me.listEffects.on('click', _.bind(function (combo, record) { + me.fireEvent('transit:selecteffect', [combo, record]); + }, me)); + } + + if (me.btnPreview) { + me.btnPreview.on('click', _.bind(function(btn) { + me.fireEvent('transit:preview', [me.btnPreview]); + }, me)); + } + + if (me.btnParameters) { + me.btnParameters.on('click', function (e) { + me.fireEvent('transit:parameters', ['current']); + }); + + me.btnParameters.menu.on('item:click', function (menu, item, e) { + me.fireEvent('transit:parameters', [item]); + }); + } + + if (me.btnApplyToAll) { + me.btnApplyToAll.on('click', _.bind(function(btn) { + me.fireEvent('transit:applytoall', [me.btnApplyToAll]); + }, me)); + } + + if (me.numDuration) { + me.numDuration.on('change', function(bth) { + me.fireEvent('transit:duration', [me.numDuration]); + }, me); + } + + if (me.numDelay) { + me.numDelay.on('change', function(bth) { + me.fireEvent('transit:delay', [me.numDelay]); + }, me); + } + + if (me.chStartOnClick) { + me.chStartOnClick.on('change', _.bind(function (e) { + me.fireEvent('transit:startonclick', [me.chStartOnClick, me.chStartOnClick.value, me.chStartOnClick.lastValue]); + }, me)); + } + + if (me.chDelay) { + me.chDelay.on('change', _.bind(function (e) { + me.fireEvent('transit:checkdelay', [me.chDelay, me.chDelay.value, me.chDelay.lastValue]); + }, me)); + } + } + + return { + // el: '#transitions-panel', + + options: {}, + + initialize: function (options) { + + Common.UI.BaseView.prototype.initialize.call(this, options); + this.toolbar = options.toolbar; + this.appConfig = options.mode; + this.$el = this.toolbar.toolbar.$el.find('#transitions-panel'); + var _set = PE.enumLock; + this.lockedControls = []; + + this._arrEffectName = [ + {title: this.textNone, imageUrl: "transition-none", value: Asc.c_oAscSlideTransitionTypes.None, id: Common.UI.getId()}, + {title: this.textFade, imageUrl: "transition-fade", value: Asc.c_oAscSlideTransitionTypes.Fade, id: Common.UI.getId()}, + {title: this.textPush, imageUrl: "transition-push", value: Asc.c_oAscSlideTransitionTypes.Push, id: Common.UI.getId()}, + {title: this.textWipe, imageUrl: "transition-wipe", value: Asc.c_oAscSlideTransitionTypes.Wipe, id: Common.UI.getId()}, + {title: this.textSplit, imageUrl: "transition-split", value: Asc.c_oAscSlideTransitionTypes.Split, id: Common.UI.getId()}, + {title: this.textUnCover, imageUrl: "transition-uncover", value: Asc.c_oAscSlideTransitionTypes.UnCover, id: Common.UI.getId()}, + {title: this.textCover, imageUrl: "transition-cover", value: Asc.c_oAscSlideTransitionTypes.Cover, id: Common.UI.getId()}, + {title: this.textClock, imageUrl: "transition-clock", value: Asc.c_oAscSlideTransitionTypes.Clock, id: Common.UI.getId()}, + {title: this.textZoom, imageUrl: "transition-zoom", value: Asc.c_oAscSlideTransitionTypes.Zoom, id: Common.UI.getId()} + ]; + + this.listEffects = new Common.UI.ComboDataView({ + cls: 'combo-styles', + itemWidth: 87, + itemHeight: 40, + enableKeyEvents: true, + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock], + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: '-16, 0', + beforeOpenHandler: function (e) { + var cmp = this, + menu = cmp.openButton.menu; + + if (menu.cmpEl) { + + menu.menuAlignEl = cmp.cmpEl; + menu.menuAlign = 'tl-tl'; + menu.cmpEl.css({ + 'width': cmp.cmpEl.width() - cmp.openButton.$el.width(), + 'min-height': cmp.cmpEl.height() + }); + } + + if (cmp.menuPicker.scroller) { + cmp.menuPicker.scroller.update({ + includePadding: true, + suppressScrollX: true + }); + } + + cmp.removeTips(); + } + }); + this.lockedControls.push(this.listEffects); + this.listEffects.menuPicker.store.add(this._arrEffectName); + + this.listEffects.fieldPicker.itemTemplate = _.template([ + '
    ', + '
    ', + '
    <%= title %>
    ', + '
    ' + ].join('')); + this.listEffects.menuPicker.itemTemplate = this.listEffects.fieldPicker.itemTemplate; + + this.btnPreview = new Common.UI.Button({ + cls: 'btn-toolbar', // x-huge icon-top', + caption: this.txtPreview, + split: false, + iconCls: 'toolbar__icon preview-transitions', + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock], + dataHint: '1', + dataHintDirection: 'left', + dataHintOffset: 'medium' + }); + this.lockedControls.push(this.btnPreview); + + this.btnParameters = new Common.UI.Button({ + cls: 'btn-toolbar x-huge icon-top', + caption: this.txtParameters, + iconCls: 'toolbar__icon icon transition-none', + menu: new Common.UI.Menu({ + items: this.createParametersMenuItems()}), + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock], + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnParameters); + + this.btnApplyToAll = new Common.UI.Button({ + cls: 'btn-toolbar', + caption: this.txtApplyToAll, + split: true, + iconCls: 'toolbar__icon transition-apply-all', + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock], + dataHint: '1', + dataHintDirection: 'left', + dataHintOffset: 'medium' + }); + this.lockedControls.push(this.btnApplyToAll); + + this.numDuration = new Common.UI.MetricSpinner({ + el: this.$el.find('#transit-spin-duration'), + step: 1, + width: 50, + value: '', + defaultUnit: this.txtSec, + maxValue: 300, + minValue: 0, + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock], + dataHint: '1', + dataHintDirection: 'top', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.numDuration); + + this.numDelay = new Common.UI.MetricSpinner({ + el: this.$el.find('#transit-spin-delay'), + step: 1, + width: 60, + value: '', + defaultUnit: this.txtSec, + maxValue: 300, + minValue: 0, + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock], + dataHint: '1', + dataHintDirection: 'bottom', + dataHintOffset: 'big' + }); + this.lockedControls.push(this.numDelay); + + this.chStartOnClick = new Common.UI.CheckBox({ + el: this.$el.find('#transit-checkbox-startonclick'), + labelText: this.strStartOnClick, + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock], + dataHint: '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chStartOnClick); + + this.chDelay = new Common.UI.CheckBox({ + el: this.$el.find('#transit-checkbox-delay'), + labelText: this.strDelay, + lock: [_set.slideDeleted, _set.noSlides, _set.disableOnStart, _set.transitLock], + dataHint: '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chDelay); + + Common.Utils.lockControls(PE.enumLock.disableOnStart, true, {array: this.lockedControls}); + + this.$el.find('#transit-duration').text(this.strDuration); + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); + }, + + render: function (el) { + this.boxSdk = $('#editor_sdk'); + if (el) el.html(this.getPanel()); + return this; + }, + + createParametersMenuItems: function() + { + var arrEffectType = [ + {caption: this.textSmoothly, value: Asc.c_oAscSlideTransitionParams.Fade_Smoothly}, + {caption: this.textBlack, value: Asc.c_oAscSlideTransitionParams.Fade_Through_Black}, + {caption: this.textLeft, value: Asc.c_oAscSlideTransitionParams.Param_Left}, + {caption: this.textTop, value: Asc.c_oAscSlideTransitionParams.Param_Top}, + {caption: this.textRight, value: Asc.c_oAscSlideTransitionParams.Param_Right}, + {caption: this.textBottom, value: Asc.c_oAscSlideTransitionParams.Param_Bottom}, + {caption: this.textTopLeft, value: Asc.c_oAscSlideTransitionParams.Param_TopLeft}, + {caption: this.textTopRight, value: Asc.c_oAscSlideTransitionParams.Param_TopRight}, + {caption: this.textBottomLeft, value: Asc.c_oAscSlideTransitionParams.Param_BottomLeft}, + {caption: this.textBottomRight, value: Asc.c_oAscSlideTransitionParams.Param_BottomRight}, + {caption: this.textVerticalIn, value: Asc.c_oAscSlideTransitionParams.Split_VerticalIn}, + {caption: this.textVerticalOut, value: Asc.c_oAscSlideTransitionParams.Split_VerticalOut}, + {caption: this.textHorizontalIn, value: Asc.c_oAscSlideTransitionParams.Split_HorizontalIn}, + {caption: this.textHorizontalOut, value: Asc.c_oAscSlideTransitionParams.Split_HorizontalOut}, + {caption: this.textClockwise, value: Asc.c_oAscSlideTransitionParams.Clock_Clockwise}, + {caption: this.textCounterclockwise, value: Asc.c_oAscSlideTransitionParams.Clock_Counterclockwise}, + {caption: this.textWedge, value: Asc.c_oAscSlideTransitionParams.Clock_Wedge}, + {caption: this.textZoomIn, value: Asc.c_oAscSlideTransitionParams.Zoom_In}, + {caption: this.textZoomOut, value: Asc.c_oAscSlideTransitionParams.Zoom_Out}, + {caption: this.textZoomRotate, value: Asc.c_oAscSlideTransitionParams.Zoom_AndRotate} + ]; + + var itemsMenu = []; + _.each(arrEffectType, function (item) { + itemsMenu.push({ + caption: item.caption, + value: item.value, + checkable: true, + toggleGroup: 'effects' + }); + }); + return itemsMenu; + }, + + onAppReady: function (config) { + var me = this; + (new Promise(function (accept, reject) { + accept(); + })).then(function() { + + setEvents.call(me); + }); + }, + + getPanel: function () { + this.listEffects && this.listEffects.render(this.$el.find('#transit-field-effects')); + this.btnPreview && this.btnPreview.render(this.$el.find('#transit-button-preview')); + this.btnParameters && this.btnParameters.render(this.$el.find('#transit-button-parameters')); + this.btnApplyToAll && this.btnApplyToAll.render(this.$el.find('#transit-button-apply')); + this.renderComponent('#transit-spin-duration', this.numDuration); + this.renderComponent('#transit-spin-delay', this.numDelay); + this.renderComponent('#transit-checkbox-startonclick', this.chStartOnClick); + this.$el.find("#label-duration").innerText = this.strDuration; + this.$el.find("#label-delay").innerText = this.strDelay; + return this.$el; + }, + + renderComponent: function (compid, obj) + { + var element = this.$el.find(compid); + element.parent().append(obj.el); + }, + + show: function () { + Common.UI.BaseView.prototype.show.call(this); + this.fireEvent('show', this); + }, + + getButtons: function (type) { + if (type === undefined) + return this.lockedControls; + return []; + }, + + setDisabled: function (state) { + this.lockedControls && this.lockedControls.forEach(function (button) { + button.setDisabled(state); + }, this); + }, + + setMenuParameters: function (effect, value) + { + var minMax = [-1, -1]; + switch (effect) { + case Asc.c_oAscSlideTransitionTypes.Fade: + minMax = [0, 1]; + break; + case Asc.c_oAscSlideTransitionTypes.Push: + minMax = [2, 5]; + break; + case Asc.c_oAscSlideTransitionTypes.Wipe: + minMax = [2, 9]; + break; + case Asc.c_oAscSlideTransitionTypes.Split: + minMax = [10, 13]; + break; + case Asc.c_oAscSlideTransitionTypes.UnCover: + minMax = [2, 9]; + break; + case Asc.c_oAscSlideTransitionTypes.Cover: + minMax = [2, 9]; + break; + case Asc.c_oAscSlideTransitionTypes.Clock: + minMax = [14, 16]; + break; + case Asc.c_oAscSlideTransitionTypes.Zoom: + minMax = [17, 19]; + break; + } + + var selectedElement; + _.each(this.btnParameters.menu.items, function (element, index) { + if (((index < minMax[0])||(index > minMax[1]))) + element.$el.css('display', 'none'); + else { + element.$el.css('display', ''); + + if (value != undefined) { + if (value == element.value) selectedElement = element; + } + } + }); + + if (selectedElement == undefined) + selectedElement = this.btnParameters.menu.items[minMax[0]]; + + if (effect != Asc.c_oAscSlideTransitionTypes.None) + selectedElement.setChecked(true); + + if (!this.listEffects.isDisabled()) { + this.numDelay.setDisabled(this.chDelay.getValue() !== 'checked'); + this.btnParameters.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None); + this.btnPreview.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None); + this.numDuration.setDisabled(effect === Asc.c_oAscSlideTransitionTypes.None); + } + return selectedElement; + }, + + + txtSec: 's', + txtPreview: 'Preview', + txtParameters: 'Parameters', + txtApplyToAll: 'Apply to All Slides', + strDuration: 'Duration', + strDelay: 'Delay', + strStartOnClick: 'Start On Click', + + textNone: 'None', + textFade: 'Fade', + textPush: 'Push', + textWipe: 'Wipe', + textSplit: 'Split', + textUnCover: 'UnCover', + textCover: 'Cover', + textClock: 'Clock', + textZoom: 'Zoom', + + textSmoothly: 'Smoothly', + textBlack: 'Through Black', + textLeft: 'Left', + textTop: 'Top', + textRight: 'Right', + textBottom: 'Bottom', + textTopLeft: 'Top-Left', + textTopRight: 'Top-Right', + textBottomLeft: 'Bottom-Left', + textBottomRight: 'Bottom-Right', + textVerticalIn: 'Vertical In', + textVerticalOut: 'Vertical Out', + textHorizontalIn: 'Horizontal In', + textHorizontalOut: 'Horizontal Out', + textClockwise: 'Clockwise', + textCounterclockwise: 'Counterclockwise', + textWedge: 'Wedge', + textZoomIn: 'Zoom In', + textZoomOut: 'Zoom Out', + textZoomRotate: 'Zoom and Rotate' + } + }()), PE.Views.Transitions || {})); + + }); \ No newline at end of file diff --git a/apps/presentationeditor/main/app_dev.js b/apps/presentationeditor/main/app_dev.js index 78c486079..8fa452dae 100644 --- a/apps/presentationeditor/main/app_dev.js +++ b/apps/presentationeditor/main/app_dev.js @@ -153,6 +153,7 @@ require([ ,'Common.Controllers.ExternalDiagramEditor' ,'Common.Controllers.ReviewChanges' ,'Common.Controllers.Protection' + ,'Transitions' ] }); @@ -188,6 +189,7 @@ require([ ,'common/main/lib/controller/Protection' ,'common/main/lib/controller/Themes' ,'common/main/lib/controller/Desktop' + ,'presentationeditor/main/app/controller/Transitions' ], function() { window.compareVersions = true; app.start(); diff --git a/apps/presentationeditor/main/index.html b/apps/presentationeditor/main/index.html index cd541ff81..1b84c63ee 100644 --- a/apps/presentationeditor/main/index.html +++ b/apps/presentationeditor/main/index.html @@ -247,8 +247,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -333,6 +332,9 @@ + + + diff --git a/apps/presentationeditor/main/index.html.deploy b/apps/presentationeditor/main/index.html.deploy index becd10047..b795b5ef9 100644 --- a/apps/presentationeditor/main/index.html.deploy +++ b/apps/presentationeditor/main/index.html.deploy @@ -239,8 +239,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -355,6 +354,9 @@ + + + diff --git a/apps/presentationeditor/main/index_loader.html b/apps/presentationeditor/main/index_loader.html index 2903b7bf7..8da6cbf44 100644 --- a/apps/presentationeditor/main/index_loader.html +++ b/apps/presentationeditor/main/index_loader.html @@ -190,8 +190,7 @@ return urlParams; } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -256,6 +255,9 @@ + + + diff --git a/apps/presentationeditor/main/index_loader.html.deploy b/apps/presentationeditor/main/index_loader.html.deploy index 2ded00a17..694fe75cd 100644 --- a/apps/presentationeditor/main/index_loader.html.deploy +++ b/apps/presentationeditor/main/index_loader.html.deploy @@ -218,8 +218,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -310,6 +309,9 @@ + + + diff --git a/apps/presentationeditor/main/locale/ca.json b/apps/presentationeditor/main/locale/ca.json index 2883a344e..a133fc4c6 100644 --- a/apps/presentationeditor/main/locale/ca.json +++ b/apps/presentationeditor/main/locale/ca.json @@ -178,6 +178,13 @@ "Common.Views.Header.tipViewUsers": "Consulteu els usuaris i gestioneu els drets d’accés als documents", "Common.Views.Header.txtAccessRights": "Canviar els drets d’accés", "Common.Views.Header.txtRename": "Renombrar", + "Common.Views.History.textCloseHistory": "Tancar Historial", + "Common.Views.History.textHide": "Plegar", + "Common.Views.History.textHideAll": "Amagar els canvis detallats", + "Common.Views.History.textRestore": "Restaurar", + "Common.Views.History.textShow": "Desplegar", + "Common.Views.History.textShowAll": "Mostrar els canvis detallats", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL d'imatge:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", @@ -601,7 +608,7 @@ "PE.Controllers.Main.txtShape_mathNotEqual": "No igual", "PE.Controllers.Main.txtShape_mathPlus": "Més", "PE.Controllers.Main.txtShape_moon": "Lluna", - "PE.Controllers.Main.txtShape_noSmoking": "\"No\" Símbol", + "PE.Controllers.Main.txtShape_noSmoking": "Símbol \"No\"", "PE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la dreta encaixada", "PE.Controllers.Main.txtShape_octagon": "Octagon", "PE.Controllers.Main.txtShape_parallelogram": "Paral·lelograma", @@ -1989,6 +1996,7 @@ "PE.Views.Toolbar.txtScheme2": "Escala de Gris", "PE.Views.Toolbar.txtScheme20": "Urbà", "PE.Views.Toolbar.txtScheme21": "Empenta", + "PE.Views.Toolbar.txtScheme22": "Nova Oficina", "PE.Views.Toolbar.txtScheme3": "Àpex", "PE.Views.Toolbar.txtScheme4": "Aspecte", "PE.Views.Toolbar.txtScheme5": "Cívic", diff --git a/apps/presentationeditor/main/locale/de.json b/apps/presentationeditor/main/locale/de.json index ecb8cd9db..5ff8ca1af 100644 --- a/apps/presentationeditor/main/locale/de.json +++ b/apps/presentationeditor/main/locale/de.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Benutzer ansehen und Zugriffsrechte für das Dokument verwalten", "Common.Views.Header.txtAccessRights": "Zugriffsrechte ändern", "Common.Views.Header.txtRename": "Umbenennen", + "Common.Views.History.textCloseHistory": "Verlauf schließen", + "Common.Views.History.textHide": "Reduzieren", + "Common.Views.History.textHideAll": "Wesentliche Änderungen verbergen", + "Common.Views.History.textRestore": "Wiederherstellen", + "Common.Views.History.textShow": "Erweitern", + "Common.Views.History.textShowAll": "Wesentliche Änderungen anzeigen", + "Common.Views.History.textVer": "Vers.", "Common.Views.ImageFromUrlDialog.textUrl": "Bild-URL einfügen:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Dieses Feld ist erforderlich", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Dieses Feld muss eine URL im Format \"http://www.example.com\" enthalten", @@ -1988,6 +1995,7 @@ "PE.Views.Toolbar.txtScheme2": "Graustufe", "PE.Views.Toolbar.txtScheme20": "Rhea", "PE.Views.Toolbar.txtScheme21": "Telesto", + "PE.Views.Toolbar.txtScheme22": "Neues Office", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Aspekt ", "PE.Views.Toolbar.txtScheme5": "Cronus", diff --git a/apps/presentationeditor/main/locale/el.json b/apps/presentationeditor/main/locale/el.json index c5fe20844..87a9582af 100644 --- a/apps/presentationeditor/main/locale/el.json +++ b/apps/presentationeditor/main/locale/el.json @@ -715,7 +715,7 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", "PE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", "PE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "PE.Controllers.Main.uploadImageSizeMessage": "Ξεπεράστηκε το όριο μέγιστου μεγέθους εικόνας.", + "PE.Controllers.Main.uploadImageSizeMessage": "Η εικόνα είναι πολύ μεγάλη. Το μέγιστο μέγεθος είναι 25MB.", "PE.Controllers.Main.uploadImageTextText": "Μεταφόρτωση εικόνας...", "PE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση Εικόνας", "PE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", @@ -1988,6 +1988,7 @@ "PE.Views.Toolbar.txtScheme2": "Αποχρώσεις του γκρι", "PE.Views.Toolbar.txtScheme20": "Αστικό", "PE.Views.Toolbar.txtScheme21": "Οίστρος", + "PE.Views.Toolbar.txtScheme22": "Νέο Γραφείο", "PE.Views.Toolbar.txtScheme3": "Άκρο", "PE.Views.Toolbar.txtScheme4": "Άποψη", "PE.Views.Toolbar.txtScheme5": "Κυβικό", diff --git a/apps/presentationeditor/main/locale/en.json b/apps/presentationeditor/main/locale/en.json index 05d49feb3..134ae7e0a 100644 --- a/apps/presentationeditor/main/locale/en.json +++ b/apps/presentationeditor/main/locale/en.json @@ -186,6 +186,13 @@ "Common.Views.Header.tipViewUsers": "View users and manage document access rights", "Common.Views.Header.txtAccessRights": "Change access rights", "Common.Views.Header.txtRename": "Rename", + "Common.Views.History.textCloseHistory": "Close History", + "Common.Views.History.textHide": "Collapse", + "Common.Views.History.textHideAll": "Hide detailed changes", + "Common.Views.History.textRestore": "Restore", + "Common.Views.History.textShow": "Expand", + "Common.Views.History.textShowAll": "Show detailed changes", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", @@ -740,6 +747,9 @@ "PE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
    Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", "PE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", + "PE.Controllers.Main.textConvertEquation": "This equation was created with an old version of the equation editor which is no longer supported. To edit it, convert the equation to the Office Math ML format.
    Convert now?", + "PE.Controllers.Main.textLearnMore": "Learn More", + "PE.Controllers.Main.textApplyAll": "Apply to all equations", "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 system fonts, the saved font will be used when it is available.
    Do you want to continue?", "PE.Controllers.Toolbar.textAccent": "Accents", @@ -1638,70 +1648,70 @@ "PE.Views.SlideSettings.strBackground": "Background color", "PE.Views.SlideSettings.strColor": "Color", "PE.Views.SlideSettings.strDateTime": "Show Date and Time", - "PE.Views.SlideSettings.strDelay": "Delay", - "PE.Views.SlideSettings.strDuration": "Duration", - "PE.Views.SlideSettings.strEffect": "Effect", + "del_PE.Views.SlideSettings.strDelay": "Delay", + "del_PE.Views.SlideSettings.strDuration": "Duration", + "del_PE.Views.SlideSettings.strEffect": "Effect", "PE.Views.SlideSettings.strFill": "Background", "PE.Views.SlideSettings.strForeground": "Foreground color", "PE.Views.SlideSettings.strPattern": "Pattern", "PE.Views.SlideSettings.strSlideNum": "Show Slide Number", - "PE.Views.SlideSettings.strStartOnClick": "Start On Click", + "del_PE.Views.SlideSettings.strStartOnClick": "Start On Click", "PE.Views.SlideSettings.strTransparency": "Opacity", "PE.Views.SlideSettings.textAdvanced": "Show advanced settings", "PE.Views.SlideSettings.textAngle": "Angle", - "PE.Views.SlideSettings.textApplyAll": "Apply to All Slides", - "PE.Views.SlideSettings.textBlack": "Through Black", - "PE.Views.SlideSettings.textBottom": "Bottom", - "PE.Views.SlideSettings.textBottomLeft": "Bottom Left", - "PE.Views.SlideSettings.textBottomRight": "Bottom Right", - "PE.Views.SlideSettings.textClock": "Clock", - "PE.Views.SlideSettings.textClockwise": "Clockwise", + "del_PE.Views.SlideSettings.textApplyAll": "Apply to All Slides", + "del_PE.Views.SlideSettings.textBlack": "Through Black", + "del_PE.Views.SlideSettings.textBottom": "Bottom", + "del_PE.Views.SlideSettings.textBottomLeft": "Bottom Left", + "del_PE.Views.SlideSettings.textBottomRight": "Bottom Right", + "del_PE.Views.SlideSettings.textClock": "Clock", + "del_PE.Views.SlideSettings.textClockwise": "Clockwise", "PE.Views.SlideSettings.textColor": "Color Fill", - "PE.Views.SlideSettings.textCounterclockwise": "Counterclockwise", - "PE.Views.SlideSettings.textCover": "Cover", + "del_PE.Views.SlideSettings.textCounterclockwise": "Counterclockwise", + "del_PE.Views.SlideSettings.textCover": "Cover", "PE.Views.SlideSettings.textDirection": "Direction", "PE.Views.SlideSettings.textEmptyPattern": "No Pattern", - "PE.Views.SlideSettings.textFade": "Fade", + "del_PE.Views.SlideSettings.textFade": "Fade", "PE.Views.SlideSettings.textFromFile": "From File", "PE.Views.SlideSettings.textFromStorage": "From Storage", "PE.Views.SlideSettings.textFromUrl": "From URL", "PE.Views.SlideSettings.textGradient": "Gradient points", "PE.Views.SlideSettings.textGradientFill": "Gradient Fill", - "PE.Views.SlideSettings.textHorizontalIn": "Horizontal In", - "PE.Views.SlideSettings.textHorizontalOut": "Horizontal Out", + "del_PE.Views.SlideSettings.textHorizontalIn": "Horizontal In", + "del_PE.Views.SlideSettings.textHorizontalOut": "Horizontal Out", "PE.Views.SlideSettings.textImageTexture": "Picture or Texture", - "PE.Views.SlideSettings.textLeft": "Left", + "del_PE.Views.SlideSettings.textLeft": "Left", "PE.Views.SlideSettings.textLinear": "Linear", "PE.Views.SlideSettings.textNoFill": "No Fill", - "PE.Views.SlideSettings.textNone": "None", + "del_PE.Views.SlideSettings.textNone": "None", "PE.Views.SlideSettings.textPatternFill": "Pattern", "PE.Views.SlideSettings.textPosition": "Position", - "PE.Views.SlideSettings.textPreview": "Preview", - "PE.Views.SlideSettings.textPush": "Push", + "del_PE.Views.SlideSettings.textPreview": "Preview", + "del_PE.Views.SlideSettings.textPush": "Push", "PE.Views.SlideSettings.textRadial": "Radial", "PE.Views.SlideSettings.textReset": "Reset Changes", - "PE.Views.SlideSettings.textRight": "Right", - "PE.Views.SlideSettings.textSec": "s", + "del_PE.Views.SlideSettings.textRight": "Right", + "del_PE.Views.SlideSettings.textSec": "s", "PE.Views.SlideSettings.textSelectImage": "Select Picture", "PE.Views.SlideSettings.textSelectTexture": "Select", - "PE.Views.SlideSettings.textSmoothly": "Smoothly", - "PE.Views.SlideSettings.textSplit": "Split", + "del_PE.Views.SlideSettings.textSmoothly": "Smoothly", + "del_PE.Views.SlideSettings.textSplit": "Split", "PE.Views.SlideSettings.textStretch": "Stretch", "PE.Views.SlideSettings.textStyle": "Style", "PE.Views.SlideSettings.textTexture": "From Texture", "PE.Views.SlideSettings.textTile": "Tile", - "PE.Views.SlideSettings.textTop": "Top", - "PE.Views.SlideSettings.textTopLeft": "Top Left", - "PE.Views.SlideSettings.textTopRight": "Top Right", - "PE.Views.SlideSettings.textUnCover": "Uncover", - "PE.Views.SlideSettings.textVerticalIn": "Vertical In", - "PE.Views.SlideSettings.textVerticalOut": "Vertical Out", - "PE.Views.SlideSettings.textWedge": "Wedge", - "PE.Views.SlideSettings.textWipe": "Wipe", - "PE.Views.SlideSettings.textZoom": "Zoom", - "PE.Views.SlideSettings.textZoomIn": "Zoom In", - "PE.Views.SlideSettings.textZoomOut": "Zoom Out", - "PE.Views.SlideSettings.textZoomRotate": "Zoom and Rotate", + "del_PE.Views.SlideSettings.textTop": "Top", + "del_PE.Views.SlideSettings.textTopLeft": "Top Left", + "del_PE.Views.SlideSettings.textTopRight": "Top Right", + "del_PE.Views.SlideSettings.textUnCover": "Uncover", + "del_PE.Views.SlideSettings.textVerticalIn": "Vertical In", + "del_PE.Views.SlideSettings.textVerticalOut": "Vertical Out", + "del_PE.Views.SlideSettings.textWedge": "Wedge", + "del_PE.Views.SlideSettings.textWipe": "Wipe", + "del_PE.Views.SlideSettings.textZoom": "Zoom", + "del_PE.Views.SlideSettings.textZoomIn": "Zoom In", + "del_PE.Views.SlideSettings.textZoomOut": "Zoom Out", + "del_PE.Views.SlideSettings.textZoomRotate": "Zoom and Rotate", "PE.Views.SlideSettings.tipAddGradientPoint": "Add gradient point", "PE.Views.SlideSettings.tipRemoveGradientPoint": "Remove gradient point", "PE.Views.SlideSettings.txtBrownPaper": "Brown Paper", @@ -2008,5 +2018,42 @@ "PE.Views.Toolbar.txtScheme8": "Flow", "PE.Views.Toolbar.txtScheme9": "Foundry", "PE.Views.Toolbar.txtSlideAlign": "Align to Slide", - "PE.Views.Toolbar.txtUngroup": "Ungroup" + "PE.Views.Toolbar.txtUngroup": "Ungroup", + "PE.Views.Transitions.txtSec": "s", + "PE.Views.Transitions.txtPreview": "Preview", + "PE.Views.Transitions.txtParameters": "Parameters", + "PE.Views.Transitions.txtApplyToAll": "Apply to All Slides", + "PE.Views.Transitions.strDuration": "Duration", + "PE.Views.Transitions.strDelay": "Delay", + "PE.Views.Transitions.strStartOnClick": "Start On Click", + "PE.Views.Transitions.textNone": "None", + "PE.Views.Transitions.textFade": "Fade", + "PE.Views.Transitions.textPush": "Push", + "PE.Views.Transitions.textWipe": "Wipe", + "PE.Views.Transitions.textSplit": "Split", + "PE.Views.Transitions.textUnCover": "UnCover", + "PE.Views.Transitions.textCover": "Cover", + "PE.Views.Transitions.textClock": "Clock", + "PE.Views.Transitions.textZoom": "Zoom", + "PE.Views.Transitions.textSmoothly": "Smoothly", + "PE.Views.Transitions.textBlack": "Through Black", + "PE.Views.Transitions.textLeft": "Left", + "PE.Views.Transitions.textTop": "Top", + "PE.Views.Transitions.textRight": "Right", + "PE.Views.Transitions.textBottom": "Bottom", + "PE.Views.Transitions.textTopLeft": "Top-Left", + "PE.Views.Transitions.textTopRight": "Top-Right", + "PE.Views.Transitions.textBottomLeft": "Bottom-Left", + "PE.Views.Transitions.textBottomRight": "Bottom-Right", + "PE.Views.Transitions.textVerticalIn": "Vertical In", + "PE.Views.Transitions.textVerticalOut": "Vertical Out", + "PE.Views.Transitions.textHorizontalIn": "Horizontal In", + "PE.Views.Transitions.textHorizontalOut": "Horizontal Out", + "PE.Views.Transitions.textClockwise": "Clockwise", + "PE.Views.Transitions.textCounterclockwise": "Counterclockwise", + "PE.Views.Transitions.textWedge": "Wedge", + "PE.Views.Transitions.textZoomIn": "Zoom In", + "PE.Views.Transitions.textZoomOut": "Zoom Out", + "PE.Views.Transitions.textZoomRotate": "Zoom and Rotate", + "PE.Views.Toolbar.textTabTransitions": "Transitions" } \ No newline at end of file diff --git a/apps/presentationeditor/main/locale/es.json b/apps/presentationeditor/main/locale/es.json index 1cd10a051..a019a0aaf 100644 --- a/apps/presentationeditor/main/locale/es.json +++ b/apps/presentationeditor/main/locale/es.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Ver usuarios y administrar derechos de acceso al documento", "Common.Views.Header.txtAccessRights": "Cambiar derechos de acceso", "Common.Views.Header.txtRename": "Renombrar", + "Common.Views.History.textCloseHistory": "Cerrar historial", + "Common.Views.History.textHide": "Contraer", + "Common.Views.History.textHideAll": "Ocultar cambios detallados", + "Common.Views.History.textRestore": "Restaurar", + "Common.Views.History.textShow": "Expandir", + "Common.Views.History.textShowAll": "Mostrar cambios detallados", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL de imagen:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo es obligatorio", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo debe ser URL en el formato \"http://www.example.com\"", @@ -1988,6 +1995,7 @@ "PE.Views.Toolbar.txtScheme2": "Escala de grises", "PE.Views.Toolbar.txtScheme20": "Urbano", "PE.Views.Toolbar.txtScheme21": "Brío", + "PE.Views.Toolbar.txtScheme22": "Nueva oficina", "PE.Views.Toolbar.txtScheme3": "Vértice", "PE.Views.Toolbar.txtScheme4": "Aspecto", "PE.Views.Toolbar.txtScheme5": "Civil", diff --git a/apps/presentationeditor/main/locale/fr.json b/apps/presentationeditor/main/locale/fr.json index 0e10003f8..9ae61db57 100644 --- a/apps/presentationeditor/main/locale/fr.json +++ b/apps/presentationeditor/main/locale/fr.json @@ -94,7 +94,7 @@ "Common.Views.About.txtLicensee": "CESSIONNAIRE", "Common.Views.About.txtLicensor": "CONCÉDANT", "Common.Views.About.txtMail": "émail: ", - "Common.Views.About.txtPoweredBy": "Powered by", + "Common.Views.About.txtPoweredBy": "Réalisation", "Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter", @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Afficher les utilisateurs et gérer les droits d'accès aux documents", "Common.Views.Header.txtAccessRights": "Modifier les droits d'accès", "Common.Views.Header.txtRename": "Renommer", + "Common.Views.History.textCloseHistory": "Fermer l'historique", + "Common.Views.History.textHide": "Réduire", + "Common.Views.History.textHideAll": "Masquer les modifications détaillées", + "Common.Views.History.textRestore": "Restaurer", + "Common.Views.History.textShow": "Développer", + "Common.Views.History.textShowAll": "Afficher les modifications détaillées", + "Common.Views.History.textVer": "ver. ", "Common.Views.ImageFromUrlDialog.textUrl": "Coller URL d'image:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Champ obligatoire", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Ce champ doit être une URL au format \"http://www.example.com\"", @@ -447,7 +454,7 @@ "PE.Controllers.Main.textLoadingDocument": "Chargement de présentation", "PE.Controllers.Main.textLongName": "Entrez un nom qui a moins de 128 caractères.", "PE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", - "PE.Controllers.Main.textPaidFeature": "Fonction payée", + "PE.Controllers.Main.textPaidFeature": "Fonction payante", "PE.Controllers.Main.textRemember": "Se souvenir de mon choix", "PE.Controllers.Main.textRenameError": "Le nom d'utilisateur ne peut être vide.", "PE.Controllers.Main.textRenameLabel": "Entrez un nom à utiliser pour la collaboration", @@ -468,7 +475,7 @@ "PE.Controllers.Main.txtDateTime": "Date et heure", "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Titre du graphique", - "PE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", + "PE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...", "PE.Controllers.Main.txtErrorLoadHistory": "Chargement de l'historique a échoué", "PE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "PE.Controllers.Main.txtFooter": "Pied de page", @@ -703,7 +710,7 @@ "PE.Controllers.Main.txtTheme_green": "Vert", "PE.Controllers.Main.txtTheme_green_leaf": "Feuille verte", "PE.Controllers.Main.txtTheme_lines": "Lignes", - "PE.Controllers.Main.txtTheme_office": "Bureau", + "PE.Controllers.Main.txtTheme_office": "Office", "PE.Controllers.Main.txtTheme_office_theme": "Thème Office", "PE.Controllers.Main.txtTheme_official": "officielle", "PE.Controllers.Main.txtTheme_pixel": "Pixélisée", @@ -715,7 +722,7 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "PE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "PE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", - "PE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.", + "PE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", "PE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", "PE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "PE.Controllers.Main.waitText": "Veuillez patienter...", @@ -733,7 +740,7 @@ "PE.Controllers.Toolbar.confirmAddFontName": "La police que vous allez enregistrer n'est pas disponible sur l'appareil actuel.
    Le style du texte sera affiché à l'aide de l'une des polices de système, la police sauvée sera utilisée lorsqu'elle est disponible.
    Voulez-vous continuer?", "PE.Controllers.Toolbar.textAccent": "Types d'accentuation", "PE.Controllers.Toolbar.textBracket": "Crochets", - "PE.Controllers.Toolbar.textEmptyImgUrl": "Specifiez URL d'image.", + "PE.Controllers.Toolbar.textEmptyImgUrl": "Spécifiez l'URL de l'image", "PE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.
    Entrez une valeur numérique entre 1 et 300", "PE.Controllers.Toolbar.textFraction": "Fractions", "PE.Controllers.Toolbar.textFunction": "Fonctions", @@ -1118,7 +1125,7 @@ "PE.Views.DocumentHolder.insertRowText": "Insérer une ligne", "PE.Views.DocumentHolder.insertText": "Insérer", "PE.Views.DocumentHolder.langText": "Sélectionner la langue", - "PE.Views.DocumentHolder.leftText": "A gauche", + "PE.Views.DocumentHolder.leftText": "À gauche", "PE.Views.DocumentHolder.loadSpellText": "Chargement des variantes en cours...", "PE.Views.DocumentHolder.mergeCellsText": "Fusionner les cellules", "PE.Views.DocumentHolder.mniCustomTable": "Inserer un tableau personnalisé", @@ -1273,7 +1280,7 @@ "PE.Views.DocumentPreview.txtPlay": "Démarrer la présentation", "PE.Views.DocumentPreview.txtPrev": "Diapositive précédente", "PE.Views.DocumentPreview.txtReset": "Remettre à zéro", - "PE.Views.FileMenu.btnAboutCaption": "A propos", + "PE.Views.FileMenu.btnAboutCaption": "À propos", "PE.Views.FileMenu.btnBackCaption": "Ouvrir l'emplacement du fichier", "PE.Views.FileMenu.btnCloseMenuCaption": "Fermer le menu", "PE.Views.FileMenu.btnCreateNewCaption": "Nouvelle présentation", @@ -1448,7 +1455,7 @@ "PE.Views.ImageSettingsAdvanced.textTitle": "Image - Paramètres avancés", "PE.Views.ImageSettingsAdvanced.textVertically": "Verticalement", "PE.Views.ImageSettingsAdvanced.textWidth": "Largeur", - "PE.Views.LeftMenu.tipAbout": "A propos", + "PE.Views.LeftMenu.tipAbout": "À propos", "PE.Views.LeftMenu.tipChat": "Chat", "PE.Views.LeftMenu.tipComments": "Commentaires", "PE.Views.LeftMenu.tipPlugins": "Plug-ins", @@ -1467,14 +1474,14 @@ "PE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés", "PE.Views.ParagraphSettings.textAt": "A", "PE.Views.ParagraphSettings.textAtLeast": "Au moins", - "PE.Views.ParagraphSettings.textAuto": "Plusieurs", + "PE.Views.ParagraphSettings.textAuto": "Multiple ", "PE.Views.ParagraphSettings.textExact": "Exactement", "PE.Views.ParagraphSettings.txtAutoText": "Auto", "PE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", "PE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majuscules", - "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré", + "PE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barré double", "PE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits", - "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche", + "PE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "À gauche", "PE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne", "PE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite", "PE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Après", @@ -1489,7 +1496,7 @@ "PE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant", "PE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation", "PE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement", - "PE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs", + "PE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ", "PE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères", "PE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut", "PE.Views.ParagraphSettingsAdvanced.textEffects": "Effets", @@ -1502,7 +1509,7 @@ "PE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout", "PE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier", "PE.Views.ParagraphSettingsAdvanced.textTabCenter": "Au centre", - "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "A gauche", + "PE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche", "PE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position", "PE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "PE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", @@ -1593,7 +1600,7 @@ "PE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalement", "PE.Views.ShapeSettingsAdvanced.textJoinType": "Type de jointure", "PE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proportions constantes", - "PE.Views.ShapeSettingsAdvanced.textLeft": "A gauche", + "PE.Views.ShapeSettingsAdvanced.textLeft": "À gauche", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne", "PE.Views.ShapeSettingsAdvanced.textMiter": "Onglet", "PE.Views.ShapeSettingsAdvanced.textNofit": "Ne pas ajuster automatiquement", @@ -1657,9 +1664,9 @@ "PE.Views.SlideSettings.textGradient": "Dégradé", "PE.Views.SlideSettings.textGradientFill": "Remplissage en dégradé", "PE.Views.SlideSettings.textHorizontalIn": "Horizontal intérieur", - "PE.Views.SlideSettings.textHorizontalOut": "Horizontal intérieur", + "PE.Views.SlideSettings.textHorizontalOut": "Horizontal extérieur", "PE.Views.SlideSettings.textImageTexture": "Image ou Texture", - "PE.Views.SlideSettings.textLeft": "A gauche", + "PE.Views.SlideSettings.textLeft": "À gauche", "PE.Views.SlideSettings.textLinear": "Linéaire", "PE.Views.SlideSettings.textNoFill": "Pas de remplissage", "PE.Views.SlideSettings.textNone": "Rien", @@ -1683,8 +1690,8 @@ "PE.Views.SlideSettings.textTopLeft": "En haut à gauche", "PE.Views.SlideSettings.textTopRight": "En haut à droite", "PE.Views.SlideSettings.textUnCover": "Découvrir", - "PE.Views.SlideSettings.textVerticalIn": "Vertical extérieur", - "PE.Views.SlideSettings.textVerticalOut": "Vertical intérieur ", + "PE.Views.SlideSettings.textVerticalIn": "Vertical intérieur", + "PE.Views.SlideSettings.textVerticalOut": "Vertical extérieur ", "PE.Views.SlideSettings.textWedge": "Coin", "PE.Views.SlideSettings.textWipe": "Effacement", "PE.Views.SlideSettings.textZoom": "Zoom", @@ -1799,7 +1806,7 @@ "PE.Views.TableSettingsAdvanced.textBottom": "En bas", "PE.Views.TableSettingsAdvanced.textCheckMargins": "Utiliser marges par défaut", "PE.Views.TableSettingsAdvanced.textDefaultMargins": "Marges par défaut", - "PE.Views.TableSettingsAdvanced.textLeft": "A gauche", + "PE.Views.TableSettingsAdvanced.textLeft": "À gauche", "PE.Views.TableSettingsAdvanced.textMargins": "Marges de la cellule", "PE.Views.TableSettingsAdvanced.textRight": "A droite", "PE.Views.TableSettingsAdvanced.textTitle": "Tableau - Paramètres avancés", @@ -1974,7 +1981,7 @@ "PE.Views.Toolbar.txtDistribVert": "Distribuer verticalement", "PE.Views.Toolbar.txtGroup": "Grouper", "PE.Views.Toolbar.txtObjectsAlign": "Aligner les objets sélectionnés", - "PE.Views.Toolbar.txtScheme1": "Bureau", + "PE.Views.Toolbar.txtScheme1": "Office", "PE.Views.Toolbar.txtScheme10": "Médian", "PE.Views.Toolbar.txtScheme11": "Métro", "PE.Views.Toolbar.txtScheme12": "Module", @@ -1988,9 +1995,10 @@ "PE.Views.Toolbar.txtScheme2": "Niveaux de gris", "PE.Views.Toolbar.txtScheme20": "Urbain", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "New Office", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Proportions", - "PE.Views.Toolbar.txtScheme5": "Civique", + "PE.Views.Toolbar.txtScheme5": "Civil", "PE.Views.Toolbar.txtScheme6": "Rotonde", "PE.Views.Toolbar.txtScheme7": "Capitaux", "PE.Views.Toolbar.txtScheme8": "Flux", diff --git a/apps/presentationeditor/main/locale/it.json b/apps/presentationeditor/main/locale/it.json index 4d5ba0812..acc2393c1 100644 --- a/apps/presentationeditor/main/locale/it.json +++ b/apps/presentationeditor/main/locale/it.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Mostra gli utenti e gestisci i diritti di accesso al documento", "Common.Views.Header.txtAccessRights": "Modifica diritti di accesso", "Common.Views.Header.txtRename": "Rinomina", + "Common.Views.History.textCloseHistory": "Chiudere cronologia", + "Common.Views.History.textHide": "Riduci", + "Common.Views.History.textHideAll": "Nascondi le modifiche dettagliate", + "Common.Views.History.textRestore": "Ripristina", + "Common.Views.History.textShow": "Espandi", + "Common.Views.History.textShowAll": "Mostra modifiche dettagliate", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Incolla URL immagine:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Campo obbligatorio", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Il formato URL richiesto è \"http://www.example.com\"", @@ -1988,6 +1995,7 @@ "PE.Views.Toolbar.txtScheme2": "Scala di grigi", "PE.Views.Toolbar.txtScheme20": "Tramonto", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "Nuovo ufficio", "PE.Views.Toolbar.txtScheme3": "Apice", "PE.Views.Toolbar.txtScheme4": "Aspetto", "PE.Views.Toolbar.txtScheme5": "Città", diff --git a/apps/presentationeditor/main/locale/ja.json b/apps/presentationeditor/main/locale/ja.json index 7e68b09e1..6a2ae095e 100644 --- a/apps/presentationeditor/main/locale/ja.json +++ b/apps/presentationeditor/main/locale/ja.json @@ -47,6 +47,7 @@ "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", "Common.Translation.warnFileLocked": "文書が別のアプリで使用されています。編集を続けて、コピーとして保存できます。", + "Common.Translation.warnFileLockedBtnEdit": "コピーを作成", "Common.UI.ColorButton.textAutoColor": "自動", "Common.UI.ColorButton.textNewColor": "ユーザー設定の色の追加", "Common.UI.ComboBorderSize.txtNoBorders": "枠線なし", @@ -71,7 +72,7 @@ "Common.UI.SynchronizeTip.textDontShow": "今後このメッセージを表示しない", "Common.UI.SynchronizeTip.textSynchronize": "ドキュメントは他のユーザーによって変更されました。
    変更を保存するためにここでクリックし、アップデートを再ロードしてください。", "Common.UI.ThemeColorPalette.textStandartColors": "標準の色", - "Common.UI.ThemeColorPalette.textThemeColors": "テーマの色", + "Common.UI.ThemeColorPalette.textThemeColors": "テーマカラー", "Common.UI.Themes.txtThemeClassicLight": "明るい(クラシック)", "Common.UI.Themes.txtThemeDark": "暗い", "Common.UI.Themes.txtThemeLight": "明るい", @@ -96,10 +97,12 @@ "Common.Views.About.txtVersion": "バージョン", "Common.Views.AutoCorrectDialog.textAdd": "追加する", "Common.Views.AutoCorrectDialog.textApplyText": "入力時に適用する", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "オートコレクト", "Common.Views.AutoCorrectDialog.textAutoFormat": "入力時にオートフォーマット", "Common.Views.AutoCorrectDialog.textBulleted": "自動箇条書き", "Common.Views.AutoCorrectDialog.textBy": "幅", "Common.Views.AutoCorrectDialog.textDelete": "削除する", + "Common.Views.AutoCorrectDialog.textFLSentence": "文章の最初の文字を大文字にする", "Common.Views.AutoCorrectDialog.textHyphens": "ハイフン(--)の代わりにダッシュ(—)", "Common.Views.AutoCorrectDialog.textMathCorrect": "数式オートコレクト", "Common.Views.AutoCorrectDialog.textNumbered": "自動番号付きリスト", @@ -170,6 +173,12 @@ "Common.Views.Header.tipViewUsers": "ユーザーの表示と文書のアクセス権の管理", "Common.Views.Header.txtAccessRights": "アクセス許可を変更する", "Common.Views.Header.txtRename": "名前の変更", + "Common.Views.History.textCloseHistory": "履歴を閉じる", + "Common.Views.History.textHideAll": "変更の詳細を隠す", + "Common.Views.History.textRestore": "復元する", + "Common.Views.History.textShow": "拡張機能", + "Common.Views.History.textShowAll": "変更の詳細を表示する", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "画像のURLの貼り付け", "Common.Views.ImageFromUrlDialog.txtEmpty": "このフィールドは必須項目です", "Common.Views.ImageFromUrlDialog.txtNotUrl": "このフィールドは「http://www.example.com」の形式のURLである必要があります。", @@ -236,6 +245,8 @@ "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": "変更履歴", @@ -255,6 +266,11 @@ "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": "最終版", @@ -341,9 +357,11 @@ "Common.Views.UserNameDialog.textDontShow": "二度と表示しない", "Common.Views.UserNameDialog.textLabel": "ラベル:", "Common.Views.UserNameDialog.textLabelError": "ラベルは空白にできません。", + "PE.Controllers.LeftMenu.leavePageText": "変更を保存せずにドキュメントを閉じると変更が失われます。
    保存するには\"キャンセル\"を押して、保存をしてください。保存せずに破棄する場合は\"OK\"をクリックしてください。", "PE.Controllers.LeftMenu.newDocumentTitle": "名前が付けられていないプレゼンテーション", "PE.Controllers.LeftMenu.notcriticalErrorTitle": " 警告", "PE.Controllers.LeftMenu.requestEditRightsText": "アクセス権の編集の要求中...", + "PE.Controllers.LeftMenu.textLoadHistory": "バージョン履歴の読み込み中...", "PE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", "PE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", "PE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。", @@ -388,6 +406,7 @@ "PE.Controllers.Main.errorUsersExceed": "料金プランによってユーザ数を超過しています。", "PE.Controllers.Main.errorViewerDisconnect": "接続が接続が失われました。文書を表示が可能ですが、
    接続が復元されてページが再ロードされるまで、ダウンロードまたは印刷することはできません。", "PE.Controllers.Main.leavePageText": "このプレゼンテーションの保存されていない変更があります。保存するために「このページにとどまる」、「保存」をクリックしてください。全ての保存しない変更をキャンサルするために「このページを離れる」をクリックしてください。", + "PE.Controllers.Main.leavePageTextOnClose": "このプレゼンテーションで保存されていない変更はすべて失われます。
    \"キャンセル\"をクリックしてから \"保存 \"をクリックすると、変更内容が保存されます。OK \"をクリックすると、保存されていないすべての変更が破棄されます。", "PE.Controllers.Main.loadFontsTextText": "データを読み込んでいます...", "PE.Controllers.Main.loadFontsTitleText": "データを読み込んでいます", "PE.Controllers.Main.loadFontTextText": "データを読み込んでいます...", @@ -438,6 +457,7 @@ "PE.Controllers.Main.textShape": "図形", "PE.Controllers.Main.textStrict": "厳格モード", "PE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。
    他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードに切り替えてください。保存した後にのみ、変更を送信してください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", + "PE.Controllers.Main.textTryUndoRedoWarn": "ファスト共同編集モードでは、元に戻す/やり直し機能が無効になります。", "PE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています", "PE.Controllers.Main.titleServerVersion": "エディターが更新された", "PE.Controllers.Main.txtAddFirstSlide": "最初のスライドを追加するには、クリックしてください", @@ -452,6 +472,7 @@ "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "グラフのタイトル", "PE.Controllers.Main.txtEditingMode": "編集モードを設定しています...", + "PE.Controllers.Main.txtErrorLoadHistory": "履歴の読み込みに失敗しました。", "PE.Controllers.Main.txtFiguredArrows": "形の矢印", "PE.Controllers.Main.txtFooter": "フッター", "PE.Controllers.Main.txtHeader": "ヘッダー", @@ -461,6 +482,7 @@ "PE.Controllers.Main.txtMath": "数学", "PE.Controllers.Main.txtMedia": "メディア", "PE.Controllers.Main.txtNeedSynchronize": "更新があります。", + "PE.Controllers.Main.txtNone": "なし", "PE.Controllers.Main.txtPicture": "画像", "PE.Controllers.Main.txtRectangles": "四角形", "PE.Controllers.Main.txtSeries": "系列", @@ -1260,6 +1282,7 @@ "PE.Views.FileMenu.btnCreateNewCaption": "新規作成", "PE.Views.FileMenu.btnDownloadCaption": "ダウンロード...", "PE.Views.FileMenu.btnHelpCaption": "ヘルプ...", + "PE.Views.FileMenu.btnHistoryCaption": "バージョン履歴", "PE.Views.FileMenu.btnInfoCaption": "プレゼンテーションの情報...", "PE.Views.FileMenu.btnPrintCaption": "印刷", "PE.Views.FileMenu.btnProtectCaption": "保護する", @@ -1855,6 +1878,7 @@ "PE.Views.Toolbar.mniImageFromStorage": "ストレージから画像を読み込む", "PE.Views.Toolbar.mniImageFromUrl": "ファイルからのURL", "PE.Views.Toolbar.mniLowerCase": "小文字", + "PE.Views.Toolbar.mniSentenceCase": "センテンスケース", "PE.Views.Toolbar.mniSlideAdvanced": "詳細設定", "PE.Views.Toolbar.mniSlideStandard": "標準(4:3)", "PE.Views.Toolbar.mniSlideWide": "ワイド画面(16:9)", @@ -1902,7 +1926,7 @@ "PE.Views.Toolbar.textUnderline": "下線", "PE.Views.Toolbar.tipAddSlide": "スライドの追加", "PE.Views.Toolbar.tipBack": "戻る", - "PE.Views.Toolbar.tipChangeCase": "大文字小文字を変更", + "PE.Views.Toolbar.tipChangeCase": "大文字・小文字の変更", "PE.Views.Toolbar.tipChangeChart": "グラフの種類を変更", "PE.Views.Toolbar.tipChangeSlide": "レイアウトスライドの変更", "PE.Views.Toolbar.tipClearStyle": "スタイルのクリア", diff --git a/apps/presentationeditor/main/locale/nl.json b/apps/presentationeditor/main/locale/nl.json index a3604a7b8..972967cd7 100644 --- a/apps/presentationeditor/main/locale/nl.json +++ b/apps/presentationeditor/main/locale/nl.json @@ -178,6 +178,13 @@ "Common.Views.Header.tipViewUsers": "Gebruikers weergeven en toegangsrechten voor documenten beheren", "Common.Views.Header.txtAccessRights": "Toegangsrechten wijzigen", "Common.Views.Header.txtRename": "Hernoemen", + "Common.Views.History.textCloseHistory": "Sluit geschiedenis", + "Common.Views.History.textHide": "Samenvouwen", + "Common.Views.History.textHideAll": "Details van wijzigingen verbergen", + "Common.Views.History.textRestore": "Herstellen", + "Common.Views.History.textShow": "Uitvouwen", + "Common.Views.History.textShowAll": "Details van wijzigingen weergeven", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "URL van een afbeelding plakken:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Dit veld is vereist", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", @@ -203,7 +210,7 @@ "Common.Views.ListSettingsDialog.txtTitle": "Lijst instellingen", "Common.Views.ListSettingsDialog.txtType": "Type", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", - "Common.Views.OpenDialog.txtEncoding": "Versleuteling", + "Common.Views.OpenDialog.txtEncoding": "Codering", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen", "Common.Views.OpenDialog.txtPassword": "Wachtwoord", @@ -717,7 +724,7 @@ "PE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "PE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "PE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "PE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", + "PE.Controllers.Main.uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.", "PE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "PE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", "PE.Controllers.Main.waitText": "Een moment...", @@ -1869,7 +1876,7 @@ "PE.Views.Toolbar.capInsertText": "Tekstvak", "PE.Views.Toolbar.capInsertVideo": "Video", "PE.Views.Toolbar.capTabFile": "Bestand", - "PE.Views.Toolbar.capTabHome": "Home", + "PE.Views.Toolbar.capTabHome": "Start", "PE.Views.Toolbar.capTabInsert": "Invoegen", "PE.Views.Toolbar.mniCapitalizeWords": "Geef elk woord een hoofdletter ", "PE.Views.Toolbar.mniCustomTable": "Aangepaste tabel invoegen", @@ -1918,7 +1925,7 @@ "PE.Views.Toolbar.textSuperscript": "Superscript", "PE.Views.Toolbar.textTabCollaboration": "Samenwerking", "PE.Views.Toolbar.textTabFile": "Bestand", - "PE.Views.Toolbar.textTabHome": "Home", + "PE.Views.Toolbar.textTabHome": "Start", "PE.Views.Toolbar.textTabInsert": "Invoegen", "PE.Views.Toolbar.textTabProtect": "Beveiliging", "PE.Views.Toolbar.textTitleError": "Fout", @@ -1990,6 +1997,7 @@ "PE.Views.Toolbar.txtScheme2": "Grijswaarden", "PE.Views.Toolbar.txtScheme20": "Stedelijk", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "Nieuw bureau", "PE.Views.Toolbar.txtScheme3": "Toppunt", "PE.Views.Toolbar.txtScheme4": "Aspect", "PE.Views.Toolbar.txtScheme5": "Civiel", diff --git a/apps/presentationeditor/main/locale/pt.json b/apps/presentationeditor/main/locale/pt.json index 1c7906908..c1d338f03 100644 --- a/apps/presentationeditor/main/locale/pt.json +++ b/apps/presentationeditor/main/locale/pt.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Ver usuários e gerenciar direitos de acesso ao documento", "Common.Views.Header.txtAccessRights": "Alterar direitos de acesso", "Common.Views.Header.txtRename": "Renomear", + "Common.Views.History.textCloseHistory": "Fechar histórico", + "Common.Views.History.textHide": "Minimizar", + "Common.Views.History.textHideAll": "Ocultar alterações detalhadas ", + "Common.Views.History.textRestore": "Restaurar", + "Common.Views.History.textShow": "Expandir", + "Common.Views.History.textShowAll": "Mostrar alterações detalhadas", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Colar uma URL de imagem:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Este campo é obrigatório", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", @@ -1988,6 +1995,7 @@ "PE.Views.Toolbar.txtScheme2": "Escala de cinza", "PE.Views.Toolbar.txtScheme20": "Urbano", "PE.Views.Toolbar.txtScheme21": "Verve", + "PE.Views.Toolbar.txtScheme22": "Novo Office", "PE.Views.Toolbar.txtScheme3": "Ápice", "PE.Views.Toolbar.txtScheme4": "Aspecto", "PE.Views.Toolbar.txtScheme5": "Cívico", diff --git a/apps/presentationeditor/main/locale/ro.json b/apps/presentationeditor/main/locale/ro.json index a242ecec7..3cd38d486 100644 --- a/apps/presentationeditor/main/locale/ro.json +++ b/apps/presentationeditor/main/locale/ro.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Vizualizare utilizatori și gestionare permisiuni de acces", "Common.Views.Header.txtAccessRights": "Modificare permisiuni", "Common.Views.Header.txtRename": "Redenumire", + "Common.Views.History.textCloseHistory": "Închide istoricul", + "Common.Views.History.textHide": "Restrângere", + "Common.Views.History.textHideAll": "Ascundere modificări detaliate", + "Common.Views.History.textRestore": "Restaurează", + "Common.Views.History.textShow": "Extindere", + "Common.Views.History.textShowAll": "Afișare detaliată a modificărilor", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Lipire imagine prin URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Câmp obligatoriu", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\" ", @@ -711,7 +718,7 @@ "PE.Controllers.Main.txtTheme_turtle": "Turtle", "PE.Controllers.Main.txtXAxis": "Axa X", "PE.Controllers.Main.txtYAxis": "Axa Y", - "PE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", + "PE.Controllers.Main.unknownErrorText": "Eroare necunoscută.", "PE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "PE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", "PE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", @@ -1670,7 +1677,7 @@ "PE.Views.SlideSettings.textRadial": "Radială", "PE.Views.SlideSettings.textReset": "Renunțare la modificări", "PE.Views.SlideSettings.textRight": "Dreapta", - "PE.Views.SlideSettings.textSec": "T", + "PE.Views.SlideSettings.textSec": "s", "PE.Views.SlideSettings.textSelectImage": "Selectați imaginea", "PE.Views.SlideSettings.textSelectTexture": "Selectare", "PE.Views.SlideSettings.textSmoothly": "Lin", @@ -1988,6 +1995,7 @@ "PE.Views.Toolbar.txtScheme2": "Tonuri de gri", "PE.Views.Toolbar.txtScheme20": "Urban", "PE.Views.Toolbar.txtScheme21": "Vervă", + "PE.Views.Toolbar.txtScheme22": "New Office", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Aspect", "PE.Views.Toolbar.txtScheme5": "Civic", diff --git a/apps/presentationeditor/main/locale/ru.json b/apps/presentationeditor/main/locale/ru.json index 4f9c73592..c36e9242a 100644 --- a/apps/presentationeditor/main/locale/ru.json +++ b/apps/presentationeditor/main/locale/ru.json @@ -176,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу", "Common.Views.Header.txtAccessRights": "Изменить права доступа", "Common.Views.Header.txtRename": "Переименовать", + "Common.Views.History.textCloseHistory": "Закрыть историю", + "Common.Views.History.textHide": "Свернуть", + "Common.Views.History.textHideAll": "Скрыть подробные изменения", + "Common.Views.History.textRestore": "Восстановить", + "Common.Views.History.textShow": "Развернуть", + "Common.Views.History.textShowAll": "Показать подробные изменения", + "Common.Views.History.textVer": "вер.", "Common.Views.ImageFromUrlDialog.textUrl": "Вставьте URL изображения:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Это поле обязательно для заполнения", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", diff --git a/apps/presentationeditor/main/locale/sv.json b/apps/presentationeditor/main/locale/sv.json index 33599f034..971256441 100644 --- a/apps/presentationeditor/main/locale/sv.json +++ b/apps/presentationeditor/main/locale/sv.json @@ -6,13 +6,51 @@ "Common.Controllers.ExternalDiagramEditor.warningText": "Objektet är inaktiverat eftersom det redigeras av en annan användare.", "Common.Controllers.ExternalDiagramEditor.warningTitle": "Varning", "Common.define.chartData.textArea": "Område", + "Common.define.chartData.textAreaStacked": "Staplad yta", + "Common.define.chartData.textAreaStackedPer": "100% staplat område", "Common.define.chartData.textBar": "Stapel", + "Common.define.chartData.textBarNormal": "Grupperad kolumn", + "Common.define.chartData.textBarNormal3d": "3-D grupperad kolumn", + "Common.define.chartData.textBarNormal3dPerspective": "3-D kolumn", + "Common.define.chartData.textBarStacked": "Staplad kolumn", + "Common.define.chartData.textBarStacked3d": "3-D staplad kolumn", + "Common.define.chartData.textBarStackedPer": "100% staplad kolumn", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% staplad kolumn", "Common.define.chartData.textCharts": "Diagram", "Common.define.chartData.textColumn": "Kolumn", + "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textComboAreaBar": "Staplat område - grupperad kolumn", + "Common.define.chartData.textComboBarLine": "Grupperad kolumn - rad", + "Common.define.chartData.textComboBarLineSecondary": "Grupperad kolumn - rad på andra axeln", + "Common.define.chartData.textComboCustom": "Anpassad kombination", + "Common.define.chartData.textDoughnut": "Doughnut", + "Common.define.chartData.textHBarNormal": "Grupperad stapel", + "Common.define.chartData.textHBarNormal3d": "3-D grupperad stapel", + "Common.define.chartData.textHBarStacked": "Staplad stapel", + "Common.define.chartData.textHBarStacked3d": "3-D staplad stapel", + "Common.define.chartData.textHBarStackedPer": "100% staplad stapel", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% staplad stapel", "Common.define.chartData.textLine": "Linje", + "Common.define.chartData.textLine3d": "3-D linje", + "Common.define.chartData.textLineMarker": "Linje med markörer", + "Common.define.chartData.textLineStacked": "Staplad linje", + "Common.define.chartData.textLineStackedMarker": "Staplad linje med markeringar", + "Common.define.chartData.textLineStackedPer": "100% staplad linje", + "Common.define.chartData.textLineStackedPerMarker": "100% staplad linje med markörer", "Common.define.chartData.textPie": "Paj", + "Common.define.chartData.textPie3d": "3-D paj", "Common.define.chartData.textPoint": "XY (Spridning)", + "Common.define.chartData.textScatter": "Sprida ut", + "Common.define.chartData.textScatterLine": "Sprid med raka linjer", + "Common.define.chartData.textScatterLineMarker": "Sprid med raka linjer och markeringar", + "Common.define.chartData.textScatterSmooth": "Sprid med mjuka linjer", + "Common.define.chartData.textScatterSmoothMarker": "Sprid med mjuka linjer och markeringar", + "Common.define.chartData.textStock": "Lager", "Common.define.chartData.textSurface": "Yta", + "Common.Translation.warnFileLocked": "Dokumentet används av ett annat program. Du kan fortsätta redigera och spara den som en kopia.", + "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", + "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", + "Common.UI.ColorButton.textAutoColor": "Automatisk", "Common.UI.ColorButton.textNewColor": "Lägg till ny egen färg", "Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Inga ramar", @@ -37,6 +75,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokumentet har ändrats av en annan användare.
    Klicka för att spara dina ändringar och ladda uppdateringarna.", "Common.UI.ThemeColorPalette.textStandartColors": "Standardfärger", "Common.UI.ThemeColorPalette.textThemeColors": "Temafärger", + "Common.UI.Themes.txtThemeClassicLight": "Classic Light", + "Common.UI.Themes.txtThemeDark": "Mörk", + "Common.UI.Themes.txtThemeLight": "Ljus", "Common.UI.Window.cancelButtonText": "Avbryt", "Common.UI.Window.closeButtonText": "Stäng", "Common.UI.Window.noButtonText": "Inga", @@ -47,6 +88,7 @@ "Common.UI.Window.textInformation": "Information", "Common.UI.Window.textWarning": "Varning", "Common.UI.Window.yesButtonText": "Ja", + "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", "Common.Views.About.txtAddress": "adress:", "Common.Views.About.txtLicensee": "LICENSINNEHAVARE", @@ -55,6 +97,32 @@ "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "Tel.:", "Common.Views.About.txtVersion": "Version", + "Common.Views.AutoCorrectDialog.textAdd": "Lägg till", + "Common.Views.AutoCorrectDialog.textApplyText": "Korrigera när du skriver", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrigering", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformat när du skriver", + "Common.Views.AutoCorrectDialog.textBulleted": "Automatiska punktlistor", + "Common.Views.AutoCorrectDialog.textBy": "Av", + "Common.Views.AutoCorrectDialog.textDelete": "Radera", + "Common.Views.AutoCorrectDialog.textFLSentence": "Stor bokstav varje mening", + "Common.Views.AutoCorrectDialog.textHyphens": "Bindestreck (--) med streck (—)", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematisk autokorrigering", + "Common.Views.AutoCorrectDialog.textNumbered": "Automatiska nummerlistor", + "Common.Views.AutoCorrectDialog.textQuotes": "\"Raka citat\" med \"smarta citat\"", + "Common.Views.AutoCorrectDialog.textRecognized": "Hittade funktioner", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Följande uttryck är igenkända matematiska uttryck. De kommer inte att kursiveras automatiskt.", + "Common.Views.AutoCorrectDialog.textReplace": "Ersätt", + "Common.Views.AutoCorrectDialog.textReplaceText": "Ersätt när du skriver", + "Common.Views.AutoCorrectDialog.textReplaceType": "Ersätt text när du skriver", + "Common.Views.AutoCorrectDialog.textReset": "Återställ", + "Common.Views.AutoCorrectDialog.textResetAll": "Återställ till standard", + "Common.Views.AutoCorrectDialog.textRestore": "Återställ", + "Common.Views.AutoCorrectDialog.textTitle": "Autokorrigering", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Erkända funktioner får endast innehålla bokstäverna A till Z, versaler eller gemener.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Alla uttryck du har lagt till kommer att tas bort och de borttagna kommer att återställas. Vill du fortsätta?", + "Common.Views.AutoCorrectDialog.warnReplace": "Autokorrigeringsposten för %1 finns redan. Vill du ersätta den?", + "Common.Views.AutoCorrectDialog.warnReset": "All autokorrigering som du lagt till kommer att tas bort och ändringar kommer att återställas till sina ursprungliga värden. Vill du fortsätta?", + "Common.Views.AutoCorrectDialog.warnRestore": "Autokorrigeringen för %1 återställs till sitt ursprungliga värde. Vill du fortsätta?", "Common.Views.Chat.textSend": "Skicka", "Common.Views.Comments.textAdd": "Lägg till", "Common.Views.Comments.textAddComment": "Lägg till kommentar", @@ -83,11 +151,14 @@ "Common.Views.ExternalDiagramEditor.textSave": "Spara & avsluta", "Common.Views.ExternalDiagramEditor.textTitle": "Diagram editor", "Common.Views.Header.labelCoUsersDescr": "Dokumentet redigeras för närvarande av flera användare.", + "Common.Views.Header.textAddFavorite": "Markera som favorit", "Common.Views.Header.textAdvSettings": "Avancerade inställningar", "Common.Views.Header.textBack": "Gå till filens plats", "Common.Views.Header.textCompactView": "Dölj verktygsrad", "Common.Views.Header.textHideLines": "Dölj linjaler", + "Common.Views.Header.textHideNotes": "Dölj noteringar", "Common.Views.Header.textHideStatusBar": "Dölj statusrad", + "Common.Views.Header.textRemoveFavorite": "Ta bort från favoriter", "Common.Views.Header.textSaveBegin": "Sparar...", "Common.Views.Header.textSaveChanged": "Ändrad", "Common.Views.Header.textSaveEnd": "Alla ändringar sparade", @@ -105,6 +176,13 @@ "Common.Views.Header.tipViewUsers": "Visa användare och hantera dokumentbehörigheter", "Common.Views.Header.txtAccessRights": "Ändra behörigheter", "Common.Views.Header.txtRename": "Döp om", + "Common.Views.History.textCloseHistory": "Stäng historik", + "Common.Views.History.textHide": "Dra ihop", + "Common.Views.History.textHideAll": "Göm detaljerade ändringar", + "Common.Views.History.textRestore": "Återställ", + "Common.Views.History.textShow": "Expandera", + "Common.Views.History.textShowAll": "Visa detaljerade ändringar", + "Common.Views.History.textVer": "ver.", "Common.Views.ImageFromUrlDialog.textUrl": "Klistra in en bilds URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Detta fält är obligatoriskt", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"", @@ -116,10 +194,19 @@ "Common.Views.InsertTableDialog.txtTitle": "Tabellstorlek", "Common.Views.InsertTableDialog.txtTitleSplit": "Dela cell", "Common.Views.LanguageDialog.labelSelect": "Välj språk för dokumentet", + "Common.Views.ListSettingsDialog.textBulleted": "Punktad", + "Common.Views.ListSettingsDialog.textNumbering": "Numrerad", + "Common.Views.ListSettingsDialog.tipChange": "Ändra punktsymbol", + "Common.Views.ListSettingsDialog.txtBullet": "Bullet", "Common.Views.ListSettingsDialog.txtColor": "Färg", + "Common.Views.ListSettingsDialog.txtNewBullet": "New bullet", + "Common.Views.ListSettingsDialog.txtNone": "ingen", "Common.Views.ListSettingsDialog.txtOfText": "% av text", "Common.Views.ListSettingsDialog.txtSize": "Storlek", "Common.Views.ListSettingsDialog.txtStart": "Börja på", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", + "Common.Views.ListSettingsDialog.txtTitle": "Listinställningar", + "Common.Views.ListSettingsDialog.txtType": "Typ", "Common.Views.OpenDialog.closeButtonText": "Stäng fil", "Common.Views.OpenDialog.txtEncoding": "Teckenkodning", "Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord.", @@ -162,6 +249,8 @@ "Common.Views.ReviewChanges.tipCoAuthMode": "Ställ in samredigeringsläge", "Common.Views.ReviewChanges.tipCommentRem": "Ta bort kommentarer", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Ta bort aktuella kommentarer", + "Common.Views.ReviewChanges.tipCommentResolve": "Lös kommentarer", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Lös aktuella kommentarer", "Common.Views.ReviewChanges.tipHistory": "Visa versionshistorik", "Common.Views.ReviewChanges.tipRejectCurrent": "Avvisa nuvarande ändring", "Common.Views.ReviewChanges.tipReview": "Spåra ändringar", @@ -175,11 +264,17 @@ "Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptera nuvarande ändring", "Common.Views.ReviewChanges.txtChat": "Chatt", "Common.Views.ReviewChanges.txtClose": "Stäng", + "Common.Views.ReviewChanges.txtCoAuthMode": "Redigera samtidigt", "Common.Views.ReviewChanges.txtCommentRemAll": "Ta bort alla kommentarer", "Common.Views.ReviewChanges.txtCommentRemCurrent": "Ta bort aktuella kommentarer", "Common.Views.ReviewChanges.txtCommentRemMy": "Ta bort mina kommentarer", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Ta bort mina aktuella kommentarer", "Common.Views.ReviewChanges.txtCommentRemove": "Ta bort", + "Common.Views.ReviewChanges.txtCommentResolve": "Lös", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Lös alla kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Lös aktuella kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Lös mina kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Lös mina nuvarande kommentarer", "Common.Views.ReviewChanges.txtDocLang": "Språk", "Common.Views.ReviewChanges.txtFinal": "Alla ändringar accepterade (Förhandsvisning)", "Common.Views.ReviewChanges.txtFinalCap": "Slutlig", @@ -217,6 +312,7 @@ "Common.Views.SignDialog.textChange": "Ändra", "Common.Views.SignDialog.textInputName": "Infoga undertecknares namn", "Common.Views.SignDialog.textItalic": "Kursiv", + "Common.Views.SignDialog.textNameError": "Undertecknare får inte vara tom.", "Common.Views.SignDialog.textPurpose": "Syfte för att underteckna det här dokumentet", "Common.Views.SignDialog.textSelect": "Välj", "Common.Views.SignDialog.textSelectImage": "Välj bild", @@ -235,16 +331,41 @@ "Common.Views.SignSettingsDialog.textShowDate": "Visa datum för signatur på signaturraden", "Common.Views.SignSettingsDialog.textTitle": "Skapa signatur", "Common.Views.SignSettingsDialog.txtEmpty": "Detta fält är obligatoriskt", + "Common.Views.SymbolTableDialog.textCharacter": "Tecken", "Common.Views.SymbolTableDialog.textCode": "Unicode HEX värde", + "Common.Views.SymbolTableDialog.textCopyright": "Upphovsrättstecken", + "Common.Views.SymbolTableDialog.textDCQuote": "Avslutande dubbelt citattecken", + "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote", + "Common.Views.SymbolTableDialog.textEllipsis": "Horisontell ellips", + "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", + "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", + "Common.Views.SymbolTableDialog.textEnDash": "En Dash", + "Common.Views.SymbolTableDialog.textEnSpace": "En Space", "Common.Views.SymbolTableDialog.textFont": "Font", + "Common.Views.SymbolTableDialog.textNBHyphen": "Icke-brytande bindestreck", + "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space", + "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow tecken", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", "Common.Views.SymbolTableDialog.textRange": "Område", "Common.Views.SymbolTableDialog.textRecent": "Tidigare använda symboler", + "Common.Views.SymbolTableDialog.textRegistered": "Registrerat tecken", + "Common.Views.SymbolTableDialog.textSCQuote": "Avslutande enkelt citattecken", + "Common.Views.SymbolTableDialog.textSection": "Avsnittstecken", "Common.Views.SymbolTableDialog.textShortcut": "Snabbtangent", + "Common.Views.SymbolTableDialog.textSHyphen": "Mjuk bindestreck", + "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote", + "Common.Views.SymbolTableDialog.textSpecial": "Specialtecken", "Common.Views.SymbolTableDialog.textSymbols": "Symboler", "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Varumärkesymbol", + "Common.Views.UserNameDialog.textDontShow": "Fråga inte igen", + "Common.Views.UserNameDialog.textLabel": "Etikett:", + "Common.Views.UserNameDialog.textLabelError": "Etiketten får inte vara tom.", + "PE.Controllers.LeftMenu.leavePageText": "Alla ändringar som inte sparats i detta dokument kommer att gå förlorade.
    Klicka på \"Avbryt\" och sedan \"Spara\" för att spara dem. Klicka på \"OK\" för att kasta alla ändringar som inte sparats.", "PE.Controllers.LeftMenu.newDocumentTitle": "Ej nanmngiven Presentation", "PE.Controllers.LeftMenu.notcriticalErrorTitle": "Varning", "PE.Controllers.LeftMenu.requestEditRightsText": "Begär rätt att editera...", + "PE.Controllers.LeftMenu.textLoadHistory": "Laddar versionshistorik...", "PE.Controllers.LeftMenu.textNoTextFound": "De data som du har letat efter kunde inte hittas. Ändra dina sökalternativ.", "PE.Controllers.LeftMenu.textReplaceSkipped": "Ersättningen har gjorts. {0} händelser hoppades över.", "PE.Controllers.LeftMenu.textReplaceSuccess": "Sökningen har gjorts. Förekomster som ersatts: {0}", @@ -260,6 +381,7 @@ "PE.Controllers.Main.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.
    Vänligen kontakta din systemadministratör.", "PE.Controllers.Main.errorBadImageUrl": "Bildens URL är felaktig", "PE.Controllers.Main.errorCoAuthoringDisconnect": "Serveranslutning förlorade. Dokumentet kan inte redigeras just nu.", + "PE.Controllers.Main.errorComboSeries": "Välj minst två serier med data för att skapa ett kombinationsschema.", "PE.Controllers.Main.errorConnectToServer": "Dokumentet kunde inte sparas. . Kontrollera anslutningsinställningarna eller kontakta administratören
    När du klickar på \"OK\" -knappen, kommer du att bli ombedd att ladda ner dokumentet.", "PE.Controllers.Main.errorDatabaseConnection": "Externt fel.
    Databasanslutningsfel. Kontakta support om felet kvarstår.", "PE.Controllers.Main.errorDataEncrypted": "Krypterade ändringar har tagits emot, de kan inte avkodas.", @@ -278,6 +400,7 @@ "PE.Controllers.Main.errorSessionAbsolute": "Dokumentet redigeringssession har löpt ut. Vänligen ladda om sidan.", "PE.Controllers.Main.errorSessionIdle": "Dokumentet har inte redigerats under en ganska lång tid. Var vänlig att ladda om sidan.", "PE.Controllers.Main.errorSessionToken": "Anslutningen till servern har avbrutits. Vänligen ladda om sidan.", + "PE.Controllers.Main.errorSetPassword": "Lösenord kunde inte ställas in.", "PE.Controllers.Main.errorStockChart": "Felaktig ordningsföljd. För att bygga ett aktiediagram placerar du uppgifterna på arket i följande ordning:
    öppningspris, maxpris, minipris, slutkurs.", "PE.Controllers.Main.errorToken": "Dokumentets säkerhetstoken är inte korrekt.
    Vänligen kontakta din dokumentserver administratör.", "PE.Controllers.Main.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
    Var vänlig och Kontakta din dokumentserver administratör.", @@ -287,6 +410,7 @@ "PE.Controllers.Main.errorUsersExceed": "Antalet användare som tillåts av licensen överskreds", "PE.Controllers.Main.errorViewerDisconnect": "Anslutningen bröts. Du kan fortfarande se dokumentet
    men kommer inte att kunna ladda ner eller skriva ut tills anslutningen är återställd.", "PE.Controllers.Main.leavePageText": "Du har osparade ändringar i presentatioen. Klicka på \"Stanna på den här sidan\" och sedan på \"Spara\" för att spara. Klicka på \"Lämna den här sidan\" för att ta bort alla ändringar som inte har sparats.", + "PE.Controllers.Main.leavePageTextOnClose": "Alla ej sparade ändringar i presentationen kommer att gå förlorade.
    Klicka på \"Avbryt\" och sedan på \"Spara\" för att spara dem. Klicka på \"OK\" för att kassera alla ändringar som inte sparats.", "PE.Controllers.Main.loadFontsTextText": "Laddar data...", "PE.Controllers.Main.loadFontsTitleText": "Laddar data", "PE.Controllers.Main.loadFontTextText": "Laddar data...", @@ -309,6 +433,7 @@ "PE.Controllers.Main.requestEditFailedMessageText": "Någon redigerar denna presentation. Försök igen senare.", "PE.Controllers.Main.requestEditFailedTitleText": "Ingen behörighet", "PE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas", + "PE.Controllers.Main.saveErrorTextDesktop": "Den här filen kan inte sparas eller skapas.
    Möjliga orsaker är:
    1. Filen är skrivskyddad.
    2. Filen redigeras av andra användare.
    3. Disken är full eller skadad.", "PE.Controllers.Main.savePreparingText": "Förbereder att spara", "PE.Controllers.Main.savePreparingTitle": "Förbereder att spara. Vänta...", "PE.Controllers.Main.saveTextText": "Sparar presentationen...", @@ -324,12 +449,19 @@ "PE.Controllers.Main.textCloseTip": "Klicka för att stänga tipset", "PE.Controllers.Main.textContactUs": "Kontakta säljare", "PE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren.
    Kontakta vår försäljningsavdelning för att få en offert.", + "PE.Controllers.Main.textGuest": "Gäst", + "PE.Controllers.Main.textHasMacros": "Filen innehåller automatiska makron.
    Vill du köra makron?", "PE.Controllers.Main.textLoadingDocument": "Laddar presentationen", + "PE.Controllers.Main.textLongName": "Ange namn (max 128 tecken).", "PE.Controllers.Main.textNoLicenseTitle": "%1 anslutningsbegränsning", "PE.Controllers.Main.textPaidFeature": "Betald funktion", + "PE.Controllers.Main.textRemember": "Kom ihåg mitt val för alla filer", + "PE.Controllers.Main.textRenameError": "Användarnamn får inte var tomt.", + "PE.Controllers.Main.textRenameLabel": "Ange namn för samarbete", "PE.Controllers.Main.textShape": "Form", "PE.Controllers.Main.textStrict": "Strikt läge", "PE.Controllers.Main.textTryUndoRedo": "Ångra/Återställ-funktionerna är inaktiva i snabbt samredigeringsläget.
    Klicka på knappen 'Strikt läge' för att växla till strikt samredigeringsläge och redigera filen utan andra användares påverkan och skicka dina ändringar först efter att du har sparat dem. Du kan växla mellan samredigeringslägena med hjälp av avancerade inställningar.", + "PE.Controllers.Main.textTryUndoRedoWarn": "Ångra-funktionerna är inaktiverade för snabb samredigeringsläge.", "PE.Controllers.Main.titleLicenseExp": "Licensen har gått ut", "PE.Controllers.Main.titleServerVersion": "Editor uppdaterad", "PE.Controllers.Main.txtAddFirstSlide": "Klicka för att lägga till den första bilden", @@ -337,11 +469,14 @@ "PE.Controllers.Main.txtArt": "Din text här", "PE.Controllers.Main.txtBasicShapes": "Former", "PE.Controllers.Main.txtButtons": "Knappar", + "PE.Controllers.Main.txtCallouts": "Pratbubbla", "PE.Controllers.Main.txtCharts": "Diagram", + "PE.Controllers.Main.txtClipArt": "ClipArt", "PE.Controllers.Main.txtDateTime": "Datum och tid", "PE.Controllers.Main.txtDiagram": "SmartArt", "PE.Controllers.Main.txtDiagramTitle": "Diagramtitel", "PE.Controllers.Main.txtEditingMode": "Ställ in redigeringsläge...", + "PE.Controllers.Main.txtErrorLoadHistory": "Gick inte ladda historik", "PE.Controllers.Main.txtFiguredArrows": "Figurpilar", "PE.Controllers.Main.txtFooter": "Sidfot", "PE.Controllers.Main.txtHeader": "Sidhuvud", @@ -351,9 +486,16 @@ "PE.Controllers.Main.txtMath": "Matte", "PE.Controllers.Main.txtMedia": "Media", "PE.Controllers.Main.txtNeedSynchronize": "Du har uppdateringar", + "PE.Controllers.Main.txtNone": "ingen", "PE.Controllers.Main.txtPicture": "Bild", "PE.Controllers.Main.txtRectangles": "Rektanglar", "PE.Controllers.Main.txtSeries": "Serier", + "PE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)", + "PE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)", + "PE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)", + "PE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)", + "PE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)", + "PE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)", "PE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tillbaka eller föregående knapp", "PE.Controllers.Main.txtShape_actionButtonBeginning": "Startknapp", "PE.Controllers.Main.txtShape_actionButtonBlank": "Tömknapp", @@ -367,11 +509,26 @@ "PE.Controllers.Main.txtShape_actionButtonReturn": "Återknapp", "PE.Controllers.Main.txtShape_actionButtonSound": "Ljudknapp", "PE.Controllers.Main.txtShape_arc": "Båge", + "PE.Controllers.Main.txtShape_bentArrow": "Böjd pil", "PE.Controllers.Main.txtShape_bentConnector5": "Armbågskontakt", "PE.Controllers.Main.txtShape_bentConnector5WithArrow": "Armbågspilkontakt", "PE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Armbågsdubbelpil", + "PE.Controllers.Main.txtShape_bentUpArrow": "Böjd uppåtpil", "PE.Controllers.Main.txtShape_bevel": "Fasning", + "PE.Controllers.Main.txtShape_blockArc": "Block båge", + "PE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1", + "PE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2", + "PE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3", + "PE.Controllers.Main.txtShape_bracePair": "Dubbelklammer", + "PE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)", + "PE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)", + "PE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)", + "PE.Controllers.Main.txtShape_can": "Burk", + "PE.Controllers.Main.txtShape_chevron": "Chevron", + "PE.Controllers.Main.txtShape_chord": "Chord", + "PE.Controllers.Main.txtShape_circularArrow": "Cirkulär pil", "PE.Controllers.Main.txtShape_cloud": "Moln", + "PE.Controllers.Main.txtShape_cloudCallout": "Pratbubbla moln", "PE.Controllers.Main.txtShape_corner": "Hörn", "PE.Controllers.Main.txtShape_cube": "Kub", "PE.Controllers.Main.txtShape_curvedConnector3": "Böjd anslutning", @@ -385,8 +542,13 @@ "PE.Controllers.Main.txtShape_diagStripe": "Diagonal rand", "PE.Controllers.Main.txtShape_diamond": "Diamant", "PE.Controllers.Main.txtShape_dodecagon": "Dodecagon", + "PE.Controllers.Main.txtShape_donut": "Donut", + "PE.Controllers.Main.txtShape_doubleWave": "Double Wave", "PE.Controllers.Main.txtShape_downArrow": "Nedåtpil", + "PE.Controllers.Main.txtShape_downArrowCallout": "Pratbubbla nedåtpil", "PE.Controllers.Main.txtShape_ellipse": "Ellips", + "PE.Controllers.Main.txtShape_ellipseRibbon": "Curved Down Ribbon", + "PE.Controllers.Main.txtShape_ellipseRibbon2": "Curved Up Ribbon", "PE.Controllers.Main.txtShape_flowChartAlternateProcess": "Födesschema: Alternativ process", "PE.Controllers.Main.txtShape_flowChartCollate": "Flödesschema: Collate", "PE.Controllers.Main.txtShape_flowChartConnector": "Flödesschema: Anslutning", @@ -426,7 +588,13 @@ "PE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1", "PE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2", "PE.Controllers.Main.txtShape_leftArrow": "Vänsterpil", + "PE.Controllers.Main.txtShape_leftArrowCallout": "Pratbubbla vänsterpil", + "PE.Controllers.Main.txtShape_leftBrace": "Vänsterklammer", + "PE.Controllers.Main.txtShape_leftBracket": "Vänster hakparentes", "PE.Controllers.Main.txtShape_leftRightArrow": "Vänster-höger-pil", + "PE.Controllers.Main.txtShape_leftRightArrowCallout": "Pratbubbla vänster-höger-pil", + "PE.Controllers.Main.txtShape_leftRightUpArrow": "Vänster höger uppåtpil", + "PE.Controllers.Main.txtShape_leftUpArrow": "Vänster uppåtpil", "PE.Controllers.Main.txtShape_lightningBolt": "Blixt", "PE.Controllers.Main.txtShape_line": "Linje", "PE.Controllers.Main.txtShape_lineWithArrow": "Pil", @@ -439,6 +607,7 @@ "PE.Controllers.Main.txtShape_mathPlus": "Plus", "PE.Controllers.Main.txtShape_moon": "Måne", "PE.Controllers.Main.txtShape_noSmoking": "\"Ingen\" symbol", + "PE.Controllers.Main.txtShape_notchedRightArrow": "Skårad högerpil", "PE.Controllers.Main.txtShape_octagon": "Oktagon", "PE.Controllers.Main.txtShape_parallelogram": "Parallellogram", "PE.Controllers.Main.txtShape_pentagon": "Pentagon", @@ -448,26 +617,50 @@ "PE.Controllers.Main.txtShape_polyline1": "Klotter", "PE.Controllers.Main.txtShape_polyline2": "Fri form", "PE.Controllers.Main.txtShape_quadArrow": "Rundad rektangel", + "PE.Controllers.Main.txtShape_quadArrowCallout": "Fyrdelad pil med pratbubbla", "PE.Controllers.Main.txtShape_rect": "Rektangel", + "PE.Controllers.Main.txtShape_ribbon": "Down Ribbon", + "PE.Controllers.Main.txtShape_ribbon2": "Uppåt band", "PE.Controllers.Main.txtShape_rightArrow": "Högerpil", + "PE.Controllers.Main.txtShape_rightArrowCallout": "Högerpil pratbubbla", + "PE.Controllers.Main.txtShape_rightBrace": "Högerklammer", + "PE.Controllers.Main.txtShape_rightBracket": "Höger hakparentes", "PE.Controllers.Main.txtShape_round1Rect": "Rektangel med ett rundat hörn", "PE.Controllers.Main.txtShape_round2DiagRect": "Rektangel med rundade hörn diagonalt", "PE.Controllers.Main.txtShape_round2SameRect": "Rektangel med rundade hörn samma sida", "PE.Controllers.Main.txtShape_roundRect": "Rektangel med avrundade hörn", "PE.Controllers.Main.txtShape_rtTriangle": "Höger triangel", "PE.Controllers.Main.txtShape_smileyFace": "Glad gubbe", + "PE.Controllers.Main.txtShape_snip1Rect": "Rektangel med ett klippt hörn", + "PE.Controllers.Main.txtShape_snip2DiagRect": "Rektangel med klippta hörn diagonalt", + "PE.Controllers.Main.txtShape_snip2SameRect": "Rektangel med klippta hörn på en sida", + "PE.Controllers.Main.txtShape_snipRoundRect": "Rektangel med ett klippt och rundat hörn", "PE.Controllers.Main.txtShape_spline": "Kurva", + "PE.Controllers.Main.txtShape_star10": "10-punkts stjärna", + "PE.Controllers.Main.txtShape_star12": "12-punkts stjärna", + "PE.Controllers.Main.txtShape_star16": "16-punkts stjärna", + "PE.Controllers.Main.txtShape_star24": "24-punkts stjärna", + "PE.Controllers.Main.txtShape_star32": "32-punkts stjärna", + "PE.Controllers.Main.txtShape_star4": "4-punkts stjärna", + "PE.Controllers.Main.txtShape_star5": "5-punkts stjärna", + "PE.Controllers.Main.txtShape_star6": "6-punkts stjärna", + "PE.Controllers.Main.txtShape_star7": "7-punkts stjärna", + "PE.Controllers.Main.txtShape_star8": "8-punkts stjärna", "PE.Controllers.Main.txtShape_stripedRightArrow": "Genomstruken högerpil", "PE.Controllers.Main.txtShape_sun": "Sol", "PE.Controllers.Main.txtShape_teardrop": "Tår", "PE.Controllers.Main.txtShape_textRect": "Textruta", + "PE.Controllers.Main.txtShape_trapezoid": "Trapes", "PE.Controllers.Main.txtShape_triangle": "Triangel", "PE.Controllers.Main.txtShape_upArrow": "Pil upp", + "PE.Controllers.Main.txtShape_upArrowCallout": "Pratbubbla uppåtpil", "PE.Controllers.Main.txtShape_upDownArrow": "Upp-Ner pil", "PE.Controllers.Main.txtShape_uturnArrow": "U-sväng pil", "PE.Controllers.Main.txtShape_verticalScroll": "Vertikal rullning", "PE.Controllers.Main.txtShape_wave": "Våg", "PE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout", + "PE.Controllers.Main.txtShape_wedgeRectCallout": "Pratbubbla rektangel", + "PE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rundad rektangel pratbubbla", "PE.Controllers.Main.txtSldLtTBlank": "Töm", "PE.Controllers.Main.txtSldLtTChart": "Diagram", "PE.Controllers.Main.txtSldLtTChartAndTx": "Diagram och text", @@ -509,7 +702,9 @@ "PE.Controllers.Main.txtSlideText": "Bildtext", "PE.Controllers.Main.txtSlideTitle": "Titel", "PE.Controllers.Main.txtStarsRibbons": "Stjärnor & banner", + "PE.Controllers.Main.txtTheme_basic": "Grundläggande", "PE.Controllers.Main.txtTheme_blank": "Töm", + "PE.Controllers.Main.txtTheme_classic": "Klassisk", "PE.Controllers.Main.txtTheme_corner": "Hörn", "PE.Controllers.Main.txtTheme_dotted": "Prickad", "PE.Controllers.Main.txtTheme_green": "Grön", @@ -535,6 +730,8 @@ "PE.Controllers.Main.warnBrowserZoom": "Din webbläsares nuvarande zoominställningar stöds inte fullt ut. Återställ till standard zoom genom att trycka på Ctrl + 0.", "PE.Controllers.Main.warnLicenseExceeded": "Antalet samtidiga anslutningar till dokumentservern har överskridits och dokumentet öppnas endast för visning.
    Vänligen kontakta din systemadministratör för mer information.", "PE.Controllers.Main.warnLicenseExp": "Din licens har gått ut.
    Förnya din licens och uppdatera sidan.", + "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licensen ogiltig.
    Ingen access till redigeringsfunktioner.
    Kontakta din administratör.", + "PE.Controllers.Main.warnLicenseLimitedRenewed": "Licensen måste förnyas.
    Endast begränsad funktionalitet.
    Kontakta din administratör för full funktionalitet.", "PE.Controllers.Main.warnLicenseUsersExceeded": "Antalet samtidiga användare har överskridits och dokumentet öppnas endast för visning.
    Vänligen kontakta din systemadministratör för mer information.", "PE.Controllers.Main.warnNoLicense": "Den här versionen av %1 har vissa begränsningar för samtidiga anslutningar till dokumentservern.
    Om du behöver mer, överväg att köpa en kommersiell licens.", "PE.Controllers.Main.warnNoLicenseUsers": "Den här versionen av %1 har vissa begränsningar för samtidiga användare.
    Om du behöver mer, överväg att köpa en kommersiell licens.", @@ -562,22 +759,27 @@ "PE.Controllers.Toolbar.txtAccent_ArrowL": "Vänster pil ovanför", "PE.Controllers.Toolbar.txtAccent_ArrowR": "Högerriktad pil ovanför", "PE.Controllers.Toolbar.txtAccent_Bar": "Stapel", + "PE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", "PE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", "PE.Controllers.Toolbar.txtAccent_BorderBox": "Boxad formel (med hållare)", "PE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxad formel (exempel)", "PE.Controllers.Toolbar.txtAccent_Check": "Markera", + "PE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", "PE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Oberbrace", "PE.Controllers.Toolbar.txtAccent_Custom_1": "Vektor A", "PE.Controllers.Toolbar.txtAccent_Custom_2": "ABC med overbar", + "PE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y med overbar", "PE.Controllers.Toolbar.txtAccent_DDDot": "Trippel punkt", "PE.Controllers.Toolbar.txtAccent_DDot": "Dubbelpunkt", "PE.Controllers.Toolbar.txtAccent_Dot": "Punkt", + "PE.Controllers.Toolbar.txtAccent_DoubleBar": "Dubbel overbar", "PE.Controllers.Toolbar.txtAccent_Grave": "Grav", "PE.Controllers.Toolbar.txtAccent_GroupBot": "Gruppera tecken under", "PE.Controllers.Toolbar.txtAccent_GroupTop": "Gruppera tecken ovanför", "PE.Controllers.Toolbar.txtAccent_HarpoonL": "Vänster harpun ovanför", "PE.Controllers.Toolbar.txtAccent_HarpoonR": "Högerriktad harpunpil ovanför", "PE.Controllers.Toolbar.txtAccent_Hat": "Hatt", + "PE.Controllers.Toolbar.txtAccent_Smile": "Kort", "PE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", "PE.Controllers.Toolbar.txtBracket_Angle": "Parenteser", "PE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Parentes med avgränsare", @@ -587,6 +789,7 @@ "PE.Controllers.Toolbar.txtBracket_Curve": "Parenteser", "PE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Parentes med avgränsare", "PE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Enkel gaffling", + "PE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Enkel parentes", "PE.Controllers.Toolbar.txtBracket_Custom_1": "Fall (två villkor)", "PE.Controllers.Toolbar.txtBracket_Custom_2": "Fall (tre villkor)", "PE.Controllers.Toolbar.txtBracket_Custom_3": "Stapla objekt", @@ -595,16 +798,30 @@ "PE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial koefficient", "PE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial koefficient", "PE.Controllers.Toolbar.txtBracket_Line": "Parenteser", + "PE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Enkel parentes", + "PE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Enkel parentes", "PE.Controllers.Toolbar.txtBracket_LineDouble": "Parenteser", + "PE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Enkel parentes", + "PE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Enkel parentes", "PE.Controllers.Toolbar.txtBracket_LowLim": "Parenteser", + "PE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Enkel parentes", + "PE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Enkel parentes", "PE.Controllers.Toolbar.txtBracket_Round": "Parenteser", "PE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Parentes med avgränsare", + "PE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Enkel parentes", + "PE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Enkel parentes", "PE.Controllers.Toolbar.txtBracket_Square": "Parenteser", "PE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Parenteser", "PE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Parenteser", + "PE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Enkel parentes", + "PE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Enkel parentes", "PE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Parenteser", "PE.Controllers.Toolbar.txtBracket_SquareDouble": "Parenteser", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Enkel parentes", + "PE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Enkel parentes", "PE.Controllers.Toolbar.txtBracket_UppLim": "Parenteser", + "PE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Enkel parentes", + "PE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Enkel parentes", "PE.Controllers.Toolbar.txtFractionDiagonal": "Skev fraktion", "PE.Controllers.Toolbar.txtFractionDifferential_1": "Differentiell", "PE.Controllers.Toolbar.txtFractionDifferential_2": "Differentiell", @@ -626,10 +843,14 @@ "PE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperboliska inverterad sine funktion", "PE.Controllers.Toolbar.txtFunction_1_Tan": "Inverterad tangent funktion", "PE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperboliska inverterad tangent funktion", + "PE.Controllers.Toolbar.txtFunction_Cos": "Cosinus funktion", "PE.Controllers.Toolbar.txtFunction_Cosh": "Hyperboliska cosine funktion", + "PE.Controllers.Toolbar.txtFunction_Cot": "Cotangens funktion", "PE.Controllers.Toolbar.txtFunction_Coth": "Hyperboliska cotangent funktion", + "PE.Controllers.Toolbar.txtFunction_Csc": "Cosekant funktion", "PE.Controllers.Toolbar.txtFunction_Csch": "Hyperboliska cosekanten funktion", "PE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", + "PE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", "PE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formel", "PE.Controllers.Toolbar.txtFunction_Sec": "Sekant funktion", "PE.Controllers.Toolbar.txtFunction_Sech": "Hyperboliska secant funktion", @@ -673,6 +894,11 @@ "PE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summering", "PE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt", "PE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Koppla ihop", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "PE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", "PE.Controllers.Toolbar.txtLargeOperator_Intersection": "Genomskärning", "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Genomskärning", "PE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Genomskärning", @@ -701,16 +927,28 @@ "PE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritm", "PE.Controllers.Toolbar.txtLimitLog_Max": "Max", "PE.Controllers.Toolbar.txtLimitLog_Min": "Minst", + "PE.Controllers.Toolbar.txtMatrix_1_2": "1x2 tom matris", + "PE.Controllers.Toolbar.txtMatrix_1_3": "1x3 tom matris", + "PE.Controllers.Toolbar.txtMatrix_2_1": "2x1 tom matris", + "PE.Controllers.Toolbar.txtMatrix_2_2": "2x2 tom matris", "PE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Tom matris med parenteser", "PE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Tom matris med parenteser", "PE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Tom matris med parenteser", "PE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Tom matris med parenteser", + "PE.Controllers.Toolbar.txtMatrix_2_3": "2x3 tom matris", + "PE.Controllers.Toolbar.txtMatrix_3_1": "3x1 tom matris", + "PE.Controllers.Toolbar.txtMatrix_3_2": "3x2 tom matris", + "PE.Controllers.Toolbar.txtMatrix_3_3": "3x3 tom matris", "PE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baslinjeprickar", "PE.Controllers.Toolbar.txtMatrix_Dots_Center": "Prickar i mitten", "PE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonala punkter", "PE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertikala punkter", "PE.Controllers.Toolbar.txtMatrix_Flat_Round": "Gles matris", "PE.Controllers.Toolbar.txtMatrix_Flat_Square": "Gles matris", + "PE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identitetsmatris", + "PE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identitetsmatris", + "PE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identitetsmatris", + "PE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identitetsmatris", "PE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Höger vänsterpil under", "PE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Höger-vänster pil ovanför", "PE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Vänsterpil under", @@ -718,6 +956,7 @@ "PE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Högerriktad pil nedanför", "PE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Högerriktad pil ovanför", "PE.Controllers.Toolbar.txtOperator_ColonEquals": "Kolon lika med", + "PE.Controllers.Toolbar.txtOperator_Custom_1": "Avkastning", "PE.Controllers.Toolbar.txtOperator_Custom_2": "Delta-utbyten", "PE.Controllers.Toolbar.txtOperator_Definition": "Lika med enligt definition", "PE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta lika med", @@ -743,6 +982,7 @@ "PE.Controllers.Toolbar.txtScriptCustom_4": "Skript", "PE.Controllers.Toolbar.txtScriptSub": "Nedsänkt", "PE.Controllers.Toolbar.txtScriptSubSup": "Nedsänkt-upphöjd", + "PE.Controllers.Toolbar.txtScriptSubSupLeft": "Vänster subskript-superscript", "PE.Controllers.Toolbar.txtScriptSup": "Upphöjd", "PE.Controllers.Toolbar.txtSymbol_about": "Ungefär", "PE.Controllers.Toolbar.txtSymbol_additional": "Komplettera", @@ -750,10 +990,14 @@ "PE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", "PE.Controllers.Toolbar.txtSymbol_approx": "Nästa lika med", "PE.Controllers.Toolbar.txtSymbol_ast": "Asterisk operator", + "PE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "PE.Controllers.Toolbar.txtSymbol_beth": "Slå vad", + "PE.Controllers.Toolbar.txtSymbol_bullet": "Punktlista typ", "PE.Controllers.Toolbar.txtSymbol_cap": "Genomskärning", "PE.Controllers.Toolbar.txtSymbol_cbrt": "Kubikrot", "PE.Controllers.Toolbar.txtSymbol_cdots": "Horisontell elips i mitten", "PE.Controllers.Toolbar.txtSymbol_celsius": "Grader celsius", + "PE.Controllers.Toolbar.txtSymbol_chi": "Chi", "PE.Controllers.Toolbar.txtSymbol_cong": "Ungefär lika med", "PE.Controllers.Toolbar.txtSymbol_cup": "Koppla ihop", "PE.Controllers.Toolbar.txtSymbol_ddots": "Ner höger diagonal ellips", @@ -781,6 +1025,7 @@ "PE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", "PE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "PE.Controllers.Toolbar.txtSymbol_leftarrow": "Vänsterpil", + "PE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Vänster-höger pil", "PE.Controllers.Toolbar.txtSymbol_leq": "Mindre än eller lika med", "PE.Controllers.Toolbar.txtSymbol_less": "Mindre än", "PE.Controllers.Toolbar.txtSymbol_ll": "Mycket mindre än", @@ -805,12 +1050,14 @@ "PE.Controllers.Toolbar.txtSymbol_psi": "Psi", "PE.Controllers.Toolbar.txtSymbol_qdrt": "Fjärde roten", "PE.Controllers.Toolbar.txtSymbol_qed": "Slut på bevis", + "PE.Controllers.Toolbar.txtSymbol_rddots": "Diagonal ellips", "PE.Controllers.Toolbar.txtSymbol_rho": "Rho", "PE.Controllers.Toolbar.txtSymbol_rightarrow": "Högerpil", "PE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", "PE.Controllers.Toolbar.txtSymbol_sqrt": "Radikal skylt", "PE.Controllers.Toolbar.txtSymbol_tau": "Tau", "PE.Controllers.Toolbar.txtSymbol_therefore": "Därför", + "PE.Controllers.Toolbar.txtSymbol_theta": "Theta", "PE.Controllers.Toolbar.txtSymbol_times": "Multiplikationstecken", "PE.Controllers.Toolbar.txtSymbol_uparrow": "Pil upp", "PE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", @@ -819,8 +1066,10 @@ "PE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant", "PE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant", "PE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", + "PE.Controllers.Toolbar.txtSymbol_vartheta": "Theta variant", "PE.Controllers.Toolbar.txtSymbol_vdots": "Vertikal ellips", "PE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "PE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "PE.Controllers.Viewport.textFitPage": "Anpassa till bild", "PE.Controllers.Viewport.textFitWidth": "Anpassa till bredd", "PE.Views.ChartSettings.textAdvanced": "Visa avancerade inställningar", @@ -905,6 +1154,7 @@ "PE.Views.DocumentHolder.textFlipH": "Vänd horisontellt", "PE.Views.DocumentHolder.textFlipV": "Vänd vertikalt", "PE.Views.DocumentHolder.textFromFile": "Från fil", + "PE.Views.DocumentHolder.textFromStorage": "Från lagring", "PE.Views.DocumentHolder.textFromUrl": "Från URL", "PE.Views.DocumentHolder.textNextPage": "Nästa bild", "PE.Views.DocumentHolder.textPaste": "Klistra in", @@ -987,6 +1237,7 @@ "PE.Views.DocumentHolder.txtMatrixAlign": "Matrisjustering", "PE.Views.DocumentHolder.txtNewSlide": "Ny bild", "PE.Views.DocumentHolder.txtOverbar": "Stapel över text", + "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", @@ -1035,6 +1286,7 @@ "PE.Views.FileMenu.btnCreateNewCaption": "Skapa ny", "PE.Views.FileMenu.btnDownloadCaption": "Ladda ner som...", "PE.Views.FileMenu.btnHelpCaption": "Hjälp...", + "PE.Views.FileMenu.btnHistoryCaption": "Versionshistorik", "PE.Views.FileMenu.btnInfoCaption": "Presentation info...", "PE.Views.FileMenu.btnPrintCaption": "Skriv ut", "PE.Views.FileMenu.btnProtectCaption": "Skydda", @@ -1084,15 +1336,20 @@ "PE.Views.FileMenuPanels.Settings.strAlignGuides": "Aktivera justeringsguider", "PE.Views.FileMenuPanels.Settings.strAutoRecover": "Aktivera automatisk återställning", "PE.Views.FileMenuPanels.Settings.strAutosave": "Aktivera spara automatiskt", + "PE.Views.FileMenuPanels.Settings.strCoAuthMode": "Redigera samtidigt", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescFast": "Andra användare kommer att se dina ändringar på en gång", "PE.Views.FileMenuPanels.Settings.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom", "PE.Views.FileMenuPanels.Settings.strFast": "Snabb", "PE.Views.FileMenuPanels.Settings.strFontRender": "Fontförslag", "PE.Views.FileMenuPanels.Settings.strForcesave": "Spara alltid till server (annars spara till servern när dokumentet stängs)", "PE.Views.FileMenuPanels.Settings.strInputMode": "Aktivera hieroglyfer", + "PE.Views.FileMenuPanels.Settings.strMacrosSettings": "Makroinställningar", + "PE.Views.FileMenuPanels.Settings.strPaste": "Klipp ut, kopiera och klistra in", + "PE.Views.FileMenuPanels.Settings.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in", "PE.Views.FileMenuPanels.Settings.strShowChanges": "Samarbeta i realtid", "PE.Views.FileMenuPanels.Settings.strSpellCheckMode": "Aktivera stavningskontroll", "PE.Views.FileMenuPanels.Settings.strStrict": "Strikt", + "PE.Views.FileMenuPanels.Settings.strTheme": "Gränssnittstema", "PE.Views.FileMenuPanels.Settings.strUnit": "Måttenhet", "PE.Views.FileMenuPanels.Settings.strZoom": "Standard zoomvärde", "PE.Views.FileMenuPanels.Settings.text10Minutes": "Var 10:e minut", @@ -1106,6 +1363,7 @@ "PE.Views.FileMenuPanels.Settings.textForceSave": "Spara till server", "PE.Views.FileMenuPanels.Settings.textMinute": "Varje minut", "PE.Views.FileMenuPanels.Settings.txtAll": "Visa alla", + "PE.Views.FileMenuPanels.Settings.txtAutoCorrect": "Inställningar autokorrigering", "PE.Views.FileMenuPanels.Settings.txtCacheMode": "Standard cache-läge", "PE.Views.FileMenuPanels.Settings.txtCm": "Centimeter", "PE.Views.FileMenuPanels.Settings.txtFitSlide": "Anpassa till bild", @@ -1115,11 +1373,19 @@ "PE.Views.FileMenuPanels.Settings.txtLast": "Visa senaste", "PE.Views.FileMenuPanels.Settings.txtMac": "som OS X", "PE.Views.FileMenuPanels.Settings.txtNative": "Orginal", + "PE.Views.FileMenuPanels.Settings.txtProofing": "Korrektur", "PE.Views.FileMenuPanels.Settings.txtPt": "Punkt", + "PE.Views.FileMenuPanels.Settings.txtRunMacros": "Aktivera alla", + "PE.Views.FileMenuPanels.Settings.txtRunMacrosDesc": "Aktivera alla makron utan avisering", "PE.Views.FileMenuPanels.Settings.txtSpellCheck": "Stavningskontroll", + "PE.Views.FileMenuPanels.Settings.txtStopMacros": "Inaktivera allt", + "PE.Views.FileMenuPanels.Settings.txtStopMacrosDesc": "Inaktivera alla makron utan avisering", + "PE.Views.FileMenuPanels.Settings.txtWarnMacros": "Visa meddelanden", + "PE.Views.FileMenuPanels.Settings.txtWarnMacrosDesc": "Inaktivera alla makron med en avisering", "PE.Views.FileMenuPanels.Settings.txtWin": "som Windows", "PE.Views.HeaderFooterDialog.applyAllText": "Tillämpa på alla", "PE.Views.HeaderFooterDialog.applyText": "Tillämpa", + "PE.Views.HeaderFooterDialog.diffLanguage": "du kan inte använda ett datumformat på ett annat språk än bildmastern.
    För att ändra mastern, klicka på \"Apply to all\" istället för \"Apply\"", "PE.Views.HeaderFooterDialog.notcriticalErrorTitle": "Varning", "PE.Views.HeaderFooterDialog.textDateTime": "Datum och tid", "PE.Views.HeaderFooterDialog.textFixed": "Fast", @@ -1148,6 +1414,7 @@ "PE.Views.HyperlinkSettingsDialog.txtNext": "Nästa bild", "PE.Views.HyperlinkSettingsDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"", "PE.Views.HyperlinkSettingsDialog.txtPrev": "Föregående bild", + "PE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Detta fält är begränsat till 2083 tecken", "PE.Views.HyperlinkSettingsDialog.txtSlide": "Bild", "PE.Views.ImageSettings.textAdvanced": "Visa avancerade inställningar", "PE.Views.ImageSettings.textCrop": "Beskär", @@ -1158,6 +1425,7 @@ "PE.Views.ImageSettings.textFitSlide": "Anpassa till bild", "PE.Views.ImageSettings.textFlip": "Vänd", "PE.Views.ImageSettings.textFromFile": "Från fil", + "PE.Views.ImageSettings.textFromStorage": "Från lagring", "PE.Views.ImageSettings.textFromUrl": "Från URL", "PE.Views.ImageSettings.textHeight": "Höjd", "PE.Views.ImageSettings.textHint270": "Rotera 90° moturs", @@ -1196,7 +1464,9 @@ "PE.Views.LeftMenu.tipSupport": "Feedback & support", "PE.Views.LeftMenu.tipTitles": "Titlar", "PE.Views.LeftMenu.txtDeveloper": "Utvecklarläge", + "PE.Views.LeftMenu.txtLimit": "Begränsad åtkomst", "PE.Views.LeftMenu.txtTrial": "TESTLÄGE", + "PE.Views.LeftMenu.txtTrialDev": "Testutvecklarläge", "PE.Views.ParagraphSettings.strLineHeight": "Radavstånd", "PE.Views.ParagraphSettings.strParagraphSpacing": "Styckets avstånd", "PE.Views.ParagraphSettings.strSpacingAfter": "Efter", @@ -1264,12 +1534,14 @@ "PE.Views.ShapeSettings.strTransparency": "Opacitet", "PE.Views.ShapeSettings.strType": "Typ", "PE.Views.ShapeSettings.textAdvanced": "Visa avancerade inställningar", + "PE.Views.ShapeSettings.textAngle": "Vinkel", "PE.Views.ShapeSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.
    Vänligen ange ett värde mellan 0 och 1584 pt.", "PE.Views.ShapeSettings.textColor": "Färgfyllnad", "PE.Views.ShapeSettings.textDirection": "Riktning", "PE.Views.ShapeSettings.textEmptyPattern": "Inget mönster", "PE.Views.ShapeSettings.textFlip": "Vänd", "PE.Views.ShapeSettings.textFromFile": "Från fil", + "PE.Views.ShapeSettings.textFromStorage": "Från lagring", "PE.Views.ShapeSettings.textFromUrl": "Från URL", "PE.Views.ShapeSettings.textGradient": "Fyllning", "PE.Views.ShapeSettings.textGradientFill": "Fyllning", @@ -1281,14 +1553,18 @@ "PE.Views.ShapeSettings.textLinear": "Linjär", "PE.Views.ShapeSettings.textNoFill": "Ingen fyllning", "PE.Views.ShapeSettings.textPatternFill": "Mönster", + "PE.Views.ShapeSettings.textPosition": "Position", "PE.Views.ShapeSettings.textRadial": "Radiell", "PE.Views.ShapeSettings.textRotate90": "Rotera 90°", "PE.Views.ShapeSettings.textRotation": "Rotation", + "PE.Views.ShapeSettings.textSelectImage": "Välj bild", "PE.Views.ShapeSettings.textSelectTexture": "Välj", "PE.Views.ShapeSettings.textStretch": "Sträck", "PE.Views.ShapeSettings.textStyle": "Stil", "PE.Views.ShapeSettings.textTexture": "Från mönster", "PE.Views.ShapeSettings.textTile": "Bricka", + "PE.Views.ShapeSettings.tipAddGradientPoint": "Lägg till lutningspunkt", + "PE.Views.ShapeSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", "PE.Views.ShapeSettings.txtBrownPaper": "Brunt papper", "PE.Views.ShapeSettings.txtCanvas": "Duk", "PE.Views.ShapeSettings.txtCarton": "Kartong", @@ -1309,8 +1585,12 @@ "PE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel", "PE.Views.ShapeSettingsAdvanced.textAngle": "Vinkel", "PE.Views.ShapeSettingsAdvanced.textArrows": "Pilar", + "PE.Views.ShapeSettingsAdvanced.textAutofit": "Anpassa automatiskt", + "PE.Views.ShapeSettingsAdvanced.textBeginSize": "Starta storlek", + "PE.Views.ShapeSettingsAdvanced.textBeginStyle": "Startstil", "PE.Views.ShapeSettingsAdvanced.textBevel": "Fasning", "PE.Views.ShapeSettingsAdvanced.textBottom": "Nederst", + "PE.Views.ShapeSettingsAdvanced.textCapType": "Typ av skiftläge", "PE.Views.ShapeSettingsAdvanced.textColNumber": "Antal kolumner", "PE.Views.ShapeSettingsAdvanced.textEndSize": "Slutstorlek", "PE.Views.ShapeSettingsAdvanced.textEndStyle": "Avslutningsstil", @@ -1323,9 +1603,12 @@ "PE.Views.ShapeSettingsAdvanced.textLeft": "Vänster", "PE.Views.ShapeSettingsAdvanced.textLineStyle": "Linjestil", "PE.Views.ShapeSettingsAdvanced.textMiter": "Miter", + "PE.Views.ShapeSettingsAdvanced.textNofit": "Anpassa inte automatiskt", + "PE.Views.ShapeSettingsAdvanced.textResizeFit": "Ändra storlek så den passar texten", "PE.Views.ShapeSettingsAdvanced.textRight": "Höger", "PE.Views.ShapeSettingsAdvanced.textRotation": "Rotation", "PE.Views.ShapeSettingsAdvanced.textRound": "Avrunda", + "PE.Views.ShapeSettingsAdvanced.textShrink": "Krymp text vid överflöd", "PE.Views.ShapeSettingsAdvanced.textSize": "Storlek", "PE.Views.ShapeSettingsAdvanced.textSpacing": "Avstånd mellan kolumner", "PE.Views.ShapeSettingsAdvanced.textSquare": "Fyrkant", @@ -1345,6 +1628,7 @@ "PE.Views.SignatureSettings.strValid": "Giltiga signaturer", "PE.Views.SignatureSettings.txtContinueEditing": "Redigera ändå", "PE.Views.SignatureSettings.txtEditWarning": "Vid ändring kommer signaturer tas bort från presentationen.
    Är du säker på att fortsätta?", + "PE.Views.SignatureSettings.txtRemoveWarning": "Vill du ta bort den här signaturen?
    Kan inte ångras.", "PE.Views.SignatureSettings.txtSigned": "Giltiga signaturer har lagts till presentationen. Presentationen är skyddad mot ändring.", "PE.Views.SignatureSettings.txtSignedInvalid": "Vissa av de digitala signaturerna i presentationen är ogiltiga eller kunde inte verifieras. Presentationen är skyddad från redigering.", "PE.Views.SlideSettings.strBackground": "Bakgrundsfärg", @@ -1358,18 +1642,24 @@ "PE.Views.SlideSettings.strPattern": "Mönster", "PE.Views.SlideSettings.strSlideNum": "Visa bildnummer", "PE.Views.SlideSettings.strStartOnClick": "Börja vid klick", + "PE.Views.SlideSettings.strTransparency": "Opacitet", "PE.Views.SlideSettings.textAdvanced": "Visa avancerade inställningar", + "PE.Views.SlideSettings.textAngle": "Vinkel", "PE.Views.SlideSettings.textApplyAll": "Applicera på alla bilder", + "PE.Views.SlideSettings.textBlack": "Genom svart", "PE.Views.SlideSettings.textBottom": "Nederst", "PE.Views.SlideSettings.textBottomLeft": "Nederst vänster", "PE.Views.SlideSettings.textBottomRight": "Nederst höger", + "PE.Views.SlideSettings.textClock": "Klocka", "PE.Views.SlideSettings.textClockwise": "Medurs", "PE.Views.SlideSettings.textColor": "Färgfyllnad", "PE.Views.SlideSettings.textCounterclockwise": "Moturs", + "PE.Views.SlideSettings.textCover": "Omslag", "PE.Views.SlideSettings.textDirection": "Riktning", "PE.Views.SlideSettings.textEmptyPattern": "Inget mönster", "PE.Views.SlideSettings.textFade": "Fade", "PE.Views.SlideSettings.textFromFile": "Från fil", + "PE.Views.SlideSettings.textFromStorage": "Från lagring", "PE.Views.SlideSettings.textFromUrl": "Från URL", "PE.Views.SlideSettings.textGradient": "Fyllning", "PE.Views.SlideSettings.textGradientFill": "Fyllning", @@ -1381,12 +1671,14 @@ "PE.Views.SlideSettings.textNoFill": "Ingen fyllning", "PE.Views.SlideSettings.textNone": "Inga", "PE.Views.SlideSettings.textPatternFill": "Mönster", + "PE.Views.SlideSettings.textPosition": "Position", "PE.Views.SlideSettings.textPreview": "Förhandsgranska", "PE.Views.SlideSettings.textPush": "Tryck", "PE.Views.SlideSettings.textRadial": "Radiell", "PE.Views.SlideSettings.textReset": "Återställ ändringar", "PE.Views.SlideSettings.textRight": "Höger", "PE.Views.SlideSettings.textSec": "s", + "PE.Views.SlideSettings.textSelectImage": "Välj bild", "PE.Views.SlideSettings.textSelectTexture": "Välj", "PE.Views.SlideSettings.textSmoothly": "Smoothly", "PE.Views.SlideSettings.textSplit": "Dela", @@ -1397,6 +1689,7 @@ "PE.Views.SlideSettings.textTop": "Överst", "PE.Views.SlideSettings.textTopLeft": "Vänsterjustera i överkant", "PE.Views.SlideSettings.textTopRight": "Övre höger", + "PE.Views.SlideSettings.textUnCover": "Avtäcka", "PE.Views.SlideSettings.textVerticalIn": "Vertikal in", "PE.Views.SlideSettings.textVerticalOut": "Vertikal ut", "PE.Views.SlideSettings.textWedge": "Kil", @@ -1405,6 +1698,8 @@ "PE.Views.SlideSettings.textZoomIn": "Zooma in", "PE.Views.SlideSettings.textZoomOut": "Zooma ut", "PE.Views.SlideSettings.textZoomRotate": "Zooma och rotera", + "PE.Views.SlideSettings.tipAddGradientPoint": "Lägg till lutningspunkt", + "PE.Views.SlideSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", "PE.Views.SlideSettings.txtBrownPaper": "Brunt papper", "PE.Views.SlideSettings.txtCanvas": "Duk", "PE.Views.SlideSettings.txtCarton": "Kartong", @@ -1425,15 +1720,18 @@ "PE.Views.SlideSizeSettings.textSlideSize": "Bild storlek", "PE.Views.SlideSizeSettings.textTitle": "Bilde storlek inställningar", "PE.Views.SlideSizeSettings.textWidth": "Bredd", + "PE.Views.SlideSizeSettings.txt35": "35 mm diabilder", "PE.Views.SlideSizeSettings.txtA3": "A3 Papper (297x420 mm)", "PE.Views.SlideSizeSettings.txtA4": "A4 Papper (210x297 mm)", "PE.Views.SlideSizeSettings.txtB4": "B4 (ICO) Papper (250x353 mm)", "PE.Views.SlideSizeSettings.txtB5": "B5 (ICO) Papper (176x250 mm)", + "PE.Views.SlideSizeSettings.txtBanner": "Baner", "PE.Views.SlideSizeSettings.txtCustom": "Anpassad", "PE.Views.SlideSizeSettings.txtLedger": "Ledger Papper (11x17 in)", "PE.Views.SlideSizeSettings.txtLetter": "Letter Papper (8.5x11 in)", "PE.Views.SlideSizeSettings.txtOverhead": "Overhead", "PE.Views.SlideSizeSettings.txtStandard": "Standard (4:3)", + "PE.Views.SlideSizeSettings.txtWidescreen": "Bredbild", "PE.Views.Statusbar.goToPageText": "Gå till bild", "PE.Views.Statusbar.pageIndexText": "Bild {0} of {1}", "PE.Views.Statusbar.textShowBegin": "Visa presentation från början", @@ -1464,6 +1762,7 @@ "PE.Views.TableSettings.splitCellTitleText": "Dela cell", "PE.Views.TableSettings.textAdvanced": "Visa avancerade inställningar", "PE.Views.TableSettings.textBackColor": "Bakgrundsfärg", + "PE.Views.TableSettings.textBanded": "Banded", "PE.Views.TableSettings.textBorderColor": "Färg", "PE.Views.TableSettings.textBorders": "Ramutseende", "PE.Views.TableSettings.textCellSize": "Cell storlek", @@ -1494,6 +1793,8 @@ "PE.Views.TableSettings.txtNoBorders": "Inga ramar", "PE.Views.TableSettings.txtTable_Accent": "Accent", "PE.Views.TableSettings.txtTable_DarkStyle": "Mörk stil", + "PE.Views.TableSettings.txtTable_LightStyle": "Light Style", + "PE.Views.TableSettings.txtTable_MediumStyle": "Medium stil", "PE.Views.TableSettings.txtTable_NoGrid": "Ingen tabell", "PE.Views.TableSettings.txtTable_NoStyle": "Ingen stil", "PE.Views.TableSettings.txtTable_TableGrid": "Tabellnät", @@ -1520,6 +1821,7 @@ "PE.Views.TextArtSettings.strStroke": "Genomslag", "PE.Views.TextArtSettings.strTransparency": "Opacitet", "PE.Views.TextArtSettings.strType": "Typ", + "PE.Views.TextArtSettings.textAngle": "Vinkel", "PE.Views.TextArtSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.
    Vänligen ange ett värde mellan 0 och 1584 pt.", "PE.Views.TextArtSettings.textColor": "Färgfyllnad", "PE.Views.TextArtSettings.textDirection": "Riktning", @@ -1532,6 +1834,7 @@ "PE.Views.TextArtSettings.textLinear": "Linjär", "PE.Views.TextArtSettings.textNoFill": "Ingen fyllning", "PE.Views.TextArtSettings.textPatternFill": "Mönster", + "PE.Views.TextArtSettings.textPosition": "Position", "PE.Views.TextArtSettings.textRadial": "Radiell", "PE.Views.TextArtSettings.textSelectTexture": "Välj", "PE.Views.TextArtSettings.textStretch": "Sträck", @@ -1540,6 +1843,8 @@ "PE.Views.TextArtSettings.textTexture": "Från mönster", "PE.Views.TextArtSettings.textTile": "Bricka", "PE.Views.TextArtSettings.textTransform": "Omvandla", + "PE.Views.TextArtSettings.tipAddGradientPoint": "Lägg till lutningspunkt", + "PE.Views.TextArtSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", "PE.Views.TextArtSettings.txtBrownPaper": "Brunt papper", "PE.Views.TextArtSettings.txtCanvas": "Duk", "PE.Views.TextArtSettings.txtCarton": "Kartong", @@ -1571,13 +1876,19 @@ "PE.Views.Toolbar.capTabFile": "Arkiv", "PE.Views.Toolbar.capTabHome": "Hem", "PE.Views.Toolbar.capTabInsert": "Infoga", + "PE.Views.Toolbar.mniCapitalizeWords": "Stor bokstav varje ord", "PE.Views.Toolbar.mniCustomTable": "Infoga egen tabell", "PE.Views.Toolbar.mniImageFromFile": "Bild från fil", "PE.Views.Toolbar.mniImageFromStorage": "Bild från lagring", "PE.Views.Toolbar.mniImageFromUrl": "Bild från URL", + "PE.Views.Toolbar.mniLowerCase": "Integraler", + "PE.Views.Toolbar.mniSentenceCase": "Stor bokstav varje mening", "PE.Views.Toolbar.mniSlideAdvanced": "Avancerade inställningar", "PE.Views.Toolbar.mniSlideStandard": "Standard (4:3)", "PE.Views.Toolbar.mniSlideWide": "Widescreen (16:9)", + "PE.Views.Toolbar.mniToggleCase": "vÄXLA vERSALER", + "PE.Views.Toolbar.mniUpperCase": "VERSALER", + "PE.Views.Toolbar.strMenuNoFill": "Ingen fyllning", "PE.Views.Toolbar.textAlignBottom": "Justera text till botten", "PE.Views.Toolbar.textAlignCenter": "Centrera text", "PE.Views.Toolbar.textAlignJust": "Justering", @@ -1590,7 +1901,12 @@ "PE.Views.Toolbar.textArrangeForward": "Flytta framåt", "PE.Views.Toolbar.textArrangeFront": "Flytta till förgrund", "PE.Views.Toolbar.textBold": "Fet", + "PE.Views.Toolbar.textColumnsCustom": "Anpassade kolumner", + "PE.Views.Toolbar.textColumnsOne": "En kolumn", + "PE.Views.Toolbar.textColumnsThree": "Tre kolumner", + "PE.Views.Toolbar.textColumnsTwo": "Två kolumner", "PE.Views.Toolbar.textItalic": "Kursiv", + "PE.Views.Toolbar.textListSettings": "Listinställningar", "PE.Views.Toolbar.textNewColor": "Anpassad färg", "PE.Views.Toolbar.textShapeAlignBottom": "Justera nederst", "PE.Views.Toolbar.textShapeAlignCenter": "Centrera", @@ -1614,19 +1930,24 @@ "PE.Views.Toolbar.textUnderline": "Understrykning", "PE.Views.Toolbar.tipAddSlide": "Lägg till ny bild", "PE.Views.Toolbar.tipBack": "Tillbaka", + "PE.Views.Toolbar.tipChangeCase": "Ändra skiftläge", "PE.Views.Toolbar.tipChangeChart": "Ändra diagramtyp", "PE.Views.Toolbar.tipChangeSlide": "Ändra bildlayout", "PE.Views.Toolbar.tipClearStyle": "Rensa stil", "PE.Views.Toolbar.tipColorSchemas": "Ändra färgschema", + "PE.Views.Toolbar.tipColumns": "Infoga kolumner", "PE.Views.Toolbar.tipCopy": "Kopiera", "PE.Views.Toolbar.tipCopyStyle": "Kopiera stil", "PE.Views.Toolbar.tipDateTime": "Infoga aktuellt datum och tid", + "PE.Views.Toolbar.tipDecFont": "Minska typsnittstorlek", "PE.Views.Toolbar.tipDecPrLeft": "Minska indrag", "PE.Views.Toolbar.tipEditHeader": "Redigera foten", "PE.Views.Toolbar.tipFontColor": "Fontfärg", "PE.Views.Toolbar.tipFontName": "Font", "PE.Views.Toolbar.tipFontSize": "Fontstorlek", "PE.Views.Toolbar.tipHAligh": "Horisontell justering", + "PE.Views.Toolbar.tipHighlightColor": "Markera färg", + "PE.Views.Toolbar.tipIncFont": "Öka fontstorlek", "PE.Views.Toolbar.tipIncPrLeft": "Öka indrag", "PE.Views.Toolbar.tipInsertAudio": "Infoga ljud", "PE.Views.Toolbar.tipInsertChart": "Infoga diagram", @@ -1670,10 +1991,15 @@ "PE.Views.Toolbar.txtScheme16": "Papper", "PE.Views.Toolbar.txtScheme17": "Solstånd", "PE.Views.Toolbar.txtScheme18": "Teknik", + "PE.Views.Toolbar.txtScheme19": "Vandra", "PE.Views.Toolbar.txtScheme2": "Gråskala", + "PE.Views.Toolbar.txtScheme20": "Urban", "PE.Views.Toolbar.txtScheme21": "Fart", + "PE.Views.Toolbar.txtScheme22": "New Office", "PE.Views.Toolbar.txtScheme3": "Apex", "PE.Views.Toolbar.txtScheme4": "Aspekt", + "PE.Views.Toolbar.txtScheme5": "Medborgerlig", + "PE.Views.Toolbar.txtScheme6": "Öppen plats", "PE.Views.Toolbar.txtScheme7": "Rimlighet", "PE.Views.Toolbar.txtScheme8": "Flöde", "PE.Views.Toolbar.txtScheme9": "Grund", diff --git a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index dff87269e..207637a01 100644 --- a/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/presentationeditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -89,6 +89,12 @@
  • To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent).
  • To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column.
  • +

    Convert equations

    +

    If you open an existing document containing equations which were created with an old version of equation editor (for example, with MS Office versions before 2007), you need to convert these equations to the Office Math ML format to be able to edit them.

    +

    To convert an equation, double-click it. The warning window will appear:

    +

    Convert equation

    +

    To convert the selected equation only, click the Yes button in the warning window. To convert all equations in this document, check the Apply to all equations box and click Yes.

    +

    Once the equation is converted, you can edit it.

    \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/en/images/convertequation.png b/apps/presentationeditor/main/resources/help/en/images/convertequation.png new file mode 100644 index 000000000..a97a5bea2 Binary files /dev/null and b/apps/presentationeditor/main/resources/help/en/images/convertequation.png differ diff --git a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm index ef7946803..cb0d32904 100644 --- a/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm +++ b/apps/presentationeditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm @@ -91,6 +91,12 @@
  • Чтобы удалить Диакритический знак, можно щелкнуть по нему правой кнопкой мыши и выбрать из контекстного меню пункт Удалить диакритический знак, Удалить символ или Удалить черту (доступные опции отличаются в зависимости от выбранного диакритического знака).
  • Чтобы удалить строку или столбец Матрицы, можно щелкнуть правой кнопкой мыши по полю для заполнения внутри строки/столбца, который требуется удалить, выбрать из контекстного меню пункт Удалить, а затем - Удалить строку/столбец.
  • +

    Преобразование уравнений

    +

    Если вы открываете существующий документ с уравнениями, которые были созданы с помощью старой версии редактора уравнений (например, в версиях, предшествующих MS Office 2007), эти уравнения необходимо преобразовать в формат Office Math ML, чтобы иметь возможность их редактировать.

    +

    Чтобы преобразовать уравнение, дважды щелкните по нему. Откроется окно с предупреждением:

    +

    Преобразование уравнений

    +

    Чтобы преобразовать только выбранное уравнение, нажмите кнопку Да в окне предупреждения. Чтобы преобразовать все уравнения в документе, поставьте галочку Применить ко всем уравнениям и нажмите кнопку Да.

    +

    После преобразования уравнения вы сможете его редактировать.

    \ No newline at end of file diff --git a/apps/presentationeditor/main/resources/help/ru/images/convertequation.png b/apps/presentationeditor/main/resources/help/ru/images/convertequation.png new file mode 100644 index 000000000..3ad46ae4e Binary files /dev/null and b/apps/presentationeditor/main/resources/help/ru/images/convertequation.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-clock.png new file mode 100644 index 000000000..4038a4f5d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-cover.png new file mode 100644 index 000000000..942a556f7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-fade.png new file mode 100644 index 000000000..a8f8246f2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-none.png new file mode 100644 index 000000000..1d6345fd7 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-push.png new file mode 100644 index 000000000..ec95a7922 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-split.png new file mode 100644 index 000000000..0017cae8d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-uncover.png new file mode 100644 index 000000000..ae53708fc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-wipe.png new file mode 100644 index 000000000..5ffc9eb35 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-zoom.png new file mode 100644 index 000000000..21628a438 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/big/transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/preview-transitions.png new file mode 100644 index 000000000..53264f2fb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.25x/transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/1.25x/transition-apply-all.png new file mode 100644 index 000000000..4e3f0ea4d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.25x/transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-clock.png new file mode 100644 index 000000000..f27589607 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-cover.png new file mode 100644 index 000000000..f1022f98c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-fade.png new file mode 100644 index 000000000..3114e4295 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-none.png new file mode 100644 index 000000000..fe3305682 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-push.png new file mode 100644 index 000000000..23c25acef Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-split.png new file mode 100644 index 000000000..3000333cd Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-uncover.png new file mode 100644 index 000000000..7463033fc Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-wipe.png new file mode 100644 index 000000000..d8d253419 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-zoom.png new file mode 100644 index 000000000..76065572b Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/big/transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/preview-transitions.png new file mode 100644 index 000000000..f1dd8a463 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.5x/transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/1.5x/transition-apply-all.png new file mode 100644 index 000000000..09c2e7f4e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.5x/transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-clock.png new file mode 100644 index 000000000..10950b186 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-cover.png new file mode 100644 index 000000000..1de97ff0d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-fade.png new file mode 100644 index 000000000..17a1c932c Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-none.png new file mode 100644 index 000000000..886bff8f8 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-push.png new file mode 100644 index 000000000..7ad1096b4 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-split.png new file mode 100644 index 000000000..e52cb6136 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-uncover.png new file mode 100644 index 000000000..955c75ad3 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-wipe.png new file mode 100644 index 000000000..29e9acfaa Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-zoom.png new file mode 100644 index 000000000..4227f1e37 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/big/transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/preview-transitions.png new file mode 100644 index 000000000..aed85bb05 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1.75x/transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/1.75x/transition-apply-all.png new file mode 100644 index 000000000..09c2e7f4e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1.75x/transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-clock.png new file mode 100644 index 000000000..2a843e96e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-cover.png new file mode 100644 index 000000000..683a238d0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-fade.png new file mode 100644 index 000000000..ebbcf4459 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-none.png new file mode 100644 index 000000000..2f0dfbc5a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-push.png new file mode 100644 index 000000000..532f9484a Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-split.png new file mode 100644 index 000000000..d2f2a28f6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-uncover.png new file mode 100644 index 000000000..2be78f242 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-wipe.png new file mode 100644 index 000000000..6afed0bb6 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-zoom.png new file mode 100644 index 000000000..75680148d Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/big/transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/1x/preview-transitions.png new file mode 100644 index 000000000..10d4b5f43 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/1x/transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/1x/transition-apply-all.png new file mode 100644 index 000000000..68b502e84 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/1x/transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-clock.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-clock.png new file mode 100644 index 000000000..ee92e408f Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-clock.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-cover.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-cover.png new file mode 100644 index 000000000..683a238d0 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-cover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-fade.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-fade.png new file mode 100644 index 000000000..a11cd68eb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-fade.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-none.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-none.png new file mode 100644 index 000000000..4e9ad3f30 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-none.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-push.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-push.png new file mode 100644 index 000000000..b7e85e895 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-push.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-split.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-split.png new file mode 100644 index 000000000..0e722507e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-split.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-uncover.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-uncover.png new file mode 100644 index 000000000..21868e1cb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-uncover.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-wipe.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-wipe.png new file mode 100644 index 000000000..1f67c6722 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-wipe.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-zoom.png b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-zoom.png new file mode 100644 index 000000000..83e97495e Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/big/transition-zoom.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/preview-transitions.png b/apps/presentationeditor/main/resources/img/toolbar/2x/preview-transitions.png new file mode 100644 index 000000000..84c1501d2 Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/preview-transitions.png differ diff --git a/apps/presentationeditor/main/resources/img/toolbar/2x/transition-apply-all.png b/apps/presentationeditor/main/resources/img/toolbar/2x/transition-apply-all.png new file mode 100644 index 000000000..f4a7407cb Binary files /dev/null and b/apps/presentationeditor/main/resources/img/toolbar/2x/transition-apply-all.png differ diff --git a/apps/presentationeditor/main/resources/less/app.less b/apps/presentationeditor/main/resources/less/app.less index 6e88b5dea..8a80c847c 100644 --- a/apps/presentationeditor/main/resources/less/app.less +++ b/apps/presentationeditor/main/resources/less/app.less @@ -132,6 +132,7 @@ @import "rightmenu.less"; @import "advanced-settings.less"; @import "document-preview.less"; +@import "transitions"; @import "sprites/iconssmall@1x"; @import "sprites/iconsbig@1x"; diff --git a/apps/presentationeditor/main/resources/less/leftmenu.less b/apps/presentationeditor/main/resources/less/leftmenu.less index b083e4d0c..0a56783c7 100644 --- a/apps/presentationeditor/main/resources/less/leftmenu.less +++ b/apps/presentationeditor/main/resources/less/leftmenu.less @@ -196,7 +196,8 @@ h3 { margin: 0; font-size: 10pt; - color: #665; + color: @text-normal-ie; + color: @text-normal; font-weight: bold; padding: 0 0 10px 10px; white-space: nowrap; @@ -230,7 +231,8 @@ hr { margin: 0; border-bottom: none; - border-color: #e1e1e1; + border-top: @scaled-one-px-value-ie solid @border-divider-ie; + border-top: @scaled-one-px-value solid @border-divider; } .thumb-list { diff --git a/apps/presentationeditor/main/resources/less/transitions.less b/apps/presentationeditor/main/resources/less/transitions.less new file mode 100644 index 000000000..4fcf450f5 --- /dev/null +++ b/apps/presentationeditor/main/resources/less/transitions.less @@ -0,0 +1,63 @@ +#transitions-panel { + .item { + background: transparent; + border-color: transparent; + + .box-shadow(none); + border-radius: @scaled-one-px-value-ie; + border-radius: @scaled-one-px-value; + border-width: calc(2*@scaled-one-px-value-ie) ; + border-width: calc(@scaled-two-px-value); + + &:hover{ + border-color: @border-preview-hover-ie; + border-color: @border-preview-hover; + } + + &.selected + { + border-color: @border-preview-select-ie; + border-color: @border-preview-select; + } + + .style{ + background: transparent; + } + } + + .combo-dataview + { + &.disabled { + .item { + &:hover:not(.selected) { + border-color: transparent; + } + } + } + } + + .spinner + { + margin-left: 10px; + } + +} +.btn_item { + color: @text-normal-ie; + color: @text-normal; + display: inline-flex; + flex-direction: column; + align-items: center; + + .icon:not(svg) { + width: @x-huge-btn-icon-size; + height: @x-huge-btn-icon-size; + min-width: 0; + margin-top: -2px; + } + + .caption{ + line-height: 18px; + font-size: 11px; + } +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/be.json b/apps/presentationeditor/mobile/locale/be.json index 09c34955a..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/be.json +++ b/apps/presentationeditor/mobile/locale/be.json @@ -1,574 +1,465 @@ { - "Common.Controllers.Collaboration.textAddReply": "Дадаць адказ", - "Common.Controllers.Collaboration.textCancel": "Скасаваць", - "Common.Controllers.Collaboration.textDeleteComment": "Выдаліць каментар", - "Common.Controllers.Collaboration.textDeleteReply": "Выдаліць адказ", - "Common.Controllers.Collaboration.textDone": "Завершана", - "Common.Controllers.Collaboration.textEdit": "Рэдагаваць", - "Common.Controllers.Collaboration.textEditUser": "Дакумент рэдагуецца карыстальнікамі:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Сапраўды хочаце выдаліць гэты каментар?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Сапраўды хочаце выдаліць гэты адказ?", - "Common.Controllers.Collaboration.textReopen": "Адкрыць зноў", - "Common.Controllers.Collaboration.textResolve": "Вырашыць", - "Common.Controllers.Collaboration.textYes": "Так", - "Common.UI.ThemeColorPalette.textCustomColors": "Адвольныя колеры", - "Common.UI.ThemeColorPalette.textStandartColors": "Стандартныя колеры", - "Common.UI.ThemeColorPalette.textThemeColors": "Колеры тэмы", - "Common.Utils.Metric.txtCm": "см", - "Common.Utils.Metric.txtPt": "пт", - "Common.Views.Collaboration.textAddReply": "Дадаць адказ", - "Common.Views.Collaboration.textBack": "Назад", - "Common.Views.Collaboration.textCancel": "Скасаваць", - "Common.Views.Collaboration.textCollaboration": "Сумесная праца", - "Common.Views.Collaboration.textDone": "Завершана", - "Common.Views.Collaboration.textEditReply": "Рэдагаваць адказ", - "Common.Views.Collaboration.textEditUsers": "Карыстальнікі", - "Common.Views.Collaboration.textEditСomment": "Рэдагаваць каментар", - "Common.Views.Collaboration.textNoComments": "Да гэтай прэзентацыі няма каментароў", - "Common.Views.Collaboration.textСomments": "Каментары", - "PE.Controllers.AddContainer.textImage": "Выява", - "PE.Controllers.AddContainer.textLink": "Спасылка", - "PE.Controllers.AddContainer.textOther": "Іншае", - "PE.Controllers.AddContainer.textShape": "Фігура", - "PE.Controllers.AddContainer.textSlide": "Слайд", - "PE.Controllers.AddContainer.textTable": "Табліца", - "PE.Controllers.AddImage.notcriticalErrorTitle": "Увага", - "PE.Controllers.AddImage.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", - "PE.Controllers.AddImage.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "PE.Controllers.AddLink.notcriticalErrorTitle": "Увага", - "PE.Controllers.AddLink.textDefault": "Вылучаны тэкст", - "PE.Controllers.AddLink.textExternalLink": "Вонкавая спасылка", - "PE.Controllers.AddLink.textFirst": "Першы слайд", - "PE.Controllers.AddLink.textInternalLink": "Слайд у гэтай прэзентацыі", - "PE.Controllers.AddLink.textLast": "Апошні слайд", - "PE.Controllers.AddLink.textNext": "Наступны слайд", - "PE.Controllers.AddLink.textPrev": "Папярэдні слайд", - "PE.Controllers.AddLink.textSlide": "Слайд", - "PE.Controllers.AddLink.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "PE.Controllers.AddOther.textCancel": "Скасаваць", - "PE.Controllers.AddOther.textContinue": "Працягнуць", - "PE.Controllers.AddOther.textDelete": "Выдаліць", - "PE.Controllers.AddOther.textDeleteDraft": "Сапраўды хочаце выдаліць чарнавік?", - "PE.Controllers.AddTable.textCancel": "Скасаваць", - "PE.Controllers.AddTable.textColumns": "Слупкі", - "PE.Controllers.AddTable.textRows": "Радкі", - "PE.Controllers.AddTable.textTableSize": "Памеры табліцы", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Аперацыі капіявання, выразання і ўстаўкі праз кантэкстнае меню будуць выконвацца толькі ў бягучым файле.", - "PE.Controllers.DocumentHolder.menuAddComment": "Дадаць каментар", - "PE.Controllers.DocumentHolder.menuAddLink": "Дадаць спасылку", - "PE.Controllers.DocumentHolder.menuCopy": "Капіяваць", - "PE.Controllers.DocumentHolder.menuCut": "Выразаць", - "PE.Controllers.DocumentHolder.menuDelete": "Выдаліць", - "PE.Controllers.DocumentHolder.menuEdit": "Рэдагаваць", - "PE.Controllers.DocumentHolder.menuMore": "Больш", - "PE.Controllers.DocumentHolder.menuOpenLink": "Адкрыць спасылку", - "PE.Controllers.DocumentHolder.menuPaste": "Уставіць", - "PE.Controllers.DocumentHolder.menuViewComment": "Праглядзець каментар", - "PE.Controllers.DocumentHolder.sheetCancel": "Скасаваць", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Скапіяваць, выразаць, уставіць", - "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Больш не паказваць", - "PE.Controllers.DocumentPreview.txtFinalMessage": "Прагляд слайдаў завершаны. Пстрыкніце, каб выйсці.", - "PE.Controllers.EditContainer.textChart": "Дыяграма", - "PE.Controllers.EditContainer.textHyperlink": "Гіперспасылка", - "PE.Controllers.EditContainer.textImage": "Выява", - "PE.Controllers.EditContainer.textSettings": "Налады", - "PE.Controllers.EditContainer.textShape": "Фігура", - "PE.Controllers.EditContainer.textSlide": "Слайд", - "PE.Controllers.EditContainer.textTable": "Табліца", - "PE.Controllers.EditContainer.textText": "Тэкст", - "PE.Controllers.EditImage.notcriticalErrorTitle": "Увага", - "PE.Controllers.EditImage.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", - "PE.Controllers.EditImage.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "PE.Controllers.EditLink.notcriticalErrorTitle": "Увага", - "PE.Controllers.EditLink.textDefault": "Вылучаны тэкст", - "PE.Controllers.EditLink.textExternalLink": "Вонкавая спасылка", - "PE.Controllers.EditLink.textFirst": "Першы слайд", - "PE.Controllers.EditLink.textInternalLink": "Слайд у гэтай прэзентацыі", - "PE.Controllers.EditLink.textLast": "Апошні слайд", - "PE.Controllers.EditLink.textNext": "Наступны слайд", - "PE.Controllers.EditLink.textPrev": "Папярэдні слайд", - "PE.Controllers.EditLink.textSlide": "Слайд", - "PE.Controllers.EditLink.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "PE.Controllers.EditSlide.textSec": "с", - "PE.Controllers.EditText.textAuto": "Аўта", - "PE.Controllers.EditText.textFonts": "Шрыфты", - "PE.Controllers.EditText.textPt": "пт", - "PE.Controllers.Main.advDRMEnterPassword": "Увядзіце ваш пароль:", - "PE.Controllers.Main.advDRMOptions": "Абаронены файл", - "PE.Controllers.Main.advDRMPassword": "Пароль", - "PE.Controllers.Main.applyChangesTextText": "Загрузка даных…", - "PE.Controllers.Main.applyChangesTitleText": "Загрузка даных", - "PE.Controllers.Main.closeButtonText": "Закрыць файл", - "PE.Controllers.Main.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", - "PE.Controllers.Main.criticalErrorExtText": "Націсніце \"Добра\", каб вярнуцца да спіса дакументаў.", - "PE.Controllers.Main.criticalErrorTitle": "Памылка", - "PE.Controllers.Main.downloadErrorText": "Не атрымалася спампаваць.", - "PE.Controllers.Main.downloadTextText": "Спампоўванне прэзентацыі…", - "PE.Controllers.Main.downloadTitleText": "Спампоўванне прэзентацыі", - "PE.Controllers.Main.errorAccessDeny": "Вы спрабуеце выканаць дзеянне, на якое не маеце правоў.
    Калі ласка, звярніцеся да адміністратара сервера дакументаў.", - "PE.Controllers.Main.errorBadImageUrl": "Хібны URL-адрас выявы", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Злучэнне з серверам страчана. Рэдагаваць немагчыма.", - "PE.Controllers.Main.errorConnectToServer": "Не атрымалася захаваць дакумент. Праверце налады злучэння альбо звярніцеся да вашага адміністратара.
    Калі вы націснеце кнопку \"Добра\", вам прапануецца спампаваць дакумент.", - "PE.Controllers.Main.errorDatabaseConnection": "Вонкавая памылка.
    Памылка злучэння з базай даных. Калі ласка, звярніцеся ў службу падтрымкі.", - "PE.Controllers.Main.errorDataEncrypted": "Атрыманы зашыфраваныя змены, іх немагчыма расшыфраваць.", - "PE.Controllers.Main.errorDataRange": "Хібны дыяпазон даных.", - "PE.Controllers.Main.errorDefaultMessage": "Код памылкі: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Падчас працы з дакументам адбылася памылка.
    Выкарыстайце \"Спампаваць\", каб захаваць рэзервовую копію файла на цвёрдым дыску камп’ютара.", - "PE.Controllers.Main.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", - "PE.Controllers.Main.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
    Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", - "PE.Controllers.Main.errorKeyEncrypt": "Невядомы дэскрыптар ключа", - "PE.Controllers.Main.errorKeyExpire": "Тэрмін дзеяння дэскрыптара ключа сышоў", - "PE.Controllers.Main.errorOpensource": "Выкарыстоўваючы бясплатную версію вы можаце адкрываць дакументы толькі для прагляду. Для доступу да мабільных сеціўных рэдактараў патрабуецца камерцыйная ліцэнзія.", - "PE.Controllers.Main.errorProcessSaveResult": "Не атрымалася захаваць.", - "PE.Controllers.Main.errorServerVersion": "Рэдактар быў абноўлены. Старонка перазагрузіцца, каб ужыць змены.", - "PE.Controllers.Main.errorSessionAbsolute": "Час сеанса рэдагавання дакумента сышоў. Калі ласка, абнавіце старонку.", - "PE.Controllers.Main.errorSessionIdle": "Дакумент працяглы час не рэдагаваўся. Калі ласка, абнавіце старонку.", - "PE.Controllers.Main.errorSessionToken": "Злучэнне з серверам перарванае. Калі ласка, абнавіце старонку.", - "PE.Controllers.Main.errorStockChart": "Хібны парадак радкоў. Каб стварыць біржавую дыяграму размясціце даныя ў наступным парадку:
    кошт адкрыцця, максімальны кошт, мінімальны кошт, кошт закрыцця.", - "PE.Controllers.Main.errorUpdateVersion": "Версія файла была змененая. Старонка будзе перазагружаная.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Злучэнне з інтэрнэтам было адноўлена, і версія файла змянілася.
    Перш чым працягнуць працу, неабходна спампаваць файл альбо скапіяваць яго змесціва, каб захаваць даныя, а пасля перазагрузіць старонку.", - "PE.Controllers.Main.errorUserDrop": "На дадзены момант файл недаступны.", - "PE.Controllers.Main.errorUsersExceed": "Перасягнута колькасць карыстальнікаў", - "PE.Controllers.Main.errorViewerDisconnect": "Злучэнне страчана. Вы зможаце праглядаць дакумент,
    але не зможаце спампаваць яго да аднаўлення злучэння і абнаўлення старонкі.", - "PE.Controllers.Main.leavePageText": "У дакуменце засталіся незахаваныя змены. Націсніце \"Застацца на старонцы\", каб дачакацца аўтазахавання дакумента. Націсніце \"Сысці са старонкі\", каб адкінуць змены.", - "PE.Controllers.Main.loadFontsTextText": "Загрузка даных…", - "PE.Controllers.Main.loadFontsTitleText": "Загрузка даных", - "PE.Controllers.Main.loadFontTextText": "Загрузка даных…", - "PE.Controllers.Main.loadFontTitleText": "Загрузка даных", - "PE.Controllers.Main.loadImagesTextText": "Загрузка выяў…", - "PE.Controllers.Main.loadImagesTitleText": "Загрузка выяў", - "PE.Controllers.Main.loadImageTextText": "Загрузка выявы…", - "PE.Controllers.Main.loadImageTitleText": "Загрузка выявы", - "PE.Controllers.Main.loadingDocumentTextText": "Загрузка прэзентацыі…", - "PE.Controllers.Main.loadingDocumentTitleText": "Загрузка прэзентацыі", - "PE.Controllers.Main.loadThemeTextText": "Загрузка тэмы…", - "PE.Controllers.Main.loadThemeTitleText": "Загрузка тэмы", - "PE.Controllers.Main.notcriticalErrorTitle": "Увага", - "PE.Controllers.Main.openErrorText": "Падчас адкрыцця файла адбылася памылка.", - "PE.Controllers.Main.openTextText": "Адкрыццё дакумента…", - "PE.Controllers.Main.openTitleText": "Адкрыццё дакумента", - "PE.Controllers.Main.printTextText": "Друкаванне дакумента…", - "PE.Controllers.Main.printTitleText": "Друкаванне дакумента", - "PE.Controllers.Main.reloadButtonText": "Абнавіць старонку", - "PE.Controllers.Main.requestEditFailedMessageText": "Дакумент зараз рэдагуецца. Калі ласка, паспрабуйце пазней.", - "PE.Controllers.Main.requestEditFailedTitleText": "Доступ забаронены", - "PE.Controllers.Main.saveErrorText": "Падчас захавання файла адбылася памылка.", - "PE.Controllers.Main.savePreparingText": "Падрыхтоўка да захавання", - "PE.Controllers.Main.savePreparingTitle": "Падрыхтоўка да захавання. Калі ласка, пачакайце…", - "PE.Controllers.Main.saveTextText": "Захаванне дакумента…", - "PE.Controllers.Main.saveTitleText": "Захаванне дакумента", - "PE.Controllers.Main.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", - "PE.Controllers.Main.splitDividerErrorText": "Колькасць радкоў мусіць быць дзельнікам для %1", - "PE.Controllers.Main.splitMaxColsErrorText": "Колькасць слупкоў павінна быць меншай за %1", - "PE.Controllers.Main.splitMaxRowsErrorText": "Колькасць радкоў павінна быць меншай за %1", - "PE.Controllers.Main.textAnonymous": "Ананімны карыстальнік", - "PE.Controllers.Main.textBack": "Назад", - "PE.Controllers.Main.textBuyNow": "Наведаць сайт", - "PE.Controllers.Main.textCancel": "Скасаваць", - "PE.Controllers.Main.textClose": "Закрыць", - "PE.Controllers.Main.textCloseTip": "Дакраніцеся, каб закрыць падказку.", - "PE.Controllers.Main.textContactUs": "Аддзел продажаў", - "PE.Controllers.Main.textCustomLoader": "Звярніце ўвагу, што па ўмовах ліцэнзіі вы не можаце змяняць экран загрузкі.
    Калі ласка, звярніцеся ў аддзел продажу.", - "PE.Controllers.Main.textDone": "Завершана", - "PE.Controllers.Main.textGuest": "Госць", - "PE.Controllers.Main.textHasMacros": "Файл змяшчае макрасы з аўтазапускам.
    Хочаце запусціць макрасы?", - "PE.Controllers.Main.textLoadingDocument": "Загрузка прэзентацыі", - "PE.Controllers.Main.textNo": "Не", - "PE.Controllers.Main.textNoLicenseTitle": "Ліцэнзійнае абмежаванне", - "PE.Controllers.Main.textOK": "Добра", - "PE.Controllers.Main.textPaidFeature": "Платная функцыя", - "PE.Controllers.Main.textPassword": "Пароль", - "PE.Controllers.Main.textPreloader": "Загрузка…", - "PE.Controllers.Main.textRemember": "Запомніць мой выбар", - "PE.Controllers.Main.textShape": "Фігура", - "PE.Controllers.Main.textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.", - "PE.Controllers.Main.textUsername": "Імя карыстальніка", - "PE.Controllers.Main.textYes": "Так", - "PE.Controllers.Main.titleLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў", - "PE.Controllers.Main.titleServerVersion": "Рэдактар абноўлены", - "PE.Controllers.Main.txtAddFirstSlide": "Пстрыкніце, каб дадаць першы слайд", - "PE.Controllers.Main.txtArt": "Увядзіце ваш тэкст", - "PE.Controllers.Main.txtBasicShapes": "Асноўныя фігуры", - "PE.Controllers.Main.txtButtons": "Кнопкі", - "PE.Controllers.Main.txtCallouts": "Удакладненні", - "PE.Controllers.Main.txtCharts": "Схемы", - "PE.Controllers.Main.txtClipArt": "Малюнак", - "PE.Controllers.Main.txtDateTime": "Дата і час", - "PE.Controllers.Main.txtDiagram": "SmartArt", - "PE.Controllers.Main.txtDiagramTitle": "Загаловак дыяграмы", - "PE.Controllers.Main.txtEditingMode": "Актывацыя рэжыму рэдагавання…", - "PE.Controllers.Main.txtFiguredArrows": "Фігурныя стрэлкі", - "PE.Controllers.Main.txtFooter": "Ніжні калантытул", - "PE.Controllers.Main.txtHeader": "Верхні калантытул", - "PE.Controllers.Main.txtImage": "Вобраз", - "PE.Controllers.Main.txtLines": "Лініі", - "PE.Controllers.Main.txtMath": "Матэматычныя знакі", - "PE.Controllers.Main.txtMedia": "Медыя", - "PE.Controllers.Main.txtNeedSynchronize": "Ёсць абнаўленні", - "PE.Controllers.Main.txtPicture": "Малюнак", - "PE.Controllers.Main.txtProtected": "Калі вы ўвядзеце пароль і адкрыеце файл, бягучы пароль да файла скінецца", - "PE.Controllers.Main.txtRectangles": "Прамавугольнікі", - "PE.Controllers.Main.txtSeries": "Шэраг", - "PE.Controllers.Main.txtSldLtTBlank": "Пусты", - "PE.Controllers.Main.txtSldLtTChart": "Дыяграма", - "PE.Controllers.Main.txtSldLtTChartAndTx": "Дыяграма і тэкст", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Малюнак і тэкст", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Малюнак і вертыкальны тэкст", - "PE.Controllers.Main.txtSldLtTCust": "Адвольны", - "PE.Controllers.Main.txtSldLtTDgm": "Схема", - "PE.Controllers.Main.txtSldLtTFourObj": "Чатыры аб’екты", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Медыя і тэкст", - "PE.Controllers.Main.txtSldLtTObj": "Загаловак і аб’ект", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Аб’ект і два аб’екты", - "PE.Controllers.Main.txtSldLtTObjAndTx": "Аб’ект і тэкст", - "PE.Controllers.Main.txtSldLtTObjOnly": "Аб’ект", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Аб’ект па-над тэкстам", - "PE.Controllers.Main.txtSldLtTObjTx": "Загаловак, аб’ект, подпіс", - "PE.Controllers.Main.txtSldLtTPicTx": "Малюнак з подпісам", - "PE.Controllers.Main.txtSldLtTSecHead": "Загаловак раздзела", - "PE.Controllers.Main.txtSldLtTTbl": "Табліца", - "PE.Controllers.Main.txtSldLtTTitle": "Тытульны слайд", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Толькі загаловак", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Тэкст на два слупкі", - "PE.Controllers.Main.txtSldLtTTwoObj": "Два аб’екты", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Два аб’екты і аб’ект", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Два аб’екты і тэкст", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Два аб’екты па-над тэкстам", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Два тэкста і два аб’екты", - "PE.Controllers.Main.txtSldLtTTx": "Тэкст", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Тэкст і дыяграма", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Тэкст і малюнак", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "Тэкст і медыяфайл", - "PE.Controllers.Main.txtSldLtTTxAndObj": "Тэкст і аб’ект", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Тэкст і два аб’екты", - "PE.Controllers.Main.txtSldLtTTxOverObj": "Тэкст па-над аб’ектам", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Вертыкальны загаловак і тэкст", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Вертыкальны загаловак і тэкст па-над дыяграмай", - "PE.Controllers.Main.txtSldLtTVertTx": "Вертыкальны тэкст ", - "PE.Controllers.Main.txtSlideNumber": "Нумар слайда", - "PE.Controllers.Main.txtSlideSubtitle": "Падзагаловак слайда", - "PE.Controllers.Main.txtSlideText": "Тэкст слайда", - "PE.Controllers.Main.txtSlideTitle": "Загаловак слайда", - "PE.Controllers.Main.txtStarsRibbons": "Зоркі і стужкі", - "PE.Controllers.Main.txtXAxis": "Вось Х", - "PE.Controllers.Main.txtYAxis": "Вось Y", - "PE.Controllers.Main.unknownErrorText": "Невядомая памылка.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", - "PE.Controllers.Main.uploadImageExtMessage": "Невядомы фармат выявы.", - "PE.Controllers.Main.uploadImageFileCountMessage": "Выяў не запампавана.", - "PE.Controllers.Main.uploadImageSizeMessage": "Перасягнуты максімальны памер выявы.", - "PE.Controllers.Main.uploadImageTextText": "Запампоўванне выявы…", - "PE.Controllers.Main.uploadImageTitleText": "Запампоўванне выявы", - "PE.Controllers.Main.waitText": "Калі ласка, пачакайце...", - "PE.Controllers.Main.warnLicenseExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
    Звяжыцеся з адміністратарам, каб даведацца больш.", - "PE.Controllers.Main.warnLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў.
    Калі ласка, абнавіце ліцэнзію, пасля абнавіце старонку.", - "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Тэрмін дзеяння ліцэнзіі сышоў.
    У вас няма доступу да функцый рэдагавання дакументаў.
    Калі ласка, звярніцеся да адміністратара.", - "PE.Controllers.Main.warnLicenseLimitedRenewed": "Патрэбна абнавіць ліцэнзію.
    У вас абмежаваны доступ да функцый рэдагавання дакументаў.
    Каб атрымаць поўны доступ, звярніцеся да адміністратара", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
    Звяжыцеся з адміністратарам, каб даведацца больш.", - "PE.Controllers.Main.warnNoLicense": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.Гэты дакумент будзе адкрыты для прагляду.
    Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", - "PE.Controllers.Main.warnNoLicenseUsers": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
    Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", - "PE.Controllers.Main.warnProcessRightsChange": "Вам адмоўлена ў правах на рэдагаванне гэтага файла.", - "PE.Controllers.Search.textNoTextFound": "Тэкст не знойдзены", - "PE.Controllers.Search.textReplaceAll": "Замяніць усе", - "PE.Controllers.Settings.notcriticalErrorTitle": "Увага", - "PE.Controllers.Settings.txtLoading": "Загрузка…", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "У дакуменце засталіся незахаваныя змены. Націсніце \"Застацца на старонцы\", каб дачакацца аўтазахавання дакумента. Націсніце \"Сысці са старонкі\", каб адкінуць змены.", - "PE.Controllers.Toolbar.dlgLeaveTitleText": "Вы выходзіце з праграмы", - "PE.Controllers.Toolbar.leaveButtonText": "Сысці са старонкі", - "PE.Controllers.Toolbar.stayButtonText": "Застацца на старонцы", - "PE.Views.AddImage.textAddress": "Адрас", - "PE.Views.AddImage.textBack": "Назад", - "PE.Views.AddImage.textFromLibrary": "Выява з бібліятэкі", - "PE.Views.AddImage.textFromURL": "Выява па URL", - "PE.Views.AddImage.textImageURL": "URL выявы", - "PE.Views.AddImage.textInsertImage": "Уставіць выяву", - "PE.Views.AddImage.textLinkSettings": "Налады спасылкі", - "PE.Views.AddLink.textBack": "Назад", - "PE.Views.AddLink.textDisplay": "Паказваць", - "PE.Views.AddLink.textExternalLink": "Вонкавая спасылка", - "PE.Views.AddLink.textFirst": "Першы слайд", - "PE.Views.AddLink.textInsert": "Уставіць", - "PE.Views.AddLink.textInternalLink": "Слайд у гэтай прэзентацыі", - "PE.Views.AddLink.textLast": "Апошні слайд", - "PE.Views.AddLink.textLink": "Спасылка", - "PE.Views.AddLink.textLinkSlide": "Звязаць з", - "PE.Views.AddLink.textLinkType": "Тып спасылкі", - "PE.Views.AddLink.textNext": "Наступны слайд", - "PE.Views.AddLink.textNumber": "Нумар слайда", - "PE.Views.AddLink.textPrev": "Папярэдні слайд", - "PE.Views.AddLink.textTip": "Падказка", - "PE.Views.AddOther.textAddComment": "Дадаць каментар", - "PE.Views.AddOther.textBack": "Назад", - "PE.Views.AddOther.textComment": "Каментар", - "PE.Views.AddOther.textDisplay": "Паказаць", - "PE.Views.AddOther.textDone": "Завершана", - "PE.Views.AddOther.textExternalLink": "Вонкавая спасылка", - "PE.Views.AddOther.textFirst": "Першы слайд", - "PE.Views.AddOther.textInsert": "Уставіць", - "PE.Views.AddOther.textInternalLink": "Слайд у гэтай прэзентацыі", - "PE.Views.AddOther.textLast": "Апошні слайд", - "PE.Views.AddOther.textLink": "Спасылка", - "PE.Views.AddOther.textLinkSlide": "Звязаць з", - "PE.Views.AddOther.textLinkType": "Тып спасылкі", - "PE.Views.AddOther.textNext": "Наступны слайд", - "PE.Views.AddOther.textNumber": "Нумар слайда", - "PE.Views.AddOther.textPrev": "Папярэдні слайд", - "PE.Views.AddOther.textTable": "Табліца", - "PE.Views.AddOther.textTip": "Падказка", - "PE.Views.EditChart.textAddCustomColor": "Дадаць адвольны колер", - "PE.Views.EditChart.textAlign": "Выраўноўванне", - "PE.Views.EditChart.textAlignBottom": "Выраўнаваць па ніжняму краю", - "PE.Views.EditChart.textAlignCenter": "Выраўнаваць па цэнтры", - "PE.Views.EditChart.textAlignLeft": "Выраўнаваць па леваму краю", - "PE.Views.EditChart.textAlignMiddle": "Па сярэдзіне", - "PE.Views.EditChart.textAlignRight": "Выраўнаваць па праваму краю", - "PE.Views.EditChart.textAlignTop": "Выраўнаваць па верхняму краю", - "PE.Views.EditChart.textBack": "Назад", - "PE.Views.EditChart.textBackward": "Перамясціць назад", - "PE.Views.EditChart.textBorder": "Мяжа", - "PE.Views.EditChart.textColor": "Колер", - "PE.Views.EditChart.textCustomColor": "Адвольны колер", - "PE.Views.EditChart.textFill": "Заліўка", - "PE.Views.EditChart.textForward": "Перамясціць уперад", - "PE.Views.EditChart.textRemoveChart": "Выдаліць дыяграму", - "PE.Views.EditChart.textReorder": "Перапарадкаваць", - "PE.Views.EditChart.textSize": "Памер", - "PE.Views.EditChart.textStyle": "Стыль", - "PE.Views.EditChart.textToBackground": "Перамясціць у фон", - "PE.Views.EditChart.textToForeground": "Перанесці на пярэдні план", - "PE.Views.EditChart.textType": "Тып", - "PE.Views.EditChart.txtDistribHor": "Размеркаваць па гарызанталі", - "PE.Views.EditChart.txtDistribVert": "Размеркаваць па вертыкалі", - "PE.Views.EditImage.textAddress": "Адрас", - "PE.Views.EditImage.textAlign": "Выраўноўванне", - "PE.Views.EditImage.textAlignBottom": "Выраўнаваць па ніжняму краю", - "PE.Views.EditImage.textAlignCenter": "Выраўнаваць па цэнтры", - "PE.Views.EditImage.textAlignLeft": "Выраўнаваць па леваму краю", - "PE.Views.EditImage.textAlignMiddle": "Па сярэдзіне", - "PE.Views.EditImage.textAlignRight": "Выраўнаваць па праваму краю", - "PE.Views.EditImage.textAlignTop": "Выраўнаваць па верхняму краю", - "PE.Views.EditImage.textBack": "Назад", - "PE.Views.EditImage.textBackward": "Перамясціць назад", - "PE.Views.EditImage.textDefault": "Актуальны памер", - "PE.Views.EditImage.textForward": "Перамясціць уперад", - "PE.Views.EditImage.textFromLibrary": "Выява з бібліятэкі", - "PE.Views.EditImage.textFromURL": "Выява па URL", - "PE.Views.EditImage.textImageURL": "URL выявы", - "PE.Views.EditImage.textLinkSettings": "Налады спасылкі", - "PE.Views.EditImage.textRemove": "Выдаліць выяву", - "PE.Views.EditImage.textReorder": "Перапарадкаваць", - "PE.Views.EditImage.textReplace": "Замяніць", - "PE.Views.EditImage.textReplaceImg": "Замяніць выяву", - "PE.Views.EditImage.textToBackground": "Перамясціць у фон", - "PE.Views.EditImage.textToForeground": "Перанесці на пярэдні план", - "PE.Views.EditImage.txtDistribHor": "Размеркаваць па гарызанталі", - "PE.Views.EditImage.txtDistribVert": "Размеркаваць па вертыкалі", - "PE.Views.EditLink.textBack": "Назад", - "PE.Views.EditLink.textDisplay": "Паказваць", - "PE.Views.EditLink.textEdit": "Рэдагаваць спасылку", - "PE.Views.EditLink.textExternalLink": "Вонкавая спасылка", - "PE.Views.EditLink.textFirst": "Першы слайд", - "PE.Views.EditLink.textInternalLink": "Слайд у гэтай прэзентацыі", - "PE.Views.EditLink.textLast": "Апошні слайд", - "PE.Views.EditLink.textLink": "Спасылка", - "PE.Views.EditLink.textLinkSlide": "Звязаць з", - "PE.Views.EditLink.textLinkType": "Тып спасылкі", - "PE.Views.EditLink.textNext": "Наступны слайд", - "PE.Views.EditLink.textNumber": "Нумар слайда", - "PE.Views.EditLink.textPrev": "Папярэдні слайд", - "PE.Views.EditLink.textRemove": "Выдаліць спасылку", - "PE.Views.EditLink.textTip": "Падказка", - "PE.Views.EditShape.textAddCustomColor": "Дадаць адвольны колер", - "PE.Views.EditShape.textAlign": "Выраўноўванне", - "PE.Views.EditShape.textAlignBottom": "Выраўнаваць па ніжняму краю", - "PE.Views.EditShape.textAlignCenter": "Выраўнаваць па цэнтры", - "PE.Views.EditShape.textAlignLeft": "Выраўнаваць па леваму краю", - "PE.Views.EditShape.textAlignMiddle": "Па сярэдзіне", - "PE.Views.EditShape.textAlignRight": "Выраўнаваць па праваму краю", - "PE.Views.EditShape.textAlignTop": "Выраўнаваць па верхняму краю", - "PE.Views.EditShape.textBack": "Назад", - "PE.Views.EditShape.textBackward": "Перамясціць назад", - "PE.Views.EditShape.textBorder": "Мяжа", - "PE.Views.EditShape.textColor": "Колер", - "PE.Views.EditShape.textCustomColor": "Адвольны колер", - "PE.Views.EditShape.textEffects": "Эфекты", - "PE.Views.EditShape.textFill": "Заліўка", - "PE.Views.EditShape.textForward": "Перамясціць уперад", - "PE.Views.EditShape.textOpacity": "Непразрыстасць", - "PE.Views.EditShape.textRemoveShape": "Выдаліць фігуру", - "PE.Views.EditShape.textReorder": "Перапарадкаваць", - "PE.Views.EditShape.textReplace": "Замяніць", - "PE.Views.EditShape.textSize": "Памер", - "PE.Views.EditShape.textStyle": "Стыль", - "PE.Views.EditShape.textToBackground": "Перамясціць у фон", - "PE.Views.EditShape.textToForeground": "Перанесці на пярэдні план", - "PE.Views.EditShape.txtDistribHor": "Размеркаваць па гарызанталі", - "PE.Views.EditShape.txtDistribVert": "Размеркаваць па вертыкалі", - "PE.Views.EditSlide.textAddCustomColor": "Дадаць адвольны колер", - "PE.Views.EditSlide.textApplyAll": "Ужыць да ўсіх слайдаў", - "PE.Views.EditSlide.textBack": "Назад", - "PE.Views.EditSlide.textBlack": "Праз чорны", - "PE.Views.EditSlide.textBottom": "Знізу", - "PE.Views.EditSlide.textBottomLeft": "Знізу злева", - "PE.Views.EditSlide.textBottomRight": "Знізу справа", - "PE.Views.EditSlide.textClock": "Гадзіннік", - "PE.Views.EditSlide.textClockwise": "Па стрэлцы гадзінніка", - "PE.Views.EditSlide.textColor": "Колер", - "PE.Views.EditSlide.textCounterclockwise": "Супраць стрэлкі гадзінніка", - "PE.Views.EditSlide.textCover": "Покрыва", - "PE.Views.EditSlide.textCustomColor": "Адвольны колер", - "PE.Views.EditSlide.textDelay": "Затрымка", - "PE.Views.EditSlide.textDuplicateSlide": "Дубляваць слайд", - "PE.Views.EditSlide.textDuration": "Працягласць", - "PE.Views.EditSlide.textEffect": "Эфект", - "PE.Views.EditSlide.textFade": "Выцвітанне", - "PE.Views.EditSlide.textFill": "Заліўка", - "PE.Views.EditSlide.textHorizontalIn": "Гарызантальна ўнутр", - "PE.Views.EditSlide.textHorizontalOut": "Па гарызанталі вонкі", - "PE.Views.EditSlide.textLayout": "Макет", - "PE.Views.EditSlide.textLeft": "Злева", - "PE.Views.EditSlide.textNone": "Няма", - "PE.Views.EditSlide.textOpacity": "Непразрыстасць", - "PE.Views.EditSlide.textPush": "Ссоўванне", - "PE.Views.EditSlide.textRemoveSlide": "Выдаліць слайд", - "PE.Views.EditSlide.textRight": "Справа", - "PE.Views.EditSlide.textSmoothly": "Плаўна", - "PE.Views.EditSlide.textSplit": "Панарама", - "PE.Views.EditSlide.textStartOnClick": "Запускаць пстрычкай", - "PE.Views.EditSlide.textStyle": "Стыль", - "PE.Views.EditSlide.textTheme": "Тэма", - "PE.Views.EditSlide.textTop": "Уверсе", - "PE.Views.EditSlide.textTopLeft": "Уверсе злева", - "PE.Views.EditSlide.textTopRight": "Уверсе справа", - "PE.Views.EditSlide.textTransition": "Пераход", - "PE.Views.EditSlide.textType": "Тып", - "PE.Views.EditSlide.textUnCover": "Адкрыццё", - "PE.Views.EditSlide.textVerticalIn": "Вертыкальна ўнутр", - "PE.Views.EditSlide.textVerticalOut": "Вертыкальна вонкі", - "PE.Views.EditSlide.textWedge": "Па крузе", - "PE.Views.EditSlide.textWipe": "З’яўленне", - "PE.Views.EditSlide.textZoom": "Маштаб", - "PE.Views.EditSlide.textZoomIn": "Павелічэнне", - "PE.Views.EditSlide.textZoomOut": "Памяншэнне", - "PE.Views.EditSlide.textZoomRotate": "Павелічэнне і паварочванне", - "PE.Views.EditTable.textAddCustomColor": "Дадаць адвольны колер", - "PE.Views.EditTable.textAlign": "Выраўноўванне", - "PE.Views.EditTable.textAlignBottom": "Выраўнаваць па ніжняму краю", - "PE.Views.EditTable.textAlignCenter": "Выраўнаваць па цэнтры", - "PE.Views.EditTable.textAlignLeft": "Выраўнаваць па леваму краю", - "PE.Views.EditTable.textAlignMiddle": "Па сярэдзіне", - "PE.Views.EditTable.textAlignRight": "Выраўнаваць па праваму краю", - "PE.Views.EditTable.textAlignTop": "Выраўнаваць па верхняму краю", - "PE.Views.EditTable.textBack": "Назад", - "PE.Views.EditTable.textBackward": "Перамясціць назад", - "PE.Views.EditTable.textBandedColumn": "Чаргаваць слупкі", - "PE.Views.EditTable.textBandedRow": "Чаргаваць радкі", - "PE.Views.EditTable.textBorder": "Мяжа", - "PE.Views.EditTable.textCellMargins": "Палі ячэйкі", - "PE.Views.EditTable.textColor": "Колер", - "PE.Views.EditTable.textCustomColor": "Адвольны колер", - "PE.Views.EditTable.textFill": "Заліўка", - "PE.Views.EditTable.textFirstColumn": "Першы слупок", - "PE.Views.EditTable.textForward": "Перамясціць уперад", - "PE.Views.EditTable.textHeaderRow": "Радок загалоўка", - "PE.Views.EditTable.textLastColumn": "Апошні слупок", - "PE.Views.EditTable.textOptions": "Параметры", - "PE.Views.EditTable.textRemoveTable": "Выдаліць табліцу", - "PE.Views.EditTable.textReorder": "Перапарадкаваць", - "PE.Views.EditTable.textSize": "Памер", - "PE.Views.EditTable.textStyle": "Стыль", - "PE.Views.EditTable.textStyleOptions": "Параметры стылю", - "PE.Views.EditTable.textTableOptions": "Параметры табліцы", - "PE.Views.EditTable.textToBackground": "Перамясціць у фон", - "PE.Views.EditTable.textToForeground": "Перанесці на пярэдні план", - "PE.Views.EditTable.textTotalRow": "Радок вынікаў", - "PE.Views.EditTable.txtDistribHor": "Размеркаваць па гарызанталі", - "PE.Views.EditTable.txtDistribVert": "Размеркаваць па вертыкалі", - "PE.Views.EditText.textAddCustomColor": "Дадаць адвольны колер", - "PE.Views.EditText.textAdditional": "Дадаткова", - "PE.Views.EditText.textAdditionalFormat": "Дадатковае фарматаванне", - "PE.Views.EditText.textAfter": "Пасля", - "PE.Views.EditText.textAllCaps": "Усе ў верхнім рэгістры", - "PE.Views.EditText.textAutomatic": "Аўтаматычна", - "PE.Views.EditText.textBack": "Назад", - "PE.Views.EditText.textBefore": "Перад", - "PE.Views.EditText.textBullets": "Адзнакі", - "PE.Views.EditText.textCharacterBold": "Т", - "PE.Views.EditText.textCharacterItalic": "К", - "PE.Views.EditText.textCharacterStrikethrough": "З", - "PE.Views.EditText.textCharacterUnderline": "П", - "PE.Views.EditText.textCustomColor": "Адвольны колер", - "PE.Views.EditText.textDblStrikethrough": "Падвойнае закрэсліванне", - "PE.Views.EditText.textDblSuperscript": "Надрадковыя", - "PE.Views.EditText.textFontColor": "Колер шрыфту", - "PE.Views.EditText.textFontColors": "Колеры шрыфту", - "PE.Views.EditText.textFonts": "Шрыфты", - "PE.Views.EditText.textFromText": "Адлегласць да тэксту", - "PE.Views.EditText.textLetterSpacing": "Прамежак", - "PE.Views.EditText.textLineSpacing": "Прамежак паміж радкамі", - "PE.Views.EditText.textNone": "Няма", - "PE.Views.EditText.textNumbers": "Нумарацыя", - "PE.Views.EditText.textSize": "Памер", - "PE.Views.EditText.textSmallCaps": "Малыя прапісныя", - "PE.Views.EditText.textStrikethrough": "Закрэслены", - "PE.Views.EditText.textSubscript": "Падрадковыя", - "PE.Views.Search.textCase": "Улічваць рэгістр", - "PE.Views.Search.textDone": "Завершана", - "PE.Views.Search.textFind": "Пошук", - "PE.Views.Search.textFindAndReplace": "Пошук і замена", - "PE.Views.Search.textReplace": "Замяніць", - "PE.Views.Search.textSearch": "Пошук", - "PE.Views.Settings. textComment": "Каментар", - "PE.Views.Settings.mniSlideStandard": "Стандартны (4:3)", - "PE.Views.Settings.mniSlideWide": "Шырокаэкранны (16:9)", - "PE.Views.Settings.textAbout": "Пра праграму", - "PE.Views.Settings.textAddress": "адрас", - "PE.Views.Settings.textApplication": "Праграма", - "PE.Views.Settings.textApplicationSettings": "Налады праграмы", - "PE.Views.Settings.textAuthor": "Аўтар", - "PE.Views.Settings.textBack": "Назад", - "PE.Views.Settings.textCentimeter": "Сантыметр", - "PE.Views.Settings.textCollaboration": "Сумесная праца", - "PE.Views.Settings.textColorSchemes": "Каляровыя схемы", - "PE.Views.Settings.textCreated": "Створаны", - "PE.Views.Settings.textCreateDate": "Дата стварэння", - "PE.Views.Settings.textDisableAll": "Адключыць усе", - "PE.Views.Settings.textDisableAllMacrosWithNotification": "Адключыць усе макрасы з апавяшчэннем", - "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Адключыць усе макрасы без апавяшчэння", - "PE.Views.Settings.textDone": "Завершана", - "PE.Views.Settings.textDownload": "Спампаваць", - "PE.Views.Settings.textDownloadAs": "Спампаваць як...", - "PE.Views.Settings.textEditPresent": "Рэдагаваць прэзентацыю", - "PE.Views.Settings.textEmail": "электронная пошта", - "PE.Views.Settings.textEnableAll": "Уключыць усе", - "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "Уключыць усе макрасы без апавяшчэння", - "PE.Views.Settings.textFind": "Пошук", - "PE.Views.Settings.textFindAndReplace": "Пошук і замена", - "PE.Views.Settings.textHelp": "Даведка", - "PE.Views.Settings.textInch": "Цаля", - "PE.Views.Settings.textLastModified": "Апошняя змена", - "PE.Views.Settings.textLastModifiedBy": "Аўтар апошняй змены", - "PE.Views.Settings.textLoading": "Загрузка…", - "PE.Views.Settings.textLocation": "Размяшчэнне", - "PE.Views.Settings.textMacrosSettings": "Налады макрасаў", - "PE.Views.Settings.textOwner": "Уладальнік", - "PE.Views.Settings.textPoint": "Пункт", - "PE.Views.Settings.textPoweredBy": "Распрацавана", - "PE.Views.Settings.textPresentInfo": "Інфармацыя аб прэзентацыі", - "PE.Views.Settings.textPresentSettings": "Налады прэзентацыі", - "PE.Views.Settings.textPresentSetup": "Наладка прэзентацыі", - "PE.Views.Settings.textPresentTitle": "Назва прэзентацыі", - "PE.Views.Settings.textPrint": "Друк", - "PE.Views.Settings.textSettings": "Налады", - "PE.Views.Settings.textShowNotification": "Паказваць апавяшчэнне", - "PE.Views.Settings.textSlideSize": "Памер слайда", - "PE.Views.Settings.textSpellcheck": "Праверка правапісу", - "PE.Views.Settings.textSubject": "Тэма", - "PE.Views.Settings.textTel": "Тэлефон", - "PE.Views.Settings.textTitle": "Назва", - "PE.Views.Settings.textUnitOfMeasurement": "Адзінкі вымярэння", - "PE.Views.Settings.textUploaded": "Запампавана", - "PE.Views.Settings.textVersion": "Версія", - "PE.Views.Settings.unknownText": "Невядома", - "PE.Views.Toolbar.textBack": "Назад" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/bg.json b/apps/presentationeditor/mobile/locale/bg.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/bg.json +++ b/apps/presentationeditor/mobile/locale/bg.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ca.json b/apps/presentationeditor/mobile/locale/ca.json index 24629fd57..93085aea7 100644 --- a/apps/presentationeditor/mobile/locale/ca.json +++ b/apps/presentationeditor/mobile/locale/ca.json @@ -71,6 +71,8 @@ "notcriticalErrorTitle": "Advertiment", "SDK": { "Chart": "Gràfic", + "Click to add first slide": "Feu clic per afegir la primera diapositiva", + "Click to add notes": "Feu clic per afegir notes", "ClipArt": "Imatges Predissenyades", "Date and time": "Data i hora", "Diagram": "Diagrama", @@ -78,7 +80,9 @@ "Footer": "Peu de pàgina", "Header": "Capçalera", "Image": "Imatge", + "Loading": "Carregant", "Media": "Mitjans", + "None": "Cap", "Picture": "Imatge", "Series": "Sèrie", "Slide number": "Número de Diapositiva", @@ -258,6 +262,7 @@ "textBottomLeft": "Inferior-Esquerra", "textBottomRight": "Inferior-Dreta", "textBringToForeground": "Portar a Primer pla", + "textBullets": "Vinyetes", "textBulletsAndNumbers": "Vinyetes i números", "textCaseSensitive": "Sensible a Majúscules i Minúscules", "textCellMargins": "Marges de Cel·la", @@ -321,6 +326,7 @@ "textNoStyles": "No hi ha estils per a aquest tipus de diagrama.", "textNoTextFound": "No s'ha trobat el text", "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "textNumbers": "Nombres", "textOpacity": "Opacitat", "textOptions": "Opcions", "textPictureFromLibrary": "Imatge de la Biblioteca", @@ -431,7 +437,29 @@ "textTitle": "Nom", "textUnitOfMeasurement": "Unitat de Mesura", "textUploaded": "Carregat", - "textVersion": "Versió" + "textVersion": "Versió", + "txtScheme1": "Oficina", + "txtScheme10": "Mitjana", + "txtScheme11": "Metro", + "txtScheme12": "Mòdul", + "txtScheme13": "Opulent", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Paper", + "txtScheme17": "Solstici", + "txtScheme18": "Tècnic", + "txtScheme19": "Excursió", + "txtScheme2": "Escala de grisos", + "txtScheme20": "Urbà", + "txtScheme21": "Empenta", + "txtScheme22": "Nova Oficina", + "txtScheme3": "Vèrtex", + "txtScheme4": "Aspecte", + "txtScheme5": "Cívic", + "txtScheme6": "Concurs", + "txtScheme7": "Patrimoni net", + "txtScheme8": "Flux", + "txtScheme9": "Fosa" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/cs.json b/apps/presentationeditor/mobile/locale/cs.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/cs.json +++ b/apps/presentationeditor/mobile/locale/cs.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/de.json b/apps/presentationeditor/mobile/locale/de.json index 35ce763a7..2192defdb 100644 --- a/apps/presentationeditor/mobile/locale/de.json +++ b/apps/presentationeditor/mobile/locale/de.json @@ -71,6 +71,8 @@ "notcriticalErrorTitle": "Warnung", "SDK": { "Chart": "Diagramm", + "Click to add first slide": "Klicken Sie, um die erste Folie hinzuzufügen", + "Click to add notes": "Klicken Sie, um Notizen hinzuzufügen", "ClipArt": "ClipArt", "Date and time": "Datum und Uhrzeit", "Diagram": "Schema", @@ -78,7 +80,9 @@ "Footer": "Fußzeile", "Header": "Kopfzeile", "Image": "Bild", + "Loading": "Ladevorgang", "Media": "Multimedia", + "None": "Kein(e)", "Picture": "Bild", "Series": "Reihen", "Slide number": "Foliennummer", @@ -258,6 +262,7 @@ "textBottomLeft": "Unten links", "textBottomRight": "Unten rechts", "textBringToForeground": "In den Vordergrund bringen", + "textBullets": "Aufzählung", "textBulletsAndNumbers": "Aufzählungszeichen und Nummern", "textCaseSensitive": "Groß-/Kleinschreibung beachten", "textCellMargins": "Zellenränder", @@ -321,6 +326,7 @@ "textNoStyles": "Keine Stile für diesen Typ von Diagrammen.", "textNoTextFound": "Der Text wurde nicht gefunden", "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "textNumbers": "Nummern", "textOpacity": "Undurchsichtigkeit", "textOptions": "Optionen", "textPictureFromLibrary": "Bild aus dem Verzeichnis", @@ -431,7 +437,29 @@ "textTitle": "Titel", "textUnitOfMeasurement": "Maßeinheit", "textUploaded": "Hochgeladen", - "textVersion": "Version" + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Modul", + "txtScheme13": "Reichhaltig", + "txtScheme14": "Erker", + "txtScheme15": "Herkunft", + "txtScheme16": "Papier", + "txtScheme17": "Sonnenwende", + "txtScheme18": "Technik", + "txtScheme19": "Wanderung", + "txtScheme2": "Grauskala", + "txtScheme20": "Rhea", + "txtScheme21": "Telesto", + "txtScheme22": "Neues Office", + "txtScheme3": "Apex", + "txtScheme4": "Bildseitenverhältnis", + "txtScheme5": "bürgerlich", + "txtScheme6": "Konzertsaal", + "txtScheme7": "Eigenkapital", + "txtScheme8": "Fluss", + "txtScheme9": "Gießerei" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/el.json b/apps/presentationeditor/mobile/locale/el.json index 2426576f1..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/el.json +++ b/apps/presentationeditor/mobile/locale/el.json @@ -1,574 +1,465 @@ { - "Common.Controllers.Collaboration.textAddReply": "Προσθήκη Απάντησης", - "Common.Controllers.Collaboration.textCancel": "Ακύρωση", - "Common.Controllers.Collaboration.textDeleteComment": "Διαγραφή σχολίου", - "Common.Controllers.Collaboration.textDeleteReply": "Διαγραφή απάντησης", - "Common.Controllers.Collaboration.textDone": "Ολοκληρώθηκε", - "Common.Controllers.Collaboration.textEdit": "Επεξεργασία", - "Common.Controllers.Collaboration.textEditUser": "Οι χρήστες που επεξεργάζονται το αρχείο:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Θέλετε πραγματικά να διαγράψετε αυτό το σχόλιο;", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Θέλετε πραγματικά να διαγράψετε αυτήν την απάντηση;", - "Common.Controllers.Collaboration.textReopen": "Άνοιγμα ξανά", - "Common.Controllers.Collaboration.textResolve": "Επίλυση", - "Common.Controllers.Collaboration.textYes": "Ναι", - "Common.UI.ThemeColorPalette.textCustomColors": "Προσαρμοσμένα χρώματα", - "Common.UI.ThemeColorPalette.textStandartColors": "Τυπικά χρώματα", - "Common.UI.ThemeColorPalette.textThemeColors": "Χρώματα θέματος", - "Common.Utils.Metric.txtCm": "εκ", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Προσθήκη Απάντησης", - "Common.Views.Collaboration.textBack": "Πίσω", - "Common.Views.Collaboration.textCancel": "Ακύρωση", - "Common.Views.Collaboration.textCollaboration": "Συνεργασία", - "Common.Views.Collaboration.textDone": "Ολοκληρώθηκε", - "Common.Views.Collaboration.textEditReply": "Επεξεργασία απάντησης", - "Common.Views.Collaboration.textEditUsers": "Χρήστες", - "Common.Views.Collaboration.textEditСomment": "Επεξεργασία σχολίου", - "Common.Views.Collaboration.textNoComments": "Αυτή η παρουσίαση δεν περιέχει σχόλια", - "Common.Views.Collaboration.textСomments": "Σχόλια", - "PE.Controllers.AddContainer.textImage": "Εικόνα", - "PE.Controllers.AddContainer.textLink": "Σύνδεσμος", - "PE.Controllers.AddContainer.textOther": "Άλλο", - "PE.Controllers.AddContainer.textShape": "Σχήμα", - "PE.Controllers.AddContainer.textSlide": "Διαφάνεια", - "PE.Controllers.AddContainer.textTable": "Πίνακας", - "PE.Controllers.AddImage.notcriticalErrorTitle": "Προειδοποίηση", - "PE.Controllers.AddImage.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", - "PE.Controllers.AddImage.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση με τη μορφή «http://www.example.com»", - "PE.Controllers.AddLink.notcriticalErrorTitle": "Προειδοποίηση", - "PE.Controllers.AddLink.textDefault": "Επιλεγμένο κείμενο", - "PE.Controllers.AddLink.textExternalLink": "Εξωτερικός σύνδεσμος", - "PE.Controllers.AddLink.textFirst": "Πρώτη διαφάνεια", - "PE.Controllers.AddLink.textInternalLink": "Διαφάνεια σε αυτήν την παρουσίαση", - "PE.Controllers.AddLink.textLast": "Τελευταία διαφάνεια", - "PE.Controllers.AddLink.textNext": "Επόμενη διαφάνεια", - "PE.Controllers.AddLink.textPrev": "Προηγούμενη διαφάνεια", - "PE.Controllers.AddLink.textSlide": "Διαφάνεια", - "PE.Controllers.AddLink.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση με τη μορφή «http://www.example.com»", - "PE.Controllers.AddOther.textCancel": "Ακύρωση", - "PE.Controllers.AddOther.textContinue": "Συνέχεια", - "PE.Controllers.AddOther.textDelete": "Διαγραφή", - "PE.Controllers.AddOther.textDeleteDraft": "Θέλετε πραγματικά να διαγράψετε το πρόχειρο;", - "PE.Controllers.AddTable.textCancel": "Ακύρωση", - "PE.Controllers.AddTable.textColumns": "Στήλες", - "PE.Controllers.AddTable.textRows": "Γραμμές", - "PE.Controllers.AddTable.textTableSize": "Μέγεθος πίνακα", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Οι ενέργειες αντιγραφής, αποκοπής και επικόλλησης χρησιμοποιώντας το μενού περιβάλλοντος θα εκτελούνται μόνο στο τρέχον αρχείο.", - "PE.Controllers.DocumentHolder.menuAddComment": "Προσθήκη σχολίου", - "PE.Controllers.DocumentHolder.menuAddLink": "Προσθήκη συνδέσμου", - "PE.Controllers.DocumentHolder.menuCopy": "Αντιγραφή", - "PE.Controllers.DocumentHolder.menuCut": "Αποκοπή", - "PE.Controllers.DocumentHolder.menuDelete": "Διαγραφή", - "PE.Controllers.DocumentHolder.menuEdit": "Επεξεργασία", - "PE.Controllers.DocumentHolder.menuMore": "Περισσότερα", - "PE.Controllers.DocumentHolder.menuOpenLink": "Άνοιγμα συνδέσμου", - "PE.Controllers.DocumentHolder.menuPaste": "Επικόλληση", - "PE.Controllers.DocumentHolder.menuViewComment": "Προβολή σχολίου", - "PE.Controllers.DocumentHolder.sheetCancel": "Ακύρωση", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Ενέργειες αντιγραφής, αποκοπής και επικόλλησης", - "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Να μην εμφανίζεται ξανά", - "PE.Controllers.DocumentPreview.txtFinalMessage": "Τέλος προεπισκόπησης διαφανειών. Κάντε κλικ για έξοδο.", - "PE.Controllers.EditContainer.textChart": "Διάγραμμα", - "PE.Controllers.EditContainer.textHyperlink": "Υπερσύνδεσμος", - "PE.Controllers.EditContainer.textImage": "Εικόνα", - "PE.Controllers.EditContainer.textSettings": "Ρυθμίσεις", - "PE.Controllers.EditContainer.textShape": "Σχήμα", - "PE.Controllers.EditContainer.textSlide": "Διαφάνεια", - "PE.Controllers.EditContainer.textTable": "Πίνακας", - "PE.Controllers.EditContainer.textText": "Κείμενο", - "PE.Controllers.EditImage.notcriticalErrorTitle": "Προειδοποίηση", - "PE.Controllers.EditImage.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", - "PE.Controllers.EditImage.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση με τη μορφή «http://www.example.com»", - "PE.Controllers.EditLink.notcriticalErrorTitle": "Προειδοποίηση", - "PE.Controllers.EditLink.textDefault": "Επιλεγμένο κείμενο", - "PE.Controllers.EditLink.textExternalLink": "Εξωτερικός σύνδεσμος", - "PE.Controllers.EditLink.textFirst": "Πρώτη διαφάνεια", - "PE.Controllers.EditLink.textInternalLink": "Διαφάνεια σε αυτήν την παρουσίαση", - "PE.Controllers.EditLink.textLast": "Τελευταία διαφάνεια", - "PE.Controllers.EditLink.textNext": "Επόμενη διαφάνεια", - "PE.Controllers.EditLink.textPrev": "Προηγούμενη διαφάνεια", - "PE.Controllers.EditLink.textSlide": "Διαφάνεια", - "PE.Controllers.EditLink.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση με τη μορφή «http://www.example.com»", - "PE.Controllers.EditSlide.textSec": "s", - "PE.Controllers.EditText.textAuto": "Αυτόματα", - "PE.Controllers.EditText.textFonts": "Γραμματοσειρές", - "PE.Controllers.EditText.textPt": "pt", - "PE.Controllers.Main.advDRMEnterPassword": "Εισάγετε το συνθηματικό σας:", - "PE.Controllers.Main.advDRMOptions": "Προστατευμένο αρχείο", - "PE.Controllers.Main.advDRMPassword": "Συνθηματικό", - "PE.Controllers.Main.applyChangesTextText": "Γίνεται φόρτωση δεδομένων...", - "PE.Controllers.Main.applyChangesTitleText": "Γίνεται φόρτωση δεδομένων", - "PE.Controllers.Main.closeButtonText": "Κλείσιμο αρχείου", - "PE.Controllers.Main.convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", - "PE.Controllers.Main.criticalErrorExtText": "Πατήστε «OK» για να επιστρέψετε στη λίστα εγγράφων.", - "PE.Controllers.Main.criticalErrorTitle": "Σφάλμα", - "PE.Controllers.Main.downloadErrorText": "Αποτυχία λήψης.", - "PE.Controllers.Main.downloadTextText": "Γίνεται λήψη παρουσίασης...", - "PE.Controllers.Main.downloadTitleText": "Λήψη παρουσίασης", - "PE.Controllers.Main.errorAccessDeny": "Προσπαθείτε να εκτελέσετε μια ενέργεια για την οποία δεν έχετε δικαιώματα.
    Παρακαλούμε να επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων.", - "PE.Controllers.Main.errorBadImageUrl": "Εσφαλμένος σύνδεσμος εικόνας", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Η επικοινωνία με τον εξυπηρετητή διακόπηκε. Δεν μπορείτε να συνεχίσετε την επεξεργασία.", - "PE.Controllers.Main.errorConnectToServer": "Δεν ήταν δυνατή η αποθήκευση του εγγράφου. Παρακαλούμε ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή σας.
    Όταν κάνετε κλικ στο κουμπί «OK», θα σας ζητηθεί να πραγματοποιήσετε λήψη του εγγράφου.", - "PE.Controllers.Main.errorDatabaseConnection": "Εξωτερικό σφάλμα
    Σφάλμα σύνδεσης βάσης δεδομένων. Παρακαλούμε, επικοινωνήστε με την υποστήριξη.", - "PE.Controllers.Main.errorDataEncrypted": "Οι κρυπτογραφημένες αλλαγές έχουν ληφθεί, δεν μπορούν να αποκρυπτογραφηθούν.", - "PE.Controllers.Main.errorDataRange": "Εσφαλμένο εύρος δεδομένων.", - "PE.Controllers.Main.errorDefaultMessage": "Κωδικός σφάλματος: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.
    Χρησιμοποιήστε την επιλογή «Λήψη» για να αποθηκεύσετε το αντίγραφο ασφαλείας του αρχείου στον σκληρό δίσκο του υπολογιστή σας.", - "PE.Controllers.Main.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", - "PE.Controllers.Main.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
    Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", - "PE.Controllers.Main.errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού", - "PE.Controllers.Main.errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει", - "PE.Controllers.Main.errorOpensource": "Χρησιμοποιώντας τη δωρεάν έκδοση κοινότητας, μπορείτε να ανοίξετε έγγραφα μόνο για προβολή. Για πρόσβαση σε συντάκτες εφαρμογών ιστού για κινητά, απαιτείται εμπορική άδεια.", - "PE.Controllers.Main.errorProcessSaveResult": "Αποτυχία αποθήκευσης.", - "PE.Controllers.Main.errorServerVersion": "Η έκδοση του προγράμματος επεξεργασίας έχει ενημερωθεί. Η σελίδα θα φορτωθεί ξανά για να εφαρμοστούν οι αλλαγές.", - "PE.Controllers.Main.errorSessionAbsolute": "Η περίοδος επεξεργασίας εγγράφων έχει λήξει. Παρακαλούμε φορτώστε ξανά τη σελίδα.", - "PE.Controllers.Main.errorSessionIdle": "Το έγγραφο δεν έχει επεξεργαστεί εδώ και πολύ ώρα. Παρακαλούμε φορτώστε ξανά τη σελίδα.", - "PE.Controllers.Main.errorSessionToken": "Η σύνδεση με το διακομιστή έχει διακοπεί. Παρακαλούμε φορτώστε ξανά τη σελίδα.", - "PE.Controllers.Main.errorStockChart": "Λανθασμένη σειρά της γραμμής. Για να δημιουργήσετε ένα γράφημα μετοχών τοποθετήστε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:
    τιμή ανοίγματος, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.", - "PE.Controllers.Main.errorUpdateVersion": "Η έκδοση του αρχείου έχει αλλάξει. Η σελίδα θα φορτωθεί ξανά.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Η σύνδεση στο Διαδίκτυο έχει αποκατασταθεί και η έκδοση του αρχείου έχει αλλάξει.
    Προτού συνεχίσετε να εργάζεστε, πρέπει να κατεβάσετε το αρχείο ή να αντιγράψετε το περιεχόμενό του για να βεβαιωθείτε ότι δεν έχει χαθεί τίποτα και, στη συνέχεια, φορτώστε ξανά αυτήν τη σελίδα.", - "PE.Controllers.Main.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", - "PE.Controllers.Main.errorUsersExceed": "Υπέρβαση του αριθμού χρηστών", - "PE.Controllers.Main.errorViewerDisconnect": "Η σύνδεση έχει χαθεί. Μπορείτε ακόμα να προβάλετε το έγγραφο,
    αλλά δεν θα μπορείτε να κάνετε λήψη μέχρι να αποκατασταθεί η σύνδεση και να φορτωθεί ξανά η σελίδα.", - "PE.Controllers.Main.leavePageText": "Έχετε μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο. Κάντε κλικ στο «Παραμονή σε αυτήν τη σελίδα» για να περιμένετε την αυτόματη αποθήκευση του εγγράφου. Κάντε κλικ στο «Έξοδος από τη σελίδα» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", - "PE.Controllers.Main.loadFontsTextText": "Γίνεται φόρτωση δεδομένων...", - "PE.Controllers.Main.loadFontsTitleText": "Γίνεται φόρτωση δεδομένων", - "PE.Controllers.Main.loadFontTextText": "Γίνεται φόρτωση δεδομένων...", - "PE.Controllers.Main.loadFontTitleText": "Γίνεται φόρτωση δεδομένων", - "PE.Controllers.Main.loadImagesTextText": "Γίνεται φόρτωση εικόνων...", - "PE.Controllers.Main.loadImagesTitleText": "Γίνεται φόρτωση εικόνων", - "PE.Controllers.Main.loadImageTextText": "Γίνεται φόρτωση εικόνας...", - "PE.Controllers.Main.loadImageTitleText": "Γίνεται φόρτωση εικόνας", - "PE.Controllers.Main.loadingDocumentTextText": "Γίνεται φόρτωση παρουσίασης...", - "PE.Controllers.Main.loadingDocumentTitleText": "Γίνεται φόρτωση παρουσίασης", - "PE.Controllers.Main.loadThemeTextText": "Γίνεται φόρτωση θέματος...", - "PE.Controllers.Main.loadThemeTitleText": "Γίνεται φόρτωση θέματος", - "PE.Controllers.Main.notcriticalErrorTitle": "Προειδοποίηση", - "PE.Controllers.Main.openErrorText": "Παρουσιάστηκε σφάλμα κατά το άνοιγμα του αρχείου.", - "PE.Controllers.Main.openTextText": "Γίνεται άνοιγμα εγγράφου...", - "PE.Controllers.Main.openTitleText": "Άνοιγμα εγγράφου", - "PE.Controllers.Main.printTextText": "Γίνεται εκτύπωση εγγράφου...", - "PE.Controllers.Main.printTitleText": "Εκτύπωση εγγράφου", - "PE.Controllers.Main.reloadButtonText": "Επανάληψη φόρτωσης σελίδας", - "PE.Controllers.Main.requestEditFailedMessageText": "Κάποιος επεξεργάζεται αυτό το έγγραφο αυτήν τη στιγμή. Παρακαλούμε δοκιμάστε ξανά αργότερα.", - "PE.Controllers.Main.requestEditFailedTitleText": "Δεν επιτρέπεται η πρόσβαση", - "PE.Controllers.Main.saveErrorText": "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του αρχείου.", - "PE.Controllers.Main.savePreparingText": "Προετοιμασία για αποθήκευση", - "PE.Controllers.Main.savePreparingTitle": "Προετοιμασία για αποθήκευση. Παρακαλούμε περιμένετε...", - "PE.Controllers.Main.saveTextText": "Γίνεται αποθήκευση εγγράφου...", - "PE.Controllers.Main.saveTitleText": "Αποθήκευση εγγράφου", - "PE.Controllers.Main.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Παρακαλούμε φορτώστε ξανά τη σελίδα.", - "PE.Controllers.Main.splitDividerErrorText": "Ο αριθμός των σειρών πρέπει να είναι διαιρέτης του %1", - "PE.Controllers.Main.splitMaxColsErrorText": "Ο αριθμός στηλών πρέπει να είναι μικρότερος από %1", - "PE.Controllers.Main.splitMaxRowsErrorText": "Ο αριθμός των σειρών πρέπει να είναι μικρότερος από %1", - "PE.Controllers.Main.textAnonymous": "Ανώνυμος", - "PE.Controllers.Main.textBack": "Πίσω", - "PE.Controllers.Main.textBuyNow": "Επισκεφθείτε την ιστοσελίδα", - "PE.Controllers.Main.textCancel": "Ακύρωση", - "PE.Controllers.Main.textClose": "Κλείσιμο", - "PE.Controllers.Main.textCloseTip": "Πατήστε για να κλείσετε την συμβουλή.", - "PE.Controllers.Main.textContactUs": "Επικοινωνήστε με τις πωλήσεις", - "PE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.
    Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.", - "PE.Controllers.Main.textDone": "Ολοκληρώθηκε", - "PE.Controllers.Main.textGuest": "Επισκέπτης", - "PE.Controllers.Main.textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
    Θέλετε να εκτελέσετε μακροεντολές;", - "PE.Controllers.Main.textLoadingDocument": "Γίνεται φόρτωση παρουσίασης", - "PE.Controllers.Main.textNo": "Όχι", - "PE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.", - "PE.Controllers.Main.textOK": "Εντάξει", - "PE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή", - "PE.Controllers.Main.textPassword": "Συνθηματικό", - "PE.Controllers.Main.textPreloader": "Φόρτωση ...", - "PE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία", - "PE.Controllers.Main.textShape": "Σχήμα", - "PE.Controllers.Main.textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη απενεργοποιούνται για τη λειτουργία γρήγορης συν-επεξεργασίας.", - "PE.Controllers.Main.textUsername": "Όνομα χρήστη", - "PE.Controllers.Main.textYes": "Ναι", - "PE.Controllers.Main.titleLicenseExp": "Η άδεια έληξε", - "PE.Controllers.Main.titleServerVersion": "Ο επεξεργαστής ενημερώθηκε", - "PE.Controllers.Main.txtAddFirstSlide": "Κάντε κλικ για να προσθέσετε την πρώτη διαφάνεια", - "PE.Controllers.Main.txtArt": "Το κείμενό σας εδώ", - "PE.Controllers.Main.txtBasicShapes": "Βασικά σχήματα", - "PE.Controllers.Main.txtButtons": "Κουμπιά", - "PE.Controllers.Main.txtCallouts": "Επεξηγήσεις", - "PE.Controllers.Main.txtCharts": "Διαγράμματα", - "PE.Controllers.Main.txtClipArt": "Εικονίδιο", - "PE.Controllers.Main.txtDateTime": "Ημερομηνία και ώρα", - "PE.Controllers.Main.txtDiagram": "SmartArt", - "PE.Controllers.Main.txtDiagramTitle": "Τίτλος διαγράμματος", - "PE.Controllers.Main.txtEditingMode": "Ορισμός λειτουργίας επεξεργασίας...", - "PE.Controllers.Main.txtFiguredArrows": "Βέλη", - "PE.Controllers.Main.txtFooter": "Υποσέλιδο", - "PE.Controllers.Main.txtHeader": "Κεφαλίδα", - "PE.Controllers.Main.txtImage": "Εικόνα", - "PE.Controllers.Main.txtLines": "Γραμμές", - "PE.Controllers.Main.txtMath": "Μαθηματικά", - "PE.Controllers.Main.txtMedia": "Μέσα", - "PE.Controllers.Main.txtNeedSynchronize": "Έχετε ενημερώσεις", - "PE.Controllers.Main.txtPicture": "Εικόνα", - "PE.Controllers.Main.txtProtected": "Μόλις εισαγάγετε το συνθηματικό και ανοίξετε το αρχείο, θα γίνει επαναφορά του τρέχοντος συνθηματικού του αρχείου", - "PE.Controllers.Main.txtRectangles": "Ορθογώνια", - "PE.Controllers.Main.txtSeries": "Σειρά", - "PE.Controllers.Main.txtSldLtTBlank": "Κενό", - "PE.Controllers.Main.txtSldLtTChart": "Διάγραμμα", - "PE.Controllers.Main.txtSldLtTChartAndTx": "Διάγραμμα και κείμενο", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Εικονίδιο και κείμενο", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Εικονίδιο και κάθετο κείμενο", - "PE.Controllers.Main.txtSldLtTCust": "Προσαρμογή", - "PE.Controllers.Main.txtSldLtTDgm": "Διάγραμμα", - "PE.Controllers.Main.txtSldLtTFourObj": "Τέσσερα αντικείμενα", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Μέσα και Κείμενο", - "PE.Controllers.Main.txtSldLtTObj": "Τίτλος και Αντικείμενο", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Αντικείμενο και Δυο αντικείμενα", - "PE.Controllers.Main.txtSldLtTObjAndTx": "Αντικείμενο και Κείμενο", - "PE.Controllers.Main.txtSldLtTObjOnly": "Αντικείμενο", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Αντικείμενο επάνω σε κείμενο", - "PE.Controllers.Main.txtSldLtTObjTx": "Τίτλος, αντικείμενο και λεζάντα", - "PE.Controllers.Main.txtSldLtTPicTx": "Εικόνα και λεζάντα", - "PE.Controllers.Main.txtSldLtTSecHead": "Κεφαλίδα ενότητας", - "PE.Controllers.Main.txtSldLtTTbl": "Πίνακας", - "PE.Controllers.Main.txtSldLtTTitle": "Τίτλος", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Μόνο τίτλος", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Κείμενο δύο στηλών", - "PE.Controllers.Main.txtSldLtTTwoObj": "Δύο αντικείμενα", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Δυο αντικείμενα και αντικείμενο", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Δυο αντικείμενα και κείμενο", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Δυο αντικείμενα επάνω σε κείμενο", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Δυο κείμενα και δυο αντικείμενα", - "PE.Controllers.Main.txtSldLtTTx": "Κείμενο", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Κείμενο και διάγραμμα", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Κείμενο και εικονίδιο", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "Κείμενο και πολυμέσα", - "PE.Controllers.Main.txtSldLtTTxAndObj": "Κείμενο και αντικείμενο", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Κείμενο και δυο αντικείμενα", - "PE.Controllers.Main.txtSldLtTTxOverObj": "Κείμενο επάνω σε αντικείμενο", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Κάθετος τίτλος και κείμενο", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Κάθετος τίτλος και κείμενο πάνω από το γράφημα", - "PE.Controllers.Main.txtSldLtTVertTx": "Κάθετο κείμενο", - "PE.Controllers.Main.txtSlideNumber": "Αριθμός διαφάνειας", - "PE.Controllers.Main.txtSlideSubtitle": "Υπότιτλος διαφάνειας", - "PE.Controllers.Main.txtSlideText": "Κείμενο διαφάνειας", - "PE.Controllers.Main.txtSlideTitle": "Τίτλος διαφάνειας", - "PE.Controllers.Main.txtStarsRibbons": "Αστέρια & Κορδέλες", - "PE.Controllers.Main.txtXAxis": "Άξονας Χ", - "PE.Controllers.Main.txtYAxis": "Άξονας Υ", - "PE.Controllers.Main.unknownErrorText": "Άγνωστο σφάλμα.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", - "PE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", - "PE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "PE.Controllers.Main.uploadImageSizeMessage": "Υπέρβαση μέγιστου ορίου μεγέθους εικόνας.", - "PE.Controllers.Main.uploadImageTextText": "Γίνεται μεταφόρτωση εικόνας...", - "PE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση εικόνας", - "PE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", - "PE.Controllers.Main.warnLicenseExceeded": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με %1 επεξεργαστές. Αυτό το έγγραφο θα ανοίχτεί μόνο για προβολή.​​
    Παρακαλούμε επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", - "PE.Controllers.Main.warnLicenseExp": "Η άδειά σας έχει λήξει.
    Παρακαλούμε ενημερώστε την άδεια χρήσης σας και ανανεώστε τη σελίδα.", - "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Η άδεια έληξε.
    Δεν έχετε πρόσβαση σε δυνατότητες επεξεργασίας εγγράφων.
    Επικοινωνήστε με τον διαχειριστή σας.", - "PE.Controllers.Main.warnLicenseLimitedRenewed": "Η άδεια πρέπει να ανανεωθεί.
    Έχετε περιορισμένη πρόσβαση στη λειτουργία επεξεργασίας εγγράφων.
    Επικοινωνήστε με τον διαχειριστή σας για πλήρη πρόσβαση", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Έχετε φτάσει το όριο χρήστη για %1 επεξεργαστές.
    Παρακαλούμε επικοινωνήστε με τον διαχειριστή σας για περισσότερες πληροφορίες.", - "PE.Controllers.Main.warnNoLicense": "Έχετε φτάσει το όριο για ταυτόχρονες συνδέσεις με %1 επεξεργαστές. Αυτό το έγγραφο θα ανοίχτεί μόνο για προβολή.​​
    Παρακαλούμε επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "PE.Controllers.Main.warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για %1 επεξεργαστές.
    Παρακαλούμε επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "PE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.", - "PE.Controllers.Search.textNoTextFound": "Δεν βρέθηκε κείμενο", - "PE.Controllers.Search.textReplaceAll": "Αντικατάσταση όλων", - "PE.Controllers.Settings.notcriticalErrorTitle": "Προειδοποίηση", - "PE.Controllers.Settings.txtLoading": "Φόρτωση ...", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο. Κάντε κλικ στο «Παραμονή σε αυτήν τη σελίδα» για να περιμένετε την αυτόματη αποθήκευση του εγγράφου. Κάντε κλικ στο «Έξοδος από τη σελίδα» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", - "PE.Controllers.Toolbar.dlgLeaveTitleText": "Έξοδος από την εφαρμογή", - "PE.Controllers.Toolbar.leaveButtonText": "Έξοδος από τη σελίδα", - "PE.Controllers.Toolbar.stayButtonText": "Παραμονή σε αυτήν τη σελίδα", - "PE.Views.AddImage.textAddress": "Διεύθυνση", - "PE.Views.AddImage.textBack": "Πίσω", - "PE.Views.AddImage.textFromLibrary": "Εικόνα από τη βιβλιοθήκη", - "PE.Views.AddImage.textFromURL": "Εικόνα από σύνδεσμο", - "PE.Views.AddImage.textImageURL": "Διεύθυνση εικόνας", - "PE.Views.AddImage.textInsertImage": "Εισαγωγή εικόνας", - "PE.Views.AddImage.textLinkSettings": "Ρυθμίσεις συνδέσμου", - "PE.Views.AddLink.textBack": "Πίσω", - "PE.Views.AddLink.textDisplay": "Προβολή", - "PE.Views.AddLink.textExternalLink": "Εξωτερικός σύνδεσμος", - "PE.Views.AddLink.textFirst": "Πρώτη διαφάνεια", - "PE.Views.AddLink.textInsert": "Εισαγωγή", - "PE.Views.AddLink.textInternalLink": "Διαφάνεια σε αυτήν την παρουσίαση", - "PE.Views.AddLink.textLast": "Τελευταία διαφάνεια", - "PE.Views.AddLink.textLink": "Σύνδεσμος", - "PE.Views.AddLink.textLinkSlide": "Σύνδεσμος σε", - "PE.Views.AddLink.textLinkType": "Τύπος συνδέσμου", - "PE.Views.AddLink.textNext": "Επόμενη διαφάνεια", - "PE.Views.AddLink.textNumber": "Αριθμός διαφάνειας", - "PE.Views.AddLink.textPrev": "Προηγούμενη διαφάνεια", - "PE.Views.AddLink.textTip": "Συμβουλή οθόνης", - "PE.Views.AddOther.textAddComment": "Προσθήκη σχολίου", - "PE.Views.AddOther.textBack": "Πίσω", - "PE.Views.AddOther.textComment": "Σχόλιο", - "PE.Views.AddOther.textDisplay": "Προβολή", - "PE.Views.AddOther.textDone": "Ολοκληρώθηκε", - "PE.Views.AddOther.textExternalLink": "Εξωτερικός σύνδεσμος", - "PE.Views.AddOther.textFirst": "Πρώτη διαφάνεια", - "PE.Views.AddOther.textInsert": "Εισαγωγή", - "PE.Views.AddOther.textInternalLink": "Διαφάνεια σε αυτήν την παρουσίαση", - "PE.Views.AddOther.textLast": "Τελευταία διαφάνεια", - "PE.Views.AddOther.textLink": "Σύνδεσμος", - "PE.Views.AddOther.textLinkSlide": "Σύνδεσμος σε", - "PE.Views.AddOther.textLinkType": "Τύπος συνδέσμου", - "PE.Views.AddOther.textNext": "Επόμενη διαφάνεια", - "PE.Views.AddOther.textNumber": "Αριθμός διαφάνειας", - "PE.Views.AddOther.textPrev": "Προηγούμενη διαφάνεια", - "PE.Views.AddOther.textTable": "Πίνακας", - "PE.Views.AddOther.textTip": "Συμβουλή οθόνης", - "PE.Views.EditChart.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "PE.Views.EditChart.textAlign": "Στοίχιση", - "PE.Views.EditChart.textAlignBottom": "Σοίχιση κάτω", - "PE.Views.EditChart.textAlignCenter": "Στοίχιση στο κέντρο", - "PE.Views.EditChart.textAlignLeft": "Στοίχιση αριστερά", - "PE.Views.EditChart.textAlignMiddle": "Σοίχιση στη μέση", - "PE.Views.EditChart.textAlignRight": "Στοίχιση δεξιά", - "PE.Views.EditChart.textAlignTop": "Στοίχιση επάνω", - "PE.Views.EditChart.textBack": "Πίσω", - "PE.Views.EditChart.textBackward": "Μετακίνηση προς τα πίσω", - "PE.Views.EditChart.textBorder": "Περίγραμμα", - "PE.Views.EditChart.textColor": "Χρώμα", - "PE.Views.EditChart.textCustomColor": "Προσαρμοσμένο χρώμα", - "PE.Views.EditChart.textFill": "Γέμισμα", - "PE.Views.EditChart.textForward": "Μετακίνηση προς τα εμπρός", - "PE.Views.EditChart.textRemoveChart": "Αφαίρεση διαγράμματος", - "PE.Views.EditChart.textReorder": "Επανατακτοποίηση", - "PE.Views.EditChart.textSize": "Μέγεθος", - "PE.Views.EditChart.textStyle": "Στυλ", - "PE.Views.EditChart.textToBackground": "Μεταφορά στο Παρασκήνιο", - "PE.Views.EditChart.textToForeground": "Μεταφορά στο προσκήνιο", - "PE.Views.EditChart.textType": "Τύπος", - "PE.Views.EditChart.txtDistribHor": "Διανομή οριζόντια", - "PE.Views.EditChart.txtDistribVert": "Διανομή κάθετα", - "PE.Views.EditImage.textAddress": "Διεύθυνση", - "PE.Views.EditImage.textAlign": "Στοίχιση", - "PE.Views.EditImage.textAlignBottom": "Σοίχιση κάτω", - "PE.Views.EditImage.textAlignCenter": "Στοίχιση στο κέντρο", - "PE.Views.EditImage.textAlignLeft": "Στοίχιση αριστερά", - "PE.Views.EditImage.textAlignMiddle": "Σοίχιση στη μέση", - "PE.Views.EditImage.textAlignRight": "Στοίχιση δεξιά", - "PE.Views.EditImage.textAlignTop": "Στοίχιση επάνω", - "PE.Views.EditImage.textBack": "Πίσω", - "PE.Views.EditImage.textBackward": "Μετακίνηση προς τα πίσω", - "PE.Views.EditImage.textDefault": "Πλήρες μέγεθος", - "PE.Views.EditImage.textForward": "Μετακίνηση προς τα εμπρός", - "PE.Views.EditImage.textFromLibrary": "Εικόνα από τη βιβλιοθήκη", - "PE.Views.EditImage.textFromURL": "Εικόνα από σύνδεσμο", - "PE.Views.EditImage.textImageURL": "Διεύθυνση εικόνας", - "PE.Views.EditImage.textLinkSettings": "Ρυθμίσεις συνδέσμου", - "PE.Views.EditImage.textRemove": "Αφαίρεση εικόνας", - "PE.Views.EditImage.textReorder": "Επανατακτοποίηση", - "PE.Views.EditImage.textReplace": "Αντικατάσταση", - "PE.Views.EditImage.textReplaceImg": "Αντικατάσταση εικόνας", - "PE.Views.EditImage.textToBackground": "Μεταφορά στο Παρασκήνιο", - "PE.Views.EditImage.textToForeground": "Μεταφορά στο προσκήνιο", - "PE.Views.EditImage.txtDistribHor": "Διανομή οριζόντια", - "PE.Views.EditImage.txtDistribVert": "Διανομή κάθετα", - "PE.Views.EditLink.textBack": "Πίσω", - "PE.Views.EditLink.textDisplay": "Προβολή", - "PE.Views.EditLink.textEdit": "Επεξεργασία συνδέσμου", - "PE.Views.EditLink.textExternalLink": "Εξωτερικός σύνδεσμος", - "PE.Views.EditLink.textFirst": "Πρώτη διαφάνεια", - "PE.Views.EditLink.textInternalLink": "Διαφάνεια σε αυτήν την παρουσίαση", - "PE.Views.EditLink.textLast": "Τελευταία διαφάνεια", - "PE.Views.EditLink.textLink": "Σύνδεσμος", - "PE.Views.EditLink.textLinkSlide": "Σύνδεσμος σε", - "PE.Views.EditLink.textLinkType": "Τύπος συνδέσμου", - "PE.Views.EditLink.textNext": "Επόμενη διαφάνεια", - "PE.Views.EditLink.textNumber": "Αριθμός διαφάνειας", - "PE.Views.EditLink.textPrev": "Προηγούμενη διαφάνεια", - "PE.Views.EditLink.textRemove": "Αφαίρεση συνδέσμου", - "PE.Views.EditLink.textTip": "Συμβουλή οθόνης", - "PE.Views.EditShape.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "PE.Views.EditShape.textAlign": "Στοίχιση", - "PE.Views.EditShape.textAlignBottom": "Σοίχιση κάτω", - "PE.Views.EditShape.textAlignCenter": "Στοίχιση στο κέντρο", - "PE.Views.EditShape.textAlignLeft": "Στοίχιση αριστερά", - "PE.Views.EditShape.textAlignMiddle": "Σοίχιση στη μέση", - "PE.Views.EditShape.textAlignRight": "Στοίχιση δεξιά", - "PE.Views.EditShape.textAlignTop": "Στοίχιση επάνω", - "PE.Views.EditShape.textBack": "Πίσω", - "PE.Views.EditShape.textBackward": "Μετακίνηση προς τα πίσω", - "PE.Views.EditShape.textBorder": "Περίγραμμα", - "PE.Views.EditShape.textColor": "Χρώμα", - "PE.Views.EditShape.textCustomColor": "Προσαρμοσμένο χρώμα", - "PE.Views.EditShape.textEffects": "Εφέ", - "PE.Views.EditShape.textFill": "Γέμισμα", - "PE.Views.EditShape.textForward": "Μετακίνηση προς τα εμπρός", - "PE.Views.EditShape.textOpacity": "Αδιαφάνεια", - "PE.Views.EditShape.textRemoveShape": "Αφαίρεση σχήματος", - "PE.Views.EditShape.textReorder": "Επανατακτοποίηση", - "PE.Views.EditShape.textReplace": "Αντικατάσταση", - "PE.Views.EditShape.textSize": "Μέγεθος", - "PE.Views.EditShape.textStyle": "Στυλ", - "PE.Views.EditShape.textToBackground": "Μεταφορά στο Παρασκήνιο", - "PE.Views.EditShape.textToForeground": "Μεταφορά στο προσκήνιο", - "PE.Views.EditShape.txtDistribHor": "Διανομή οριζόντια", - "PE.Views.EditShape.txtDistribVert": "Διανομή κάθετα", - "PE.Views.EditSlide.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "PE.Views.EditSlide.textApplyAll": "Εφαρμογή σε όλες τις διαφάνειες", - "PE.Views.EditSlide.textBack": "Πίσω", - "PE.Views.EditSlide.textBlack": "Μέσω του Μαύρου", - "PE.Views.EditSlide.textBottom": "Κάτω", - "PE.Views.EditSlide.textBottomLeft": "Κάτω-αριστερά", - "PE.Views.EditSlide.textBottomRight": "Κάτω-δεξιά", - "PE.Views.EditSlide.textClock": "Ρολόι", - "PE.Views.EditSlide.textClockwise": "Δεξιόστροφα", - "PE.Views.EditSlide.textColor": "Χρώμα", - "PE.Views.EditSlide.textCounterclockwise": "Αριστερόστροφα", - "PE.Views.EditSlide.textCover": "Εξώφυλλο", - "PE.Views.EditSlide.textCustomColor": "Προσαρμοσμένο χρώμα", - "PE.Views.EditSlide.textDelay": "Καθυστέρηση", - "PE.Views.EditSlide.textDuplicateSlide": "Αναπαραγωγή διαφάνειας", - "PE.Views.EditSlide.textDuration": "Διάρκεια", - "PE.Views.EditSlide.textEffect": "Εφέ", - "PE.Views.EditSlide.textFade": "Σβήσιμο", - "PE.Views.EditSlide.textFill": "Γέμισμα", - "PE.Views.EditSlide.textHorizontalIn": "Οριζόντιο εσωτερικό", - "PE.Views.EditSlide.textHorizontalOut": "Οριζόντιο εξωτερικό", - "PE.Views.EditSlide.textLayout": "Διάταξη", - "PE.Views.EditSlide.textLeft": "Αριστερά", - "PE.Views.EditSlide.textNone": "Κανένα", - "PE.Views.EditSlide.textOpacity": "Αδιαφάνεια", - "PE.Views.EditSlide.textPush": "Ώθηση", - "PE.Views.EditSlide.textRemoveSlide": "Διαγραφή διαφάνειας", - "PE.Views.EditSlide.textRight": "Δεξιά", - "PE.Views.EditSlide.textSmoothly": "Ομαλή μετάβαση", - "PE.Views.EditSlide.textSplit": "Διαίρεση", - "PE.Views.EditSlide.textStartOnClick": "Εκκίνηση με κλικ", - "PE.Views.EditSlide.textStyle": "Στυλ", - "PE.Views.EditSlide.textTheme": "Θέμα", - "PE.Views.EditSlide.textTop": "Επάνω", - "PE.Views.EditSlide.textTopLeft": "Επάνω-αριστερά", - "PE.Views.EditSlide.textTopRight": "Επάνω-δεξιά", - "PE.Views.EditSlide.textTransition": "Μετάβαση", - "PE.Views.EditSlide.textType": "Τύπος", - "PE.Views.EditSlide.textUnCover": "Αποκάλυψη", - "PE.Views.EditSlide.textVerticalIn": "Κάθετο εσωτερικό", - "PE.Views.EditSlide.textVerticalOut": "Κάθετο εξωτερικό", - "PE.Views.EditSlide.textWedge": "Σφήνα", - "PE.Views.EditSlide.textWipe": "Εκκαθάριση", - "PE.Views.EditSlide.textZoom": "Εστίαση", - "PE.Views.EditSlide.textZoomIn": "Μεγέθυνση", - "PE.Views.EditSlide.textZoomOut": "Σμίκρυνση", - "PE.Views.EditSlide.textZoomRotate": "Εστίαση και Περιστροφή", - "PE.Views.EditTable.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "PE.Views.EditTable.textAlign": "Στοίχιση", - "PE.Views.EditTable.textAlignBottom": "Σοίχιση κάτω", - "PE.Views.EditTable.textAlignCenter": "Στοίχιση στο κέντρο", - "PE.Views.EditTable.textAlignLeft": "Στοίχιση αριστερά", - "PE.Views.EditTable.textAlignMiddle": "Σοίχιση στη μέση", - "PE.Views.EditTable.textAlignRight": "Στοίχιση δεξιά", - "PE.Views.EditTable.textAlignTop": "Στοίχιση επάνω", - "PE.Views.EditTable.textBack": "Πίσω", - "PE.Views.EditTable.textBackward": "Μετακίνηση προς τα πίσω", - "PE.Views.EditTable.textBandedColumn": "Στήλη Εναλλαγής Σκίασης", - "PE.Views.EditTable.textBandedRow": "Γραμμή Εναλλαγής Σκίασης", - "PE.Views.EditTable.textBorder": "Περίγραμμα", - "PE.Views.EditTable.textCellMargins": "Περιθώρια κελιού", - "PE.Views.EditTable.textColor": "Χρώμα", - "PE.Views.EditTable.textCustomColor": "Προσαρμοσμένο χρώμα", - "PE.Views.EditTable.textFill": "Γέμισμα", - "PE.Views.EditTable.textFirstColumn": "Πρώτη στήλη", - "PE.Views.EditTable.textForward": "Μετακίνηση προς τα εμπρός", - "PE.Views.EditTable.textHeaderRow": "Σειρά κεφαλίδας", - "PE.Views.EditTable.textLastColumn": "Τελευταία στήλη", - "PE.Views.EditTable.textOptions": "Επιλογές", - "PE.Views.EditTable.textRemoveTable": "Αφαίρεση πίνακα", - "PE.Views.EditTable.textReorder": "Επανατακτοποίηση", - "PE.Views.EditTable.textSize": "Μέγεθος", - "PE.Views.EditTable.textStyle": "Στυλ", - "PE.Views.EditTable.textStyleOptions": "Επιλογές τεχνοτροπίας", - "PE.Views.EditTable.textTableOptions": "Επιλογές πίνακα", - "PE.Views.EditTable.textToBackground": "Μεταφορά στο Παρασκήνιο", - "PE.Views.EditTable.textToForeground": "Μεταφορά στο προσκήνιο", - "PE.Views.EditTable.textTotalRow": "Συνολική γραμμή", - "PE.Views.EditTable.txtDistribHor": "Διανομή οριζόντια", - "PE.Views.EditTable.txtDistribVert": "Διανομή κάθετα", - "PE.Views.EditText.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "PE.Views.EditText.textAdditional": "Επιπρόσθετα", - "PE.Views.EditText.textAdditionalFormat": "Πρόσθετη μορφοποίηση", - "PE.Views.EditText.textAfter": "Μετά", - "PE.Views.EditText.textAllCaps": "Όλα κεφαλαία", - "PE.Views.EditText.textAutomatic": "Αυτόματα", - "PE.Views.EditText.textBack": "Πίσω", - "PE.Views.EditText.textBefore": "Πριν", - "PE.Views.EditText.textBullets": "Κουκκίδες", - "PE.Views.EditText.textCharacterBold": "B", - "PE.Views.EditText.textCharacterItalic": "I", - "PE.Views.EditText.textCharacterStrikethrough": "s", - "PE.Views.EditText.textCharacterUnderline": "U", - "PE.Views.EditText.textCustomColor": "Προσαρμοσμένο χρώμα", - "PE.Views.EditText.textDblStrikethrough": "Διπλή Διαγραφή", - "PE.Views.EditText.textDblSuperscript": "Εκθέτης", - "PE.Views.EditText.textFontColor": "Χρώμα γραμματοσειράς", - "PE.Views.EditText.textFontColors": "Χρώματα γραμματοσειράς", - "PE.Views.EditText.textFonts": "Γραμματοσειρές", - "PE.Views.EditText.textFromText": "Απόσταση από το κείμενο", - "PE.Views.EditText.textLetterSpacing": "Διάστημα γραμμάτων", - "PE.Views.EditText.textLineSpacing": "Διάστιχο", - "PE.Views.EditText.textNone": "Κανένα", - "PE.Views.EditText.textNumbers": "Αριθμοί", - "PE.Views.EditText.textSize": "Μέγεθος", - "PE.Views.EditText.textSmallCaps": "Μικρά κεφαλαία", - "PE.Views.EditText.textStrikethrough": "Διακριτική διαγραφή", - "PE.Views.EditText.textSubscript": "Δείκτης", - "PE.Views.Search.textCase": "Με διάκριση πεζών - κεφαλαίων γραμμάτων", - "PE.Views.Search.textDone": "Ολοκληρώθηκε", - "PE.Views.Search.textFind": "Εύρεση", - "PE.Views.Search.textFindAndReplace": "Εύρεση και αντικατάσταση", - "PE.Views.Search.textReplace": "Αντικατάσταση", - "PE.Views.Search.textSearch": "Αναζήτηση", - "PE.Views.Settings. textComment": "Σχόλιο", - "PE.Views.Settings.mniSlideStandard": "Πρότυπο (4:3)", - "PE.Views.Settings.mniSlideWide": "Ευρεία οθόνη (16:9)", - "PE.Views.Settings.textAbout": "Περί", - "PE.Views.Settings.textAddress": "διεύθυνση", - "PE.Views.Settings.textApplication": "Εφαρμογή", - "PE.Views.Settings.textApplicationSettings": "Ρυθμίσεις εφαρμογής", - "PE.Views.Settings.textAuthor": "Συγγραφέας", - "PE.Views.Settings.textBack": "Πίσω", - "PE.Views.Settings.textCentimeter": "Εκατοστό", - "PE.Views.Settings.textCollaboration": "Συνεργασία", - "PE.Views.Settings.textColorSchemes": "Χρωματικός συνδυασμός", - "PE.Views.Settings.textCreated": "Δημιουργήθηκε", - "PE.Views.Settings.textCreateDate": "Ημερομηνία δημιουργίας", - "PE.Views.Settings.textDisableAll": "Απενεργοποίηση όλων", - "PE.Views.Settings.textDisableAllMacrosWithNotification": "Απενεργοποίηση όλων των μακροεντολών με μια ειδοποίηση", - "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", - "PE.Views.Settings.textDone": "Ολοκληρώθηκε", - "PE.Views.Settings.textDownload": "Λήψη", - "PE.Views.Settings.textDownloadAs": "Λήψη ως...", - "PE.Views.Settings.textEditPresent": "Επεξεργασία παρουσίασης", - "PE.Views.Settings.textEmail": "ηλεκτρονική διεύθυνση", - "PE.Views.Settings.textEnableAll": "Ενεργοποίηση όλων", - "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "Ενεργοποίηση όλων των μακροεντολών χωρίς προειδοποίηση", - "PE.Views.Settings.textFind": "Εύρεση", - "PE.Views.Settings.textFindAndReplace": "Εύρεση και αντικατάσταση", - "PE.Views.Settings.textHelp": "Βοήθεια", - "PE.Views.Settings.textInch": "Ίντσα", - "PE.Views.Settings.textLastModified": "Τελευταία τροποποίηση", - "PE.Views.Settings.textLastModifiedBy": "Τελευταία τροποποίηση από", - "PE.Views.Settings.textLoading": "Φόρτωση ...", - "PE.Views.Settings.textLocation": "Τοποθεσία", - "PE.Views.Settings.textMacrosSettings": "Ρυθμίσεις μακροεντολών", - "PE.Views.Settings.textOwner": "Ιδιοκτήτης", - "PE.Views.Settings.textPoint": "Σημείο", - "PE.Views.Settings.textPoweredBy": "Υποστηρίζεται από", - "PE.Views.Settings.textPresentInfo": "Πληροφορίες παρουσίασης", - "PE.Views.Settings.textPresentSettings": "Ρυθμίσεις παρουσίασης", - "PE.Views.Settings.textPresentSetup": "Ρύθμιση παρουσίασης", - "PE.Views.Settings.textPresentTitle": "Τίτλος παρουσίασης", - "PE.Views.Settings.textPrint": "Εκτύπωση", - "PE.Views.Settings.textSettings": "Ρυθμίσεις", - "PE.Views.Settings.textShowNotification": "Εμφάνιση ειδοποίησης", - "PE.Views.Settings.textSlideSize": "Μέγεθος διαφάνειας", - "PE.Views.Settings.textSpellcheck": "Έλεγχος ορθογραφίας", - "PE.Views.Settings.textSubject": "Θέμα", - "PE.Views.Settings.textTel": "τηλ", - "PE.Views.Settings.textTitle": "Τίτλος", - "PE.Views.Settings.textUnitOfMeasurement": "Μονάδα μέτρησης", - "PE.Views.Settings.textUploaded": "Μεταφορτώθηκε", - "PE.Views.Settings.textVersion": "Έκδοση", - "PE.Views.Settings.unknownText": "Άγνωστο", - "PE.Views.Toolbar.textBack": "Πίσω" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/en.json b/apps/presentationeditor/mobile/locale/en.json index 4989a84af..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/en.json +++ b/apps/presentationeditor/mobile/locale/en.json @@ -71,6 +71,8 @@ "notcriticalErrorTitle": "Warning", "SDK": { "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", "ClipArt": "Clip Art", "Date and time": "Date and time", "Diagram": "Diagram", @@ -78,7 +80,9 @@ "Footer": "Footer", "Header": "Header", "Image": "Image", + "Loading": "Loading", "Media": "Media", + "None": "None", "Picture": "Picture", "Series": "Series", "Slide number": "Slide number", @@ -258,6 +262,7 @@ "textBottomLeft": "Bottom-Left", "textBottomRight": "Bottom-Right", "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", "textBulletsAndNumbers": "Bullets & Numbers", "textCaseSensitive": "Case Sensitive", "textCellMargins": "Cell Margins", @@ -321,6 +326,7 @@ "textNoStyles": "No styles for this type of chart.", "textNoTextFound": "Text not found", "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", "textOpacity": "Opacity", "textOptions": "Options", "textPictureFromLibrary": "Picture from Library", @@ -431,7 +437,29 @@ "textTitle": "Title", "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", - "textVersion": "Version" + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/es.json b/apps/presentationeditor/mobile/locale/es.json index 9b0e4b9e7..787dd5215 100644 --- a/apps/presentationeditor/mobile/locale/es.json +++ b/apps/presentationeditor/mobile/locale/es.json @@ -71,6 +71,8 @@ "notcriticalErrorTitle": "Advertencia", "SDK": { "Chart": "Gráfico", + "Click to add first slide": "Haga clic para añadir la primera diapositiva", + "Click to add notes": "Haga clic para añadir notas", "ClipArt": "Imagen prediseñada", "Date and time": "Fecha y hora", "Diagram": "Diagrama", @@ -78,7 +80,9 @@ "Footer": "Pie de página", "Header": "Encabezado", "Image": "Imagen", + "Loading": "Cargando", "Media": "Medios", + "None": "Ninguno", "Picture": "Imagen", "Series": "Serie", "Slide number": "Número de diapositiva", @@ -258,6 +262,7 @@ "textBottomLeft": "Abajo a la izquierda", "textBottomRight": "Abajo a la derecha", "textBringToForeground": "Traer al primer plano", + "textBullets": "Viñetas", "textBulletsAndNumbers": "Viñetas y números", "textCaseSensitive": "Distinguir mayúsculas de minúsculas", "textCellMargins": "Márgenes de celdas", @@ -321,6 +326,7 @@ "textNoStyles": "No hay estilos para este tipo de gráfico.", "textNoTextFound": "Texto no encontrado", "textNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", + "textNumbers": "Números", "textOpacity": "Opacidad ", "textOptions": "Opciones", "textPictureFromLibrary": "Imagen desde biblioteca", @@ -431,7 +437,29 @@ "textTitle": "Título", "textUnitOfMeasurement": "Unidad de medida", "textUploaded": "Cargado", - "textVersion": "Versión " + "textVersion": "Versión ", + "txtScheme1": "Oficina", + "txtScheme10": "Medio", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Papel", + "txtScheme17": "Solsticio", + "txtScheme18": "Técnico", + "txtScheme19": "Viajes", + "txtScheme2": "Escala de grises", + "txtScheme20": "Urbano", + "txtScheme21": "Brío", + "txtScheme22": "Nueva oficina", + "txtScheme3": "Vértice", + "txtScheme4": "Aspecto", + "txtScheme5": "Civil", + "txtScheme6": "Concurrencia", + "txtScheme7": "Equidad ", + "txtScheme8": "Flujo", + "txtScheme9": "Fundición" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/fr.json b/apps/presentationeditor/mobile/locale/fr.json index 1ccd7832b..465fa06ba 100644 --- a/apps/presentationeditor/mobile/locale/fr.json +++ b/apps/presentationeditor/mobile/locale/fr.json @@ -1,40 +1,242 @@ { "About": { - "textAbout": "À propos de", + "textAbout": "À propos", "textAddress": "Adresse", - "textBack": "Retour" + "textBack": "Retour", + "textEmail": "E-mail", + "textPoweredBy": "Réalisation", + "textTel": "Tél.", + "textVersion": "Version" }, "Common": { "Collaboration": { + "notcriticalErrorTitle": "Avertissement", "textAddComment": "Ajouter un commentaire", "textAddReply": "Ajouter une réponse", "textBack": "Retour", - "textCancel": "Annuler" + "textCancel": "Annuler", + "textCollaboration": "Collaboration", + "textComments": "Commentaires", + "textDeleteComment": "Supprimer commentaire", + "textDeleteReply": "Supprimer réponse", + "textDone": "Terminé", + "textEdit": "Modifier", + "textEditComment": "Modifier le commentaire", + "textEditReply": "Modifier la réponse", + "textEditUser": "Le document est en cours de modification par les utilisateurs suivants:", + "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", + "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", + "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textReopen": "Rouvrir", + "textResolve": "Résoudre", + "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", + "textUsers": "Utilisateurs" + }, + "ThemeColorPalette": { + "textCustomColors": "Couleurs personnalisées", + "textStandartColors": "Couleurs standard", + "textThemeColors": "Couleurs de thème" } }, "ContextMenu": { + "errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", "menuAddComment": "Ajouter un commentaire", "menuAddLink": "Ajouter un lien", - "menuCancel": "Annuler" + "menuCancel": "Annuler", + "menuDelete": "Supprimer", + "menuDeleteTable": "Supprimer le tableau", + "menuEdit": "Modifier", + "menuMerge": "Fusionner", + "menuMore": "Plus", + "menuOpenLink": "Ouvrir le lien", + "menuSplit": "Fractionner", + "menuViewComment": "Voir le commentaire", + "textColumns": "Colonnes", + "textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", + "textDoNotShowAgain": "Ne plus afficher", + "textRows": "Lignes" }, "Controller": { "Main": { - "textAnonymous": "Anonyme" + "advDRMOptions": "Fichier protégé", + "advDRMPassword": " Mot de passe", + "closeButtonText": "Fermer le fichier", + "criticalErrorTitle": "Erreur", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorOpensource": "Sous version gratuite Community, le document est disponible en lecture seule. Pour accéder aux éditeurs mobiles web vous avez besoin d'une licence payante.", + "errorProcessSaveResult": "Échec de l'enregistrement", + "errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", + "errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", + "leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "notcriticalErrorTitle": "Avertissement", + "SDK": { + "Chart": "Graphique", + "Click to add first slide": "Cliquez pour ajouter la premère diapositive", + "Click to add notes": "Cliquez pour ajouter des notes", + "ClipArt": "Clip Art", + "Date and time": "Date et heure", + "Diagram": "Diagramme", + "Diagram Title": "Titre du graphique", + "Footer": "Pied de page", + "Header": "En-tête", + "Image": "Image", + "Loading": "Chargement", + "Media": "Média", + "None": "Aucun", + "Picture": "Image", + "Series": "Série", + "Slide number": "Numéro de diapositive", + "Slide subtitle": "Sous-titre de diapositive", + "Slide text": "Texte de la diapositive", + "Slide title": "Titre de la diapositive", + "Table": "Tableau", + "X Axis": "Axe X (XAS)", + "Y Axis": "Axe Y", + "Your text here": "Votre texte ici" + }, + "textAnonymous": "Anonyme", + "textBuyNow": "Visiter le site web", + "textClose": "Fermer", + "textContactUs": "Contacter l'équipe de ventes", + "textCustomLoader": "Désolé, vous n'êtes pas autorisé à changer le chargeur. Veuillez contacter notre Service de Ventes pour obtenir le devis.", + "textGuest": "Invité", + "textHasMacros": "Le fichier contient des macros automatiques.
    Voulez-vous exécuter les macros?", + "textNo": "Non", + "textNoLicenseTitle": "La limite de la licence est atteinte", + "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", + "textPaidFeature": "Fonction payante", + "textRemember": "Se souvenir de mon choix", + "textYes": "Oui", + "titleLicenseExp": "Licence expirée", + "titleServerVersion": "L'éditeur est mis à jour", + "titleUpdateVersion": "La version a été modifiée", + "txtIncorrectPwd": "Mot de passe incorrect", + "txtProtected": "Une fois le mot de passe saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", + "warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Pour en savoir plus, contactez votre administrateur.", + "warnLicenseExp": "Votre licence a expiré. Veuillez mettre à jour votre licence et actualisez la page.", + "warnLicenseLimitedNoAccess": "La licence est expirée. Vous n'avez plus d'accès aux outils d'édition. Veuillez contacter votre administrateur.", + "warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence. Vous avez un accès limité aux outils d'édition des documents.
    Veuillez contacter votre administrateur pour obtenir un accès complet", + "warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.", + "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier." } }, "Error": { + "convertationTimeoutText": "Délai de conversion expiré.", + "criticalErrorExtText": "Appuyez sur OK pour revenir à la liste de documents", + "criticalErrorTitle": "Erreur", + "downloadErrorText": "Échec du téléchargement. ", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorBadImageUrl": "L'URL de l'image est incorrecte", + "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", + "errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Contactez le support.", + "errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", + "errorDataRange": "Plage de données incorrecte.", + "errorDefaultMessage": "Code d'erreur: %1", "errorEditingDownloadas": "Une erreur s'est produite pendant le travail sur le document. Utilisez l'option \"Télécharger\" pour enregistrer une sauvegarde locale", + "errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.", + "errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Veuillez contacter votre administrateur.", + "errorKeyEncrypt": "Descripteur de clé inconnu", + "errorKeyExpire": "Descripteur de clés expiré", + "errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", + "errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", + "errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", + "errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
    Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.", + "errorUserDrop": "Impossible d'accéder au fichier.", + "errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", + "errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
    mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.", + "notcriticalErrorTitle": "Avertissement", "openErrorText": "Une erreur s’est produite lors de l'ouverture du fichier", - "saveErrorText": "Une erreur s'est produite lors du chargement du fichier" + "saveErrorText": "Une erreur s'est produite lors du chargement du fichier", + "scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "splitDividerErrorText": "Le nombre de lignes doit être un diviseur de %1", + "splitMaxColsErrorText": "Le nombre de colonnes doit être moins que %1", + "splitMaxRowsErrorText": "Le nombre de lignes doit être moins que %1", + "unknownErrorText": "Erreur inconnue.", + "uploadImageExtMessage": "Format d'image inconnu.", + "uploadImageFileCountMessage": "Aucune image chargée.", + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + }, + "LongActions": { + "applyChangesTextText": "Chargement des données en cours...", + "applyChangesTitleText": "Chargement des données", + "downloadTextText": "Téléchargement du document...", + "downloadTitleText": "Téléchargement du document", + "loadFontsTextText": "Chargement des données en cours...", + "loadFontsTitleText": "Chargement des données", + "loadFontTextText": "Chargement des données en cours...", + "loadFontTitleText": "Chargement des données", + "loadImagesTextText": "Chargement des images en cours...", + "loadImagesTitleText": "Chargement des images", + "loadImageTextText": "Chargement d'une image en cours...", + "loadImageTitleText": "Chargement d'une image", + "loadingDocumentTextText": "Chargement du document...", + "loadingDocumentTitleText": "Chargement du document", + "loadThemeTextText": "Chargement du thème en cours...", + "loadThemeTitleText": "Chargement du thème", + "openTextText": "Ouverture du document...", + "openTitleText": "Ouverture du document", + "printTextText": "Impression du document en cours...", + "printTitleText": "Impression du document", + "savePreparingText": "Préparation à l'enregistrement ", + "savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...", + "saveTextText": "Enregistrement document en cours...", + "saveTitleText": "Enregistrement du document", + "textLoadingDocument": "Chargement du document", + "txtEditingMode": "Réglage mode d'édition...", + "uploadImageTextText": "Chargement d'une image en cours...", + "uploadImageTitleText": "Chargement d'une image", + "waitText": "Veuillez patienter..." + }, + "Toolbar": { + "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "dlgLeaveTitleText": "Vous quittez l'application", + "leaveButtonText": "Quitter cette page", + "stayButtonText": "Rester sur cette page" }, "View": { "Add": { + "notcriticalErrorTitle": "Avertissement", "textAddLink": "Ajouter un lien", "textAddress": "Adresse", "textBack": "Retour", - "textCancel": "Annuler" + "textCancel": "Annuler", + "textColumns": "Colonnes", + "textComment": "Commentaire", + "textDefault": "Texte sélectionné", + "textDisplay": "Afficher", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textExternalLink": "Lien externe", + "textFirstSlide": "Première diapositive", + "textImage": "Image", + "textImageURL": "URL d'une image", + "textInsert": "Insertion", + "textInsertImage": "Insérer une image", + "textLastSlide": "Dernière diapositive", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkTo": "Lien vers", + "textLinkType": "Type de lien", + "textNextSlide": "Diapositive suivante", + "textOther": "Autre", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image depuis URL", + "textPreviousSlide": "Diapositive précédente", + "textRows": "Lignes", + "textScreenTip": "Info-bulle", + "textShape": "Forme", + "textSlide": "Diapositive", + "textSlideInThisPresentation": "Emplacement dans cette présentation", + "textSlideNumber": "Numéro de diapositive", + "textTable": "Tableau", + "textTableSize": "Taille du tableau", + "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"" }, "Edit": { + "notcriticalErrorTitle": "Avertissement", + "textActualSize": "Taille réelle", "textAddCustomColor": "Ajouter une couleur personnalisée", "textAdditional": "Additionnel", "textAdditionalFormatting": "Mise en forme supplémentaire", @@ -54,19 +256,210 @@ "textBandedColumn": "Colonne à couleur alternée", "textBandedRow": "Ligne à couleur alternée", "textBefore": "Avant", + "textBlack": "A travers le noir", "textBorder": "Bordure", "textBottom": "Bas", "textBottomLeft": "En bas à gauche", "textBottomRight": "En bas à droite", - "textBringToForeground": "Mettre au premier plan" + "textBringToForeground": "Mettre au premier plan", + "textBullets": "Puces", + "textBulletsAndNumbers": "Puces et numérotation", + "textCaseSensitive": "Sensible à la casse", + "textCellMargins": "Marges de la cellule", + "textChart": "Graphique", + "textClock": "Horloge", + "textClockwise": "Dans le sens des aiguilles d'une montre", + "textColor": "Couleur", + "textCounterclockwise": "Dans le sens inverse des aiguilles d'une montre", + "textCover": "Couvrir", + "textCustomColor": "Couleur personnalisée", + "textDefault": "Texte sélectionné", + "textDelay": "Retard", + "textDeleteSlide": "Supprimer la diapositive", + "textDisplay": "Afficher", + "textDistanceFromText": "Distance du texte", + "textDistributeHorizontally": "Distribuer horizontalement", + "textDistributeVertically": "Distribuer verticalement", + "textDone": "Terminé", + "textDoubleStrikethrough": "Barré double", + "textDuplicateSlide": "Dupliquer la diapositive", + "textDuration": "Durée", + "textEditLink": "Modifier le lien", + "textEffect": "Effet", + "textEffects": "Effets", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textExternalLink": "Lien externe", + "textFade": "Fondu", + "textFill": "Remplissage", + "textFinalMessage": "La fin de l'aperçu de la diapositive. Cliquez pour quitter.", + "textFind": "Recherche", + "textFindAndReplace": "Rechercher et remplacer", + "textFirstColumn": "Première colonne", + "textFirstSlide": "Première diapositive", + "textFontColor": "Couleur de police", + "textFontColors": "Couleurs de police", + "textFonts": "Polices", + "textFromLibrary": "Image depuis la bibliothèque", + "textFromURL": "Image depuis URL", + "textHeaderRow": "Ligne d'en-tête", + "textHighlight": "Surligner les résultats", + "textHighlightColor": "Couleur de surlignage", + "textHorizontalIn": "Horizontal intérieur", + "textHorizontalOut": "Horizontal extérieur", + "textHyperlink": "Lien hypertexte", + "textImage": "Image", + "textImageURL": "URL d'image", + "textLastColumn": "Dernière colonne", + "textLastSlide": "Dernière diapositive", + "textLayout": "Mise en page", + "textLeft": "À gauche", + "textLetterSpacing": "Espacement entre les lettres", + "textLineSpacing": "Interligne", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkTo": "Lien vers", + "textLinkType": "Type de lien", + "textMoveBackward": "Déplacer vers l'arrière", + "textMoveForward": "Avancer", + "textNextSlide": "Diapositive suivante", + "textNone": "Aucun", + "textNoStyles": "Aucun style pour ce type de graphique.", + "textNoTextFound": "Le texte est introuvable", + "textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "textNumbers": "Numérotation", + "textOpacity": "Opacité", + "textOptions": "Options", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image depuis URL", + "textPreviousSlide": "Diapositive précédente", + "textPt": "pt", + "textPush": "Expulsion", + "textRemoveChart": "Supprimer le graphique", + "textRemoveImage": "Supprimer l'image", + "textRemoveLink": "Supprimer le lien", + "textRemoveShape": "Supprimer la forme", + "textRemoveTable": "Supprimer le tableau", + "textReorder": "Réorganiser", + "textReplace": "Remplacer", + "textReplaceAll": "Remplacer tout", + "textReplaceImage": "Remplacer l’image", + "textRight": "À droite", + "textScreenTip": "Info-bulle", + "textSearch": "Rechercher", + "textSec": "sec", + "textSelectObjectToEdit": "Sélectionnez l'objet à modifier", + "textSendToBackground": "Mettre en arrière-plan", + "textShape": "Forme", + "textSize": "Taille", + "textSlide": "Diapositive", + "textSlideInThisPresentation": "Emplacement dans cette présentation", + "textSlideNumber": "Numéro de diapositive", + "textSmallCaps": "Petites majuscules", + "textSmoothly": "Transition douce", + "textSplit": "Fractionner", + "textStartOnClick": "Démarrer en cliquant", + "textStrikethrough": "Barré", + "textStyle": "Style", + "textStyleOptions": "Options de style", + "textSubscript": "Indice", + "textSuperscript": "Exposant", + "textTable": "Tableau", + "textText": "Texte", + "textTheme": "Thème", + "textTop": "En haut", + "textTopLeft": "Haut à gauche", + "textTopRight": "Haut à droite", + "textTotalRow": "Ligne de total", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "Découvrir", + "textVerticalIn": "Vertical intérieur", + "textVerticalOut": "Vertical extérieur ", + "textWedge": "Coin", + "textWipe": "Effacement", + "textZoom": "Zoom", + "textZoomIn": "Zoom avant", + "textZoomOut": "Zoom arrière", + "textZoomRotate": "Zoom et rotation" }, "Settings": { - "textAbout": "À propos de", + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Écran large (16:9)", + "textAbout": "À propos", "textAddress": "Adresse :", "textApplication": "Application", "textApplicationSettings": "Paramètres de l'application", "textAuthor": "Auteur", - "textBack": "Retour" + "textBack": "Retour", + "textCaseSensitive": "Sensible à la casse", + "textCentimeter": "Centimètre", + "textCollaboration": "Collaboration", + "textColorSchemes": "Jeux de couleurs", + "textComment": "Commentaire", + "textCreated": "Créé", + "textDisableAll": "Désactiver tout", + "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", + "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", + "textDone": "Terminé", + "textDownload": "Télécharger", + "textDownloadAs": "Télécharger comme...", + "textEmail": "émail: ", + "textEnableAll": "Activer tout", + "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "textFind": "Recherche", + "textFindAndReplace": "Rechercher et remplacer", + "textFindAndReplaceAll": "Rechercher et remplacer tout", + "textHelp": "Aide", + "textHighlight": "Surligner les résultats", + "textInch": "Pouce", + "textLastModified": "Dernière modification", + "textLastModifiedBy": "Dernière modification par", + "textLoading": "Chargement en cours...", + "textLocation": "Emplacement", + "textMacrosSettings": "Réglages macros", + "textNoTextFound": "Le texte est introuvable", + "textOwner": "Propriétaire", + "textPoint": "Point", + "textPoweredBy": "Réalisation", + "textPresentationInfo": "Infos sur présentation", + "textPresentationSettings": "Options présentation", + "textPresentationTitle": "Titre présentation", + "textPrint": "Imprimer", + "textReplace": "Remplacer", + "textReplaceAll": "Remplacer tout", + "textSearch": "Rechercher", + "textSettings": "Paramètres", + "textShowNotification": "Montrer la notification", + "textSlideSize": "Taille de la diapositive", + "textSpellcheck": "Vérification de l'orthographe", + "textSubject": "Sujet", + "textTel": "tél:", + "textTitle": "Titre", + "textUnitOfMeasurement": "Unité de mesure", + "textUploaded": "Chargé", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Médian", + "txtScheme11": "Métro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origine", + "txtScheme16": "Papier", + "txtScheme17": "Solstice", + "txtScheme18": "Technique", + "txtScheme19": "Promenade", + "txtScheme2": "Nuances de gris", + "txtScheme20": "Urbain", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civil", + "txtScheme6": "Rotonde", + "txtScheme7": "Capitaux", + "txtScheme8": "Flux", + "txtScheme9": "Fonderie" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/hu.json b/apps/presentationeditor/mobile/locale/hu.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/hu.json +++ b/apps/presentationeditor/mobile/locale/hu.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/it.json b/apps/presentationeditor/mobile/locale/it.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/it.json +++ b/apps/presentationeditor/mobile/locale/it.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ja.json b/apps/presentationeditor/mobile/locale/ja.json index d9eb5d7ed..b95c869ff 100644 --- a/apps/presentationeditor/mobile/locale/ja.json +++ b/apps/presentationeditor/mobile/locale/ja.json @@ -1,574 +1,465 @@ { - "Common.Controllers.Collaboration.textAddReply": "返信を追加する", - "Common.Controllers.Collaboration.textCancel": "キャンセル", - "Common.Controllers.Collaboration.textDeleteComment": "コメントを削除する", - "Common.Controllers.Collaboration.textDeleteReply": "返事を削除する", - "Common.Controllers.Collaboration.textDone": "完了", - "Common.Controllers.Collaboration.textEdit": "編集する", - "Common.Controllers.Collaboration.textEditUser": "ファイルを編集しているユーザー:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "このコメントを削除してもよろしいですか?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "この返信を削除しても宜しいでしょうか?", - "Common.Controllers.Collaboration.textReopen": "再開する", - "Common.Controllers.Collaboration.textResolve": "解決する", - "Common.Controllers.Collaboration.textYes": "はい", - "Common.UI.ThemeColorPalette.textCustomColors": "ユーザー設定色", - "Common.UI.ThemeColorPalette.textStandartColors": "標準の色", - "Common.UI.ThemeColorPalette.textThemeColors": "テーマの色", - "Common.Utils.Metric.txtCm": "センチ", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "返信を追加する", - "Common.Views.Collaboration.textBack": "戻る", - "Common.Views.Collaboration.textCancel": "キャンセル", - "Common.Views.Collaboration.textCollaboration": "共同編集", - "Common.Views.Collaboration.textDone": "完了", - "Common.Views.Collaboration.textEditReply": "返事の編集", - "Common.Views.Collaboration.textEditUsers": "ユーザー", - "Common.Views.Collaboration.textEditСomment": "コメントの編集", - "Common.Views.Collaboration.textNoComments": "このプレゼンテーションはコメントがありません", - "Common.Views.Collaboration.textСomments": "コメント", - "PE.Controllers.AddContainer.textImage": "画像", - "PE.Controllers.AddContainer.textLink": "リンク", - "PE.Controllers.AddContainer.textOther": "その他", - "PE.Controllers.AddContainer.textShape": "図形", - "PE.Controllers.AddContainer.textSlide": "スライド", - "PE.Controllers.AddContainer.textTable": "表", - "PE.Controllers.AddImage.notcriticalErrorTitle": " 警告", - "PE.Controllers.AddImage.textEmptyImgUrl": "画像のURLを指定する必要があります。", - "PE.Controllers.AddImage.txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります", - "PE.Controllers.AddLink.notcriticalErrorTitle": " 警告", - "PE.Controllers.AddLink.textDefault": "選択したテキスト", - "PE.Controllers.AddLink.textExternalLink": "外部リンク", - "PE.Controllers.AddLink.textFirst": "最初のスライド", - "PE.Controllers.AddLink.textInternalLink": "このプレゼンテーションのスライド", - "PE.Controllers.AddLink.textLast": "最後のスライド", - "PE.Controllers.AddLink.textNext": "次のスライド", - "PE.Controllers.AddLink.textPrev": "前のスライド", - "PE.Controllers.AddLink.textSlide": "スライド", - "PE.Controllers.AddLink.txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります", - "PE.Controllers.AddOther.textCancel": "キャンセル", - "PE.Controllers.AddOther.textContinue": "続ける", - "PE.Controllers.AddOther.textDelete": "削除する", - "PE.Controllers.AddOther.textDeleteDraft": "下書きを削除しても宜しいでしょうか?", - "PE.Controllers.AddTable.textCancel": "キャンセル", - "PE.Controllers.AddTable.textColumns": "列", - "PE.Controllers.AddTable.textRows": "行", - "PE.Controllers.AddTable.textTableSize": "表のサイズ", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "コンテキストメニューを使用したコピー、切り取り、貼り付けの操作は、現在のファイル内でのみ実行されます。", - "PE.Controllers.DocumentHolder.menuAddComment": "コメントの追加", - "PE.Controllers.DocumentHolder.menuAddLink": "リンクを追加する", - "PE.Controllers.DocumentHolder.menuCopy": "コピー", - "PE.Controllers.DocumentHolder.menuCut": "切り取り", - "PE.Controllers.DocumentHolder.menuDelete": "削除する", - "PE.Controllers.DocumentHolder.menuEdit": "編集する", - "PE.Controllers.DocumentHolder.menuMore": "もっと", - "PE.Controllers.DocumentHolder.menuOpenLink": "リンクを開く", - "PE.Controllers.DocumentHolder.menuPaste": "貼り付け", - "PE.Controllers.DocumentHolder.menuViewComment": "コメントを見る", - "PE.Controllers.DocumentHolder.sheetCancel": "キャンセル", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "コピー,切り取り,貼り付けの操作", - "PE.Controllers.DocumentHolder.textDoNotShowAgain": "次回から表示しない", - "PE.Controllers.DocumentPreview.txtFinalMessage": "スライドプレビューの終わりです。終了するには、クリックしてください。", - "PE.Controllers.EditContainer.textChart": "グラフ", - "PE.Controllers.EditContainer.textHyperlink": "ハイパーリンク", - "PE.Controllers.EditContainer.textImage": "画像", - "PE.Controllers.EditContainer.textSettings": "設定", - "PE.Controllers.EditContainer.textShape": "図形", - "PE.Controllers.EditContainer.textSlide": "スライド", - "PE.Controllers.EditContainer.textTable": "表", - "PE.Controllers.EditContainer.textText": "テキスト", - "PE.Controllers.EditImage.notcriticalErrorTitle": " 警告", - "PE.Controllers.EditImage.textEmptyImgUrl": "画像のURLを指定する必要があります。", - "PE.Controllers.EditImage.txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります", - "PE.Controllers.EditLink.notcriticalErrorTitle": " 警告", - "PE.Controllers.EditLink.textDefault": "選択したテキスト", - "PE.Controllers.EditLink.textExternalLink": "外部リンク", - "PE.Controllers.EditLink.textFirst": "最初のスライド", - "PE.Controllers.EditLink.textInternalLink": "このプレゼンテーションのスライド", - "PE.Controllers.EditLink.textLast": "最後のスライド", - "PE.Controllers.EditLink.textNext": "次のスライド", - "PE.Controllers.EditLink.textPrev": "前のスライド", - "PE.Controllers.EditLink.textSlide": "スライド", - "PE.Controllers.EditLink.txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります", - "PE.Controllers.EditSlide.textSec": "秒", - "PE.Controllers.EditText.textAuto": "自動", - "PE.Controllers.EditText.textFonts": "フォント", - "PE.Controllers.EditText.textPt": "pt", - "PE.Controllers.Main.advDRMEnterPassword": "パスワード入力:", - "PE.Controllers.Main.advDRMOptions": "保護されたファイル", - "PE.Controllers.Main.advDRMPassword": "パスワード", - "PE.Controllers.Main.applyChangesTextText": "データの読み込み中...", - "PE.Controllers.Main.applyChangesTitleText": "データの読み込み中", - "PE.Controllers.Main.closeButtonText": "ファイルを閉じる", - "PE.Controllers.Main.convertationTimeoutText": "変換タイムアウトを超えました。", - "PE.Controllers.Main.criticalErrorExtText": "「OK」を押してドキュメント一覧に戻ります。", - "PE.Controllers.Main.criticalErrorTitle": "エラー", - "PE.Controllers.Main.downloadErrorText": "ダウンロードに失敗しました。", - "PE.Controllers.Main.downloadTextText": "プレゼンテーションのダウンロード中...", - "PE.Controllers.Main.downloadTitleText": "プレゼンテーションのダウンロード中", - "PE.Controllers.Main.errorAccessDeny": "権限のない操作を実行しようとしています。
    ドキュメントサーバーの管理者にご連絡ください。", - "PE.Controllers.Main.errorBadImageUrl": "画像のURLが正しくありません。", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "サーバー接続が失われました。 編集することはできません。", - "PE.Controllers.Main.errorConnectToServer": "文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
    OKボタンをクリックするとドキュメントをダウンロードするように求められます。", - "PE.Controllers.Main.errorDatabaseConnection": "外部エラーです。
    データベース接続のエラーです。サポートチームにお問い合わせください。", - "PE.Controllers.Main.errorDataEncrypted": "暗号化された変更を受け取りましたが、解読できません。", - "PE.Controllers.Main.errorDataRange": "データ範囲が正しくありません。", - "PE.Controllers.Main.errorDefaultMessage": "エラー コード:%1", - "PE.Controllers.Main.errorEditingDownloadas": "ドキュメントの操作中にエラーが発生しました。
    [ダウンロード]オプションを使用して、ファイルのバックアップコピーをコンピューターのハードドライブにご保存ください。", - "PE.Controllers.Main.errorFilePassProtect": "文書がパスワードで保護されているため、開くことができません。", - "PE.Controllers.Main.errorFileSizeExceed": "ファイルサイズがサーバーで設定された制限を超過しています。
    Documentサーバー管理者に詳細をお問い合わせください。", - "PE.Controllers.Main.errorKeyEncrypt": "不明なキーの記述子", - "PE.Controllers.Main.errorKeyExpire": "キー記述子は有効期限が切れました", - "PE.Controllers.Main.errorOpensource": "無料のコミュニティバージョンを使用すると、閲覧専用のドキュメントを開くことができます。 モバイルWebエディターにアクセスするには、商用ライセンスが必要です。", - "PE.Controllers.Main.errorProcessSaveResult": "保存に失敗しました。", - "PE.Controllers.Main.errorServerVersion": "エディターのバージョンが更新されました。 変更を適用するために、ページが再読み込みされます。", - "PE.Controllers.Main.errorSessionAbsolute": "ドキュメント編集セッションが終了しました。 ページを再度お読み込みください。", - "PE.Controllers.Main.errorSessionIdle": "このドキュメントはかなり長い間編集されていませんでした。このページを再度お読み込みください。", - "PE.Controllers.Main.errorSessionToken": "サーバーとの接続が中断されました。このページを再度お読み込みください。", - "PE.Controllers.Main.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、
    始値、高値、安値、終値の順でシートのデータを配置してください。", - "PE.Controllers.Main.errorUpdateVersion": "ファイルのバージョンが変更されました。ページが再ロードされます。", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "インターネット接続が復旧し、ファイルのバージョンが更新されました。
    作業を継続する前に、ファイルをダウンロードするか、内容をコピーして、変更が消えてしまわないように確認してから、ページを再びお読み込みください。", - "PE.Controllers.Main.errorUserDrop": "今、ファイルにアクセスすることはできません。", - "PE.Controllers.Main.errorUsersExceed": "ユーザー数を超えました", - "PE.Controllers.Main.errorViewerDisconnect": "接続が失われました。ドキュメントは引き続き表示できますが、
    接続が復元されてページが再読み込みされるまで、ドキュメントをダウンロードすることはできません。", - "PE.Controllers.Main.leavePageText": "このドキュメントには未保存の変更があります。 [このページに留まる]をクリックして、ドキュメントの自動保存をお待ちください。 保存されていない変更をすべて破棄するには、[このページから移動する]をクリックください。", - "PE.Controllers.Main.loadFontsTextText": "データの読み込み中...", - "PE.Controllers.Main.loadFontsTitleText": "データの読み込み中", - "PE.Controllers.Main.loadFontTextText": "データの読み込み中...", - "PE.Controllers.Main.loadFontTitleText": "データの読み込み中", - "PE.Controllers.Main.loadImagesTextText": "画像の読み込み中...", - "PE.Controllers.Main.loadImagesTitleText": "画像の読み込み中", - "PE.Controllers.Main.loadImageTextText": "画像の読み込み中...", - "PE.Controllers.Main.loadImageTitleText": "画像の読み込み中", - "PE.Controllers.Main.loadingDocumentTextText": "プレゼンテーションの読み込み中...", - "PE.Controllers.Main.loadingDocumentTitleText": "プレゼンテーションの読み込み中...", - "PE.Controllers.Main.loadThemeTextText": "テーマの読み込み中...", - "PE.Controllers.Main.loadThemeTitleText": "テーマの読み込み中", - "PE.Controllers.Main.notcriticalErrorTitle": " 警告", - "PE.Controllers.Main.openErrorText": "ファイルを読み込み中にエラーが発生しました。", - "PE.Controllers.Main.openTextText": "ドキュメントを開いている中...", - "PE.Controllers.Main.openTitleText": "ドキュメントを開いている中", - "PE.Controllers.Main.printTextText": "ドキュメント印刷中...", - "PE.Controllers.Main.printTitleText": "ドキュメント印刷中", - "PE.Controllers.Main.reloadButtonText": "ページの再読み込み", - "PE.Controllers.Main.requestEditFailedMessageText": "このドキュメントは他のユーザによって編集されています。後でもう一度お試しください。", - "PE.Controllers.Main.requestEditFailedTitleText": "アクセスが拒否されました", - "PE.Controllers.Main.saveErrorText": "ファイルを保存中にエラーが発生しました。", - "PE.Controllers.Main.savePreparingText": "保存の準備中", - "PE.Controllers.Main.savePreparingTitle": "保存の準備中です。少々お待ちください。", - "PE.Controllers.Main.saveTextText": "ドキュメントの保存中...", - "PE.Controllers.Main.saveTitleText": "ドキュメントの保存中", - "PE.Controllers.Main.scriptLoadError": "インターネット接続が遅いため、一部のコンポーネントをロードできませんでした。ページを再度お読み込みください。", - "PE.Controllers.Main.splitDividerErrorText": "行数は%1の約数である必要があります", - "PE.Controllers.Main.splitMaxColsErrorText": "列の数は%1未満である必要があります", - "PE.Controllers.Main.splitMaxRowsErrorText": "行の数は%1未満である必要があります", - "PE.Controllers.Main.textAnonymous": "匿名者", - "PE.Controllers.Main.textBack": "戻る", - "PE.Controllers.Main.textBuyNow": "ウェブサイトを訪問する", - "PE.Controllers.Main.textCancel": "キャンセル", - "PE.Controllers.Main.textClose": "閉じる", - "PE.Controllers.Main.textCloseTip": "ヒントを閉じるには、タップしてください。", - "PE.Controllers.Main.textContactUs": "営業部に連絡する", - "PE.Controllers.Main.textCustomLoader": "ライセンスの条件によっては、ローダーを変更する権利がないことにご注意ください。
    見積もりについては、営業部門にお問い合わせください。", - "PE.Controllers.Main.textDone": "完了", - "PE.Controllers.Main.textGuest": "ゲスト", - "PE.Controllers.Main.textHasMacros": "ファイルには自動マクロが含まれています。
    マクロを実行しますか?", - "PE.Controllers.Main.textLoadingDocument": "プレゼンテーションを読み込み中...", - "PE.Controllers.Main.textNo": "いいえ", - "PE.Controllers.Main.textNoLicenseTitle": "ライセンス制限に達しました", - "PE.Controllers.Main.textOK": "OK", - "PE.Controllers.Main.textPaidFeature": "有料機能", - "PE.Controllers.Main.textPassword": "パスワード", - "PE.Controllers.Main.textPreloader": "読み込み中...", - "PE.Controllers.Main.textRemember": "選択内容を保存する", - "PE.Controllers.Main.textShape": "図形", - "PE.Controllers.Main.textTryUndoRedo": "高速共同編集モードでは、元に戻す/やり直し機能が無効になります。", - "PE.Controllers.Main.textUsername": "ユーザー名", - "PE.Controllers.Main.textYes": "はい", - "PE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています", - "PE.Controllers.Main.titleServerVersion": "エディターが更新された", - "PE.Controllers.Main.txtAddFirstSlide": "最初のスライドを追加するには、クリックしてください", - "PE.Controllers.Main.txtArt": "テキストはここです。", - "PE.Controllers.Main.txtBasicShapes": "基本図形", - "PE.Controllers.Main.txtButtons": "ボタン", - "PE.Controllers.Main.txtCallouts": "引き出し", - "PE.Controllers.Main.txtCharts": "グラフ", - "PE.Controllers.Main.txtClipArt": "クリップ・アート", - "PE.Controllers.Main.txtDateTime": "日付と時刻", - "PE.Controllers.Main.txtDiagram": "SmartArt", - "PE.Controllers.Main.txtDiagramTitle": "グラフのタイトル", - "PE.Controllers.Main.txtEditingMode": "編集モードの設定中...", - "PE.Controllers.Main.txtFiguredArrows": "形の矢印", - "PE.Controllers.Main.txtFooter": "フッター", - "PE.Controllers.Main.txtHeader": "ヘッダー", - "PE.Controllers.Main.txtImage": "画像", - "PE.Controllers.Main.txtLines": "線", - "PE.Controllers.Main.txtMath": "数学", - "PE.Controllers.Main.txtMedia": "メディア", - "PE.Controllers.Main.txtNeedSynchronize": "更新があります。", - "PE.Controllers.Main.txtPicture": "画像", - "PE.Controllers.Main.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。", - "PE.Controllers.Main.txtRectangles": "矩形", - "PE.Controllers.Main.txtSeries": "系列", - "PE.Controllers.Main.txtSldLtTBlank": "空白", - "PE.Controllers.Main.txtSldLtTChart": "グラフ", - "PE.Controllers.Main.txtSldLtTChartAndTx": "グラフとテキスト", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "クリップ・アートとテキスト", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "クリップ・アートと縦書きテキスト", - "PE.Controllers.Main.txtSldLtTCust": "ユーザー設定", - "PE.Controllers.Main.txtSldLtTDgm": "グラフ", - "PE.Controllers.Main.txtSldLtTFourObj": "四つのオブジェクト", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "メディア クリップとテキスト", - "PE.Controllers.Main.txtSldLtTObj": "タイトルとオブジェクト", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "一つのオブジェクトと二つのオブジェクト", - "PE.Controllers.Main.txtSldLtTObjAndTx": "オブジェクトとテキスト", - "PE.Controllers.Main.txtSldLtTObjOnly": "オブジェクト", - "PE.Controllers.Main.txtSldLtTObjOverTx": "テキストの上にオブジェクト", - "PE.Controllers.Main.txtSldLtTObjTx": "タイトル、オブジェクトとキャプション", - "PE.Controllers.Main.txtSldLtTPicTx": "タイトルと画像", - "PE.Controllers.Main.txtSldLtTSecHead": "ヘッダーのセクション", - "PE.Controllers.Main.txtSldLtTTbl": "表", - "PE.Controllers.Main.txtSldLtTTitle": "タイトル", - "PE.Controllers.Main.txtSldLtTTitleOnly": "タイトルだけ", - "PE.Controllers.Main.txtSldLtTTwoColTx": "2 段組みの文書", - "PE.Controllers.Main.txtSldLtTTwoObj": "二つのオブジェクト", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "二つのオブジェクトとオブジェクト", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "二つのオブジェクトとテキスト", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "テキストの上に二つのオブジェクト", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "二つのテキストと二つのオブジェクト", - "PE.Controllers.Main.txtSldLtTTx": "テキスト", - "PE.Controllers.Main.txtSldLtTTxAndChart": "テキストとグラフ", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "テキストとクリップ・アート", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "テキストとメディアクリップ", - "PE.Controllers.Main.txtSldLtTTxAndObj": "テキストとオブジェクト", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "テキストと二つのオブジェクト", - "PE.Controllers.Main.txtSldLtTTxOverObj": "オブジェクトの上にテキスト", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "縦書きタイトルとテキスト", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "縦書きタイトルとグラフの上のテキスト", - "PE.Controllers.Main.txtSldLtTVertTx": "縦書きテキスト", - "PE.Controllers.Main.txtSlideNumber": "スライド番号", - "PE.Controllers.Main.txtSlideSubtitle": "スライドの小見出し", - "PE.Controllers.Main.txtSlideText": "スライドのテキスト", - "PE.Controllers.Main.txtSlideTitle": "スライドのタイトル", - "PE.Controllers.Main.txtStarsRibbons": "星&リボン", - "PE.Controllers.Main.txtXAxis": "X 軸", - "PE.Controllers.Main.txtYAxis": "Y 軸", - "PE.Controllers.Main.unknownErrorText": "不明なエラーです。", - "PE.Controllers.Main.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。", - "PE.Controllers.Main.uploadImageExtMessage": "不明な画像形式です。", - "PE.Controllers.Main.uploadImageFileCountMessage": "アップロードされた画像がない", - "PE.Controllers.Main.uploadImageSizeMessage": "画像サイズの上限を超えました。", - "PE.Controllers.Main.uploadImageTextText": "画像のアップロード中...", - "PE.Controllers.Main.uploadImageTitleText": "画像のアップロード中", - "PE.Controllers.Main.waitText": "少々お待ちください...", - "PE.Controllers.Main.warnLicenseExceeded": "%1エディターへの同時接続の制限に達しました。 このドキュメントは表示専用で開かれます。
    詳細については、管理者にお問い合わせください。", - "PE.Controllers.Main.warnLicenseExp": "ライセンスの期限が切れました。
    ライセンスを更新して、ページをリロードしてください。", - "PE.Controllers.Main.warnLicenseLimitedNoAccess": "ライセンスの有効期限が切れています。
    ドキュメント編集機能にアクセスできません。
    管理者にご連絡ください。", - "PE.Controllers.Main.warnLicenseLimitedRenewed": "ライセンスを更新する必要があります。
    ドキュメント編集機能へのアクセスが制限されています。
    フルアクセスを取得するには、管理者にご連絡ください", - "PE.Controllers.Main.warnLicenseUsersExceeded": "%1エディターのユーザー制限に達しました。 詳細については、管理者にお問い合わせください。", - "PE.Controllers.Main.warnNoLicense": "%1エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
    個人的なアップグレード条件については、%1セールスチームにお問い合わせください。", - "PE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。", - "PE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", - "PE.Controllers.Search.textNoTextFound": "テキストが見つかりません", - "PE.Controllers.Search.textReplaceAll": "全てを置き換える", - "PE.Controllers.Settings.notcriticalErrorTitle": " 警告", - "PE.Controllers.Settings.txtLoading": "読み込み中...", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "このドキュメントには未保存の変更があります。 [このページに留まる]をクリックして、ドキュメントの自動保存をお待ちください。 保存されていない変更をすべて破棄するには、[このページから移動する]をクリックください。", - "PE.Controllers.Toolbar.dlgLeaveTitleText": "アプリケーションを終了します", - "PE.Controllers.Toolbar.leaveButtonText": "このページから移動する", - "PE.Controllers.Toolbar.stayButtonText": "このページに留まる", - "PE.Views.AddImage.textAddress": "アドレス", - "PE.Views.AddImage.textBack": "戻る", - "PE.Views.AddImage.textFromLibrary": "ライブラリから写真を選択", - "PE.Views.AddImage.textFromURL": "URLからの画像", - "PE.Views.AddImage.textImageURL": "画像のURL", - "PE.Views.AddImage.textInsertImage": "画像の挿入", - "PE.Views.AddImage.textLinkSettings": "リンク設定", - "PE.Views.AddLink.textBack": "戻る", - "PE.Views.AddLink.textDisplay": "表示する", - "PE.Views.AddLink.textExternalLink": "外部リンク", - "PE.Views.AddLink.textFirst": "最初のスライド", - "PE.Views.AddLink.textInsert": "挿入", - "PE.Views.AddLink.textInternalLink": "このプレゼンテーションのスライド", - "PE.Views.AddLink.textLast": "最後のスライド", - "PE.Views.AddLink.textLink": "リンク", - "PE.Views.AddLink.textLinkSlide": "リンク", - "PE.Views.AddLink.textLinkType": "リンクのタイプ", - "PE.Views.AddLink.textNext": "次のスライド", - "PE.Views.AddLink.textNumber": "スライド番号", - "PE.Views.AddLink.textPrev": "前のスライド", - "PE.Views.AddLink.textTip": "ヒント", - "PE.Views.AddOther.textAddComment": "コメントを追加する", - "PE.Views.AddOther.textBack": "戻る", - "PE.Views.AddOther.textComment": "コメント", - "PE.Views.AddOther.textDisplay": "表示する", - "PE.Views.AddOther.textDone": "完了", - "PE.Views.AddOther.textExternalLink": "外部リンク", - "PE.Views.AddOther.textFirst": "最初のスライド", - "PE.Views.AddOther.textInsert": "挿入", - "PE.Views.AddOther.textInternalLink": "このプレゼンテーションのスライド", - "PE.Views.AddOther.textLast": "最後のスライド", - "PE.Views.AddOther.textLink": "リンク", - "PE.Views.AddOther.textLinkSlide": "リンク", - "PE.Views.AddOther.textLinkType": "リンクのタイプ", - "PE.Views.AddOther.textNext": "次のスライド", - "PE.Views.AddOther.textNumber": "スライド番号", - "PE.Views.AddOther.textPrev": "前のスライド", - "PE.Views.AddOther.textTable": "表", - "PE.Views.AddOther.textTip": "ヒント", - "PE.Views.EditChart.textAddCustomColor": "ユーザーの色を追加する", - "PE.Views.EditChart.textAlign": "配置", - "PE.Views.EditChart.textAlignBottom": "下揃え", - "PE.Views.EditChart.textAlignCenter": "中央揃え", - "PE.Views.EditChart.textAlignLeft": "左揃え", - "PE.Views.EditChart.textAlignMiddle": "中央揃え", - "PE.Views.EditChart.textAlignRight": "右揃え", - "PE.Views.EditChart.textAlignTop": "上揃え", - "PE.Views.EditChart.textBack": "戻る", - "PE.Views.EditChart.textBackward": "背面へ移動", - "PE.Views.EditChart.textBorder": "罫線", - "PE.Views.EditChart.textColor": "色", - "PE.Views.EditChart.textCustomColor": "ユーザー設定色", - "PE.Views.EditChart.textFill": "塗りつぶし", - "PE.Views.EditChart.textForward": "前面へ移動", - "PE.Views.EditChart.textRemoveChart": "グラフを削除する", - "PE.Views.EditChart.textReorder": "並べ替え", - "PE.Views.EditChart.textSize": "サイズ", - "PE.Views.EditChart.textStyle": "スタイル", - "PE.Views.EditChart.textToBackground": "背景へ移動", - "PE.Views.EditChart.textToForeground": "前景に移動", - "PE.Views.EditChart.textType": "タイプ", - "PE.Views.EditChart.txtDistribHor": "水平に整列する", - "PE.Views.EditChart.txtDistribVert": "上下に整列する", - "PE.Views.EditImage.textAddress": "アドレス", - "PE.Views.EditImage.textAlign": "配置", - "PE.Views.EditImage.textAlignBottom": "下揃え", - "PE.Views.EditImage.textAlignCenter": "中央揃え", - "PE.Views.EditImage.textAlignLeft": "左揃え", - "PE.Views.EditImage.textAlignMiddle": "中央揃え", - "PE.Views.EditImage.textAlignRight": "右揃え", - "PE.Views.EditImage.textAlignTop": "上揃え", - "PE.Views.EditImage.textBack": "戻る", - "PE.Views.EditImage.textBackward": "背面へ移動", - "PE.Views.EditImage.textDefault": "実際のサイズ", - "PE.Views.EditImage.textForward": "前面へ移動", - "PE.Views.EditImage.textFromLibrary": "ライブラリから写真を選択", - "PE.Views.EditImage.textFromURL": "URLからの画像", - "PE.Views.EditImage.textImageURL": "画像のURL", - "PE.Views.EditImage.textLinkSettings": "リンク設定", - "PE.Views.EditImage.textRemove": "画像を削除する", - "PE.Views.EditImage.textReorder": "並べ替え", - "PE.Views.EditImage.textReplace": "置き換える", - "PE.Views.EditImage.textReplaceImg": "画像を置き換える", - "PE.Views.EditImage.textToBackground": "背景へ移動", - "PE.Views.EditImage.textToForeground": "前景に移動", - "PE.Views.EditImage.txtDistribHor": "水平に整列する", - "PE.Views.EditImage.txtDistribVert": "上下に整列する", - "PE.Views.EditLink.textBack": "戻る", - "PE.Views.EditLink.textDisplay": "表示する", - "PE.Views.EditLink.textEdit": "リンクを編集する", - "PE.Views.EditLink.textExternalLink": "外部リンク", - "PE.Views.EditLink.textFirst": "最初のスライド", - "PE.Views.EditLink.textInternalLink": "このプレゼンテーションのスライド", - "PE.Views.EditLink.textLast": "最後のスライド", - "PE.Views.EditLink.textLink": "リンク", - "PE.Views.EditLink.textLinkSlide": "リンク", - "PE.Views.EditLink.textLinkType": "リンクのタイプ", - "PE.Views.EditLink.textNext": "次のスライド", - "PE.Views.EditLink.textNumber": "スライド番号", - "PE.Views.EditLink.textPrev": "前のスライド", - "PE.Views.EditLink.textRemove": "リンクを削除する", - "PE.Views.EditLink.textTip": "ヒント", - "PE.Views.EditShape.textAddCustomColor": "ユーザーの色を追加する", - "PE.Views.EditShape.textAlign": "配置", - "PE.Views.EditShape.textAlignBottom": "下揃え", - "PE.Views.EditShape.textAlignCenter": "中央揃え", - "PE.Views.EditShape.textAlignLeft": "左揃え", - "PE.Views.EditShape.textAlignMiddle": "中央揃え", - "PE.Views.EditShape.textAlignRight": "右揃え", - "PE.Views.EditShape.textAlignTop": "上揃え", - "PE.Views.EditShape.textBack": "戻る", - "PE.Views.EditShape.textBackward": "背面へ移動", - "PE.Views.EditShape.textBorder": "罫線", - "PE.Views.EditShape.textColor": "色", - "PE.Views.EditShape.textCustomColor": "ユーザー設定色", - "PE.Views.EditShape.textEffects": "効果", - "PE.Views.EditShape.textFill": "塗りつぶし", - "PE.Views.EditShape.textForward": "前面へ移動", - "PE.Views.EditShape.textOpacity": "不透明度", - "PE.Views.EditShape.textRemoveShape": "図形を削除する", - "PE.Views.EditShape.textReorder": "並べ替え", - "PE.Views.EditShape.textReplace": "置き換える", - "PE.Views.EditShape.textSize": "サイズ", - "PE.Views.EditShape.textStyle": "スタイル", - "PE.Views.EditShape.textToBackground": "背景へ移動", - "PE.Views.EditShape.textToForeground": "前景に移動", - "PE.Views.EditShape.txtDistribHor": "水平に整列する", - "PE.Views.EditShape.txtDistribVert": "上下に整列する", - "PE.Views.EditSlide.textAddCustomColor": "ユーザーの色を追加する", - "PE.Views.EditSlide.textApplyAll": "全てのスライドに適用する", - "PE.Views.EditSlide.textBack": "戻る", - "PE.Views.EditSlide.textBlack": "黒いスクリーンから", - "PE.Views.EditSlide.textBottom": "下", - "PE.Views.EditSlide.textBottomLeft": "左下", - "PE.Views.EditSlide.textBottomRight": "右下", - "PE.Views.EditSlide.textClock": "時計", - "PE.Views.EditSlide.textClockwise": "時計回り", - "PE.Views.EditSlide.textColor": "色", - "PE.Views.EditSlide.textCounterclockwise": "反時計回り", - "PE.Views.EditSlide.textCover": "カバー", - "PE.Views.EditSlide.textCustomColor": "ユーザー設定色", - "PE.Views.EditSlide.textDelay": "遅延", - "PE.Views.EditSlide.textDuplicateSlide": "スライドの複製", - "PE.Views.EditSlide.textDuration": "[継続時間", - "PE.Views.EditSlide.textEffect": "結果", - "PE.Views.EditSlide.textFade": "フェード", - "PE.Views.EditSlide.textFill": "塗りつぶし", - "PE.Views.EditSlide.textHorizontalIn": "水平(中)", - "PE.Views.EditSlide.textHorizontalOut": "水平(外)", - "PE.Views.EditSlide.textLayout": "ページレイアウト", - "PE.Views.EditSlide.textLeft": "左", - "PE.Views.EditSlide.textNone": "なし", - "PE.Views.EditSlide.textOpacity": "不透明度", - "PE.Views.EditSlide.textPush": "プッシュ", - "PE.Views.EditSlide.textRemoveSlide": "スタンドを削除する", - "PE.Views.EditSlide.textRight": "右", - "PE.Views.EditSlide.textSmoothly": "スムーズに", - "PE.Views.EditSlide.textSplit": "スプリット", - "PE.Views.EditSlide.textStartOnClick": "クリックで開始", - "PE.Views.EditSlide.textStyle": "スタイル", - "PE.Views.EditSlide.textTheme": "テーマ", - "PE.Views.EditSlide.textTop": "上", - "PE.Views.EditSlide.textTopLeft": "左上", - "PE.Views.EditSlide.textTopRight": "右上", - "PE.Views.EditSlide.textTransition": "画面切り替え", - "PE.Views.EditSlide.textType": "タイプ", - "PE.Views.EditSlide.textUnCover": "アンカバー", - "PE.Views.EditSlide.textVerticalIn": "縦(中)", - "PE.Views.EditSlide.textVerticalOut": "縦(外)", - "PE.Views.EditSlide.textWedge": "くさび形", - "PE.Views.EditSlide.textWipe": "ワイプ", - "PE.Views.EditSlide.textZoom": "ズーム", - "PE.Views.EditSlide.textZoomIn": "拡大", - "PE.Views.EditSlide.textZoomOut": "縮小", - "PE.Views.EditSlide.textZoomRotate": "ズームと回転", - "PE.Views.EditTable.textAddCustomColor": "ユーザーの色を追加する", - "PE.Views.EditTable.textAlign": "配置", - "PE.Views.EditTable.textAlignBottom": "下揃え", - "PE.Views.EditTable.textAlignCenter": "中央揃え", - "PE.Views.EditTable.textAlignLeft": "左揃え", - "PE.Views.EditTable.textAlignMiddle": "中央揃え", - "PE.Views.EditTable.textAlignRight": "右揃え", - "PE.Views.EditTable.textAlignTop": "上揃え", - "PE.Views.EditTable.textBack": "戻る", - "PE.Views.EditTable.textBackward": "背面へ移動", - "PE.Views.EditTable.textBandedColumn": "縞模様の列", - "PE.Views.EditTable.textBandedRow": "縞模様の行", - "PE.Views.EditTable.textBorder": "罫線", - "PE.Views.EditTable.textCellMargins": "セルの余白", - "PE.Views.EditTable.textColor": "色", - "PE.Views.EditTable.textCustomColor": "ユーザー設定色", - "PE.Views.EditTable.textFill": "塗りつぶし", - "PE.Views.EditTable.textFirstColumn": "最初の列", - "PE.Views.EditTable.textForward": "前面へ移動", - "PE.Views.EditTable.textHeaderRow": "ヘッダー行", - "PE.Views.EditTable.textLastColumn": "最後の列", - "PE.Views.EditTable.textOptions": "設定", - "PE.Views.EditTable.textRemoveTable": "テーブルを削除する", - "PE.Views.EditTable.textReorder": "並べ替え", - "PE.Views.EditTable.textSize": "サイズ", - "PE.Views.EditTable.textStyle": "スタイル", - "PE.Views.EditTable.textStyleOptions": "スタイルの設定", - "PE.Views.EditTable.textTableOptions": "表の設定", - "PE.Views.EditTable.textToBackground": "背景へ移動", - "PE.Views.EditTable.textToForeground": "前景に移動", - "PE.Views.EditTable.textTotalRow": "合計行", - "PE.Views.EditTable.txtDistribHor": "水平に整列する", - "PE.Views.EditTable.txtDistribVert": "上下に整列する", - "PE.Views.EditText.textAddCustomColor": "カスタム色の追加", - "PE.Views.EditText.textAdditional": "追加", - "PE.Views.EditText.textAdditionalFormat": "追加の書式設定", - "PE.Views.EditText.textAfter": "後に", - "PE.Views.EditText.textAllCaps": "全ての英大文字", - "PE.Views.EditText.textAutomatic": "自動的", - "PE.Views.EditText.textBack": "戻る", - "PE.Views.EditText.textBefore": "前", - "PE.Views.EditText.textBullets": "箇条書き", - "PE.Views.EditText.textCharacterBold": "B", - "PE.Views.EditText.textCharacterItalic": "I", - "PE.Views.EditText.textCharacterStrikethrough": "S", - "PE.Views.EditText.textCharacterUnderline": "U", - "PE.Views.EditText.textCustomColor": "ユーザー設定色", - "PE.Views.EditText.textDblStrikethrough": "二重取り消し線", - "PE.Views.EditText.textDblSuperscript": "上付き", - "PE.Views.EditText.textFontColor": "フォントの色", - "PE.Views.EditText.textFontColors": "フォントの色", - "PE.Views.EditText.textFonts": "フォント", - "PE.Views.EditText.textFromText": "テキストとの間隔", - "PE.Views.EditText.textLetterSpacing": "文字間隔", - "PE.Views.EditText.textLineSpacing": "行間", - "PE.Views.EditText.textNone": "なし", - "PE.Views.EditText.textNumbers": "番号", - "PE.Views.EditText.textSize": "サイズ", - "PE.Views.EditText.textSmallCaps": "小型英大文字\t", - "PE.Views.EditText.textStrikethrough": "取り消し線", - "PE.Views.EditText.textSubscript": "下付き", - "PE.Views.Search.textCase": "大文字と小文字を区別する", - "PE.Views.Search.textDone": "完了", - "PE.Views.Search.textFind": "検索", - "PE.Views.Search.textFindAndReplace": "検索と置換", - "PE.Views.Search.textReplace": "置き換える", - "PE.Views.Search.textSearch": "検索", - "PE.Views.Settings. textComment": "コメント", - "PE.Views.Settings.mniSlideStandard": "標準(4:3)", - "PE.Views.Settings.mniSlideWide": "ワイド画面(16:9)", - "PE.Views.Settings.textAbout": "情報", - "PE.Views.Settings.textAddress": "アドレス", - "PE.Views.Settings.textApplication": "アプリ", - "PE.Views.Settings.textApplicationSettings": "アプリ設定", - "PE.Views.Settings.textAuthor": "作成者", - "PE.Views.Settings.textBack": "戻る", - "PE.Views.Settings.textCentimeter": "センチ", - "PE.Views.Settings.textCollaboration": "共同編集", - "PE.Views.Settings.textColorSchemes": "配色", - "PE.Views.Settings.textCreated": "作成された", - "PE.Views.Settings.textCreateDate": "作成日", - "PE.Views.Settings.textDisableAll": "全てを無効にする", - "PE.Views.Settings.textDisableAllMacrosWithNotification": "マクロを無効にして、通知する", - "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "マクロを無効にして、通知しない", - "PE.Views.Settings.textDone": "完了", - "PE.Views.Settings.textDownload": "ダウンロード", - "PE.Views.Settings.textDownloadAs": "...としてダウンロード", - "PE.Views.Settings.textEditPresent": "プレゼンテーションの編集", - "PE.Views.Settings.textEmail": "メール", - "PE.Views.Settings.textEnableAll": "全てを有効にする", - "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "マクロを有効にして、通知しない", - "PE.Views.Settings.textFind": "検索", - "PE.Views.Settings.textFindAndReplace": "検索と置換", - "PE.Views.Settings.textHelp": "ヘルプ", - "PE.Views.Settings.textInch": "インチ", - "PE.Views.Settings.textLastModified": "最終更新", - "PE.Views.Settings.textLastModifiedBy": "最終更新者", - "PE.Views.Settings.textLoading": "読み込み中...", - "PE.Views.Settings.textLocation": "位置", - "PE.Views.Settings.textMacrosSettings": "マクロの設定", - "PE.Views.Settings.textOwner": "所有者", - "PE.Views.Settings.textPoint": "ポイント", - "PE.Views.Settings.textPoweredBy": "Powered by", - "PE.Views.Settings.textPresentInfo": "プレゼンテーション情報", - "PE.Views.Settings.textPresentSettings": "プレゼンテーションの設定", - "PE.Views.Settings.textPresentSetup": "プレゼンテーション設定", - "PE.Views.Settings.textPresentTitle": "プレゼンテーションタイトル", - "PE.Views.Settings.textPrint": "印刷する", - "PE.Views.Settings.textSettings": "設定", - "PE.Views.Settings.textShowNotification": "通知を表示する", - "PE.Views.Settings.textSlideSize": "スライドのサイズ", - "PE.Views.Settings.textSpellcheck": "スペル・チェック", - "PE.Views.Settings.textSubject": "件名", - "PE.Views.Settings.textTel": "電話", - "PE.Views.Settings.textTitle": "タイトル", - "PE.Views.Settings.textUnitOfMeasurement": "測定単位", - "PE.Views.Settings.textUploaded": "アップロードされた", - "PE.Views.Settings.textVersion": "バージョン", - "PE.Views.Settings.unknownText": "不明", - "PE.Views.Toolbar.textBack": "戻る" + "About": { + "textAbout": "詳細情報", + "textAddress": "アドレス", + "textBack": "戻る", + "textVersion": "バージョン", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": " 警告", + "textAddComment": "コメントを追加", + "textAddReply": "返信する", + "textBack": "戻る", + "textEditUser": "ファイルを編集しているユーザー:", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "menuAddComment": "コメントを追加", + "menuAddLink": "リンクを追加", + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "保護されたファイル", + "closeButtonText": "ファイルを閉じる", + "errorUpdateVersion": "ファイルの情報が更新されました。ページが再読み込みされます。", + "notcriticalErrorTitle": " 警告", + "textHasMacros": "ファイルには自動マクロが含まれています。
    マクロを実行しますか?", + "txtProtected": "パスワードを入力してファイルを開くと、現在のパスワードがリセットされます", + "warnProcessRightsChange": "ファイルを編集する権限がありません!", + "advDRMPassword": "Password", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms." + } + }, + "Error": { + "errorFilePassProtect": "ファイルはパスワードで保護されており、開けませんでした。", + "errorFileSizeExceed": "ファイルサイズがサーバーの制限を超えています。
    管理者にお問い合わせください。", + "errorUpdateVersionOnDisconnect": "インターネットが再接続され、ファイルのバージョンが更新されました。
    作業を続ける前に、ファイルをダウンロードするか、内容をコピーして、思わぬ変更があった際にも対処できるようにしてから、このページを再読み込みしてください。", + "errorUserDrop": "現在、このファイルにはアクセスできません。", + "notcriticalErrorTitle": " 警告", + "openErrorText": "ファイルを開く際にエラーが発生しました。", + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "loadImagesTextText": "イメージの読み込み中...", + "loadImagesTitleText": "イメージの読み込み中", + "loadImageTextText": "イメージの読み込み中...", + "loadImageTitleText": "イメージの読み込み中", + "loadingDocumentTextText": "ドキュメントを読み込んでいます…", + "loadThemeTextText": "テーマの読み込み中...", + "loadThemeTitleText": "テーマの読み込み中", + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadingDocumentTitleText": "Loading document", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "View": { + "Add": { + "notcriticalErrorTitle": " 警告", + "textAddLink": "リンクを追加", + "textAddress": "アドレス", + "textBack": "戻る", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": " 警告", + "textActualSize": "既定のサイズ", + "textAddCustomColor": "ユーザーの色を追加する", + "textAdditional": "追加", + "textAdditionalFormatting": "追加の書式設定", + "textAddress": "アドレス", + "textAuto": "自動", + "textBack": "戻る", + "textZoom": "ズーム", + "textZoomIn": "拡大", + "textZoomOut": "縮小", + "textZoomRotate": "ズームと回転", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe" + }, + "Settings": { + "textAbout": "詳細情報", + "textAddress": "アドレス:", + "textAuthor": "作成者", + "textBack": "戻る", + "textLoading": "読み込み中...", + "textSettings": "設定", + "textVersion": "バージョン", + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ko.json b/apps/presentationeditor/mobile/locale/ko.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/ko.json +++ b/apps/presentationeditor/mobile/locale/ko.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/lo.json b/apps/presentationeditor/mobile/locale/lo.json index 1f208396f..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/lo.json +++ b/apps/presentationeditor/mobile/locale/lo.json @@ -1,574 +1,465 @@ { - "Common.Controllers.Collaboration.textAddReply": "ເພີ່ມຄຳຕອບກັບ", - "Common.Controllers.Collaboration.textCancel": "ຍົກເລີກ", - "Common.Controllers.Collaboration.textDeleteComment": "ລົບຄໍາເຫັນ", - "Common.Controllers.Collaboration.textDeleteReply": "ລົບການຕອບກັບ", - "Common.Controllers.Collaboration.textDone": "ສໍາເລັດ", - "Common.Controllers.Collaboration.textEdit": "ແກ້ໄຂ", - "Common.Controllers.Collaboration.textEditUser": "ຜູ້ໃຊ້ທີກໍາລັງແກ້ໄຂເອກະສານ", - "Common.Controllers.Collaboration.textMessageDeleteComment": "ທ່ານຕ້ອງການລົບຄຳເຫັນນີ້ແທ້ບໍ", - "Common.Controllers.Collaboration.textMessageDeleteReply": "ທ່ານຕ້ອງການລຶບ ຄຳ ຕອບນີ້ແທ້ບໍ?", - "Common.Controllers.Collaboration.textReopen": "ເປີດຄືນ", - "Common.Controllers.Collaboration.textResolve": "ແກ້ໄຂ", - "Common.Controllers.Collaboration.textYes": "ແມ່ນແລ້ວ", - "Common.UI.ThemeColorPalette.textCustomColors": "ປະເພດຂອງສີ, ກຳນົດສີ ", - "Common.UI.ThemeColorPalette.textStandartColors": "ສີມາດຕະຖານ", - "Common.UI.ThemeColorPalette.textThemeColors": " ສິຂອງຕີມ, ສີສັນຂອງຫົວຂໍ້", - "Common.Utils.Metric.txtCm": "ຊັງຕີແມັດ", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "ເພີ່ມຄຳຕອບກັບ", - "Common.Views.Collaboration.textBack": "ກັບຄືນ", - "Common.Views.Collaboration.textCancel": "ຍົກເລີກ", - "Common.Views.Collaboration.textCollaboration": "ຮ່ວມກັນ", - "Common.Views.Collaboration.textDone": "ສໍາເລັດ", - "Common.Views.Collaboration.textEditReply": "ແກ້ໄຂການຕອບກັບ", - "Common.Views.Collaboration.textEditUsers": "ຜຸ້ໃຊ້", - "Common.Views.Collaboration.textEditСomment": "ແກ້ໄຂຄໍາເຫັນ", - "Common.Views.Collaboration.textNoComments": "ພາບສະໄລນີ້ບໍ່ໄດ້ບັນຈຸຄຳເຫັນ", - "Common.Views.Collaboration.textСomments": "ຄວາມຄິດເຫັນ", - "PE.Controllers.AddContainer.textImage": "ຮູບພາບ", - "PE.Controllers.AddContainer.textLink": "ລີ້ງ", - "PE.Controllers.AddContainer.textOther": "ອື່ນໆ", - "PE.Controllers.AddContainer.textShape": "ຮູບຮ່າງ", - "PE.Controllers.AddContainer.textSlide": "ພາບສະໄລ່. ພາບເລື່ອນ", - "PE.Controllers.AddContainer.textTable": "ຕາຕະລາງ", - "PE.Controllers.AddImage.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "PE.Controllers.AddImage.textEmptyImgUrl": "ທ່ານຕ້ອງບອກ ທີຢູ່ຮູບ URL", - "PE.Controllers.AddImage.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "PE.Controllers.AddLink.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "PE.Controllers.AddLink.textDefault": "ພາກສ່ວນເນື້ອຫາ, ຂໍ້ຄວາມ", - "PE.Controllers.AddLink.textExternalLink": "ລິງພາຍນອກ", - "PE.Controllers.AddLink.textFirst": "ສະໄລທຳອິດ", - "PE.Controllers.AddLink.textInternalLink": "ພາບສະໄລ່ ໃນບົດນຳສະເໜີນີ້", - "PE.Controllers.AddLink.textLast": "ສະໄລ່ສຸດທ້າຍ", - "PE.Controllers.AddLink.textNext": "ພາບສະໄລທັດໄປ", - "PE.Controllers.AddLink.textPrev": "ພາບສະໄລຜ່ານມາ", - "PE.Controllers.AddLink.textSlide": "ພາບສະໄລ່. ພາບເລື່ອນ", - "PE.Controllers.AddLink.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "PE.Controllers.AddOther.textCancel": "ຍົກເລີກ", - "PE.Controllers.AddOther.textContinue": "ສືບຕໍ່", - "PE.Controllers.AddOther.textDelete": "ລົບ", - "PE.Controllers.AddOther.textDeleteDraft": "ທ່ານຕ້ອງການລົບແທ້ບໍ ", - "PE.Controllers.AddTable.textCancel": "ຍົກເລີກ", - "PE.Controllers.AddTable.textColumns": "ຖັນ", - "PE.Controllers.AddTable.textRows": "ແຖວ", - "PE.Controllers.AddTable.textTableSize": "ຂະໜາດຕາຕະລາງ", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "ການກ໋ອບປີ້,ຕັດ ແລະ ວາງ ການດຳເນີນການໂດຍໃຊ້ເມນູ ຈະດຳເນີນການພາຍໃນຟາຍປັດຈຸບັນເທົ່ານັ້ນ", - "PE.Controllers.DocumentHolder.menuAddComment": "ເພີ່ມຄຳເຫັນ", - "PE.Controllers.DocumentHolder.menuAddLink": "ເພີ່ມລິ້ງ", - "PE.Controllers.DocumentHolder.menuCopy": "ສໍາເນົາ", - "PE.Controllers.DocumentHolder.menuCut": "ຕັດ", - "PE.Controllers.DocumentHolder.menuDelete": "ລົບ", - "PE.Controllers.DocumentHolder.menuEdit": "ແກ້ໄຂ", - "PE.Controllers.DocumentHolder.menuMore": "ຫຼາຍກວ່າ", - "PE.Controllers.DocumentHolder.menuOpenLink": "ເປີດລີ້ງ", - "PE.Controllers.DocumentHolder.menuPaste": "ວາງ", - "PE.Controllers.DocumentHolder.menuViewComment": "ເບີ່ງຄໍາເຫັນ", - "PE.Controllers.DocumentHolder.sheetCancel": "ຍົກເລີກ", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", - "PE.Controllers.DocumentHolder.textDoNotShowAgain": "ບໍ່ຕ້ອງສະແດງຄືນອີກ", - "PE.Controllers.DocumentPreview.txtFinalMessage": "ສິ້ນສຸດເບິ່ງພາບສະໄລ, ກົດອອກ", - "PE.Controllers.EditContainer.textChart": "ແຜນຮູບວາດ", - "PE.Controllers.EditContainer.textHyperlink": "ົໄຮເປີລີ້ງ", - "PE.Controllers.EditContainer.textImage": "ຮູບພາບ", - "PE.Controllers.EditContainer.textSettings": "ການຕັ້ງຄ່າ", - "PE.Controllers.EditContainer.textShape": "ຮູບຮ່າງ", - "PE.Controllers.EditContainer.textSlide": "ພາບສະໄລ່. ພາບເລື່ອນ", - "PE.Controllers.EditContainer.textTable": "ຕາຕະລາງ", - "PE.Controllers.EditContainer.textText": "ເນື້ອຫາ", - "PE.Controllers.EditImage.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "PE.Controllers.EditImage.textEmptyImgUrl": "ທ່ານຕ້ອງບອກ ທີຢູ່ຮູບ URL", - "PE.Controllers.EditImage.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "PE.Controllers.EditLink.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "PE.Controllers.EditLink.textDefault": "ພາກສ່ວນເນື້ອຫາ, ຂໍ້ຄວາມ", - "PE.Controllers.EditLink.textExternalLink": "ລິງພາຍນອກ", - "PE.Controllers.EditLink.textFirst": "ສະໄລທຳອິດ", - "PE.Controllers.EditLink.textInternalLink": "ພາບສະໄລ່ ໃນບົດນຳສະເໜີນີ້", - "PE.Controllers.EditLink.textLast": "ສະໄລ່ສຸດທ້າຍ", - "PE.Controllers.EditLink.textNext": "ພາບສະໄລທັດໄປ", - "PE.Controllers.EditLink.textPrev": "ພາບສະໄລຜ່ານມາ", - "PE.Controllers.EditLink.textSlide": "ພາບສະໄລ່. ພາບເລື່ອນ", - "PE.Controllers.EditLink.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "PE.Controllers.EditSlide.textSec": "S", - "PE.Controllers.EditText.textAuto": "ອັດຕະໂນມັດ", - "PE.Controllers.EditText.textFonts": "ຕົວອັກສອນ", - "PE.Controllers.EditText.textPt": "pt", - "PE.Controllers.Main.advDRMEnterPassword": "ໃສ່ລະຫັດ", - "PE.Controllers.Main.advDRMOptions": "ຟາຍທີ່ໄດ້ຮັບການປົກປ້ອງ", - "PE.Controllers.Main.advDRMPassword": "ລະຫັດ", - "PE.Controllers.Main.applyChangesTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ", - "PE.Controllers.Main.applyChangesTitleText": "ດາວໂຫຼດຂໍ້ມູນ", - "PE.Controllers.Main.closeButtonText": "ປິດຟຮາຍເອກະສານ", - "PE.Controllers.Main.convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", - "PE.Controllers.Main.criticalErrorExtText": "ກົດ ຕົກລົງ ເພື່ອກັບຄືນຫາລາຍການເອກະສານ", - "PE.Controllers.Main.criticalErrorTitle": "ຂໍ້ຜິດພາດ", - "PE.Controllers.Main.downloadErrorText": "ດາວໂຫຼດບໍ່ສຳເລັດ.", - "PE.Controllers.Main.downloadTextText": "ດາວໂຫຼດບົດພີເຊັ້ນ, ດາວໂຫຼດບົດນຳສະເໜີ", - "PE.Controllers.Main.downloadTitleText": "ດາວໂຫຼດການນຳສະເໜີ", - "PE.Controllers.Main.errorAccessDeny": "ທ່ານບໍ່ມີສິດຈະດຳເນີນການອັນນີ້.
    ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", - "PE.Controllers.Main.errorBadImageUrl": "URL ຮູບພາບບໍ່ຖືກຕ້ອງ", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "ບໍ່ສາມາດເຊື່ອມຕໍ່ ເຊີບເວີ , ທ່ານບໍ່ສາມາດແກ້ໄຂເອກະສານຕໍ່ໄດ້", - "PE.Controllers.Main.errorConnectToServer": "ເອກະສານບໍ່ສາມາດບັນທຶກໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າການເຊື່ອມຕໍ່ຫລືຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.
    ເມື່ອທ່ານກົດປຸ່ມ 'OK', ທ່ານຈະໄດ້ຮັບການກະຕຸ້ນເຕືອນໃຫ້ດາວໂຫລດເອກະສານ.", - "PE.Controllers.Main.errorDatabaseConnection": "ຂໍ້ຜິດພາດພາຍນອກ. ກະລຸນາ, ຕິດຕໍ່ການສະ ໜັບ ສະ ໜູນ.", - "PE.Controllers.Main.errorDataEncrypted": "ໄດ້ຮັບການປ່ຽນແປງລະຫັດແລ້ວ, ບໍ່ສາມາດຖອດລະຫັດໄດ້.", - "PE.Controllers.Main.errorDataRange": "ໄລຍະຂອງຂໍ້ມູນບໍ່ຖືກ", - "PE.Controllers.Main.errorDefaultMessage": "ລະຫັດຂໍ້ຜິດພາດ: %1", - "PE.Controllers.Main.errorEditingDownloadas": "ມີຂໍ້ຜິດພາດເກີດຂື້ນໃນລະຫວ່າງການເຮັດວຽກກັບເອກະສານ.ໃຊ້ຕົວເລືອກ 'ດາວໂຫລດ' ເພື່ອບັນທຶກເອກະສານ ສຳ ເນົາເກັບໄວ້ໃນຮາດຄອມພິວເຕີຂອງທ່ານ.", - "PE.Controllers.Main.errorFilePassProtect": "ມີລະຫັດປົກປ້ອງຟາຍນີ້ຈຶ່ງບໍ່ສາມາດເປີດໄດ້", - "PE.Controllers.Main.errorFileSizeExceed": "ຂະໜາດຂອງຟາຍໃຫຍ່ກວ່າທີ່ກຳນົດໄວ້ໃນລະບົບ.
    ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", - "PE.Controllers.Main.errorKeyEncrypt": "ບໍ່ຮູ້ຕົວບັນຍາຍຫຼັກ", - "PE.Controllers.Main.errorKeyExpire": "ລະຫັດໝົດອາຍຸ", - "PE.Controllers.Main.errorOpensource": "ທ່ານໃຊ້ສະບັບຊຸມຊົນແບບບໍ່ເສຍຄ່າ ທ່ານສາມາດເປີດເອກະສານ ແລະ ເບິ່ງເທົ່ານັ້ນ. ເພື່ອເຂົ້າເຖິງ ແກ້ໄຊທາງ ເວັບມືຖື, ຕ້ອງມີໃບອະນຸຍາດການຄ້າ.", - "PE.Controllers.Main.errorProcessSaveResult": "ບັນທືກບໍ່ສໍາເລັດ", - "PE.Controllers.Main.errorServerVersion": "ສະບັບດັດແກ້ໄດ້ຖືກປັບປຸງແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດຄືນເພື່ອ ນຳໃຊ້ການປ່ຽນແປງ.", - "PE.Controllers.Main.errorSessionAbsolute": "ໝົດເວລາ ການແກ້ໄຂເອກະສານ ກະລຸນາໂຫລດ ໜ້າ ນີ້ຄືນ ໃໝ່", - "PE.Controllers.Main.errorSessionIdle": "ເອກະສານດັ່ງກ່າວບໍ່ໄດ້ຖືກດັດແກ້ມາດົນແລ້ວ. ກະລຸນາໂຫລດ ໜ້ານີ້ຄືນໃໝ່.", - "PE.Controllers.Main.errorSessionToken": "ການເຊື່ອມຕໍ່ຫາ ເຊີເວີຖືກລົບກວນ, ກະລຸນນາໂລດຄືນ", - "PE.Controllers.Main.errorStockChart": "ຄໍາສັ່ງແຖວບໍ່ຖືກຕ້ອງ. ເພື່ອສ້າງຕາຕະລາງຫຸ້ນອວາງຂໍ້ມູນໃສ່ເຈັ້ຍຕາມ ລຳດັບຕໍ່ໄປນີ້: ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ.", - "PE.Controllers.Main.errorUpdateVersion": "ເອກະສານໄດ້ຖືກປ່ຽນແລ້ວ. ໜ້າເວັບຈະຖືກໂຫລດ ໃໝ່.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "ການເຊື່ອຕໍ່ອິນເຕີເນັດຫາກໍ່ກັບມາ, ແລະຟາຍເອກະສານໄດ້ມີການປ່ຽນແປງແລ້ວ. ກ່ອນທີ່ທ່ານຈະດຳເນີການຕໍ່ໄປ, ທ່ານຕ້ອງໄດ້ດາວໂຫຼດຟາຍ ຫຼືສຳເນົາເນື້ອຫາ ເພື່ອປ້ອງການການສູນເສຍ, ແລະກໍ່ທຳການໂຫຼດໜ້າຄືນອີກຄັ້ງ.", - "PE.Controllers.Main.errorUserDrop": "ບໍ່ສາມາດເຂົ້າເຖິງຟາຍໄດ້", - "PE.Controllers.Main.errorUsersExceed": "ຈໍານວນຜູ້ໃຊ້ເກີນກໍານົດ", - "PE.Controllers.Main.errorViewerDisconnect": "ຂາດການເຊື່ອມຕໍ່,ທ່ານຍັງສາມາດເບິ່ງເອກະສານໄດ້
    ແຕ່ຈະບໍ່ສາມາດດາວໂຫຼດໄດ້ຈົນກວ່າການເຊື່ອມຕໍ່ຈະໄດ້ຮັບການກູ້ຄືນ ແລະ ໂຫຼດໜ້າໃໝ່", - "PE.Controllers.Main.leavePageText": "ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໃນເອກະສານນີ້. ກົດ \"ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທືກອັດຕະໂນມັດຂອງເອກະສານ. ກົດ 'ອອກຈາກ ໜ້າ ນີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກ.", - "PE.Controllers.Main.loadFontsTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ", - "PE.Controllers.Main.loadFontsTitleText": "ດາວໂຫຼດຂໍ້ມູນ", - "PE.Controllers.Main.loadFontTextText": "ກຳລັງດາວໂຫຼດຂໍ້ມູນ", - "PE.Controllers.Main.loadFontTitleText": "ດາວໂຫຼດຂໍ້ມູນ", - "PE.Controllers.Main.loadImagesTextText": "ກໍາລັງໂລດຮູບພາບ", - "PE.Controllers.Main.loadImagesTitleText": "ກໍາລັງໂລດຮູບພາບ", - "PE.Controllers.Main.loadImageTextText": "ກໍາລັງໂລດຮູບພາບ", - "PE.Controllers.Main.loadImageTitleText": "ກໍາລັງໂລດຮູບພາບ", - "PE.Controllers.Main.loadingDocumentTextText": "ກຳລັງດາວໂຫຼດບົດນຳສະເໜີ", - "PE.Controllers.Main.loadingDocumentTitleText": "ກຳລັງໂຫຼດບົດພີເຊັ້ນ, ບົດນຳສະເໜີ", - "PE.Controllers.Main.loadThemeTextText": "ກຳລັງດາວໂຫຼດຫົວຂໍ້", - "PE.Controllers.Main.loadThemeTitleText": "ກຳລັງດາວໂຫຼດຫົວຂໍ້", - "PE.Controllers.Main.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "PE.Controllers.Main.openErrorText": "ມີຂໍ້ຜິດພາດເກີດຂື້ນໃນຂະນະເປີດເອກະສານ.", - "PE.Controllers.Main.openTextText": "ກໍາລັງເປີດເອກະສານ", - "PE.Controllers.Main.openTitleText": "ກໍາລັງເປີດເອກະສານ", - "PE.Controllers.Main.printTextText": "ກໍາລັງພິມເອກະສານ", - "PE.Controllers.Main.printTitleText": "ກໍາລັງພິມເອກະສານ", - "PE.Controllers.Main.reloadButtonText": "ໂຫລດ ໜ້າ ເວັບ ໃໝ່", - "PE.Controllers.Main.requestEditFailedMessageText": "ມີຄົນກຳລັງແກ້ໄຂເອກະສານນີ້, ກະລຸນາລອງໃໝ່ພາຍຫຼັງ", - "PE.Controllers.Main.requestEditFailedTitleText": "ປະ​ຕິ​ເສດ​ການ​ເຂົ້າ​ເຖິງ", - "PE.Controllers.Main.saveErrorText": "ພົບບັນຫາຕອນບັນທຶກຟາຍ", - "PE.Controllers.Main.savePreparingText": "ກະກຽມບັນທືກ", - "PE.Controllers.Main.savePreparingTitle": "ກຳລັງກະກຽມບັນທືກ, ກະລຸນາລໍຖ້າ", - "PE.Controllers.Main.saveTextText": "ກໍາລັງບັນທືກເອກະສານ", - "PE.Controllers.Main.saveTitleText": "ບັນທືກເອກະສານ", - "PE.Controllers.Main.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", - "PE.Controllers.Main.splitDividerErrorText": "ຈໍານວນແຖວຕ້ອງເປັນຕົວເລກຂອງ %1", - "PE.Controllers.Main.splitMaxColsErrorText": "ຈຳນວນຖັນຕ້ອງຕໍ່າ ກວ່າ % 1", - "PE.Controllers.Main.splitMaxRowsErrorText": "ຈຳນວນແຖວຕ້ອງໜ້ອຍກວ່າ % 1", - "PE.Controllers.Main.textAnonymous": "ບໍ່ລະບຸຊື່", - "PE.Controllers.Main.textBack": "ກັບຄືນ", - "PE.Controllers.Main.textBuyNow": "ເຂົ້າໄປເວັບໄຊ", - "PE.Controllers.Main.textCancel": "ຍົກເລີກ", - "PE.Controllers.Main.textClose": " ປິດ", - "PE.Controllers.Main.textCloseTip": "ແຕະເພື່ອປິດ", - "PE.Controllers.Main.textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", - "PE.Controllers.Main.textCustomLoader": "ກະລຸນາຮັບຊາບວ່າ ອີງຕາມຂໍ້ ກຳນົດຂອງໃບອະນຸຍາດ ທ່ານບໍ່ມີສິດທີ່ຈະປ່ຽນແປງ ການບັນຈຸ.
    ກະລຸນາຕິດຕໍ່ຝ່າຍຂາຍຂອງພວກເຮົາເພື່ອຂໍໃບສະເໜີ.", - "PE.Controllers.Main.textDone": "ສໍາເລັດ", - "PE.Controllers.Main.textGuest": " ແຂກ", - "PE.Controllers.Main.textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
    ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", - "PE.Controllers.Main.textLoadingDocument": "ກຳລັງໂຫຼດບົດພີເຊັ້ນ", - "PE.Controllers.Main.textNo": "ບໍ່", - "PE.Controllers.Main.textNoLicenseTitle": "ຈໍານວນໃບອະນຸຍາດໄດ້ໃຊ້ຄົບແລ້ວ", - "PE.Controllers.Main.textOK": "ຕົກລົງ", - "PE.Controllers.Main.textPaidFeature": "ຄວາມສາມາດ ທີຕ້ອງຊື້ເພີ່ມ", - "PE.Controllers.Main.textPassword": "ລະຫັດ", - "PE.Controllers.Main.textPreloader": "ກໍາລັງໂລດ", - "PE.Controllers.Main.textRemember": "ຈື່ທາງເລືອກຂອງຂ້ອຍ", - "PE.Controllers.Main.textShape": "ຮູບຮ່າງ", - "PE.Controllers.Main.textTryUndoRedo": "ໜ້າທີ່ ກັບຄືນ ຫຼື ທວນຄືນ ຖືກປິດໃຊ້ງານ ສຳລັບ ໂໝດ ການແກ້ໄຂຮ່ວມກັນດ່ວນ.", - "PE.Controllers.Main.textUsername": "ຊື່ຜູ້ໃຊ້", - "PE.Controllers.Main.textYes": "ແມ່ນແລ້ວ", - "PE.Controllers.Main.titleLicenseExp": "ໃບອະນຸຍາດໝົດອາຍຸ", - "PE.Controllers.Main.titleServerVersion": "ອັບເດດການແກ້ໄຂ", - "PE.Controllers.Main.txtAddFirstSlide": "ກົດເພື່ອເພີ່ມແຜ່ນສະໄລ້ທຳອິດ", - "PE.Controllers.Main.txtArt": "ເນື້ອຫາຂອງທ່ານຢູ່ນີ້", - "PE.Controllers.Main.txtBasicShapes": "ຮູບຮ່າງພື້ນຖານ", - "PE.Controllers.Main.txtButtons": "ປຸ່ມ", - "PE.Controllers.Main.txtCallouts": "ຄຳບັນຍາຍພາບ", - "PE.Controllers.Main.txtCharts": "ແຜ່ນຮູບວາດ", - "PE.Controllers.Main.txtClipArt": "ພາບຕັດຕໍ່", - "PE.Controllers.Main.txtDateTime": "ວັນທີ ແລະ ເວລາ", - "PE.Controllers.Main.txtDiagram": "ສິນລະປະງາມ", - "PE.Controllers.Main.txtDiagramTitle": "ໃສ່ຊື່ແຜນຮູບວາດ", - "PE.Controllers.Main.txtEditingMode": "ຕັ້ງຄ່າ ຮູບແບບການແກ້ໄຂ", - "PE.Controllers.Main.txtFiguredArrows": "ເຄື່ອງໝາຍລູກສອນ", - "PE.Controllers.Main.txtFooter": "ສ່ວນທ້າຍ", - "PE.Controllers.Main.txtHeader": "ຫົວຂໍ້ເອກະສານ", - "PE.Controllers.Main.txtImage": "ຮູບພາບ", - "PE.Controllers.Main.txtLines": "ແຖວ, ເສັ້ນ", - "PE.Controllers.Main.txtMath": "ຈັບຄູ່ກັນ", - "PE.Controllers.Main.txtMedia": "ຊື່ມວນຊົນ", - "PE.Controllers.Main.txtNeedSynchronize": "ທ່ານໄດ້ປັບປຸງ", - "PE.Controllers.Main.txtPicture": "ຮູບພາບ", - "PE.Controllers.Main.txtProtected": "ຖ້າເຈົ້ານໍາໃຊ້ລະຫັດເພື່ອເປີດເອກະສານ, ລະຫັດປັດຈະບັນຈະຖືກແກ້ໄຂ", - "PE.Controllers.Main.txtRectangles": "ສີ່ຫລ່ຽມ", - "PE.Controllers.Main.txtSeries": "ຊຸດ", - "PE.Controllers.Main.txtSldLtTBlank": "ເປົ່າວ່າງ", - "PE.Controllers.Main.txtSldLtTChart": "ແຜນຮູບວາດ", - "PE.Controllers.Main.txtSldLtTChartAndTx": "ແຜນວາດ ແລະ ຂໍ້ຄວາມ", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "ພາບຕັດຕໍ່ ແລະ ຂໍ້ຄວາມ", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "ພາບຕັດຕໍ່ ແລະ ຂໍ້ຄວາມແນວຕັ້ງ", - "PE.Controllers.Main.txtSldLtTCust": "ກຳນົດເອງ, ປະເພດ,", - "PE.Controllers.Main.txtSldLtTDgm": "ແຜ່ນພາບ", - "PE.Controllers.Main.txtSldLtTFourObj": "ສີ່ຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "ຊື່ ແລະ ເນື້ອຫາ", - "PE.Controllers.Main.txtSldLtTObj": "ຫົວຂໍ້ ແລະ ຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "ຈຸດປະສົງ ແລະ ສອງຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTObjAndTx": "ຈຸດປະສົງ ແລະ ເນື້ອຫາ", - "PE.Controllers.Main.txtSldLtTObjOnly": "ຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTObjOverTx": "ຈຸດປະສົງຫາຍກວ່າເນື້ອຫາ", - "PE.Controllers.Main.txtSldLtTObjTx": "ຫົວຂໍ້, ຈຸດປະສົງ, ແລະ ຄຳອະທິບາຍ", - "PE.Controllers.Main.txtSldLtTPicTx": "ພາບ ແລະ ຄຳບັນຍາຍ", - "PE.Controllers.Main.txtSldLtTSecHead": "ພາກສ່ວນຫົວຂໍ້", - "PE.Controllers.Main.txtSldLtTTbl": "ຕາຕະລາງ", - "PE.Controllers.Main.txtSldLtTTitle": "ຫົວຂໍ້", - "PE.Controllers.Main.txtSldLtTTitleOnly": "ຫົວຂໍ້ຢ່າງດຽວ", - "PE.Controllers.Main.txtSldLtTTwoColTx": "ຂໍ້ຄວາມສອງຖັນ", - "PE.Controllers.Main.txtSldLtTTwoObj": "ສອງຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "ສອງຈຸດປະສົງ ແລະ ຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "ສອງຈຸດປະສົງ ແລະ ເນື້ອຫາ", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "ສອງຈຸດປະສົງຫຼາຍກ່ວາເນື້ອຫາ", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "ສອງເນື້ອຫາ ແລະ ສອງ ຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTTx": "ເນື້ອຫາ", - "PE.Controllers.Main.txtSldLtTTxAndChart": "ເນື້ອຫາ ແລະ ຕາຕະລາງ", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "ເນື້ອຫາ ແລະ ພາບຕັດຕໍ່", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "ເນື້ອຫາ ແລະ ສີ່", - "PE.Controllers.Main.txtSldLtTTxAndObj": "ເນື້ອຫາ ແລະ ຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "ເນື້ອຫາ ແລະ ສອງຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTTxOverObj": "ເນື້ອຫາຫຼາຍກ່ວາ ຈຸດປະສົງ", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "ຫົວຂໍ້ ແລະ ເນື້ອຫາລວງຕັ້ງ", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "ຫົວຂໍ້ ແລະ ເນື້ອຫາເທິງຕາຕະລາງ", - "PE.Controllers.Main.txtSldLtTVertTx": "ຂໍ້ຄວາມ,ເນື້ອຫາ ລວງຕັ້ງ", - "PE.Controllers.Main.txtSlideNumber": "ພາບສະໄລ່ ຕົວເລກ", - "PE.Controllers.Main.txtSlideSubtitle": "ຄຳອະທິບາຍພາບສະໄລ່", - "PE.Controllers.Main.txtSlideText": "ເນື້ອຫາພາບສະໄລ", - "PE.Controllers.Main.txtSlideTitle": "ຫົວຂໍ້ພາບສະໄລ", - "PE.Controllers.Main.txtStarsRibbons": "ດາວ ແລະ ໂບ", - "PE.Controllers.Main.txtXAxis": "ແກນ X, ແກນລວງນອນ", - "PE.Controllers.Main.txtYAxis": "ແກນ Y, ແກນລວງຕັ້ງ ", - "PE.Controllers.Main.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", - "PE.Controllers.Main.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້", - "PE.Controllers.Main.uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິດຜາດຮູບແບບຂອງຮູບ", - "PE.Controllers.Main.uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂລດ", - "PE.Controllers.Main.uploadImageSizeMessage": "ຂະໜາດຂອງຮູບພາບໃຫ່ຍເກີນກໍານົດ", - "PE.Controllers.Main.uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "PE.Controllers.Main.uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "PE.Controllers.Main.waitText": "ກະລຸນາລໍຖ້າ...", - "PE.Controllers.Main.warnLicenseExceeded": " ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
    ຕິດຕໍ່ທີມບໍລິຫານ ເພື່ອສືກສາເພີ່ມເຕີ່ມ ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ເເກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
    ຕິດຕໍ່ທີມບໍລິຫານ ເພື່ອສືກສາເພີ່ມເຕີ່ມ", - "PE.Controllers.Main.warnLicenseExp": "ໃບອະນຸຍາດຂອງທ່ານ ໝົດ ອາຍຸແລ້ວ.
    ກະລຸນາປັບປຸງໃບອະນຸຍາດຂອງທ່ານແລະ ນຳໃຊ້ໃໝ່.", - "PE.Controllers.Main.warnLicenseLimitedNoAccess": "ໃບອະນຸຍາດໝົດອາຍຸ.
    ທ່ານບໍ່ສາມາດເຂົ້າເຖິງ ໜ້າ ທີ່ແກ້ໄຂເອກະສານ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.", - "PE.Controllers.Main.warnLicenseLimitedRenewed": "ໃບອະນຸຍາດ ຈຳ ເປັນຕ້ອງມີການຕໍ່ອາຍຸ
    ທ່ານມີຂໍ້ ຈຳ ກັດໃນການ ທຳ ງານການແກ້ໄຂເອກະສານ, ກະລຸນາຕິດຕໍ່ຫາຜູ້ເບິ່ງລະບົບ", - "PE.Controllers.Main.warnLicenseUsersExceeded": " ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມບໍລິຫານເພື່ອຂໍ້ມູນເພີ່ມເຕີ່ມ ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບຜູ້ແກ້ໄຂ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມບໍລິຫານເພື່ອຂໍ້ມູນເພີ່ມເຕີ່ມ", - "PE.Controllers.Main.warnNoLicense": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
    ຕິດຕໍ່ ທີມຂາຍ% 1 ສຳ ລັບຂໍ້ ກຳນົດການຍົກລະດັບສິດ", - "PE.Controllers.Main.warnNoLicenseUsers": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ% 1 ສຳ ລັບຂໍ້ ກຳນົດການຍົກລະດັບສິດ", - "PE.Controllers.Main.warnProcessRightsChange": "ເຈົ້າຖືກປະຕິເສດ ສິດໃນການແກ້ໄຂເອກະສານ", - "PE.Controllers.Search.textNoTextFound": "ເນື້ອຫາບໍ່ມີ", - "PE.Controllers.Search.textReplaceAll": "ປ່ຽນແທນທັງໝົດ", - "PE.Controllers.Settings.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "PE.Controllers.Settings.txtLoading": "ກໍາລັງໂລດ", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໃນເອກະສານນີ້. ກົດ \"ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທືກອັດຕະໂນມັດຂອງເອກະສານ. ກົດ 'ອອກຈາກ ໜ້າ ນີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກ.", - "PE.Controllers.Toolbar.dlgLeaveTitleText": "ເຈົ້າອອກຈາກລະບົບ", - "PE.Controllers.Toolbar.leaveButtonText": "ອອກຈາກໜ້ານີ້", - "PE.Controllers.Toolbar.stayButtonText": "ຢູ່ໃນໜ້ານີ້", - "PE.Views.AddImage.textAddress": "ທີ່ຢູ່", - "PE.Views.AddImage.textBack": "ກັບຄືນ", - "PE.Views.AddImage.textFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", - "PE.Views.AddImage.textFromURL": "ຮູບພາບຈາກ URL", - "PE.Views.AddImage.textImageURL": "URL ຮູບພາບ", - "PE.Views.AddImage.textInsertImage": "ເພີ່ມຮູບພາບ", - "PE.Views.AddImage.textLinkSettings": "ການຕັ້ງຄ່າ Link", - "PE.Views.AddLink.textBack": "ກັບຄືນ", - "PE.Views.AddLink.textDisplay": "ສະແດງຜົນ", - "PE.Views.AddLink.textExternalLink": "ລິງພາຍນອກ", - "PE.Views.AddLink.textFirst": "ສະໄລທຳອິດ", - "PE.Views.AddLink.textInsert": "ເພີ່ມ", - "PE.Views.AddLink.textInternalLink": "ພາບສະໄລ່ ໃນບົດນຳສະເໜີນີ້", - "PE.Views.AddLink.textLast": "ສະໄລ່ສຸດທ້າຍ", - "PE.Views.AddLink.textLink": "ລີ້ງ", - "PE.Views.AddLink.textLinkSlide": "ເຊື່ອມຕໍ່ຫາ", - "PE.Views.AddLink.textLinkType": "ປະເພດ Link", - "PE.Views.AddLink.textNext": "ພາບສະໄລທັດໄປ", - "PE.Views.AddLink.textNumber": "ພາບສະໄລ່ ຕົວເລກ", - "PE.Views.AddLink.textPrev": "ພາບສະໄລຜ່ານມາ", - "PE.Views.AddLink.textTip": "ເຄັດລັບໃຫ້ໜ້າຈໍ", - "PE.Views.AddOther.textAddComment": "ເພີ່ມຄຳເຫັນ", - "PE.Views.AddOther.textBack": "ກັບຄືນ", - "PE.Views.AddOther.textComment": "ຄໍາເຫັນ", - "PE.Views.AddOther.textDisplay": "ສະແດງຜົນ", - "PE.Views.AddOther.textDone": "ສໍາເລັດ", - "PE.Views.AddOther.textExternalLink": "ລິງພາຍນອກ", - "PE.Views.AddOther.textFirst": "ສະໄລທຳອິດ", - "PE.Views.AddOther.textInsert": "ເພີ່ມ", - "PE.Views.AddOther.textInternalLink": "ພາບສະໄລ່ ໃນບົດນຳສະເໜີນີ້", - "PE.Views.AddOther.textLast": "ສະໄລ່ສຸດທ້າຍ", - "PE.Views.AddOther.textLink": "ລີ້ງ", - "PE.Views.AddOther.textLinkSlide": "ເຊື່ອມຕໍ່ຫາ", - "PE.Views.AddOther.textLinkType": "ປະເພດ Link", - "PE.Views.AddOther.textNext": "ພາບສະໄລທັດໄປ", - "PE.Views.AddOther.textNumber": "ພາບສະໄລ່ ຕົວເລກ", - "PE.Views.AddOther.textPrev": "ພາບສະໄລຜ່ານມາ", - "PE.Views.AddOther.textTable": "ຕາຕະລາງ", - "PE.Views.AddOther.textTip": "ເຄັດລັບໃຫ້ໜ້າຈໍ", - "PE.Views.EditChart.textAddCustomColor": "ເພີ່ມສີຂອງໂຕເອງ", - "PE.Views.EditChart.textAlign": "ຈັດແນວ", - "PE.Views.EditChart.textAlignBottom": "ຈັດຕ່ຳແໜ່ງທາງດ້ານລຸ່ມ", - "PE.Views.EditChart.textAlignCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "PE.Views.EditChart.textAlignLeft": "ຈັດຕຳແໜ່ງເບື່ອງຊ້າຍ", - "PE.Views.EditChart.textAlignMiddle": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "PE.Views.EditChart.textAlignRight": "ຈັດຕຳແໜ່ງເບື່ອງຂວາ", - "PE.Views.EditChart.textAlignTop": "ຈັດຕຳແໜ່ງດ້ານເທິງ", - "PE.Views.EditChart.textBack": "ກັບຄືນ", - "PE.Views.EditChart.textBackward": "ຢັບໄປທາງຫຼັງ", - "PE.Views.EditChart.textBorder": "ຂອບ", - "PE.Views.EditChart.textColor": "ສີ", - "PE.Views.EditChart.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "PE.Views.EditChart.textFill": "ຕື່ມ", - "PE.Views.EditChart.textForward": "ຢ້າຍໄປດ້ານໜ້າ", - "PE.Views.EditChart.textRemoveChart": "ລົບແຜນວາດ", - "PE.Views.EditChart.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "PE.Views.EditChart.textSize": "ຂະໜາດ", - "PE.Views.EditChart.textStyle": "ປະເພດ ", - "PE.Views.EditChart.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "PE.Views.EditChart.textToForeground": "ເອົາໄປທີ່ເບື້ອງໜ້າ", - "PE.Views.EditChart.textType": "ພິມ, ຕີພິມ", - "PE.Views.EditChart.txtDistribHor": "ແຈກຢາຍຕາມແນວນອນ", - "PE.Views.EditChart.txtDistribVert": "ແຈກຢາຍແນວຕັ້ງ", - "PE.Views.EditImage.textAddress": "ທີ່ຢູ່", - "PE.Views.EditImage.textAlign": "ຈັດແນວ", - "PE.Views.EditImage.textAlignBottom": "ຈັດຕ່ຳແໜ່ງທາງດ້ານລຸ່ມ", - "PE.Views.EditImage.textAlignCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "PE.Views.EditImage.textAlignLeft": "ຈັດຕຳແໜ່ງເບື່ອງຊ້າຍ", - "PE.Views.EditImage.textAlignMiddle": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "PE.Views.EditImage.textAlignRight": "ຈັດຕຳແໜ່ງເບື່ອງຂວາ", - "PE.Views.EditImage.textAlignTop": "ຈັດຕຳແໜ່ງດ້ານເທິງ", - "PE.Views.EditImage.textBack": "ກັບຄືນ", - "PE.Views.EditImage.textBackward": "ຢ້າຍໄປທາງຫຼັງ", - "PE.Views.EditImage.textDefault": "ຂະໜາດຕົວຈິງ", - "PE.Views.EditImage.textForward": "ຢ້າຍໄປດ້ານໜ້າ", - "PE.Views.EditImage.textFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", - "PE.Views.EditImage.textFromURL": "ຮູບພາບຈາກ URL", - "PE.Views.EditImage.textImageURL": "URL ຮູບພາບ", - "PE.Views.EditImage.textLinkSettings": "ການຕັ້ງຄ່າ Link", - "PE.Views.EditImage.textRemove": "ລົບຮູບ", - "PE.Views.EditImage.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "PE.Views.EditImage.textReplace": "ປ່ຽນແທນ", - "PE.Views.EditImage.textReplaceImg": "ປ່ຽນແທນຮູບ", - "PE.Views.EditImage.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "PE.Views.EditImage.textToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", - "PE.Views.EditImage.txtDistribHor": "ແຈກຢາຍຕາມແນວນອນ", - "PE.Views.EditImage.txtDistribVert": "ແຈກຢາຍແນວຕັ້ງ", - "PE.Views.EditLink.textBack": "ກັບຄືນ", - "PE.Views.EditLink.textDisplay": "ສະແດງຜົນ", - "PE.Views.EditLink.textEdit": "ແກ້ໄຂ ລີ້ງ", - "PE.Views.EditLink.textExternalLink": "ລິງພາຍນອກ", - "PE.Views.EditLink.textFirst": "ສະໄລທຳອິດ", - "PE.Views.EditLink.textInternalLink": "ພາບສະໄລ່ ໃນບົດນຳສະເໜີນີ້", - "PE.Views.EditLink.textLast": "ສະໄລ່ສຸດທ້າຍ", - "PE.Views.EditLink.textLink": "ລີ້ງ", - "PE.Views.EditLink.textLinkSlide": "ເຊື່ອມຕໍ່ຫາ", - "PE.Views.EditLink.textLinkType": "ປະເພດ Link", - "PE.Views.EditLink.textNext": "ພາບສະໄລທັດໄປ", - "PE.Views.EditLink.textNumber": "ພາບສະໄລ່ ຕົວເລກ", - "PE.Views.EditLink.textPrev": "ພາບສະໄລຜ່ານມາ", - "PE.Views.EditLink.textRemove": "ລົບລີ້ງ", - "PE.Views.EditLink.textTip": "ເຄັດລັບໃຫ້ໜ້າຈໍ", - "PE.Views.EditShape.textAddCustomColor": "ເພີ່ມສີຂອງໂຕເອງ", - "PE.Views.EditShape.textAlign": "ຈັດແນວ", - "PE.Views.EditShape.textAlignBottom": "ຈັດຕ່ຳແໜ່ງທາງດ້ານລຸ່ມ", - "PE.Views.EditShape.textAlignCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "PE.Views.EditShape.textAlignLeft": "ຈັດຕຳແໜ່ງເບື່ອງຊ້າຍ", - "PE.Views.EditShape.textAlignMiddle": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "PE.Views.EditShape.textAlignRight": "ຈັດຕຳແໜ່ງເບື່ອງຂວາ", - "PE.Views.EditShape.textAlignTop": "ຈັດຕຳແໜ່ງດ້ານເທິງ", - "PE.Views.EditShape.textBack": "ກັບຄືນ", - "PE.Views.EditShape.textBackward": "ຢ້າຍໄປທາງຫຼັງ", - "PE.Views.EditShape.textBorder": "ຂອບ", - "PE.Views.EditShape.textColor": "ສີ", - "PE.Views.EditShape.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "PE.Views.EditShape.textEffects": "ຜົນ", - "PE.Views.EditShape.textFill": "ຕື່ມ", - "PE.Views.EditShape.textForward": "ຢ້າຍໄປດ້ານໜ້າ", - "PE.Views.EditShape.textOpacity": "ຄວາມເຂັ້ມ", - "PE.Views.EditShape.textRemoveShape": "ລົບຮ່າງ", - "PE.Views.EditShape.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "PE.Views.EditShape.textReplace": "ປ່ຽນແທນ", - "PE.Views.EditShape.textSize": "ຂະໜາດ", - "PE.Views.EditShape.textStyle": "ປະເພດ ", - "PE.Views.EditShape.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "PE.Views.EditShape.textToForeground": "ເອົາໄປທີ່ເບື້ອງໜ້າ", - "PE.Views.EditShape.txtDistribHor": "ແຈກຢາຍຕາມແນວນອນ", - "PE.Views.EditShape.txtDistribVert": "ແຈກຢາຍແນວຕັ້ງ", - "PE.Views.EditSlide.textAddCustomColor": "ເພີ່ມສີຂອງໂຕເອງ", - "PE.Views.EditSlide.textApplyAll": "ນຳໃຊ້ກັບທຸກໆແຜ່ນສະໄລ້", - "PE.Views.EditSlide.textBack": "ກັບຄືນ", - "PE.Views.EditSlide.textBlack": "ຜ່ານສີດຳ", - "PE.Views.EditSlide.textBottom": "ດ້ານລຸ່ມ", - "PE.Views.EditSlide.textBottomLeft": "ດ້ານລຸ່ມເບື້ອງຊ້າຍ", - "PE.Views.EditSlide.textBottomRight": "ດ້ານລຸ່ມເບື້ອງຂວາ", - "PE.Views.EditSlide.textClock": "ໂມງ", - "PE.Views.EditSlide.textClockwise": "ການໝຸນຂອງເຂັມໂມງ", - "PE.Views.EditSlide.textColor": "ສີ", - "PE.Views.EditSlide.textCounterclockwise": "ໝຸນກັບຄືນ", - "PE.Views.EditSlide.textCover": "ໜ້າປົກ", - "PE.Views.EditSlide.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "PE.Views.EditSlide.textDelay": "ລ້າຊ້າ, ເລື່ອນ", - "PE.Views.EditSlide.textDuplicateSlide": "ສຳເນົາ ສະໄລ", - "PE.Views.EditSlide.textDuration": "ໄລຍະ", - "PE.Views.EditSlide.textEffect": "ຜົນ, ຜົນເສຍ", - "PE.Views.EditSlide.textFade": "ເລື່ອນ, ເລື່ອນຫາຍໄປ", - "PE.Views.EditSlide.textFill": "ຕື່ມ", - "PE.Views.EditSlide.textHorizontalIn": "ລວງນອນທາງໃນ", - "PE.Views.EditSlide.textHorizontalOut": "ລວງນອນທາງນອກ", - "PE.Views.EditSlide.textLayout": "ແຜນຜັງ", - "PE.Views.EditSlide.textLeft": "ຊ້າຍ", - "PE.Views.EditSlide.textNone": "ບໍ່ມີ", - "PE.Views.EditSlide.textOpacity": "ຄວາມເຂັ້ມ", - "PE.Views.EditSlide.textPush": "ດັນ, ຍູ້", - "PE.Views.EditSlide.textRemoveSlide": "ລຶບສະໄລ", - "PE.Views.EditSlide.textRight": "ຂວາ", - "PE.Views.EditSlide.textSmoothly": "ຄ່ອງຕົວ, ສະດວກ", - "PE.Views.EditSlide.textSplit": "ແຍກ, ແບ່ງເປັນ", - "PE.Views.EditSlide.textStartOnClick": "ເລີ່ມຕົ້ນກົດ", - "PE.Views.EditSlide.textStyle": "ປະເພດ ", - "PE.Views.EditSlide.textTheme": "ຫົວຂໍ້, ເນື້ອເລື່ອງ", - "PE.Views.EditSlide.textTop": "ເບື້ອງເທີງ", - "PE.Views.EditSlide.textTopLeft": "ຂ້າງເທິງ ເບິື້ອງຊ້າຍ", - "PE.Views.EditSlide.textTopRight": "ຂ້າງເທິງເບື້ອງຂວາ", - "PE.Views.EditSlide.textTransition": "ການປ່ຽນແປງ, ການຜ່ານ", - "PE.Views.EditSlide.textType": "ພິມ, ຕີພິມ", - "PE.Views.EditSlide.textUnCover": "ເປີດເຜີຍ", - "PE.Views.EditSlide.textVerticalIn": "ລວງຕັ້ງດ້ານໃນ", - "PE.Views.EditSlide.textVerticalOut": "ລວງຕັ້ງງດ້ານນອກ", - "PE.Views.EditSlide.textWedge": "ລີ່ມ", - "PE.Views.EditSlide.textWipe": "ເຊັດ, ຖູ", - "PE.Views.EditSlide.textZoom": "ຂະຫຍາຍ ເຂົ້າ-ອອກ, ແອັບ Zoom", - "PE.Views.EditSlide.textZoomIn": "ຊຸມເຂົ້າ", - "PE.Views.EditSlide.textZoomOut": "ຂະຫຍາຍອອກ", - "PE.Views.EditSlide.textZoomRotate": "ຂະຫຍາຍ ແລະ ໝຸນ", - "PE.Views.EditTable.textAddCustomColor": "ເພີ່ມສີທີ່ກຳໜົດເອງ", - "PE.Views.EditTable.textAlign": "ຈັດແນວ", - "PE.Views.EditTable.textAlignBottom": "ຈັດຕ່ຳແໜ່ງທາງດ້ານລຸ່ມ", - "PE.Views.EditTable.textAlignCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "PE.Views.EditTable.textAlignLeft": "ຈັດຕຳແໜ່ງເບື່ອງຊ້າຍ", - "PE.Views.EditTable.textAlignMiddle": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "PE.Views.EditTable.textAlignRight": "ຈັດຕຳແໜ່ງເບື່ອງຂວາ", - "PE.Views.EditTable.textAlignTop": "ຈັດຕຳແໜ່ງດ້ານເທິງ", - "PE.Views.EditTable.textBack": "ກັບຄືນ", - "PE.Views.EditTable.textBackward": "ຢ້າຍໄປທາງຫຼັງ", - "PE.Views.EditTable.textBandedColumn": "ຖັນແຖວ", - "PE.Views.EditTable.textBandedRow": "ແຖວ", - "PE.Views.EditTable.textBorder": "ຂອບ", - "PE.Views.EditTable.textCellMargins": "ຂອບເຂດຂອງແຊວ", - "PE.Views.EditTable.textColor": "ສີ", - "PE.Views.EditTable.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "PE.Views.EditTable.textFill": "ຕື່ມ", - "PE.Views.EditTable.textFirstColumn": "ຖັນທໍາອິດ", - "PE.Views.EditTable.textForward": "ຢ້າຍໄປດ້ານໜ້າ", - "PE.Views.EditTable.textHeaderRow": "ຫົວແຖວ", - "PE.Views.EditTable.textLastColumn": "ຖັນສຸດທ້າຍ", - "PE.Views.EditTable.textOptions": "ທາງເລືອກ", - "PE.Views.EditTable.textRemoveTable": "ລົບຕາຕະລາງ", - "PE.Views.EditTable.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "PE.Views.EditTable.textSize": "ຂະໜາດ", - "PE.Views.EditTable.textStyle": "ປະເພດ ", - "PE.Views.EditTable.textStyleOptions": "ທາງເລືອກ ປະເພດ", - "PE.Views.EditTable.textTableOptions": "ທາງເລືອກຕາຕະລາງ", - "PE.Views.EditTable.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "PE.Views.EditTable.textToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", - "PE.Views.EditTable.textTotalRow": "ຈໍານວນແຖວທັງໝົດ", - "PE.Views.EditTable.txtDistribHor": "ແຈກຢາຍຕາມແນວນອນ", - "PE.Views.EditTable.txtDistribVert": "ແຈກຢາຍແນວຕັ້ງ", - "PE.Views.EditText.textAddCustomColor": "ເພີ່ມສີທີ່ກຳໜົດເອງ", - "PE.Views.EditText.textAdditional": "ເພີ່ມເຕີມ", - "PE.Views.EditText.textAdditionalFormat": "ຈັດຮູບແບບເພີ່ມເຕີມ", - "PE.Views.EditText.textAfter": "ຫຼັງຈາກ, ພາຍຫຼັງ", - "PE.Views.EditText.textAllCaps": "ໂຕໃຫຍ່ທັງໝົດ", - "PE.Views.EditText.textAutomatic": "ອັດຕະໂນມັດ", - "PE.Views.EditText.textBack": "ກັບຄືນ", - "PE.Views.EditText.textBefore": "ກ່ອນ", - "PE.Views.EditText.textBullets": "ຂີດໜ້າ", - "PE.Views.EditText.textCharacterBold": "B", - "PE.Views.EditText.textCharacterItalic": "I", - "PE.Views.EditText.textCharacterStrikethrough": "S", - "PE.Views.EditText.textCharacterUnderline": "U", - "PE.Views.EditText.textCustomColor": "ປະເພດ ຂອງສີ, ການກຳນົດສີ", - "PE.Views.EditText.textDblStrikethrough": "ຂີດທັບສອງຄັ້ງ", - "PE.Views.EditText.textDblSuperscript": "ອັກສອນຫຍໍ້", - "PE.Views.EditText.textFontColor": "ສີຂອງຕົວອັກສອນ", - "PE.Views.EditText.textFontColors": "ສີຕົວອັກສອນ", - "PE.Views.EditText.textFonts": "ຕົວອັກສອນ", - "PE.Views.EditText.textFromText": "ໄລຍະຫ່າງຈາກຂໍ້ຄວາມ", - "PE.Views.EditText.textLetterSpacing": "ໄລບະຫ່າງລະຫວ່າງຕົວອັກສອນ", - "PE.Views.EditText.textLineSpacing": "ໄລຍະຫ່າງລະຫວ່າງເສັ້ນ", - "PE.Views.EditText.textNone": "ບໍ່ມີ", - "PE.Views.EditText.textNumbers": "ຕົວເລກ", - "PE.Views.EditText.textSize": "ຂະໜາດ", - "PE.Views.EditText.textSmallCaps": "ໂຕອັກສອນນ້ອຍ", - "PE.Views.EditText.textStrikethrough": "ຂີດທັບ", - "PE.Views.EditText.textSubscript": "ຕົວຫ້ອຍ", - "PE.Views.Search.textCase": "ກໍລະນີທີ່ສຳຄັນ", - "PE.Views.Search.textDone": "ສໍາເລັດ", - "PE.Views.Search.textFind": "ຄົ້ນຫາ", - "PE.Views.Search.textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", - "PE.Views.Search.textReplace": "ປ່ຽນແທນ", - "PE.Views.Search.textSearch": "ຊອກຫາ, ຄົ້ນຫາ", - "PE.Views.Settings. textComment": "ຄໍາເຫັນ", - "PE.Views.Settings.mniSlideStandard": "ມາດຕະຖານ (4:3)", - "PE.Views.Settings.mniSlideWide": "ຈໍກວ້າງ (16: 9)", - "PE.Views.Settings.textAbout": "ກ່ຽວກັບ, ປະມານ", - "PE.Views.Settings.textAddress": "ທີ່ຢູ່", - "PE.Views.Settings.textApplication": "ແອັບ", - "PE.Views.Settings.textApplicationSettings": "ການຕັ້ງຄ່າແອັບ", - "PE.Views.Settings.textAuthor": "ຜູ້ຂຽນ", - "PE.Views.Settings.textBack": "ກັບຄືນ", - "PE.Views.Settings.textCentimeter": "ເຊັນຕິເມັດ", - "PE.Views.Settings.textCollaboration": "ຮ່ວມກັນ", - "PE.Views.Settings.textColorSchemes": "ໂທນສີ", - "PE.Views.Settings.textCreated": "ສ້າງ", - "PE.Views.Settings.textCreateDate": "ວັນທີ ທີສ້າງ", - "PE.Views.Settings.textDisableAll": "ປິດທັງໝົດ", - "PE.Views.Settings.textDisableAllMacrosWithNotification": "ປິດທຸກ ມາກໂຄ ດ້ວຍ ການແຈ້ງເຕືອນ", - "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "ປິດທຸກ ມາກໂຄ ໂດຍບໍ່ແຈ້ງເຕືອນ", - "PE.Views.Settings.textDone": "ສໍາເລັດ", - "PE.Views.Settings.textDownload": "ດາວໂຫຼດ", - "PE.Views.Settings.textDownloadAs": "ດາວໂຫລດດ້ວຍ", - "PE.Views.Settings.textEditPresent": "ແກ້ໄຂບົດນຳສະເໜີ", - "PE.Views.Settings.textEmail": "ອີເມລ", - "PE.Views.Settings.textEnableAll": "ເປີດທັງໝົດ", - "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "ເປີດທຸກມາກໂຄໂດຍບໍ່ແຈ້ງເຕືອນ", - "PE.Views.Settings.textFind": "ຄົ້ນຫາ", - "PE.Views.Settings.textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", - "PE.Views.Settings.textHelp": "ຊວ່ຍ", - "PE.Views.Settings.textInch": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", - "PE.Views.Settings.textLastModified": "ການແກ້ໄຂຄັ້ງລ້າສຸດ", - "PE.Views.Settings.textLastModifiedBy": "ແກ້ໄຂຄັ້ງລ້າສຸດໂດຍ", - "PE.Views.Settings.textLoading": "ກໍາລັງໂລດ", - "PE.Views.Settings.textLocation": "ສະຖານທີ", - "PE.Views.Settings.textMacrosSettings": "ການຕັ້ງຄ່າ Macros", - "PE.Views.Settings.textOwner": "ເຈົ້າຂອງ", - "PE.Views.Settings.textPoint": "ຈຸດ", - "PE.Views.Settings.textPoweredBy": "ສ້າງໂດຍ", - "PE.Views.Settings.textPresentInfo": "ຂໍ້ມູນ ການນຳສະເໜີ", - "PE.Views.Settings.textPresentSettings": "ການຕັ້ງຄ່ານຳສະເໜີ", - "PE.Views.Settings.textPresentSetup": "ຕິດຕັ້ງການນຳສະເໜີ", - "PE.Views.Settings.textPresentTitle": "ຫົວຂໍ້ການນຳສະເໜີ", - "PE.Views.Settings.textPrint": "ພິມ", - "PE.Views.Settings.textSettings": "ຕັ້ງຄ່າ", - "PE.Views.Settings.textShowNotification": "ສະແດງການແຈ້ງເຕືອນ", - "PE.Views.Settings.textSlideSize": "ຂະໜາດພາບສະໄລ", - "PE.Views.Settings.textSpellcheck": "ກວດກາການສະກົດຄໍາ", - "PE.Views.Settings.textSubject": "ເລື່ອງ", - "PE.Views.Settings.textTel": "ໂທ", - "PE.Views.Settings.textTitle": "ຫົວຂໍ້", - "PE.Views.Settings.textUnitOfMeasurement": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", - "PE.Views.Settings.textUploaded": "ອັບໂຫລດ", - "PE.Views.Settings.textVersion": "ລຸ້ນ", - "PE.Views.Settings.unknownText": "ບໍ່ຮູ້", - "PE.Views.Toolbar.textBack": "ກັບຄືນ" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/lv.json b/apps/presentationeditor/mobile/locale/lv.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/lv.json +++ b/apps/presentationeditor/mobile/locale/lv.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/nb.json b/apps/presentationeditor/mobile/locale/nb.json index 0e2abe9ba..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/nb.json +++ b/apps/presentationeditor/mobile/locale/nb.json @@ -1,541 +1,465 @@ { - "Common.Controllers.Collaboration.textAddReply": "Legg til svar", - "Common.Controllers.Collaboration.textCancel": "Avbryt", - "Common.Controllers.Collaboration.textDeleteComment": "Slett kommentar", - "Common.Controllers.Collaboration.textDeleteReply": "Slett svar", - "Common.Controllers.Collaboration.textDone": "Ferdig", - "Common.Controllers.Collaboration.textEdit": "Rediger", - "Common.Controllers.Collaboration.textEditUser": "Brukere som redigerer filen:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Ønsker du å slette denne kommentaren?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Ønsker du å slette dette svaret?", - "Common.Controllers.Collaboration.textReopen": "Åpne igjen", - "Common.Controllers.Collaboration.textResolve": "Løs", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Egendefinerte farger", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardfarger", - "Common.UI.ThemeColorPalette.textThemeColors": "Temafarger", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Legg til svar", - "Common.Views.Collaboration.textBack": "Tilbake", - "Common.Views.Collaboration.textCancel": "Avbryt", - "Common.Views.Collaboration.textCollaboration": "Samarbeid", - "Common.Views.Collaboration.textDone": "Ferdig", - "Common.Views.Collaboration.textEditReply": "Rediger svar", - "Common.Views.Collaboration.textEditUsers": "Brukere", - "Common.Views.Collaboration.textEditСomment": "Rediger kommentar", - "Common.Views.Collaboration.textNoComments": "Denne presentasjonen inneholder ingen kommentarer", - "Common.Views.Collaboration.textСomments": "Kommentarer", - "PE.Controllers.AddContainer.textImage": "Bilde", - "PE.Controllers.AddContainer.textLink": "Lenke", - "PE.Controllers.AddContainer.textOther": "Annet", - "PE.Controllers.AddContainer.textShape": "Figur", - "PE.Controllers.AddContainer.textSlide": "Lysbilde", - "PE.Controllers.AddContainer.textTable": "Tabell", - "PE.Controllers.AddImage.textEmptyImgUrl": "Du må angi bildelenke.", - "PE.Controllers.AddLink.textDefault": "Valgt tekst", - "PE.Controllers.AddLink.textExternalLink": "Ekstern lenke", - "PE.Controllers.AddLink.textFirst": "Første lysark", - "PE.Controllers.AddLink.textInternalLink": "Lysbilde i denne presentasjonen", - "PE.Controllers.AddLink.textLast": "Siste lysbilde", - "PE.Controllers.AddLink.textNext": "Neste lysbilde", - "PE.Controllers.AddLink.textPrev": "Forrige lysark", - "PE.Controllers.AddLink.textSlide": "Lysbilde", - "PE.Controllers.AddOther.textCancel": "Avbryt", - "PE.Controllers.AddOther.textContinue": "Fortsett", - "PE.Controllers.AddOther.textDelete": "Slett", - "PE.Controllers.AddOther.textDeleteDraft": "Ønsker du å slette utkastet?", - "PE.Controllers.AddTable.textCancel": "Avbryt", - "PE.Controllers.AddTable.textColumns": "Kolonner", - "PE.Controllers.AddTable.textRows": "Rader", - "PE.Controllers.AddTable.textTableSize": "Tabellstørrelse", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Kopier, Klipp ut og Lim inn handler som bruker kontekstmenyen vil kun bli utført innenfor den nåværende filen", - "PE.Controllers.DocumentHolder.menuAddComment": "Legg til kommentar", - "PE.Controllers.DocumentHolder.menuAddLink": "Legg til lenke", - "PE.Controllers.DocumentHolder.menuCopy": "Kopier", - "PE.Controllers.DocumentHolder.menuCut": "Klipp ut", - "PE.Controllers.DocumentHolder.menuDelete": "Slett", - "PE.Controllers.DocumentHolder.menuEdit": "Rediger", - "PE.Controllers.DocumentHolder.menuMore": "Mer", - "PE.Controllers.DocumentHolder.menuOpenLink": "Åpne lenke", - "PE.Controllers.DocumentHolder.menuPaste": "Lim inn", - "PE.Controllers.DocumentHolder.menuViewComment": "Se kommentar", - "PE.Controllers.DocumentHolder.sheetCancel": "Avbryt", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Handlinger for Kopier, Klipp ut og Lim inn", - "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Ikke vis igjen", - "PE.Controllers.DocumentPreview.txtFinalMessage": "Slutt på forhåndsvisning av presentasjon. Trykk for å gå ut.", - "PE.Controllers.EditContainer.textChart": "Diagram", - "PE.Controllers.EditContainer.textHyperlink": "Lenke", - "PE.Controllers.EditContainer.textImage": "Bilde", - "PE.Controllers.EditContainer.textSettings": "Innstillinger", - "PE.Controllers.EditContainer.textShape": "Figur", - "PE.Controllers.EditContainer.textSlide": "Lysbilde", - "PE.Controllers.EditContainer.textTable": "Tabell", - "PE.Controllers.EditContainer.textText": "Tekst", - "PE.Controllers.EditImage.textEmptyImgUrl": "Du må angi bildelenke.", - "PE.Controllers.EditLink.textDefault": "Valgt tekst", - "PE.Controllers.EditLink.textExternalLink": "Ekstern lenke", - "PE.Controllers.EditLink.textFirst": "Første lysark", - "PE.Controllers.EditLink.textInternalLink": "Lysbilde i denne presentasjonen", - "PE.Controllers.EditLink.textLast": "Siste lysbilde", - "PE.Controllers.EditLink.textNext": "Neste lysbilde", - "PE.Controllers.EditLink.textPrev": "Forrige lysark", - "PE.Controllers.EditLink.textSlide": "Lysbilde", - "PE.Controllers.EditSlide.textSec": "s", - "PE.Controllers.EditText.textAuto": "Auto", - "PE.Controllers.EditText.textFonts": "Skrifttyper", - "PE.Controllers.EditText.textPt": "pt", - "PE.Controllers.Main.advDRMEnterPassword": "Tast inn passordet ditt:", - "PE.Controllers.Main.advDRMOptions": "Beskyttet fil", - "PE.Controllers.Main.advDRMPassword": "Passord", - "PE.Controllers.Main.applyChangesTextText": "Laster data...", - "PE.Controllers.Main.applyChangesTitleText": "Laster data", - "PE.Controllers.Main.closeButtonText": "Lukk fil", - "PE.Controllers.Main.criticalErrorExtText": "Trykk 'OK' for å gå tilbake til dokumentlisten.", - "PE.Controllers.Main.criticalErrorTitle": "Feil", - "PE.Controllers.Main.downloadErrorText": "Nedlasting feilet.", - "PE.Controllers.Main.downloadTextText": "Laster ned presentasjon...", - "PE.Controllers.Main.downloadTitleText": "Laster ned presentasjon", - "PE.Controllers.Main.errorAccessDeny": "Du forsøker å utføre en handling som du ikke har rettigheter til.
    Vennligst kontakt din Document Server administrator.", - "PE.Controllers.Main.errorBadImageUrl": "Bildelenke er feil", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Mistet tilkobling til server. Du kan ikke utføre endringer.", - "PE.Controllers.Main.errorDatabaseConnection": "Ekstern feil.
    Tilkoblingsfeil til database. Vennligst kontakt brukerstøtte.", - "PE.Controllers.Main.errorDataEncrypted": "Krypterte endringer har blitt mottatt, men de kan ikke bli dekodet.", - "PE.Controllers.Main.errorDataRange": "Feil dataområde.", - "PE.Controllers.Main.errorDefaultMessage": "Feilkode: %1", - "PE.Controllers.Main.errorEditingDownloadas": "En feil oppstod under arbeid med dokumentet.
    Bruk 'Nedlasting' alternativet for å lagre en filkopi på din egen datamaskin.", - "PE.Controllers.Main.errorFilePassProtect": "Filen er passordbeskyttet og kan ikke åpnes.", - "PE.Controllers.Main.errorOpensource": "Ved bruk av fellesskapsversjonen kan dokumenter kun åpnes i lesemodus. For å bruke mobil nettredigering trengs en kommersiell lisens. ", - "PE.Controllers.Main.errorProcessSaveResult": "Lagring feilet.", - "PE.Controllers.Main.errorServerVersion": "Redigeringsprogrammet har blitt oppdatert. Siden vil oppdateres og bruke endringene.", - "PE.Controllers.Main.errorUserDrop": "Filen kan ikke åpnes nå.", - "PE.Controllers.Main.errorViewerDisconnect": "Nettverksforbindelse ble brutt. Du kan fremdeles se dokumentet,
    men vil ikke kunne laste det ned inntil nettverksforbindelsen er gjenopprettet og siden oppdatert. ", - "PE.Controllers.Main.leavePageText": "Du har ulagrede endringer i dette dokumentet. Trykk på 'Bli på denne siden' og vent på autolagring av dokumentet. Trykk på 'Forlat denne siden' for å forkaste ulagrede endringer.", - "PE.Controllers.Main.loadFontsTextText": "Laster data...", - "PE.Controllers.Main.loadFontsTitleText": "Laster data", - "PE.Controllers.Main.loadFontTextText": "Laster data...", - "PE.Controllers.Main.loadFontTitleText": "Laster data", - "PE.Controllers.Main.loadImagesTextText": "Laster bilder...", - "PE.Controllers.Main.loadImagesTitleText": "Laster bilder", - "PE.Controllers.Main.loadImageTextText": "Laster bilde...", - "PE.Controllers.Main.loadImageTitleText": "Laster bilde", - "PE.Controllers.Main.loadingDocumentTextText": "Laster presentasjon...", - "PE.Controllers.Main.loadingDocumentTitleText": "Laster presentasjon", - "PE.Controllers.Main.loadThemeTextText": "Laster tema...", - "PE.Controllers.Main.loadThemeTitleText": "Laster tema", - "PE.Controllers.Main.notcriticalErrorTitle": "Advarsel", - "PE.Controllers.Main.openErrorText": "Det oppstod en feil ved åpning av filen.", - "PE.Controllers.Main.openTextText": "Åpner dokument...", - "PE.Controllers.Main.openTitleText": "Åpner dokument", - "PE.Controllers.Main.printTextText": "Skriver ut dokument...", - "PE.Controllers.Main.printTitleText": "Skriver ut dokument", - "PE.Controllers.Main.reloadButtonText": "Oppdater side", - "PE.Controllers.Main.requestEditFailedMessageText": "Noen redigerer dokumentet nå. Vennligst prøv igjen senere.", - "PE.Controllers.Main.requestEditFailedTitleText": "Tilgang nektet", - "PE.Controllers.Main.saveErrorText": "Det oppstod en feil ved lagring av filen.", - "PE.Controllers.Main.savePreparingText": "Forbereder lagring", - "PE.Controllers.Main.savePreparingTitle": "Forbereder lagring. Vennligst vent...", - "PE.Controllers.Main.saveTextText": "Lagrer dokument...", - "PE.Controllers.Main.saveTitleText": "Lagrer dokument", - "PE.Controllers.Main.scriptLoadError": "Forbindelsen er treg slik at noen komponenter ikke kunne lastes. Vennligst oppdater siden.", - "PE.Controllers.Main.textAnonymous": "Anonym", - "PE.Controllers.Main.textBack": "Tilbake", - "PE.Controllers.Main.textBuyNow": "Besøk nettsted", - "PE.Controllers.Main.textCancel": "Avbryt", - "PE.Controllers.Main.textClose": "Lukk", - "PE.Controllers.Main.textCloseTip": "Trykk for å lukke tips.", - "PE.Controllers.Main.textContactUs": "Kontakt salgsavdelingen", - "PE.Controllers.Main.textDone": "Ferdig", - "PE.Controllers.Main.textHasMacros": "Filen inneholder automatiske makroer.
    Ønsker du å kjøre makroene?", - "PE.Controllers.Main.textLoadingDocument": "Laster presentasjon", - "PE.Controllers.Main.textNo": "Nei", - "PE.Controllers.Main.textNoLicenseTitle": "Lisensgrense oppnådd", - "PE.Controllers.Main.textOK": "OK", - "PE.Controllers.Main.textPaidFeature": "Betalt funksjon", - "PE.Controllers.Main.textPassword": "Passord", - "PE.Controllers.Main.textPreloader": "Laster...", - "PE.Controllers.Main.textRemember": "Husk valget mitt", - "PE.Controllers.Main.textShape": "Figur", - "PE.Controllers.Main.textUsername": "Brukernavn", - "PE.Controllers.Main.textYes": "Ja", - "PE.Controllers.Main.titleLicenseExp": "Utgått lisens", - "PE.Controllers.Main.titleServerVersion": "Redigeringsprogram ble oppdatert", - "PE.Controllers.Main.txtArt": "Teksten din her", - "PE.Controllers.Main.txtBasicShapes": "Figurer", - "PE.Controllers.Main.txtButtons": "Knapper", - "PE.Controllers.Main.txtCallouts": "Henvisninger", - "PE.Controllers.Main.txtCharts": "Diagrammer", - "PE.Controllers.Main.txtClipArt": "Utklippsbilder", - "PE.Controllers.Main.txtDateTime": "Dato og tid", - "PE.Controllers.Main.txtDiagram": "SmartArt", - "PE.Controllers.Main.txtDiagramTitle": "Diagramtittel", - "PE.Controllers.Main.txtEditingMode": "Velg redigeringsmodus...", - "PE.Controllers.Main.txtFiguredArrows": "Pilfigurer", - "PE.Controllers.Main.txtFooter": "Bunntekst", - "PE.Controllers.Main.txtHeader": "Topptekst", - "PE.Controllers.Main.txtImage": "Bilde", - "PE.Controllers.Main.txtLines": "Linjer", - "PE.Controllers.Main.txtMath": "Matte", - "PE.Controllers.Main.txtMedia": "Media", - "PE.Controllers.Main.txtNeedSynchronize": "Du har oppdateringer", - "PE.Controllers.Main.txtPicture": "Bilde", - "PE.Controllers.Main.txtProtected": "Når du skriver inn passordet og åpner filen, vil nåværende passord til filen bli tilbakestilt.", - "PE.Controllers.Main.txtRectangles": "Rektangler", - "PE.Controllers.Main.txtSeries": "Serier", - "PE.Controllers.Main.txtSldLtTBlank": "Tom", - "PE.Controllers.Main.txtSldLtTChart": "Diagram", - "PE.Controllers.Main.txtSldLtTChartAndTx": "Diagram og tekst", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Utklippsbilder og tekst", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Utklippsbilder og loddrett tekst", - "PE.Controllers.Main.txtSldLtTCust": "Egendefinert", - "PE.Controllers.Main.txtSldLtTDgm": "Diagram", - "PE.Controllers.Main.txtSldLtTFourObj": "Fire objekter", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Media og tekst", - "PE.Controllers.Main.txtSldLtTObj": "Tittel og objekt", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt og to objekter", - "PE.Controllers.Main.txtSldLtTObjAndTx": "Objekt og tekst", - "PE.Controllers.Main.txtSldLtTObjOnly": "Objekt", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Objekt over tekst", - "PE.Controllers.Main.txtSldLtTObjTx": "Tittel, objekt og bildetekst", - "PE.Controllers.Main.txtSldLtTPicTx": "Bilde og bildetekst", - "PE.Controllers.Main.txtSldLtTSecHead": "Avsnittsoverskrift", - "PE.Controllers.Main.txtSldLtTTbl": "Tabell", - "PE.Controllers.Main.txtSldLtTTitle": "Tittel", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Kun tittel", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Tekst med to kolonner", - "PE.Controllers.Main.txtSldLtTTwoObj": "To objekter", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "To objekter og objekt", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "To objekter og tekst", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "To objekter over tekst", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "To tekst og to objekter", - "PE.Controllers.Main.txtSldLtTTx": "Tekst", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Tekst og diagram", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Tekst og utklippsbilder", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "Tekst og media", - "PE.Controllers.Main.txtSldLtTTxAndObj": "Tekst og objekt", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Tekst og to objekter", - "PE.Controllers.Main.txtSldLtTTxOverObj": "Tekst over objekt", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Loddrett tittel og tekst", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Loddrett tittel og tekst over diagram", - "PE.Controllers.Main.txtSldLtTVertTx": "Loddrett tekst", - "PE.Controllers.Main.txtSlideNumber": "Lysbildenummer", - "PE.Controllers.Main.txtSlideSubtitle": "Lysbildeundertittel", - "PE.Controllers.Main.txtSlideText": "Lysbildetekst", - "PE.Controllers.Main.txtSlideTitle": "Lysbildetittel", - "PE.Controllers.Main.txtStarsRibbons": "Stjerner og bånd", - "PE.Controllers.Main.txtXAxis": "X-akse", - "PE.Controllers.Main.txtYAxis": "Y-akse", - "PE.Controllers.Main.unknownErrorText": "Ukjent feil.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Nettleseren din er ikke støttet.", - "PE.Controllers.Main.uploadImageExtMessage": "Ukjent bildeformat.", - "PE.Controllers.Main.uploadImageFileCountMessage": "Ingen bilder lastet opp.", - "PE.Controllers.Main.uploadImageSizeMessage": "Maksimal bildestørrelse overskredet.", - "PE.Controllers.Main.uploadImageTextText": "Laster opp bilde...", - "PE.Controllers.Main.uploadImageTitleText": "Laster opp bilde", - "PE.Controllers.Main.waitText": "Vennligst vent...", - "PE.Controllers.Main.warnLicenseExp": "Lisensen din har utløpt.
    Vennligst oppdater lisensen og oppdater siden.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Du har nådd brukergrensen på %1 redigeringsprogram. Kontakt administratoren din for mer informasjon.", - "PE.Controllers.Main.warnNoLicenseUsers": "Du har nådd brukergrensen på antall %1 redigeringsprogram. Kontakt %1 salgsteamet for personlig oppgraderingsvilkår.", - "PE.Controllers.Main.warnProcessRightsChange": "Du er nektet adgang til å redigere filen.", - "PE.Controllers.Search.textNoTextFound": "Fant ikke tekst", - "PE.Controllers.Search.textReplaceAll": "Erstatt alle", - "PE.Controllers.Settings.notcriticalErrorTitle": "Advarsel", - "PE.Controllers.Settings.txtLoading": "Laster...", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "Du har ulagrede endringer i dette dokumentet. Trykk på 'Bli på denne siden' og vent på autolagring av dokumentet. Trykk på 'Forlat denne siden' for å forkaste ulagrede endringer.", - "PE.Controllers.Toolbar.dlgLeaveTitleText": "Du forlater programmet", - "PE.Controllers.Toolbar.leaveButtonText": "Forlat denne siden", - "PE.Controllers.Toolbar.stayButtonText": "Bli på denne siden", - "PE.Views.AddImage.textAddress": "Adresse", - "PE.Views.AddImage.textBack": "Tilbake", - "PE.Views.AddImage.textFromLibrary": "Bilde fra bibliotek", - "PE.Views.AddImage.textFromURL": "Bilde fra lenke", - "PE.Views.AddImage.textImageURL": "Bildelenke", - "PE.Views.AddImage.textInsertImage": "Sett inn bilde", - "PE.Views.AddImage.textLinkSettings": "Lenkealternativer", - "PE.Views.AddLink.textBack": "Tilbake", - "PE.Views.AddLink.textDisplay": "Vis", - "PE.Views.AddLink.textExternalLink": "Ekstern lenke", - "PE.Views.AddLink.textFirst": "Første lysark", - "PE.Views.AddLink.textInsert": "Sett inn", - "PE.Views.AddLink.textInternalLink": "Lysbilde i denne presentasjonen", - "PE.Views.AddLink.textLast": "Siste lysbilde", - "PE.Views.AddLink.textLink": "Lenke", - "PE.Views.AddLink.textLinkSlide": "Lenke til", - "PE.Views.AddLink.textLinkType": "Lenketype", - "PE.Views.AddLink.textNext": "Neste lysbilde", - "PE.Views.AddLink.textNumber": "Lysbildenummer", - "PE.Views.AddLink.textPrev": "Forrige lysark", - "PE.Views.AddLink.textTip": "Skjermtips", - "PE.Views.AddOther.textAddComment": "Legg til kommentar", - "PE.Views.AddOther.textBack": "Tilbake", - "PE.Views.AddOther.textComment": "Kommentar", - "PE.Views.AddOther.textDisplay": "Vis", - "PE.Views.AddOther.textDone": "Ferdig", - "PE.Views.AddOther.textExternalLink": "Ekstern lenke", - "PE.Views.AddOther.textFirst": "Første lysark", - "PE.Views.AddOther.textInsert": "Sett inn", - "PE.Views.AddOther.textInternalLink": "Lysbilde i denne presentasjonen", - "PE.Views.AddOther.textLast": "Siste lysbilde", - "PE.Views.AddOther.textLink": "Lenke", - "PE.Views.AddOther.textLinkSlide": "Lenke til", - "PE.Views.AddOther.textLinkType": "Lenketype", - "PE.Views.AddOther.textNext": "Neste lysbilde", - "PE.Views.AddOther.textNumber": "Lysbildenummer", - "PE.Views.AddOther.textPrev": "Forrige lysark", - "PE.Views.AddOther.textTable": "Tabell", - "PE.Views.AddOther.textTip": "Skjermtips", - "PE.Views.EditChart.textAddCustomColor": "Legg til egendefinert farge", - "PE.Views.EditChart.textAlign": "Juster", - "PE.Views.EditChart.textAlignBottom": "Bunnjuster", - "PE.Views.EditChart.textAlignCenter": "Midtstill", - "PE.Views.EditChart.textAlignLeft": "Venstrejuster", - "PE.Views.EditChart.textAlignMiddle": "Midtjuster", - "PE.Views.EditChart.textAlignRight": "Høyrejuster", - "PE.Views.EditChart.textAlignTop": "Toppjuster", - "PE.Views.EditChart.textBack": "Tilbake", - "PE.Views.EditChart.textBackward": "Gå tilbake", - "PE.Views.EditChart.textBorder": "Kant", - "PE.Views.EditChart.textColor": "Farge", - "PE.Views.EditChart.textCustomColor": "Egendefinert farge", - "PE.Views.EditChart.textFill": "Fyll", - "PE.Views.EditChart.textForward": "Gå fremover", - "PE.Views.EditChart.textRemoveChart": "Slett diagram", - "PE.Views.EditChart.textReorder": "Ny rekkefølge", - "PE.Views.EditChart.textSize": "Størrelse", - "PE.Views.EditChart.textStyle": "Stil", - "PE.Views.EditChart.textToBackground": "Plasser lengst bak", - "PE.Views.EditChart.textToForeground": "Plasser lengst frem", - "PE.Views.EditChart.textType": "Type", - "PE.Views.EditChart.txtDistribHor": "Fordel vannrett", - "PE.Views.EditChart.txtDistribVert": "Fordel loddrett", - "PE.Views.EditImage.textAddress": "Adresse", - "PE.Views.EditImage.textAlign": "Juster", - "PE.Views.EditImage.textAlignBottom": "Bunnjuster", - "PE.Views.EditImage.textAlignCenter": "Midtstill", - "PE.Views.EditImage.textAlignLeft": "Venstrejuster", - "PE.Views.EditImage.textAlignMiddle": "Midtjuster", - "PE.Views.EditImage.textAlignRight": "Høyrejuster", - "PE.Views.EditImage.textAlignTop": "Toppjuster", - "PE.Views.EditImage.textBack": "Tilbake", - "PE.Views.EditImage.textBackward": "Gå tilbake", - "PE.Views.EditImage.textDefault": "Faktisk størrelse", - "PE.Views.EditImage.textForward": "Gå fremover", - "PE.Views.EditImage.textFromLibrary": "Bilde fra bibliotek", - "PE.Views.EditImage.textFromURL": "Bilde fra lenke", - "PE.Views.EditImage.textImageURL": "Bildelenke", - "PE.Views.EditImage.textLinkSettings": "Lenkealternativer", - "PE.Views.EditImage.textRemove": "Slett bilde", - "PE.Views.EditImage.textReorder": "Ny rekkefølge", - "PE.Views.EditImage.textReplace": "Erstatt", - "PE.Views.EditImage.textReplaceImg": "Erstatt bilde", - "PE.Views.EditImage.textToBackground": "Plasser lengst bak", - "PE.Views.EditImage.textToForeground": "Plasser lengst frem", - "PE.Views.EditImage.txtDistribHor": "Fordel vannrett", - "PE.Views.EditImage.txtDistribVert": "Fordel loddrett", - "PE.Views.EditLink.textBack": "Tilbake", - "PE.Views.EditLink.textDisplay": "Vis", - "PE.Views.EditLink.textEdit": "Rediger lenke", - "PE.Views.EditLink.textExternalLink": "Ekstern lenke", - "PE.Views.EditLink.textFirst": "Første lysark", - "PE.Views.EditLink.textInternalLink": "Lysbilde i denne presentasjonen", - "PE.Views.EditLink.textLast": "Siste lysbilde", - "PE.Views.EditLink.textLink": "Lenke", - "PE.Views.EditLink.textLinkSlide": "Lenke til", - "PE.Views.EditLink.textLinkType": "Lenketype", - "PE.Views.EditLink.textNext": "Neste lysbilde", - "PE.Views.EditLink.textNumber": "Lysbildenummer", - "PE.Views.EditLink.textPrev": "Forrige lysark", - "PE.Views.EditLink.textRemove": "Slett lenke", - "PE.Views.EditLink.textTip": "Skjermtips", - "PE.Views.EditShape.textAddCustomColor": "Legg til egendefinert farge", - "PE.Views.EditShape.textAlign": "Juster", - "PE.Views.EditShape.textAlignBottom": "Bunnjuster", - "PE.Views.EditShape.textAlignCenter": "Midtstill", - "PE.Views.EditShape.textAlignLeft": "Venstrejuster", - "PE.Views.EditShape.textAlignMiddle": "Midtjuster", - "PE.Views.EditShape.textAlignRight": "Høyrejuster", - "PE.Views.EditShape.textAlignTop": "Toppjuster", - "PE.Views.EditShape.textBack": "Tilbake", - "PE.Views.EditShape.textBackward": "Gå tilbake", - "PE.Views.EditShape.textBorder": "Kant", - "PE.Views.EditShape.textColor": "Farge", - "PE.Views.EditShape.textCustomColor": "Egendefinert farge", - "PE.Views.EditShape.textEffects": "Effekter", - "PE.Views.EditShape.textFill": "Fyll", - "PE.Views.EditShape.textForward": "Gå fremover", - "PE.Views.EditShape.textOpacity": "Opasitet", - "PE.Views.EditShape.textRemoveShape": "Slett figur", - "PE.Views.EditShape.textReorder": "Ny rekkefølge", - "PE.Views.EditShape.textReplace": "Erstatt", - "PE.Views.EditShape.textSize": "Størrelse", - "PE.Views.EditShape.textStyle": "Stil", - "PE.Views.EditShape.textToBackground": "Plasser lengst bak", - "PE.Views.EditShape.textToForeground": "Plasser lengst frem", - "PE.Views.EditShape.txtDistribHor": "Fordel vannrett", - "PE.Views.EditShape.txtDistribVert": "Fordel loddrett", - "PE.Views.EditSlide.textAddCustomColor": "Legg til egendefinert farge", - "PE.Views.EditSlide.textApplyAll": "Bruk på alle lysbilder", - "PE.Views.EditSlide.textBack": "Tilbake", - "PE.Views.EditSlide.textBottom": "Bunn", - "PE.Views.EditSlide.textBottomLeft": "Venstrebunn", - "PE.Views.EditSlide.textBottomRight": "Høyrebunn", - "PE.Views.EditSlide.textClock": "Klokke", - "PE.Views.EditSlide.textClockwise": "Med klokken", - "PE.Views.EditSlide.textColor": "Farge", - "PE.Views.EditSlide.textCounterclockwise": "Mot klokken", - "PE.Views.EditSlide.textCover": "Dekk", - "PE.Views.EditSlide.textCustomColor": "Egendefinert farge", - "PE.Views.EditSlide.textDelay": "Forsinkelse", - "PE.Views.EditSlide.textDuplicateSlide": "Kopier lysbilde", - "PE.Views.EditSlide.textDuration": "Varighet", - "PE.Views.EditSlide.textEffect": "Effekt", - "PE.Views.EditSlide.textFade": "Ton", - "PE.Views.EditSlide.textFill": "Fyll", - "PE.Views.EditSlide.textHorizontalIn": "Vannrett inn", - "PE.Views.EditSlide.textHorizontalOut": "Vannrett ut", - "PE.Views.EditSlide.textLayout": "Oppsett", - "PE.Views.EditSlide.textLeft": "Venstre", - "PE.Views.EditSlide.textNone": "Ingen", - "PE.Views.EditSlide.textOpacity": "Opasitet", - "PE.Views.EditSlide.textPush": "Dytt", - "PE.Views.EditSlide.textRemoveSlide": "Slett lysark", - "PE.Views.EditSlide.textRight": "Høyre", - "PE.Views.EditSlide.textSmoothly": "Jevnt", - "PE.Views.EditSlide.textSplit": "Del", - "PE.Views.EditSlide.textStartOnClick": "Start ved klikk", - "PE.Views.EditSlide.textStyle": "Stil", - "PE.Views.EditSlide.textTheme": "Tema", - "PE.Views.EditSlide.textTop": "Topp", - "PE.Views.EditSlide.textTopLeft": "Topp-venstre", - "PE.Views.EditSlide.textTopRight": "Topp-høyre", - "PE.Views.EditSlide.textTransition": "Overgang", - "PE.Views.EditSlide.textType": "Type", - "PE.Views.EditSlide.textVerticalIn": "Loddrett inn", - "PE.Views.EditSlide.textVerticalOut": "Loddrett ut", - "PE.Views.EditSlide.textWedge": "Kile", - "PE.Views.EditSlide.textWipe": "Stryk", - "PE.Views.EditSlide.textZoom": "Zoom", - "PE.Views.EditSlide.textZoomIn": "Zoom inn", - "PE.Views.EditSlide.textZoomOut": "Zoom ut", - "PE.Views.EditSlide.textZoomRotate": "Zoom og roter", - "PE.Views.EditTable.textAddCustomColor": "Legg til egendefinert farge", - "PE.Views.EditTable.textAlign": "Juster", - "PE.Views.EditTable.textAlignBottom": "Bunnjuster", - "PE.Views.EditTable.textAlignCenter": "Midtstill", - "PE.Views.EditTable.textAlignLeft": "Venstrejuster", - "PE.Views.EditTable.textAlignMiddle": "Midtjuster", - "PE.Views.EditTable.textAlignRight": "Høyrejuster", - "PE.Views.EditTable.textAlignTop": "Toppjuster", - "PE.Views.EditTable.textBack": "Tilbake", - "PE.Views.EditTable.textBackward": "Gå tilbake", - "PE.Views.EditTable.textBandedColumn": "Kolonne med bånd", - "PE.Views.EditTable.textBandedRow": "Rad med bånd", - "PE.Views.EditTable.textBorder": "Kant", - "PE.Views.EditTable.textCellMargins": "Cellemarginer", - "PE.Views.EditTable.textColor": "Farge", - "PE.Views.EditTable.textCustomColor": "Egendefinert farge", - "PE.Views.EditTable.textFill": "Fyll", - "PE.Views.EditTable.textFirstColumn": "Første kolonne", - "PE.Views.EditTable.textForward": "Gå fremover", - "PE.Views.EditTable.textHeaderRow": "Topprad", - "PE.Views.EditTable.textLastColumn": "Siste kolonne", - "PE.Views.EditTable.textOptions": "Alternativer", - "PE.Views.EditTable.textRemoveTable": "Slett tabell", - "PE.Views.EditTable.textReorder": "Ny rekkefølge", - "PE.Views.EditTable.textSize": "Størrelse", - "PE.Views.EditTable.textStyle": "Stil", - "PE.Views.EditTable.textStyleOptions": "Stilalternativer", - "PE.Views.EditTable.textTableOptions": "Tabellalternativer", - "PE.Views.EditTable.textToBackground": "Plasser lengst bak", - "PE.Views.EditTable.textToForeground": "Plasser lengst frem", - "PE.Views.EditTable.textTotalRow": "Total rad", - "PE.Views.EditTable.txtDistribHor": "Fordel vannrett", - "PE.Views.EditTable.txtDistribVert": "Fordel loddrett", - "PE.Views.EditText.textAddCustomColor": "Legg til egendefinert farge", - "PE.Views.EditText.textAdditional": "Tillegg", - "PE.Views.EditText.textAdditionalFormat": "Tilleggsformatering", - "PE.Views.EditText.textAfter": "Etter", - "PE.Views.EditText.textAllCaps": "Store bokstaver", - "PE.Views.EditText.textAutomatic": "Automatisk", - "PE.Views.EditText.textBack": "Tilbake", - "PE.Views.EditText.textBefore": "Før", - "PE.Views.EditText.textBullets": "Kulepunkt", - "PE.Views.EditText.textCharacterBold": "B", - "PE.Views.EditText.textCharacterItalic": "I", - "PE.Views.EditText.textCharacterStrikethrough": "S", - "PE.Views.EditText.textCharacterUnderline": "U", - "PE.Views.EditText.textCustomColor": "Egendefinert farge", - "PE.Views.EditText.textDblStrikethrough": "Dobbel gjennomstreking", - "PE.Views.EditText.textDblSuperscript": "Hevet skrift", - "PE.Views.EditText.textFontColor": "Skriftfarge", - "PE.Views.EditText.textFontColors": "Skriftfarger", - "PE.Views.EditText.textFonts": "Skrifttyper", - "PE.Views.EditText.textFromText": "Avstand fra tekst", - "PE.Views.EditText.textLetterSpacing": "Bokstavavstand", - "PE.Views.EditText.textLineSpacing": "Linjeavstand", - "PE.Views.EditText.textNone": "Ingen", - "PE.Views.EditText.textNumbers": "Tall", - "PE.Views.EditText.textSize": "Størrelse", - "PE.Views.EditText.textSmallCaps": "Små bokstaver", - "PE.Views.EditText.textStrikethrough": "Gjennomstreking", - "PE.Views.EditText.textSubscript": "Senket skrift", - "PE.Views.Search.textCase": "Følsom for store og små bokstaver", - "PE.Views.Search.textDone": "Ferdig", - "PE.Views.Search.textFind": "Finn", - "PE.Views.Search.textFindAndReplace": "Finn og erstatt", - "PE.Views.Search.textReplace": "Erstatt", - "PE.Views.Search.textSearch": "Søk", - "PE.Views.Settings. textComment": "Kommentar", - "PE.Views.Settings.mniSlideStandard": "Standard (4:3)", - "PE.Views.Settings.mniSlideWide": "Bredformat (16:9)", - "PE.Views.Settings.textAbout": "Om", - "PE.Views.Settings.textAddress": "adresse", - "PE.Views.Settings.textApplication": "Applikasjon", - "PE.Views.Settings.textApplicationSettings": "Programalternativer", - "PE.Views.Settings.textAuthor": "Forfatter", - "PE.Views.Settings.textBack": "Tilbake", - "PE.Views.Settings.textCentimeter": "Centimeter", - "PE.Views.Settings.textCollaboration": "Samarbeid", - "PE.Views.Settings.textColorSchemes": "Temafarger", - "PE.Views.Settings.textCreated": "Opprettet", - "PE.Views.Settings.textCreateDate": "Opprettelsesdato", - "PE.Views.Settings.textDisableAll": "Deaktiver alt", - "PE.Views.Settings.textDisableAllMacrosWithNotification": "Deaktiver alle makroer med et varsel", - "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Deaktiver alle makroer uten varsling", - "PE.Views.Settings.textDone": "Ferdig", - "PE.Views.Settings.textDownload": "Last ned", - "PE.Views.Settings.textDownloadAs": "Last ned som...", - "PE.Views.Settings.textEditPresent": "Rediger presentasjon", - "PE.Views.Settings.textEmail": "e-post", - "PE.Views.Settings.textEnableAll": "Aktiver alle", - "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "Aktiver alle makroer uten varsling", - "PE.Views.Settings.textFind": "Finn", - "PE.Views.Settings.textFindAndReplace": "Finn og erstatt", - "PE.Views.Settings.textHelp": "Hjelp", - "PE.Views.Settings.textInch": "Tomme", - "PE.Views.Settings.textLastModified": "Sist endret", - "PE.Views.Settings.textLastModifiedBy": "Sist endret av", - "PE.Views.Settings.textLoading": "Laster...", - "PE.Views.Settings.textLocation": "Plassering", - "PE.Views.Settings.textMacrosSettings": "Makroalternativer", - "PE.Views.Settings.textOwner": "Eier", - "PE.Views.Settings.textPoint": "Punkt", - "PE.Views.Settings.textPoweredBy": "Drevet av", - "PE.Views.Settings.textPresentInfo": "Presentasjonsinfo", - "PE.Views.Settings.textPresentSettings": "Presentasjonsalternativer", - "PE.Views.Settings.textPresentSetup": "Presentasjonsoppsett", - "PE.Views.Settings.textPresentTitle": "Presentasjonstittel", - "PE.Views.Settings.textPrint": "Skriv ut", - "PE.Views.Settings.textSettings": "Innstillinger", - "PE.Views.Settings.textShowNotification": "Vis varsling", - "PE.Views.Settings.textSlideSize": "Lysbildestørrelse", - "PE.Views.Settings.textSpellcheck": "Stavekontroll", - "PE.Views.Settings.textSubject": "Emne", - "PE.Views.Settings.textTel": "tlf", - "PE.Views.Settings.textTitle": "Tittel", - "PE.Views.Settings.textUnitOfMeasurement": "Enhetsmål", - "PE.Views.Settings.textUploaded": "Lastet opp", - "PE.Views.Settings.textVersion": "Versjon", - "PE.Views.Settings.unknownText": "Ukjent", - "PE.Views.Toolbar.textBack": "Tilbake" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/nl.json b/apps/presentationeditor/mobile/locale/nl.json index 0e0dcd235..4f09e2ab9 100644 --- a/apps/presentationeditor/mobile/locale/nl.json +++ b/apps/presentationeditor/mobile/locale/nl.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "Over", + "textAddress": "Adres", + "textBack": "Terug", + "textEmail": "E-mail", + "textPoweredBy": "Aangedreven door", + "textTel": "Tel.", + "textVersion": "Versie" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Waarschuwing", + "textAddComment": "Opmerking toevoegen", + "textAddReply": "Reactie toevoegen", + "textBack": "Terug", + "textCancel": "Annuleren", + "textCollaboration": "Samenwerking", + "textComments": "Opmerkingen", + "textDeleteComment": "Verwijder opmerking", + "textDeleteReply": "Reactie verwijderen", + "textDone": "Klaar", + "textEdit": "Bewerken", + "textEditComment": "Opmerking bewerken", + "textEditReply": "Reactie bewerken", + "textEditUser": "Gebruikers die het bestand bewerken:", + "textMessageDeleteComment": "Wil je deze opmerking verwijderen?", + "textMessageDeleteReply": "Wil je dit antwoord verwijderen?", + "textNoComments": "Dit document bevat geen opmerkingen", + "textReopen": "Heropenen", + "textResolve": "Oplossen", + "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", + "textUsers": "Gebruikers" + }, + "ThemeColorPalette": { + "textCustomColors": "Aangepaste kleuren", + "textStandartColors": "Standaardkleuren", + "textThemeColors": "Themakleuren" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Acties voor kopiëren, knippen en plakken met behulp van het contextmenu worden alleen in het huidige bestand uitgevoerd.", + "menuAddComment": "Opmerking toevoegen", + "menuAddLink": "Koppeling toevoegen", + "menuCancel": "Annuleren", + "menuDelete": "Verwijderen", + "menuDeleteTable": "Tabel verwijderen", + "menuEdit": "Bewerken", + "menuMerge": "Samenvoegen", + "menuMore": "Meer", + "menuOpenLink": "Koppeling openen", + "menuSplit": "Splitsen", + "menuViewComment": "Opmerking bekijken", + "textColumns": "Kolommen", + "textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", + "textDoNotShowAgain": "Niet meer laten zien.", + "textRows": "Rijen" + }, + "Controller": { + "Main": { + "advDRMOptions": "Beveiligd bestand", + "advDRMPassword": "Wachtwoord", + "closeButtonText": "Bestand sluiten", + "criticalErrorTitle": "Fout", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorOpensource": "Met de gratis Community versie kunt u documenten openen om ze alleen te bekijken. Voor toegang tot mobiele webdocumentbewerkers is een commerciële licentie vereist.", + "errorProcessSaveResult": "Opslaan mislukt.", + "errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", + "errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "leavePageText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "notcriticalErrorTitle": "Waarschuwing", + "SDK": { + "Chart": "Grafiek", + "Click to add first slide": "Klik om de eerste dia toe te voegen", + "Click to add notes": "Klik om notities toe te voegen", + "ClipArt": "Illustraties", + "Date and time": "Datum en tijd", + "Diagram": "Diagram", + "Diagram Title": "Grafiektitel", + "Footer": "Voettekst", + "Header": "Koptekst", + "Image": "Afbeelding", + "Loading": "Laden", + "Media": "Media", + "None": "Geen", + "Picture": "Afbeelding", + "Series": "Serie", + "Slide number": "Dianummer", + "Slide subtitle": "Subtitel dia", + "Slide text": "Tekst van dia", + "Slide title": "Diatitel", + "Table": "Tabel", + "X Axis": "X-as XAS", + "Y Axis": "Y-as", + "Your text here": "Hier tekst invoeren" + }, + "textAnonymous": "Anoniem", + "textBuyNow": "Website bezoeken", + "textClose": "Sluiten", + "textContactUs": "Contact opnemen met de verkoopafdeling", + "textCustomLoader": "Sorry, u hebt niet het recht om de lader te veranderen. Neem contact op met onze verkoopafdeling voor een prijsopgave.", + "textGuest": "Gast", + "textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", + "textNo": "Nee", + "textNoLicenseTitle": "Licentielimiet bereikt", + "textOpenFile": "Voer een wachtwoord in om dit bestand te openen", + "textPaidFeature": "Betaalde functie", + "textRemember": "Bewaar mijn keuze", + "textYes": "Ja", + "titleLicenseExp": "Licentie verlopen", + "titleServerVersion": "Editor bijgewerkt", + "titleUpdateVersion": "Versie gewijzigd", + "txtIncorrectPwd": "Wachtwoord is onjuist", + "txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.", + "warnLicenseExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Het document zal worden geopend in leesmodus. Neem contact op met uw beheerder voor meer informatie.", + "warnLicenseExp": "Uw licentie is verlopen. Gelieve deze bij te werken en de pagina te vernieuwen.", + "warnLicenseLimitedNoAccess": "Licentie verlopen. U hebt geen toegang tot de documentbewerking functionaliteit. Neem contact op met uw beheerder.", + "warnLicenseLimitedRenewed": "De licentie moet worden vernieuwd. U heeft beperkte toegang tot de documentbewerking functionaliteit.
    Neem contact op met uw administrator om volledige toegang te krijgen", + "warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met uw beheerder voor meer informatie.", + "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", + "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", + "warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken." + } + }, + "Error": { + "convertationTimeoutText": "Time-out voor conversie overschreden.", + "criticalErrorExtText": "Druk op 'OK' om terug te gaan naar de documentenlijst.", + "criticalErrorTitle": "Fout", + "downloadErrorText": "Download mislukt.", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorBadImageUrl": "Afbeelding's URL is onjuist", + "errorConnectToServer": "Kan dit document niet opslaan. Controleer uw verbindingsinstellingen of neem contact op met uw beheerder.
    Wanneer u op de 'OK' knop klikt, wordt u gevraagd om het document te downloaden.", + "errorDatabaseConnection": "Externe fout.
    Database verbindingsfout. Neem contact op met support.", + "errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", + "errorDataRange": "Onjuist gegevensbereik.", + "errorDefaultMessage": "Foutcode: %1", + "errorEditingDownloadas": "Er is een fout opgetreden tijdens het werken met het document.
    Gebruik de 'Download' optie om de reservekopie lokaal op te slaan.", + "errorFilePassProtect": "Het bestand is beveiligd met een wachtwoord en kon niet worden geopend.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Onbekende sleutelbeschrijver", + "errorKeyExpire": "Sleutelbeschrijver vervallen", + "errorSessionAbsolute": "De document bewerkingssessie is verlopen. Gelieve de pagina opnieuw te laden.", + "errorSessionIdle": "Het document is al een hele tijd niet meer bewerkt. Gelieve de pagina opnieuw te laden.", + "errorSessionToken": "De verbinding met de server is onderbroken. Gelieve de pagina opnieuw te laden.", + "errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:
    openingskoers, max koers, min koers, slotkoers.", + "errorUpdateVersionOnDisconnect": "De internet verbinding is hersteld, en de versie van het bestand is gewijzigd.
    Voordat u verder kunt werken, download het bestand of kopieer de inhoud om er zeker van te zijn dat er niets verloren gaat, en herlaad vervolgens deze pagina.", + "errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", + "errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", + "errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,
    maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.", + "notcriticalErrorTitle": "Waarschuwing", + "openErrorText": "Er is een fout opgetreden bij het openen van het bestand", + "saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", + "scriptLoadError": "De verbinding is te traag, sommige onderdelen konden niet geladen worden. Gelieve de pagina opnieuw te laden.", + "splitDividerErrorText": "Het aantal rijen moet een deler zijn van %1", + "splitMaxColsErrorText": "Aantal kolommen moet kleiner zijn dan %1", + "splitMaxRowsErrorText": "Het aantal rijen moet kleiner zijn dan %1", + "unknownErrorText": "Onbekende fout.", + "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", + "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", + "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB." + }, + "LongActions": { + "applyChangesTextText": "Gegevens worden geladen...", + "applyChangesTitleText": "Gegevens worden geladen", + "downloadTextText": "Document wordt gedownload...", + "downloadTitleText": "Document wordt gedownload", + "loadFontsTextText": "Gegevens worden geladen...", + "loadFontsTitleText": "Gegevens worden geladen", + "loadFontTextText": "Gegevens worden geladen...", + "loadFontTitleText": "Gegevens worden geladen", + "loadImagesTextText": "Afbeeldingen worden geladen...", + "loadImagesTitleText": "Afbeeldingen worden geladen", + "loadImageTextText": "Afbeelding wordt geladen...", + "loadImageTitleText": "Afbeelding wordt geladen", + "loadingDocumentTextText": "Document wordt geladen...", + "loadingDocumentTitleText": "Document wordt geladen", + "loadThemeTextText": "Thema wordt geladen...", + "loadThemeTitleText": "Thema wordt geladen", + "openTextText": "Document wordt geopend...", + "openTitleText": "Document wordt geopend", + "printTextText": "Document wordt afgedrukt...", + "printTitleText": "Document wordt afgedrukt", + "savePreparingText": "Klaarmaken om op te slaan", + "savePreparingTitle": "Klaarmaken om op te slaan. Even geduld...", + "saveTextText": "Document wordt opgeslagen...", + "saveTitleText": "Document wordt opgeslagen", + "textLoadingDocument": "Document wordt geladen", + "txtEditingMode": "Bewerkmodus instellen...", + "uploadImageTextText": "Afbeelding wordt geüpload...", + "uploadImageTitleText": "Afbeelding wordt geüpload", + "waitText": "Een moment geduld..." + }, + "Toolbar": { + "dlgLeaveMsgText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "dlgLeaveTitleText": "U verlaat de applicatie", + "leaveButtonText": "Pagina verlaten", + "stayButtonText": "Op deze pagina blijven" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Waarschuwing", + "textAddLink": "Koppeling toevoegen", + "textAddress": "Adres", + "textBack": "Terug", + "textCancel": "Annuleren", + "textColumns": "Kolommen", + "textComment": "Opmerking", + "textDefault": "Geselecteerde tekst", + "textDisplay": "Weergeven", + "textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.", + "textExternalLink": "Externe koppeling", + "textFirstSlide": "Eerste dia", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textInsert": "Invoegen", + "textInsertImage": "Afbeelding invoegen", + "textLastSlide": "Laatste dia", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkTo": "Koppelen aan", + "textLinkType": "Type koppeling", + "textNextSlide": "Volgende dia", + "textOther": "Overige", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPreviousSlide": "Vorige dia", + "textRows": "Rijen", + "textScreenTip": "Schermtip", + "textShape": "Vorm", + "textSlide": "Dia", + "textSlideInThisPresentation": "Dia in deze presentatie", + "textSlideNumber": "Dianummer", + "textTable": "Tabel", + "textTableSize": "Tabelgrootte", + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"" + }, + "Edit": { + "notcriticalErrorTitle": "Waarschuwing", + "textActualSize": "Ware grootte", + "textAddCustomColor": "Aangepaste kleur toevoegen", + "textAdditional": "Extra", + "textAdditionalFormatting": "Aanvullende opmaak", + "textAddress": "Adres", + "textAfter": "Na", + "textAlign": "Uitlijnen", + "textAlignBottom": "Onder uitlijnen", + "textAlignCenter": "Centreren", + "textAlignLeft": "Links uitlijnen", + "textAlignMiddle": "Centreren", + "textAlignRight": "Rechts uitlijnen", + "textAlignTop": "Boven uitlijnen", + "textAllCaps": "Allemaal hoofdletters", + "textApplyAll": "Toepassen op alle dia's", + "textAuto": "Automatisch", + "textBack": "Terug", + "textBandedColumn": "Gestreepte kolom", + "textBandedRow": "Gestreepte rij", + "textBefore": "Voor", + "textBlack": "Door zwart", + "textBorder": "Rand", + "textBottom": "Onder", + "textBottomLeft": "Linksonder", + "textBottomRight": "Rechtsonder", + "textBringToForeground": "Naar voorgrond brengen", + "textBullets": "Opsommingstekens", + "textBulletsAndNumbers": "Opsommingstekens en nummers", + "textCaseSensitive": "Hoofdlettergevoelig", + "textCellMargins": "Celmarges", + "textChart": "Grafiek", + "textClock": "Klok", + "textClockwise": "Rechtsom", + "textColor": "Kleur", + "textCounterclockwise": "Linksom", + "textCover": "Bedekken", + "textCustomColor": "Aangepaste kleur", + "textDefault": "Geselecteerde tekst", + "textDelay": "Vertragen", + "textDeleteSlide": "Dia verwijderen", + "textDisplay": "Weergeven", + "textDistanceFromText": "Afstand van tekst", + "textDistributeHorizontally": "Horizontaal verdelen", + "textDistributeVertically": "Verticaal verdelen", + "textDone": "Klaar", + "textDoubleStrikethrough": "Dubbel doorhalen", + "textDuplicateSlide": "Dia dupliceren", + "textDuration": "Duur", + "textEditLink": "Koppeling bewerken", + "textEffect": "Effect", + "textEffects": "Effecten", + "textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.", + "textExternalLink": "Externe koppeling", + "textFade": "Vervagen", + "textFill": "Vullen", + "textFinalMessage": "Einde van diavoorbeeld. Klik om af te sluiten.", + "textFind": "Zoeken", + "textFindAndReplace": "Zoeken en vervangen", + "textFirstColumn": "Eerste kolom", + "textFirstSlide": "Eerste dia", + "textFontColor": "Kleur lettertype", + "textFontColors": "Lettertype kleuren", + "textFonts": "Lettertypen", + "textFromLibrary": "Afbeelding uit bibliotheek", + "textFromURL": "Afbeelding van URL", + "textHeaderRow": "Koprij", + "textHighlight": "Resultaten markeren", + "textHighlightColor": "Markeringskleur", + "textHorizontalIn": "Horizontaal naar binnen", + "textHorizontalOut": "Horizontaal naar buiten", + "textHyperlink": "Hyperlink", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textLastColumn": "Laatste kolom", + "textLastSlide": "Laatste dia", + "textLayout": "Pagina-indeling", + "textLeft": "Links", + "textLetterSpacing": "Letterafstand", + "textLineSpacing": "Regelafstand", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkTo": "Koppelen aan", + "textLinkType": "Type koppeling", + "textMoveBackward": "Naar achter verplaatsen", + "textMoveForward": "Naar voren verplaatsen", + "textNextSlide": "Volgende dia", + "textNone": "Geen", + "textNoStyles": "Geen stijlen voor dit type grafiek.", + "textNoTextFound": "Tekst niet gevonden", + "textNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "textNumbers": "Nummers", + "textOpacity": "Ondoorzichtigheid", + "textOptions": "Opties", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPreviousSlide": "Vorige dia", + "textPt": "pt", + "textPush": "Duwen", + "textRemoveChart": "Grafiek verwijderen", + "textRemoveImage": "Afbeelding verwijderen", + "textRemoveLink": "Koppeling verwijderen", + "textRemoveShape": "Vorm verwijderen", + "textRemoveTable": "Tabel verwijderen", + "textReorder": "Opnieuw ordenen", + "textReplace": "Vervangen", + "textReplaceAll": "Alles vervangen", + "textReplaceImage": "Afbeelding vervangen", + "textRight": "Rechts", + "textScreenTip": "Schermtip", + "textSearch": "Zoeken", + "textSec": "s", + "textSelectObjectToEdit": "Selecteer object om te bewerken", + "textSendToBackground": "Naar achtergrond sturen", + "textShape": "Vorm", + "textSize": "Grootte", + "textSlide": "Dia", + "textSlideInThisPresentation": "Dia in deze presentatie", + "textSlideNumber": "Dianummer", + "textSmallCaps": "Kleine hoofdletters", + "textSmoothly": "Vloeiend", + "textSplit": "Splitsen", + "textStartOnClick": "Bij klik starten", + "textStrikethrough": "Doorhalen", + "textStyle": "Stijl", + "textStyleOptions": "Stijlopties", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Tabel", + "textText": "Tekst", + "textTheme": "Thema", + "textTop": "Boven", + "textTopLeft": "Linksboven", + "textTopRight": "Rechtsboven", + "textTotalRow": "Totaalrij", + "textTransition": "Overgang", + "textType": "Type", + "textUnCover": "Onthullen", + "textVerticalIn": "Verticaal naar binnen", + "textVerticalOut": "Verticaal naar buiten", + "textWedge": "Wig", + "textWipe": "Wissen", + "textZoom": "Zoomen", + "textZoomIn": "Inzoomen", + "textZoomOut": "Uitzoomen", + "textZoomRotate": "Zoomen en draaien" + }, + "Settings": { + "mniSlideStandard": "Standaard (4:3)", + "mniSlideWide": "Breedbeeld (16:9)", + "textAbout": "Over", + "textAddress": "Adres:", + "textApplication": "Applicatie", + "textApplicationSettings": "Applicatie-instellingen", + "textAuthor": "Auteur", + "textBack": "Terug", + "textCaseSensitive": "Hoofdlettergevoelig", + "textCentimeter": "Centimeter", + "textCollaboration": "Samenwerking", + "textColorSchemes": "Kleurschema's", + "textComment": "Opmerking", + "textCreated": "Aangemaakt", + "textDisableAll": "Alles uitschakelen", + "textDisableAllMacrosWithNotification": "Alle macro's met notificaties uitschakelen", + "textDisableAllMacrosWithoutNotification": "Alle macro's met notificatie uitschakelen", + "textDone": "Klaar", + "textDownload": "Downloaden", + "textDownloadAs": "Downloaden als...", + "textEmail": "E-mail:", + "textEnableAll": "Alles inschakelen", + "textEnableAllMacrosWithoutNotification": "Alle macro's inschakelen zonder notificatie", + "textFind": "Zoeken", + "textFindAndReplace": "Zoeken en vervangen", + "textFindAndReplaceAll": "Zoek en vervang alles", + "textHelp": "Help", + "textHighlight": "Resultaten markeren", + "textInch": "Inch", + "textLastModified": "Laatst aangepast", + "textLastModifiedBy": "Laatst aangepast door", + "textLoading": "Bezig met laden...", + "textLocation": "Locatie", + "textMacrosSettings": "Macro instellingen", + "textNoTextFound": "Tekst niet gevonden", + "textOwner": "Eigenaar", + "textPoint": "Punt", + "textPoweredBy": "Aangedreven door", + "textPresentationInfo": "Informatie over presentatie", + "textPresentationSettings": "Presentatie-instellingen", + "textPresentationTitle": "Presentatietitel", + "textPrint": "Afdrukken", + "textReplace": "Vervangen", + "textReplaceAll": "Alles vervangen", + "textSearch": "Zoeken", + "textSettings": "Instellingen", + "textShowNotification": "Notificatie weergeven", + "textSlideSize": "Diagrootte", + "textSpellcheck": "Spellingscontrole", + "textSubject": "Onderwerp", + "textTel": "tel:", + "textTitle": "Titel", + "textUnitOfMeasurement": "Maateenheid", + "textUploaded": "Geüpload", + "textVersion": "Versie", + "txtScheme1": "Kantoor", + "txtScheme10": "Mediaan", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Overvloedig", + "txtScheme14": "Erker", + "txtScheme15": "Oorsprong", + "txtScheme16": "Papier", + "txtScheme17": "Zonnewende", + "txtScheme18": "Technisch", + "txtScheme19": "Tocht", + "txtScheme2": "Grijstinten", + "txtScheme20": "Stedelijk", + "txtScheme21": "Verve", + "txtScheme22": "Nieuw kantoor", + "txtScheme3": "Top", + "txtScheme4": "Aspect", + "txtScheme5": "Civiel", + "txtScheme6": "Concours", + "txtScheme7": "Vermogen", + "txtScheme8": "Stroom", + "txtScheme9": "Gieterij" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/pl.json b/apps/presentationeditor/mobile/locale/pl.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/pl.json +++ b/apps/presentationeditor/mobile/locale/pl.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/pt.json b/apps/presentationeditor/mobile/locale/pt.json index 0e0dcd235..c29ddb5cf 100644 --- a/apps/presentationeditor/mobile/locale/pt.json +++ b/apps/presentationeditor/mobile/locale/pt.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "Sobre", + "textAddress": "Endereço", + "textBack": "Voltar", + "textEmail": "Email", + "textPoweredBy": "Desenvolvido por", + "textTel": "Tel", + "textVersion": "Versão" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Atenção", + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textCollaboration": "Colaboração", + "textComments": "Comentários", + "textDeleteComment": "Excluir comentários", + "textDeleteReply": "Excluir resposta", + "textDone": "Concluído", + "textEdit": "Editar", + "textEditComment": "Editar comentário", + "textEditReply": "Editar resposta", + "textEditUser": "Usuários que estão editando o arquivo:", + "textMessageDeleteComment": "Você quer realmente excluir este comentário?", + "textMessageDeleteReply": "Você realmente quer apagar esta resposta?", + "textNoComments": "O documento não contém comentários", + "textReopen": "Reabrir", + "textResolve": "Resolver", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido.", + "textUsers": "Usuários" + }, + "ThemeColorPalette": { + "textCustomColors": "Cores personalizadas", + "textStandartColors": "Cores padrão", + "textThemeColors": "Cores do tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.", + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar Link", + "menuCancel": "Cancelar", + "menuDelete": "Excluir", + "menuDeleteTable": "Excluir tabela", + "menuEdit": "Editar", + "menuMerge": "Mesclar", + "menuMore": "Mais", + "menuOpenLink": "Abrir link", + "menuSplit": "Dividir", + "menuViewComment": "Ver Comentário", + "textColumns": "Colunas", + "textCopyCutPasteActions": "Copiar, Cortar e Colar", + "textDoNotShowAgain": "Não volte a aparecer", + "textRows": "Linhas" + }, + "Controller": { + "Main": { + "advDRMOptions": "Arquivo protegido", + "advDRMPassword": "Senha", + "closeButtonText": "Fechar Arquivo", + "criticalErrorTitle": "Erro", + "errorAccessDeny": "Você está tentando realizar uma ação para a qual não possui direitos.
    Por favor, entre em contato com o seu administrador.", + "errorOpensource": "Usando a versão gratuita da Comunidade, você pode abrir documentos apenas para visualização. Para acessar editores da web móvel, é necessária uma licença comercial.", + "errorProcessSaveResult": "Salvamento falhou.", + "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": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.", + "notcriticalErrorTitle": "Atenção", + "SDK": { + "Chart": "Gráfico", + "Click to add first slide": "Clique para adicionar o primeiro slide", + "Click to add notes": "Clique para adicionar notas", + "ClipArt": "Clip Art", + "Date and time": "Data e Hora", + "Diagram": "Diagrama", + "Diagram Title": "Título do Gráfico", + "Footer": "Rodapé", + "Header": "Cabeçalho", + "Image": "Imagem", + "Loading": "Carregando", + "Media": "Média", + "None": "Nenhum", + "Picture": "Imagem", + "Series": "Série", + "Slide number": "Número do slide", + "Slide subtitle": "Legenda do slide", + "Slide text": "Texto do slide", + "Slide title": "Título do slide", + "Table": "Tabela", + "X Axis": "X Eixo XAS", + "Y Axis": "Eixo Y", + "Your text here": "Seu texto aqui" + }, + "textAnonymous": "Anônimo", + "textBuyNow": "Visitar website", + "textClose": "Fechar", + "textContactUs": "Entre em contato com o departamento de vendas", + "textCustomLoader": "Desculpe, você não tem direito de alterar o carregador. Por favor, entre em contato com nosso departamento de vendas para obter um orçamento.", + "textGuest": "Convidado(a)", + "textHasMacros": "O arquivo contém macros automáticas.
    Você quer executar macros?", + "textNo": "Não", + "textNoLicenseTitle": "Limite de licença atingido", + "textOpenFile": "Inserir a Senha para Abrir o Arquivo", + "textPaidFeature": "Recurso pago", + "textRemember": "Lembrar minha escolha", + "textYes": "Sim", + "titleLicenseExp": "A licença expirou", + "titleServerVersion": "Editor atualizado", + "titleUpdateVersion": "Versão alterada", + "txtIncorrectPwd": "A senha está incorreta", + "txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.", + "warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate seu administrador para saber mais.", + "warnLicenseExp": "Sua licença expirou. Por favor, atualize-o e atualize a página.", + "warnLicenseLimitedNoAccess": "Licença expirada. Você não tem acesso à funcionalidade de edição de documentos. Por favor, contate seu administrador.", + "warnLicenseLimitedRenewed": "A licença precisa ser renovada. Você tem acesso limitado à funcionalidade de edição de documentos.
    Entre em contato com o administrador para obter acesso total", + "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", + "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", + "warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", + "warnProcessRightsChange": "Você não tem permissão para editar o arquivo." + } + }, + "Error": { + "convertationTimeoutText": "Tempo limite de conversão excedido.", + "criticalErrorExtText": "Pressione 'OK' para voltar para a lista de documentos.", + "criticalErrorTitle": "Erro", + "downloadErrorText": "Download falhou.", + "errorAccessDeny": "Você está tentando realizar uma ação para a qual não possui direitos.
    Entre em contato com o seu administrador.", + "errorBadImageUrl": "URL de imagem está incorreta", + "errorConnectToServer": "Não é possível salvar este documento. Verifique as configurações de conexão ou entre em contato com o administrador.
    Ao clicar no botão 'OK', você será solicitado a baixar o documento.", + "errorDatabaseConnection": "Erro externo.
    Erro de conexão do banco de dados. Entre em contato com o suporte.", + "errorDataEncrypted": "Alteração criptografadas foram recebidas, e não podem ser decifradas.", + "errorDataRange": "Intervalo de dados incorreto.", + "errorDefaultMessage": "Código do erro: %1", + "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
    Use a opção 'Download' para salvar a cópia de backup do arquivo localmente.", + "errorFilePassProtect": "O arquivo é protegido por senha e não pôde ser aberto.", + "errorFileSizeExceed": "O tamanho do arquivo excede o limite do servidor.
    Entre em contato com o administrador.", + "errorKeyEncrypt": "Descritor de chave desconhecido", + "errorKeyExpire": "Descritor de chave expirado", + "errorSessionAbsolute": "A sessão de edição do documento expirou. Por favor recarregue a página.", + "errorSessionIdle": "O documento não é editado há muito tempo. Por favor recarregue a página.", + "errorSessionToken": "A conexão com o servidor foi interrompida. Por favor recarregue a página.", + "errorStockChart": "Ordem incorreta das linhas. Para construir um gráfico de ações, coloque os dados na folha na seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fechamento.", + "errorUpdateVersionOnDisconnect": "A conexão com a Internet foi restaurada e a versão do arquivo foi alterada.
    Antes de continuar a trabalhar, baixe o arquivo ou copie seu conteúdo para garantir que nada seja perdido e, em seguida, 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": "A conexão foi perdida. Você ainda pode ver o documento,
    mas não poderá baixá-lo até que a conexão seja restaurada e a página recarregada.", + "notcriticalErrorTitle": "Atenção", + "openErrorText": "Ocorreu um erro ao abrir o arquivo", + "saveErrorText": "Ocorreu um erro ao gravar o arquivo", + "scriptLoadError": "A conexão está muito lenta, alguns dos componentes não puderam ser carregados. Por favor recarregue a página.", + "splitDividerErrorText": "O número de linhas deve ser um divisor de %1", + "splitMaxColsErrorText": "O número de colunas deve ser inferior a %1", + "splitMaxRowsErrorText": "O número de linhas deve ser inferior a %1", + "unknownErrorText": "Erro desconhecido.", + "uploadImageExtMessage": "Formato de imagem desconhecido.", + "uploadImageFileCountMessage": "Sem imagens carregadas.", + "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Carregando dados...", + "applyChangesTitleText": "Carregando dados", + "downloadTextText": "Baixando documento...", + "downloadTitleText": "Baixando 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", + "savePreparingText": "Preparando para salvar", + "savePreparingTitle": "Preparando para salvar. Aguarde...", + "saveTextText": "Salvando documento...", + "saveTitleText": "Salvando documento", + "textLoadingDocument": "Carregando documento", + "txtEditingMode": "Definir modo de edição...", + "uploadImageTextText": "Carregando imagem...", + "uploadImageTitleText": "Carregando imagem", + "waitText": "Por favor, aguarde..." + }, + "Toolbar": { + "dlgLeaveMsgText": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.", + "dlgLeaveTitleText": "Você saiu do aplicativo", + "leaveButtonText": "Sair desta página", + "stayButtonText": "Ficar nesta página" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Atenção", + "textAddLink": "Adicionar Link", + "textAddress": "Endereço", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textColumns": "Colunas", + "textComment": "Comente", + "textDefault": "Texto selecionado", + "textDisplay": "Exibir", + "textEmptyImgUrl": "Você precisa especificar o URL da imagem.", + "textExternalLink": "Link externo", + "textFirstSlide": "Primeiro slide", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textInsert": "Inserir", + "textInsertImage": "Inserir imagem", + "textLastSlide": "Último slide", + "textLink": "Link", + "textLinkSettings": "Configurações de link", + "textLinkTo": "Vincular a", + "textLinkType": "Tipo de link", + "textNextSlide": "Próximo slide", + "textOther": "Outro", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem da URL", + "textPreviousSlide": "Slide anterior", + "textRows": "Linhas", + "textScreenTip": "Dica de tela", + "textShape": "Forma", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide nesta apresentação", + "textSlideNumber": "Número do slide", + "textTable": "Tabela", + "textTableSize": "Tamanho da tabela", + "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Atenção", + "textActualSize": "Tamanho atual", + "textAddCustomColor": "Adicionar Cor Personalizada", + "textAdditional": "Adicional", + "textAdditionalFormatting": "Formatação adicional", + "textAddress": "Endereço", + "textAfter": "Depois", + "textAlign": "Alinhar", + "textAlignBottom": "Alinhar à parte inferior", + "textAlignCenter": "Alinhar ao centro", + "textAlignLeft": "Alinhar à esquerda", + "textAlignMiddle": "Alinhar ao centro", + "textAlignRight": "Alinhar à direita", + "textAlignTop": "Alinhar em cima", + "textAllCaps": "Todas maiúsculas", + "textApplyAll": "Aplicar a todos os slides", + "textAuto": "Automático", + "textBack": "Voltar", + "textBandedColumn": "Coluna em faixa", + "textBandedRow": "Linha de Faixa", + "textBefore": "Antes", + "textBlack": "Através do preto", + "textBorder": "Borda", + "textBottom": "Inferior", + "textBottomLeft": "Inferior esquerdo", + "textBottomRight": "Inferior direito", + "textBringToForeground": "Trazer para primeiro plano", + "textBullets": "Marcadores", + "textBulletsAndNumbers": "Marcadores e Numerações", + "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCellMargins": "Margens da célula", + "textChart": "Gráfico", + "textClock": "Relógio", + "textClockwise": "Sentido horário", + "textColor": "Cor", + "textCounterclockwise": "Sentido anti-horário", + "textCover": "Folha de rosto", + "textCustomColor": "Personalizar cor", + "textDefault": "Texto selecionado", + "textDelay": "Atraso", + "textDeleteSlide": "Excluir slide", + "textDisplay": "Exibir", + "textDistanceFromText": "Distância do texto", + "textDistributeHorizontally": "Distribuir horizontalmente", + "textDistributeVertically": "Distribuir verticalmente", + "textDone": "Concluído", + "textDoubleStrikethrough": "Tachado duplo", + "textDuplicateSlide": "Slide duplicado", + "textDuration": "Duração", + "textEditLink": "Editar Link", + "textEffect": "Efeito", + "textEffects": "Efeitos", + "textEmptyImgUrl": "Você precisa especificar o URL da imagem.", + "textExternalLink": "Link externo", + "textFade": "Esmaecer", + "textFill": "Preencher", + "textFinalMessage": "Fim da pré-visualização de slide. Clique para sair.", + "textFind": "Localizar", + "textFindAndReplace": "Localizar e substituir", + "textFirstColumn": "Primeira Coluna", + "textFirstSlide": "Primeiro slide", + "textFontColor": "Cor da fonte", + "textFontColors": "Cor da Fonte", + "textFonts": "Fontes", + "textFromLibrary": "Imagem da biblioteca", + "textFromURL": "Imagem da URL", + "textHeaderRow": "Linha de Cabeçalho", + "textHighlight": "Destacar resultados", + "textHighlightColor": "Cor de realce", + "textHorizontalIn": "Horizontal para dentro", + "textHorizontalOut": "Horizontal para fora", + "textHyperlink": "Hiperlink", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textLastColumn": "Última coluna", + "textLastSlide": "Último slide", + "textLayout": "Layout", + "textLeft": "Esquerda", + "textLetterSpacing": "Espaçamento de letra", + "textLineSpacing": "Espaçamento entre linhas", + "textLink": "Link", + "textLinkSettings": "Configurações de link", + "textLinkTo": "Vincular a", + "textLinkType": "Tipo de link", + "textMoveBackward": "Mover para trás", + "textMoveForward": "Mover para frente", + "textNextSlide": "Próximo slide", + "textNone": "Nenhum", + "textNoStyles": "Não há estilos para este tipo de gráfico.", + "textNoTextFound": "Texto não encontrado", + "textNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "textNumbers": "Números", + "textOpacity": "Opacidade", + "textOptions": "Opções", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem da URL", + "textPreviousSlide": "Slide anterior", + "textPt": "Pt", + "textPush": "Empurrar", + "textRemoveChart": "Remover gráfico", + "textRemoveImage": "Remover imagem", + "textRemoveLink": "Remover link", + "textRemoveShape": "Remover forma", + "textRemoveTable": "Remover tabela", + "textReorder": "Reordenar", + "textReplace": "Substituir", + "textReplaceAll": "Substituir tudo", + "textReplaceImage": "Substituir imagem", + "textRight": "Direita", + "textScreenTip": "Dica de tela", + "textSearch": "Pesquisar", + "textSec": "S", + "textSelectObjectToEdit": "Selecione o objeto para editar", + "textSendToBackground": "Enviar para plano de fundo", + "textShape": "Forma", + "textSize": "Tamanho", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide nesta apresentação", + "textSlideNumber": "Número do slide", + "textSmallCaps": "Versalete", + "textSmoothly": "Suavemente", + "textSplit": "Dividir", + "textStartOnClick": "Iniciar ao clicar", + "textStrikethrough": "Tachado", + "textStyle": "Estilo", + "textStyleOptions": "Opções de estilo", + "textSubscript": "Subscrito", + "textSuperscript": "Sobrescrito", + "textTable": "Tabela", + "textText": "Тexto", + "textTheme": "Tema", + "textTop": "Parte superior", + "textTopLeft": "Parte superior esquerda", + "textTopRight": "Parte superior direita", + "textTotalRow": "Linha total", + "textTransition": "Transição", + "textType": "Tipo", + "textUnCover": "Descobrir", + "textVerticalIn": "Vertical para dentro", + "textVerticalOut": "Vertical para fora", + "textWedge": "Triangular", + "textWipe": "Revelar", + "textZoom": "Zoom", + "textZoomIn": "Ampliar", + "textZoomOut": "Reduzir", + "textZoomRotate": "Zoom e Rotação" + }, + "Settings": { + "mniSlideStandard": "Padrão (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "Sobre", + "textAddress": "Endereço:", + "textApplication": "Aplicativo", + "textApplicationSettings": "Configurações de Aplicativo", + "textAuthor": "Autor", + "textBack": "Voltar", + "textCaseSensitive": "Maiúsculas e Minúsculas", + "textCentimeter": "Centímetro", + "textCollaboration": "Colaboração", + "textColorSchemes": "Esquemas de cor", + "textComment": "Comente", + "textCreated": "Criado", + "textDisableAll": "Desabilitar tudo", + "textDisableAllMacrosWithNotification": "Desativar todas as macros com notificação", + "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem notificação", + "textDone": "Concluído", + "textDownload": "Baixar", + "textDownloadAs": "Baixar como...", + "textEmail": "e-mail:", + "textEnableAll": "Habilitar todos", + "textEnableAllMacrosWithoutNotification": "Habilitar todas as macros sem notificação", + "textFind": "Localizar", + "textFindAndReplace": "Localizar e substituir", + "textFindAndReplaceAll": "Encontrar e Substituir Tudo", + "textHelp": "Ajuda", + "textHighlight": "Destacar resultados", + "textInch": "Polegada", + "textLastModified": "Última modificação", + "textLastModifiedBy": "Última Modificação Por", + "textLoading": "Carregando...", + "textLocation": "Localização", + "textMacrosSettings": "Configurações de macros", + "textNoTextFound": "Texto não encontrado", + "textOwner": "Proprietário", + "textPoint": "Ponto", + "textPoweredBy": "Desenvolvido por", + "textPresentationInfo": "Informações da apresentação", + "textPresentationSettings": "Configurações da Apresentação", + "textPresentationTitle": "Título de apresentação", + "textPrint": "Imprimir", + "textReplace": "Substituir", + "textReplaceAll": "Substituir tudo", + "textSearch": "Pesquisar", + "textSettings": "Configurações", + "textShowNotification": "Mostrar notificação", + "textSlideSize": "Tamanho de slide", + "textSpellcheck": "Verificação ortográfica", + "textSubject": "Assunto", + "textTel": "tel:", + "textTitle": "Título", + "textUnitOfMeasurement": "Unidade de medida", + "textUploaded": "Carregado", + "textVersion": "Versão", + "txtScheme1": "Office", + "txtScheme10": "Mediana", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Balcão envidraçado", + "txtScheme15": "Origem", + "txtScheme16": "Papel", + "txtScheme17": "Solstício", + "txtScheme18": "Técnica", + "txtScheme19": "Viagem", + "txtScheme2": "Escala de cinza", + "txtScheme20": "Urbano", + "txtScheme21": "Verve", + "txtScheme22": "Novo Office", + "txtScheme3": "Ápice", + "txtScheme4": "Aspecto", + "txtScheme5": "Cívico", + "txtScheme6": "Concurso", + "txtScheme7": "Patrimônio Líquido", + "txtScheme8": "Fluxo", + "txtScheme9": "Fundição" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ro.json b/apps/presentationeditor/mobile/locale/ro.json index 1e68a359e..03946e9bd 100644 --- a/apps/presentationeditor/mobile/locale/ro.json +++ b/apps/presentationeditor/mobile/locale/ro.json @@ -1,574 +1,465 @@ { - "Common.Controllers.Collaboration.textAddReply": "Adăugare răspuns", - "Common.Controllers.Collaboration.textCancel": "Revocare", - "Common.Controllers.Collaboration.textDeleteComment": "Ștergere comentariu", - "Common.Controllers.Collaboration.textDeleteReply": "Ștergere răspuns", - "Common.Controllers.Collaboration.textDone": "Gata", - "Common.Controllers.Collaboration.textEdit": "Editare", - "Common.Controllers.Collaboration.textEditUser": "Fișierul este editat de către:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", - "Common.Controllers.Collaboration.textReopen": "Redeschidere", - "Common.Controllers.Collaboration.textResolve": "Rezolvare", - "Common.Controllers.Collaboration.textYes": "Da", - "Common.UI.ThemeColorPalette.textCustomColors": "Culori particularizate", - "Common.UI.ThemeColorPalette.textStandartColors": "Culori standard", - "Common.UI.ThemeColorPalette.textThemeColors": "Culori temă", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Adăugare răspuns", - "Common.Views.Collaboration.textBack": "Înapoi", - "Common.Views.Collaboration.textCancel": "Revocare", - "Common.Views.Collaboration.textCollaboration": "Colaborare", - "Common.Views.Collaboration.textDone": "Gata", - "Common.Views.Collaboration.textEditReply": "Editare răspuns", - "Common.Views.Collaboration.textEditUsers": "Utilizatori", - "Common.Views.Collaboration.textEditСomment": "Editare comentariu", - "Common.Views.Collaboration.textNoComments": "Prezentarea nu conține comentarii", - "Common.Views.Collaboration.textСomments": "Comentarii", - "PE.Controllers.AddContainer.textImage": "Imagine", - "PE.Controllers.AddContainer.textLink": "Link", - "PE.Controllers.AddContainer.textOther": "Altele", - "PE.Controllers.AddContainer.textShape": "Forma", - "PE.Controllers.AddContainer.textSlide": "Diapozitiv", - "PE.Controllers.AddContainer.textTable": "Tabel", - "PE.Controllers.AddImage.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.AddImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "PE.Controllers.AddImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "PE.Controllers.AddLink.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.AddLink.textDefault": "Textul selectat", - "PE.Controllers.AddLink.textExternalLink": "Link extern", - "PE.Controllers.AddLink.textFirst": "Primul diapozitiv", - "PE.Controllers.AddLink.textInternalLink": "Diapozitivul din această prezentare", - "PE.Controllers.AddLink.textLast": "Ultimul diapozitiv", - "PE.Controllers.AddLink.textNext": "Diapozitivul următor", - "PE.Controllers.AddLink.textPrev": "Diapozitivul anterior", - "PE.Controllers.AddLink.textSlide": "Diapozitiv", - "PE.Controllers.AddLink.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "PE.Controllers.AddOther.textCancel": "Revocare", - "PE.Controllers.AddOther.textContinue": "Continuare", - "PE.Controllers.AddOther.textDelete": "Ștergere", - "PE.Controllers.AddOther.textDeleteDraft": "Sunteți sigur că doriți să stergeți schiță?", - "PE.Controllers.AddTable.textCancel": "Revocare", - "PE.Controllers.AddTable.textColumns": "Coloane", - "PE.Controllers.AddTable.textRows": "Rânduri", - "PE.Controllers.AddTable.textTableSize": "Dimensiune tabel", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", - "PE.Controllers.DocumentHolder.menuAddComment": "Adaugă comentariu", - "PE.Controllers.DocumentHolder.menuAddLink": "Adăugare link", - "PE.Controllers.DocumentHolder.menuCopy": "Copiere", - "PE.Controllers.DocumentHolder.menuCut": "Decupare", - "PE.Controllers.DocumentHolder.menuDelete": "Ștergere", - "PE.Controllers.DocumentHolder.menuEdit": "Editare", - "PE.Controllers.DocumentHolder.menuMore": "Mai multe", - "PE.Controllers.DocumentHolder.menuOpenLink": "Deschidere link", - "PE.Controllers.DocumentHolder.menuPaste": "Lipire", - "PE.Controllers.DocumentHolder.menuViewComment": "Vizualizarea comentariilor", - "PE.Controllers.DocumentHolder.sheetCancel": "Revocare", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", - "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Nu se mai afișează ", - "PE.Controllers.DocumentPreview.txtFinalMessage": "Previzualizarea s-a terminat. Atingeți pentru ieșiere.", - "PE.Controllers.EditContainer.textChart": "Diagramă", - "PE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "PE.Controllers.EditContainer.textImage": "Imagine", - "PE.Controllers.EditContainer.textSettings": "Setări", - "PE.Controllers.EditContainer.textShape": "Forma", - "PE.Controllers.EditContainer.textSlide": "Diapozitiv", - "PE.Controllers.EditContainer.textTable": "Tabel", - "PE.Controllers.EditContainer.textText": "Text", - "PE.Controllers.EditImage.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.EditImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "PE.Controllers.EditImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "PE.Controllers.EditLink.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.EditLink.textDefault": "Textul selectat", - "PE.Controllers.EditLink.textExternalLink": "Link extern", - "PE.Controllers.EditLink.textFirst": "Primul diapozitiv", - "PE.Controllers.EditLink.textInternalLink": "Diapozitivul din această prezentare", - "PE.Controllers.EditLink.textLast": "Ultimul diapozitiv", - "PE.Controllers.EditLink.textNext": "Diapozitivul următor", - "PE.Controllers.EditLink.textPrev": "Diapozitivul anterior", - "PE.Controllers.EditLink.textSlide": "Diapozitiv", - "PE.Controllers.EditLink.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "PE.Controllers.EditSlide.textSec": "t", - "PE.Controllers.EditText.textAuto": "Auto", - "PE.Controllers.EditText.textFonts": "Fonturi", - "PE.Controllers.EditText.textPt": "pt", - "PE.Controllers.Main.advDRMEnterPassword": "Introduceți parola:", - "PE.Controllers.Main.advDRMOptions": "Fișierul protejat", - "PE.Controllers.Main.advDRMPassword": "Parola", - "PE.Controllers.Main.applyChangesTextText": "Încărcarea datelor...", - "PE.Controllers.Main.applyChangesTitleText": "Încărcare date", - "PE.Controllers.Main.closeButtonText": "Închide fișierul", - "PE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", - "PE.Controllers.Main.criticalErrorExtText": "Faceți click pe butonul'OK' pentru a vă întoarce la lista documente. ", - "PE.Controllers.Main.criticalErrorTitle": "Eroare", - "PE.Controllers.Main.downloadErrorText": "Descărcare eșuată.", - "PE.Controllers.Main.downloadTextText": "Descărcarea prezentării...", - "PE.Controllers.Main.downloadTitleText": "Descărcarea prezentării", - "PE.Controllers.Main.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dumneavoastră de Server Documente.", - "PE.Controllers.Main.errorBadImageUrl": "URL-ul imaginii incorectă", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Conexiunea la server a fost pierdută. Imposibil de editat mai departe.", - "PE.Controllers.Main.errorConnectToServer": "Salvarea documentului nu poate fi finalizată. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", - "PE.Controllers.Main.errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", - "PE.Controllers.Main.errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", - "PE.Controllers.Main.errorDataRange": "Zonă de date incorectă.", - "PE.Controllers.Main.errorDefaultMessage": "Codul de eroare: %1", - "PE.Controllers.Main.errorEditingDownloadas": "S-a produs o eroare în timpul procesării documentului.
    Folosiți funcția de descărcare pentru a salva copia de rezervă a fișierului pe PC.", - "PE.Controllers.Main.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", - "PE.Controllers.Main.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", - "PE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", - "PE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", - "PE.Controllers.Main.errorOpensource": "Versiunea gratuită a ediției Community include numai vizualizarea fișierilor. Licența comercială permite utilizarea editoarelor pentru dispozitivele mobile.", - "PE.Controllers.Main.errorProcessSaveResult": "Salvarea a eșuat.", - "PE.Controllers.Main.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", - "PE.Controllers.Main.errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", - "PE.Controllers.Main.errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", - "PE.Controllers.Main.errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", - "PE.Controllers.Main.errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", - "PE.Controllers.Main.errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", - "PE.Controllers.Main.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", - "PE.Controllers.Main.errorUsersExceed": "Limita de utilizatori a fost atinsă", - "PE.Controllers.Main.errorViewerDisconnect": "Conexiunea a fost pierdută. Puteți vizualiza documentul,
    dar nu puteți să-l descărcați până când se restabilește conexiunea și se reîmprospătează pagină.", - "PE.Controllers.Main.leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe 'Rămâi în pagină' și așteptați salvarea automată. Faceți clic pe 'Părăsește aceasta pagina' ca să renunțați la toate modificările nesalvate.", - "PE.Controllers.Main.loadFontsTextText": "Încărcarea datelor...", - "PE.Controllers.Main.loadFontsTitleText": "Încărcare date", - "PE.Controllers.Main.loadFontTextText": "Încărcarea datelor...", - "PE.Controllers.Main.loadFontTitleText": "Încărcare date", - "PE.Controllers.Main.loadImagesTextText": "Încărcarea imaginilor...", - "PE.Controllers.Main.loadImagesTitleText": "Încărcare imagini", - "PE.Controllers.Main.loadImageTextText": "Încărcarea imaginii...", - "PE.Controllers.Main.loadImageTitleText": "Încărcare imagine", - "PE.Controllers.Main.loadingDocumentTextText": "Încărcarea prezentării...", - "PE.Controllers.Main.loadingDocumentTitleText": "Încărcare prezentare", - "PE.Controllers.Main.loadThemeTextText": "Încărcarea temei...", - "PE.Controllers.Main.loadThemeTitleText": "Încărcare temă", - "PE.Controllers.Main.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.Main.openErrorText": "Eroare la deschiderea fișierului.", - "PE.Controllers.Main.openTextText": "Deschiderea fișierului...", - "PE.Controllers.Main.openTitleText": "Deschidere fișier", - "PE.Controllers.Main.printTextText": "Imprimarea documentului...", - "PE.Controllers.Main.printTitleText": "Imprimarea documentului", - "PE.Controllers.Main.reloadButtonText": "Reîmprospătare pagina", - "PE.Controllers.Main.requestEditFailedMessageText": "La moment, alcineva lucrează la documentul. Vă rugăm să încercați mai târziu.", - "PE.Controllers.Main.requestEditFailedTitleText": "Acces refuzat", - "PE.Controllers.Main.saveErrorText": "S-a produs o eroare în timpul încercării de salvare a fișierului.", - "PE.Controllers.Main.savePreparingText": "Pregătire pentru salvare", - "PE.Controllers.Main.savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", - "PE.Controllers.Main.saveTextText": "Salvarea documentului...", - "PE.Controllers.Main.saveTitleText": "Salvare document", - "PE.Controllers.Main.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", - "PE.Controllers.Main.splitDividerErrorText": "Numărul de rânduri trebuie împărțit la %1", - "PE.Controllers.Main.splitMaxColsErrorText": "Numărul maxim de coloane este de %1", - "PE.Controllers.Main.splitMaxRowsErrorText": "Numărul maxim de rânduri este %1", - "PE.Controllers.Main.textAnonymous": "Anonim", - "PE.Controllers.Main.textBack": "Înapoi", - "PE.Controllers.Main.textBuyNow": "Vizitarea site-ul Web", - "PE.Controllers.Main.textCancel": "Revocare", - "PE.Controllers.Main.textClose": "Închidere", - "PE.Controllers.Main.textCloseTip": "Atingeți pentru a închide sfat.", - "PE.Controllers.Main.textContactUs": "Contactați Departamentul de Vânzări", - "PE.Controllers.Main.textCustomLoader": "Vă rugăm să rețineți că conform termenilor de licență nu aveți dreptul să modificați programul de încărcare.
    Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", - "PE.Controllers.Main.textDone": "Gata", - "PE.Controllers.Main.textGuest": "Invitat", - "PE.Controllers.Main.textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", - "PE.Controllers.Main.textLoadingDocument": "Încărcare prezentare", - "PE.Controllers.Main.textNo": "Nu", - "PE.Controllers.Main.textNoLicenseTitle": "Ați atins limita stabilită de licență", - "PE.Controllers.Main.textOK": "OK", - "PE.Controllers.Main.textPaidFeature": "Funcția contra plată", - "PE.Controllers.Main.textPassword": "Parola", - "PE.Controllers.Main.textPreloader": "Se incarca...", - "PE.Controllers.Main.textRemember": "Salvează setările pentru toate fișiere", - "PE.Controllers.Main.textShape": "Forma", - "PE.Controllers.Main.textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", - "PE.Controllers.Main.textUsername": "Nume de utilizator", - "PE.Controllers.Main.textYes": "Da", - "PE.Controllers.Main.titleLicenseExp": "Licența a expirat", - "PE.Controllers.Main.titleServerVersion": "Editorul a fost actualizat", - "PE.Controllers.Main.txtAddFirstSlide": "Faceți clic pentru a adăuga primul diapozitiv", - "PE.Controllers.Main.txtArt": "Textul dvs. aici", - "PE.Controllers.Main.txtBasicShapes": "Forme de bază", - "PE.Controllers.Main.txtButtons": "Butoane", - "PE.Controllers.Main.txtCallouts": "Explicații", - "PE.Controllers.Main.txtCharts": "Diagrame", - "PE.Controllers.Main.txtClipArt": "Miniatura", - "PE.Controllers.Main.txtDateTime": "Dată și oră", - "PE.Controllers.Main.txtDiagram": "SmartArt", - "PE.Controllers.Main.txtDiagramTitle": "Titlu diagramă", - "PE.Controllers.Main.txtEditingMode": "Setare modul de editare...", - "PE.Controllers.Main.txtFiguredArrows": "Săgeți în forme diferite", - "PE.Controllers.Main.txtFooter": "Subsol", - "PE.Controllers.Main.txtHeader": "Antet", - "PE.Controllers.Main.txtImage": "Imagine", - "PE.Controllers.Main.txtLines": "Linii", - "PE.Controllers.Main.txtMath": "Matematica", - "PE.Controllers.Main.txtMedia": "Media", - "PE.Controllers.Main.txtNeedSynchronize": "Aveți actualizări disponibile", - "PE.Controllers.Main.txtPicture": "Imagine", - "PE.Controllers.Main.txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", - "PE.Controllers.Main.txtRectangles": "Dreptunghiuri", - "PE.Controllers.Main.txtSeries": "Serie", - "PE.Controllers.Main.txtSldLtTBlank": "Necompletat", - "PE.Controllers.Main.txtSldLtTChart": "Diagramă", - "PE.Controllers.Main.txtSldLtTChartAndTx": "Diagrama și text", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Miniatura și text", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Miniatura și text vertical", - "PE.Controllers.Main.txtSldLtTCust": "Particularizat", - "PE.Controllers.Main.txtSldLtTDgm": "Diagrama", - "PE.Controllers.Main.txtSldLtTFourObj": "Patru obiecte", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Media și text", - "PE.Controllers.Main.txtSldLtTObj": "Titlu și obiect", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Obiect și două obiecte ", - "PE.Controllers.Main.txtSldLtTObjAndTx": "Obiect și text", - "PE.Controllers.Main.txtSldLtTObjOnly": "Obiect", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Obiectul deasupra textului", - "PE.Controllers.Main.txtSldLtTObjTx": "Tutlu, obiect și legenda", - "PE.Controllers.Main.txtSldLtTPicTx": "Imagine și legenda", - "PE.Controllers.Main.txtSldLtTSecHead": "Antet secțiune", - "PE.Controllers.Main.txtSldLtTTbl": "Tabel", - "PE.Controllers.Main.txtSldLtTTitle": "Titlu", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Numai titlu", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Text în două coloane", - "PE.Controllers.Main.txtSldLtTTwoObj": "Două obiecte", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Două obiecte și obiect", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Două obiecte și text", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Două obiecte deasupra textului", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Două texte și două obiecte", - "PE.Controllers.Main.txtSldLtTTx": "Text", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Text și diagrama", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Text și miniaturi", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "Text și Media", - "PE.Controllers.Main.txtSldLtTTxAndObj": "Text și obiect", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Text și două obiecte", - "PE.Controllers.Main.txtSldLtTTxOverObj": "Textul deasupra obiectului", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Titlu vertical și text", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Titlu vertical și text deasupra diagramei", - "PE.Controllers.Main.txtSldLtTVertTx": "Text vertical", - "PE.Controllers.Main.txtSlideNumber": "Număr diapozitiv", - "PE.Controllers.Main.txtSlideSubtitle": "Subtitrare diapozitiv", - "PE.Controllers.Main.txtSlideText": "Text diapozitiv", - "PE.Controllers.Main.txtSlideTitle": "Titlu diapozitiv", - "PE.Controllers.Main.txtStarsRibbons": "Stele și forme ondulate", - "PE.Controllers.Main.txtXAxis": "Axa X", - "PE.Controllers.Main.txtYAxis": "Axa Y", - "PE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", - "PE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", - "PE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", - "PE.Controllers.Main.uploadImageSizeMessage": "Dimensiunea imaginii depășește limita permisă.", - "PE.Controllers.Main.uploadImageTextText": "Încărcarea imaginii...", - "PE.Controllers.Main.uploadImageTitleText": "Încărcare imagine", - "PE.Controllers.Main.waitText": "Vă rugăm să așteptați...", - "PE.Controllers.Main.warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
    Pentru detalii, contactați administratorul dvs.", - "PE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.
    Licența urmează să fie reînnoită iar pagina reîmprospătată.", - "PE.Controllers.Main.warnLicenseLimitedNoAccess": "Licența dvs. a expirat.
    Nu aveți acces la funcții de editare a documentului.
    Contactați administratorul dvs. de rețeea.", - "PE.Controllers.Main.warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
    Funcțiile de editare sunt cu acces limitat.
    Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", - "PE.Controllers.Main.warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare.
    Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de licențiere.", - "PE.Controllers.Main.warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", - "PE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", - "PE.Controllers.Search.textNoTextFound": "Textul nu a fost găsit", - "PE.Controllers.Search.textReplaceAll": "Înlocuire peste tot", - "PE.Controllers.Settings.notcriticalErrorTitle": "Avertisment", - "PE.Controllers.Settings.txtLoading": "Se incarca...", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe 'Rămâi în pagină' și așteptați salvarea automată. Faceți clic pe 'Părăsește aceasta pagina' ca să renunțați la toate modificările nesalvate.", - "PE.Controllers.Toolbar.dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", - "PE.Controllers.Toolbar.leaveButtonText": "Părăsește această pagina", - "PE.Controllers.Toolbar.stayButtonText": "Rămâi în pagină", - "PE.Views.AddImage.textAddress": "Adresă", - "PE.Views.AddImage.textBack": "Înapoi", - "PE.Views.AddImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "PE.Views.AddImage.textFromURL": "Imaginea prin URL", - "PE.Views.AddImage.textImageURL": "URL-ul imaginii", - "PE.Views.AddImage.textInsertImage": "Inserare imagine", - "PE.Views.AddImage.textLinkSettings": "Configurarea link", - "PE.Views.AddLink.textBack": "Înapoi", - "PE.Views.AddLink.textDisplay": "Afișare", - "PE.Views.AddLink.textExternalLink": "Link extern", - "PE.Views.AddLink.textFirst": "Primul diapozitiv", - "PE.Views.AddLink.textInsert": "Inserare", - "PE.Views.AddLink.textInternalLink": "Diapozitivul din această prezentare", - "PE.Views.AddLink.textLast": "Ultimul diapozitiv", - "PE.Views.AddLink.textLink": "Link", - "PE.Views.AddLink.textLinkSlide": "Legătură la", - "PE.Views.AddLink.textLinkType": "Tip link", - "PE.Views.AddLink.textNext": "Diapozitivul următor", - "PE.Views.AddLink.textNumber": "Număr diapozitiv", - "PE.Views.AddLink.textPrev": "Diapozitivul anterior", - "PE.Views.AddLink.textTip": "Sfaturi ecran", - "PE.Views.AddOther.textAddComment": "Adaugă comentariu", - "PE.Views.AddOther.textBack": "Înapoi", - "PE.Views.AddOther.textComment": "Comentariu", - "PE.Views.AddOther.textDisplay": "Afișare", - "PE.Views.AddOther.textDone": "Gata", - "PE.Views.AddOther.textExternalLink": "Link extern", - "PE.Views.AddOther.textFirst": "Primul diapozitiv", - "PE.Views.AddOther.textInsert": "Inserare", - "PE.Views.AddOther.textInternalLink": "Diapozitivul din această prezentare", - "PE.Views.AddOther.textLast": "Ultimul diapozitiv", - "PE.Views.AddOther.textLink": "Link", - "PE.Views.AddOther.textLinkSlide": "Legătură la", - "PE.Views.AddOther.textLinkType": "Tip link", - "PE.Views.AddOther.textNext": "Diapozitivul următor", - "PE.Views.AddOther.textNumber": "Număr diapozitiv", - "PE.Views.AddOther.textPrev": "Diapozitivul anterior", - "PE.Views.AddOther.textTable": "Tabel", - "PE.Views.AddOther.textTip": "Sfaturi ecran", - "PE.Views.EditChart.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditChart.textAlign": "Aliniere", - "PE.Views.EditChart.textAlignBottom": "Aliniere jos", - "PE.Views.EditChart.textAlignCenter": "Aliniere la centru", - "PE.Views.EditChart.textAlignLeft": "Aliniere la stânga", - "PE.Views.EditChart.textAlignMiddle": "Aliniere la mijloc", - "PE.Views.EditChart.textAlignRight": "Aliniere la dreapta", - "PE.Views.EditChart.textAlignTop": "Aliniere sus", - "PE.Views.EditChart.textBack": "Înapoi", - "PE.Views.EditChart.textBackward": "Mutare în ultimul plan", - "PE.Views.EditChart.textBorder": "Bordură", - "PE.Views.EditChart.textColor": "Culoare", - "PE.Views.EditChart.textCustomColor": "Culoare particularizată", - "PE.Views.EditChart.textFill": "Umplere", - "PE.Views.EditChart.textForward": "Deplasare înainte", - "PE.Views.EditChart.textRemoveChart": "Ștergere diagrama", - "PE.Views.EditChart.textReorder": "Reordonare", - "PE.Views.EditChart.textSize": "Dimensiune", - "PE.Views.EditChart.textStyle": "Stil", - "PE.Views.EditChart.textToBackground": "Trimitere în plan secundar", - "PE.Views.EditChart.textToForeground": "Aducere în prim plan", - "PE.Views.EditChart.textType": "Tip", - "PE.Views.EditChart.txtDistribHor": "Distribuire pe orizontală", - "PE.Views.EditChart.txtDistribVert": "Distribuire pe verticală", - "PE.Views.EditImage.textAddress": "Adresă", - "PE.Views.EditImage.textAlign": "Aliniere", - "PE.Views.EditImage.textAlignBottom": "Aliniere jos", - "PE.Views.EditImage.textAlignCenter": "Aliniere la centru", - "PE.Views.EditImage.textAlignLeft": "Aliniere la stânga", - "PE.Views.EditImage.textAlignMiddle": "Aliniere la mijloc", - "PE.Views.EditImage.textAlignRight": "Aliniere la dreapta", - "PE.Views.EditImage.textAlignTop": "Aliniere sus", - "PE.Views.EditImage.textBack": "Înapoi", - "PE.Views.EditImage.textBackward": "Mutare în ultimul plan", - "PE.Views.EditImage.textDefault": "Dimensiunea reală", - "PE.Views.EditImage.textForward": "Deplasare înainte", - "PE.Views.EditImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "PE.Views.EditImage.textFromURL": "Imaginea prin URL", - "PE.Views.EditImage.textImageURL": "URL-ul imaginii", - "PE.Views.EditImage.textLinkSettings": "Configurarea link", - "PE.Views.EditImage.textRemove": "Ștergere imagine", - "PE.Views.EditImage.textReorder": "Reordonare", - "PE.Views.EditImage.textReplace": "Înlocuire", - "PE.Views.EditImage.textReplaceImg": "Înlocuire imagine", - "PE.Views.EditImage.textToBackground": "Trimitere în plan secundar", - "PE.Views.EditImage.textToForeground": "Aducere în prim plan", - "PE.Views.EditImage.txtDistribHor": "Distribuire pe orizontală", - "PE.Views.EditImage.txtDistribVert": "Distribuire pe verticală", - "PE.Views.EditLink.textBack": "Înapoi", - "PE.Views.EditLink.textDisplay": "Afișare", - "PE.Views.EditLink.textEdit": "Editare link", - "PE.Views.EditLink.textExternalLink": "Link extern", - "PE.Views.EditLink.textFirst": "Primul diapozitiv", - "PE.Views.EditLink.textInternalLink": "Diapozitivul din această prezentare", - "PE.Views.EditLink.textLast": "Ultimul diapozitiv", - "PE.Views.EditLink.textLink": "Link", - "PE.Views.EditLink.textLinkSlide": "Legătură la", - "PE.Views.EditLink.textLinkType": "Tip link", - "PE.Views.EditLink.textNext": "Diapozitivul următor", - "PE.Views.EditLink.textNumber": "Număr diapozitiv", - "PE.Views.EditLink.textPrev": "Diapozitivul anterior", - "PE.Views.EditLink.textRemove": "Ștergere link", - "PE.Views.EditLink.textTip": "Sfaturi ecran", - "PE.Views.EditShape.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditShape.textAlign": "Aliniere", - "PE.Views.EditShape.textAlignBottom": "Aliniere jos", - "PE.Views.EditShape.textAlignCenter": "Aliniere la centru", - "PE.Views.EditShape.textAlignLeft": "Aliniere la stânga", - "PE.Views.EditShape.textAlignMiddle": "Aliniere la mijloc", - "PE.Views.EditShape.textAlignRight": "Aliniere la dreapta", - "PE.Views.EditShape.textAlignTop": "Aliniere sus", - "PE.Views.EditShape.textBack": "Înapoi", - "PE.Views.EditShape.textBackward": "Mutare în ultimul plan", - "PE.Views.EditShape.textBorder": "Bordură", - "PE.Views.EditShape.textColor": "Culoare", - "PE.Views.EditShape.textCustomColor": "Culoare particularizată", - "PE.Views.EditShape.textEffects": "Efecte", - "PE.Views.EditShape.textFill": "Umplere", - "PE.Views.EditShape.textForward": "Deplasare înainte", - "PE.Views.EditShape.textOpacity": "Transparență", - "PE.Views.EditShape.textRemoveShape": "Stergere forma", - "PE.Views.EditShape.textReorder": "Reordonare", - "PE.Views.EditShape.textReplace": "Înlocuire", - "PE.Views.EditShape.textSize": "Dimensiune", - "PE.Views.EditShape.textStyle": "Stil", - "PE.Views.EditShape.textToBackground": "Trimitere în plan secundar", - "PE.Views.EditShape.textToForeground": "Aducere în prim plan", - "PE.Views.EditShape.txtDistribHor": "Distribuire pe orizontală", - "PE.Views.EditShape.txtDistribVert": "Distribuire pe verticală", - "PE.Views.EditSlide.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditSlide.textApplyAll": "Aplicarea la toate diapozitivele ", - "PE.Views.EditSlide.textBack": "Înapoi", - "PE.Views.EditSlide.textBlack": "Prin negru", - "PE.Views.EditSlide.textBottom": "Jos", - "PE.Views.EditSlide.textBottomLeft": "La stânga jos", - "PE.Views.EditSlide.textBottomRight": "La dreapta jos", - "PE.Views.EditSlide.textClock": "Ceas", - "PE.Views.EditSlide.textClockwise": "În sensul acelor de ceasornic", - "PE.Views.EditSlide.textColor": "Culoare", - "PE.Views.EditSlide.textCounterclockwise": "In sens opus acelor de ceasornic", - "PE.Views.EditSlide.textCover": "Acoperire", - "PE.Views.EditSlide.textCustomColor": "Culoare particularizată", - "PE.Views.EditSlide.textDelay": "Amânare", - "PE.Views.EditSlide.textDuplicateSlide": "Dublare diapozitiv", - "PE.Views.EditSlide.textDuration": "Durată", - "PE.Views.EditSlide.textEffect": "Efect", - "PE.Views.EditSlide.textFade": "Estompare", - "PE.Views.EditSlide.textFill": "Umplere", - "PE.Views.EditSlide.textHorizontalIn": "Orizontal în interior", - "PE.Views.EditSlide.textHorizontalOut": "Orizontal în exterior", - "PE.Views.EditSlide.textLayout": "Aspect", - "PE.Views.EditSlide.textLeft": "Stânga", - "PE.Views.EditSlide.textNone": "Niciunul", - "PE.Views.EditSlide.textOpacity": "Transparență", - "PE.Views.EditSlide.textPush": "Împingere", - "PE.Views.EditSlide.textRemoveSlide": "Ștergere diapozitiv", - "PE.Views.EditSlide.textRight": "Dreapta", - "PE.Views.EditSlide.textSmoothly": "Lin", - "PE.Views.EditSlide.textSplit": "Scindare", - "PE.Views.EditSlide.textStartOnClick": "Pornire la clic", - "PE.Views.EditSlide.textStyle": "Stil", - "PE.Views.EditSlide.textTheme": "Temă", - "PE.Views.EditSlide.textTop": "Sus", - "PE.Views.EditSlide.textTopLeft": "Stânga sus", - "PE.Views.EditSlide.textTopRight": "Dreapta sus", - "PE.Views.EditSlide.textTransition": "Tranziții", - "PE.Views.EditSlide.textType": "Tip", - "PE.Views.EditSlide.textUnCover": "Descoperire", - "PE.Views.EditSlide.textVerticalIn": "Vertical în interior", - "PE.Views.EditSlide.textVerticalOut": "Vertical în exterior", - "PE.Views.EditSlide.textWedge": "Pană", - "PE.Views.EditSlide.textWipe": "Ștergere", - "PE.Views.EditSlide.textZoom": "Zoom", - "PE.Views.EditSlide.textZoomIn": "Mărire", - "PE.Views.EditSlide.textZoomOut": "Micșorare", - "PE.Views.EditSlide.textZoomRotate": "Zoom și rotire", - "PE.Views.EditTable.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditTable.textAlign": "Aliniere", - "PE.Views.EditTable.textAlignBottom": "Aliniere jos", - "PE.Views.EditTable.textAlignCenter": "Aliniere la centru", - "PE.Views.EditTable.textAlignLeft": "Aliniere la stânga", - "PE.Views.EditTable.textAlignMiddle": "Aliniere la mijloc", - "PE.Views.EditTable.textAlignRight": "Aliniere la dreapta", - "PE.Views.EditTable.textAlignTop": "Aliniere sus", - "PE.Views.EditTable.textBack": "Înapoi", - "PE.Views.EditTable.textBackward": "Mutare în ultimul plan", - "PE.Views.EditTable.textBandedColumn": "Coloana alternantă", - "PE.Views.EditTable.textBandedRow": "Rând alternant", - "PE.Views.EditTable.textBorder": "Bordură", - "PE.Views.EditTable.textCellMargins": "Margini de celulă", - "PE.Views.EditTable.textColor": "Culoare", - "PE.Views.EditTable.textCustomColor": "Culoare particularizată", - "PE.Views.EditTable.textFill": "Umplere", - "PE.Views.EditTable.textFirstColumn": "Prima coloană", - "PE.Views.EditTable.textForward": "Deplasare înainte", - "PE.Views.EditTable.textHeaderRow": "Rândul de antet", - "PE.Views.EditTable.textLastColumn": "Ultima coloană", - "PE.Views.EditTable.textOptions": "Opțiuni", - "PE.Views.EditTable.textRemoveTable": "Ștergere tabel", - "PE.Views.EditTable.textReorder": "Reordonare", - "PE.Views.EditTable.textSize": "Dimensiune", - "PE.Views.EditTable.textStyle": "Stil", - "PE.Views.EditTable.textStyleOptions": "Opțiuni de stil", - "PE.Views.EditTable.textTableOptions": "Opțiuni tabel", - "PE.Views.EditTable.textToBackground": "Trimitere în plan secundar", - "PE.Views.EditTable.textToForeground": "Aducere în prim plan", - "PE.Views.EditTable.textTotalRow": "Rând total", - "PE.Views.EditTable.txtDistribHor": "Distribuire pe orizontală", - "PE.Views.EditTable.txtDistribVert": "Distribuire pe verticală", - "PE.Views.EditText.textAddCustomColor": "Adăugarea unei culori particularizate", - "PE.Views.EditText.textAdditional": "Suplimentar", - "PE.Views.EditText.textAdditionalFormat": "Formatare suplimentară", - "PE.Views.EditText.textAfter": "după", - "PE.Views.EditText.textAllCaps": "Cu majuscule", - "PE.Views.EditText.textAutomatic": "Automat", - "PE.Views.EditText.textBack": "Înapoi", - "PE.Views.EditText.textBefore": "Înainte", - "PE.Views.EditText.textBullets": "Marcatori", - "PE.Views.EditText.textCharacterBold": "A", - "PE.Views.EditText.textCharacterItalic": "C", - "PE.Views.EditText.textCharacterStrikethrough": "T", - "PE.Views.EditText.textCharacterUnderline": "S", - "PE.Views.EditText.textCustomColor": "Culoare particularizată", - "PE.Views.EditText.textDblStrikethrough": "Tăiere cu două linii", - "PE.Views.EditText.textDblSuperscript": "Exponent", - "PE.Views.EditText.textFontColor": "Culoare font", - "PE.Views.EditText.textFontColors": "Culorile font", - "PE.Views.EditText.textFonts": "Fonturi", - "PE.Views.EditText.textFromText": "Distanță de la text", - "PE.Views.EditText.textLetterSpacing": "Spațierea dintre caractere", - "PE.Views.EditText.textLineSpacing": "Interlinie", - "PE.Views.EditText.textNone": "Niciunul", - "PE.Views.EditText.textNumbers": "Numere", - "PE.Views.EditText.textSize": "Dimensiune", - "PE.Views.EditText.textSmallCaps": "Majuscule reduse", - "PE.Views.EditText.textStrikethrough": "Tăiere cu o linie", - "PE.Views.EditText.textSubscript": "Indice", - "PE.Views.Search.textCase": "Sensibil la litere mari și mici", - "PE.Views.Search.textDone": "Gata", - "PE.Views.Search.textFind": "Găsire", - "PE.Views.Search.textFindAndReplace": "Găsire și înlocuire", - "PE.Views.Search.textReplace": "Înlocuire", - "PE.Views.Search.textSearch": "Căutare", - "PE.Views.Settings. textComment": "Comentariu", - "PE.Views.Settings.mniSlideStandard": "Standard (4:3)", - "PE.Views.Settings.mniSlideWide": "Ecran lat (16:9)", - "PE.Views.Settings.textAbout": "Informații", - "PE.Views.Settings.textAddress": "adresă", - "PE.Views.Settings.textApplication": "Aplicația", - "PE.Views.Settings.textApplicationSettings": "Setări Aplicație", - "PE.Views.Settings.textAuthor": "Autor", - "PE.Views.Settings.textBack": "Înapoi", - "PE.Views.Settings.textCentimeter": "Centimetru", - "PE.Views.Settings.textCollaboration": "Colaborare", - "PE.Views.Settings.textColorSchemes": "Schema de culori", - "PE.Views.Settings.textCreated": "A fost creat", - "PE.Views.Settings.textCreateDate": "Creat la", - "PE.Views.Settings.textDisableAll": "Se dezactivează toate", - "PE.Views.Settings.textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzile, cu notificare ", - "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile, fără notificare", - "PE.Views.Settings.textDone": "Gata", - "PE.Views.Settings.textDownload": "Descărcare", - "PE.Views.Settings.textDownloadAs": "Descărcare ca...", - "PE.Views.Settings.textEditPresent": "Editarea prezentării", - "PE.Views.Settings.textEmail": "e-mail", - "PE.Views.Settings.textEnableAll": "Se activează toate", - "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile, fără notificare", - "PE.Views.Settings.textFind": "Găsire", - "PE.Views.Settings.textFindAndReplace": "Găsire și înlocuire", - "PE.Views.Settings.textHelp": "Asistență", - "PE.Views.Settings.textInch": "Inch", - "PE.Views.Settings.textLastModified": "Data ultimei modificări", - "PE.Views.Settings.textLastModifiedBy": "Modificat ultima dată de către", - "PE.Views.Settings.textLoading": "Se incarca...", - "PE.Views.Settings.textLocation": "Locația", - "PE.Views.Settings.textMacrosSettings": "Setări macrocomandă", - "PE.Views.Settings.textOwner": "Posesor", - "PE.Views.Settings.textPoint": "Punct", - "PE.Views.Settings.textPoweredBy": "Dezvoltat de", - "PE.Views.Settings.textPresentInfo": "Informații despre prezentarea", - "PE.Views.Settings.textPresentSettings": "Setări prezentare", - "PE.Views.Settings.textPresentSetup": "Configurare prezentare", - "PE.Views.Settings.textPresentTitle": "Titlu prezentare", - "PE.Views.Settings.textPrint": "Imprimare", - "PE.Views.Settings.textSettings": "Setări", - "PE.Views.Settings.textShowNotification": "Afișare notificări", - "PE.Views.Settings.textSlideSize": "Dimensiune diapozitiv", - "PE.Views.Settings.textSpellcheck": "Verificarea ortografică", - "PE.Views.Settings.textSubject": "Subiect", - "PE.Views.Settings.textTel": "tel", - "PE.Views.Settings.textTitle": "Titlu", - "PE.Views.Settings.textUnitOfMeasurement": "Unitate de măsură ", - "PE.Views.Settings.textUploaded": "S-a încărcat", - "PE.Views.Settings.textVersion": "Versiune", - "PE.Views.Settings.unknownText": "Necunoscut", - "PE.Views.Toolbar.textBack": "Înapoi" + "About": { + "textAbout": "Despre", + "textAddress": "Adresă", + "textBack": "Înapoi", + "textEmail": "Email", + "textPoweredBy": "Dezvoltat de", + "textTel": "Tel", + "textVersion": "Versiune" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Avertisment", + "textAddComment": "Adaugă comentariu", + "textAddReply": "Adăugare răspuns", + "textBack": "Înapoi", + "textCancel": "Anulează", + "textCollaboration": "Colaborare", + "textComments": "Comentarii", + "textDeleteComment": "Ștergere comentariu", + "textDeleteReply": "Ștergere răspuns", + "textDone": "Gata", + "textEdit": "Editare", + "textEditComment": "Editare comentariu", + "textEditReply": "Editare răspuns", + "textEditUser": "Fișierul este editat de către:", + "textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", + "textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", + "textNoComments": "Documentul nu cuprinde comentarii", + "textReopen": "Redeschide", + "textResolve": "Rezolvare", + "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", + "textUsers": "Utilizatori" + }, + "ThemeColorPalette": { + "textCustomColors": "Culori particularizate", + "textStandartColors": "Culori standard", + "textThemeColors": "Culori temă" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", + "menuAddComment": "Adaugă comentariu", + "menuAddLink": "Adăugare link", + "menuCancel": "Anulează", + "menuDelete": "Ștergere", + "menuDeleteTable": "Ștergere tabel", + "menuEdit": "Editare", + "menuMerge": "Îmbinare", + "menuMore": "Mai multe", + "menuOpenLink": "Deschidere link", + "menuSplit": "Scindare", + "menuViewComment": "Vizualizarea comentariilor", + "textColumns": "Coloane", + "textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", + "textDoNotShowAgain": "Nu mai afișa", + "textRows": "Rânduri" + }, + "Controller": { + "Main": { + "advDRMOptions": "Fișierul protejat", + "advDRMPassword": "Parola", + "closeButtonText": "Închide fișierul", + "criticalErrorTitle": "Eroare", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorOpensource": "În versiunea Community documentul este disponibil numai pentru vizualizare. Aveți nevoie de o licență comercială pentru accesarea editorului mobil web.", + "errorProcessSaveResult": "Salvarea nu a reușit.", + "errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", + "errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", + "leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "notcriticalErrorTitle": "Avertisment", + "SDK": { + "Chart": "Diagramă", + "Click to add first slide": "Faceți clic pentru a adăuga primul diapozitiv", + "Click to add notes": "Faceți clic pentru a adăuga note", + "ClipArt": "Miniatura", + "Date and time": "Dată și oră", + "Diagram": "Diagrama", + "Diagram Title": "Titlu diagramă", + "Footer": "Subsol", + "Header": "Antet", + "Image": "Imagine", + "Loading": "Încărcare", + "Media": "Media", + "None": "Niciunul", + "Picture": "Imagine", + "Series": "Serie", + "Slide number": "Număr diapozitiv", + "Slide subtitle": "Subtitrare diapozitiv", + "Slide text": "Text diapozitiv", + "Slide title": "Titlu diapozitiv", + "Table": "Tabel", + "X Axis": "Axă X (XAS)", + "Y Axis": "Axa Y", + "Your text here": "Textul dvs. aici" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Vizitarea site-ul Web", + "textClose": "Închide", + "textContactUs": "Contactați Departamentul de Vânzări", + "textCustomLoader": "Cu părere de rău nu aveți dreptul să modificați programul de încărcare. Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", + "textGuest": "Invitat", + "textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", + "textNo": "Nu", + "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textOpenFile": "Introduceți parola pentru deschidere fișier", + "textPaidFeature": "Funcția contra plată", + "textRemember": "Reține opțiunea mea", + "textYes": "Da", + "titleLicenseExp": "Licența a expirat", + "titleServerVersion": "Editorul a fost actualizat", + "titleUpdateVersion": "Versiunea s-a modificat", + "txtIncorrectPwd": "Parolă incorectă", + "txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", + "warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați administratorul dvs pentru mai multe detalii.", + "warnLicenseExp": "Licența dvs. a expirat. Licența urmează să fie reînnoită iar pagina reîmprospătată.", + "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", + "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită. Funcțiile de editare sunt cu acces limitat. Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de licențiere.", + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." + } + }, + "Error": { + "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", + "criticalErrorExtText": "Faceți clic pe OK pentru a reveni la lista de documente.", + "criticalErrorTitle": "Eroare", + "downloadErrorText": "Descărcare eșuată.", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorBadImageUrl": "URL-ul imaginii incorectă", + "errorConnectToServer": "Salvarea documentului nu este posibilă. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", + "errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", + "errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", + "errorDataRange": "Zonă de date incorectă.", + "errorDefaultMessage": "Codul de eroare: %1", + "errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
    Pentru copierea de rezervă locală utilizați opțiunea de Descărcare.", + "errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", + "errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Contactați administratorul dvs.", + "errorKeyEncrypt": "Descriptor cheie nerecunoscut", + "errorKeyExpire": "Descriptor cheie a expirat", + "errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", + "errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", + "errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", + "errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", + "errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", + "errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", + "errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", + "errorViewerDisconnect": "Conexiunea a fost pierdută. Încă mai puteți vizualiza documentul,
    dar nu și să-l descărcați până când conexiunea se restabilește și pagina se reîmprospătează.", + "notcriticalErrorTitle": "Avertisment", + "openErrorText": "Eroare la deschiderea fișierului", + "saveErrorText": "Eroare la salvarea fișierului", + "scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "splitDividerErrorText": "Numărul de rânduri trebuie împărțit la %1", + "splitMaxColsErrorText": "Numărul maxim de coloane este de %1", + "splitMaxRowsErrorText": "Numărul maxim de rânduri este %1", + "unknownErrorText": "Eroare necunoscută.", + "uploadImageExtMessage": "Format de imagine nerecunoscut.", + "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Încărcarea datelor...", + "applyChangesTitleText": "Încărcare date", + "downloadTextText": "Descărcarea documentului...", + "downloadTitleText": "Descărcarea fișierului", + "loadFontsTextText": "Încărcarea datelor...", + "loadFontsTitleText": "Încărcare date", + "loadFontTextText": "Încărcarea datelor...", + "loadFontTitleText": "Încărcare date", + "loadImagesTextText": "Încărcarea imaginilor...", + "loadImagesTitleText": "Încărcare imagini", + "loadImageTextText": "Încărcarea imaginii...", + "loadImageTitleText": "Încărcare imagine", + "loadingDocumentTextText": "Încărcarea documentului...", + "loadingDocumentTitleText": "Încărcare document", + "loadThemeTextText": "Încărcarea temei...", + "loadThemeTitleText": "Încărcare temă", + "openTextText": "Deschiderea fișierului...", + "openTitleText": "Deschidere fișier", + "printTextText": "Imprimarea documentului...", + "printTitleText": "Imprimarea documentului", + "savePreparingText": "Pregătire pentru salvare", + "savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", + "saveTextText": "Salvarea documentului...", + "saveTitleText": "Salvare document", + "textLoadingDocument": "Încărcare document", + "txtEditingMode": "Setare modul de editare...", + "uploadImageTextText": "Încărcarea imaginii...", + "uploadImageTitleText": "Încărcare imagine", + "waitText": "Vă rugăm să așteptați..." + }, + "Toolbar": { + "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", + "leaveButtonText": "Părăsește această pagina", + "stayButtonText": "Rămâi în pagină" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Avertisment", + "textAddLink": "Adăugare link", + "textAddress": "Adresă", + "textBack": "Înapoi", + "textCancel": "Anulează", + "textColumns": "Coloane", + "textComment": "Comentariu", + "textDefault": "Textul selectat", + "textDisplay": "Afișare", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textExternalLink": "Link extern", + "textFirstSlide": "Primul diapozitiv", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textInsert": "Inserare", + "textInsertImage": "Inserare imagine", + "textLastSlide": "Ultimul diapozitiv", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkTo": "Legătură la", + "textLinkType": "Tip link", + "textNextSlide": "Diapozitivul următor", + "textOther": "Altele", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPreviousSlide": "Diapozitivul anterior", + "textRows": "Rânduri", + "textScreenTip": "Sfaturi ecran", + "textShape": "Forma", + "textSlide": "Diapozitiv", + "textSlideInThisPresentation": "Diapozitivul din această prezentare", + "textSlideNumber": "Număr diapozitiv", + "textTable": "Tabel", + "textTableSize": "Dimensiune tabel", + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Avertisment", + "textActualSize": "Dimensiunea reală", + "textAddCustomColor": "Adăugarea unei culori particularizate", + "textAdditional": "Suplimentar", + "textAdditionalFormatting": "Formatare suplimentară", + "textAddress": "Adresă", + "textAfter": "după", + "textAlign": "Aliniere", + "textAlignBottom": "Aliniere jos", + "textAlignCenter": "Aliniere la centru", + "textAlignLeft": "Aliniere la stânga", + "textAlignMiddle": "Aliniere la mijloc", + "textAlignRight": "Aliniere la dreapta", + "textAlignTop": "Aliniere sus", + "textAllCaps": "Cu majuscule", + "textApplyAll": "Aplicarea la toate diapozitivele ", + "textAuto": "Auto", + "textBack": "Înapoi", + "textBandedColumn": "Coloana alternantă", + "textBandedRow": "Rând alternant", + "textBefore": "Înainte", + "textBlack": "Prin negru", + "textBorder": "Bordura", + "textBottom": "Jos", + "textBottomLeft": "La stânga jos", + "textBottomRight": "La dreapta jos", + "textBringToForeground": "Aducere în prim plan", + "textBullets": "Marcatori", + "textBulletsAndNumbers": "Marcatori și numerotare", + "textCaseSensitive": "Sensibil la litere mari și mici", + "textCellMargins": "Margini de celulă", + "textChart": "Diagramă", + "textClock": "Ceas", + "textClockwise": "În sensul acelor de ceasornic", + "textColor": "Culoare", + "textCounterclockwise": "In sens opus acelor de ceasornic", + "textCover": "Acoperire", + "textCustomColor": "Culoare particularizată", + "textDefault": "Textul selectat", + "textDelay": "Amânare", + "textDeleteSlide": "Ștergere diapozitiv", + "textDisplay": "Afișare", + "textDistanceFromText": "Distanță de la text", + "textDistributeHorizontally": "Distribuire pe orizontală", + "textDistributeVertically": "Distribuire pe verticală", + "textDone": "Gata", + "textDoubleStrikethrough": "Tăiere cu două linii", + "textDuplicateSlide": "Dublare diapozitiv", + "textDuration": "Durată", + "textEditLink": "Editare link", + "textEffect": "Efect", + "textEffects": "Efecte", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textExternalLink": "Link extern", + "textFade": "Estompare", + "textFill": "Umplere", + "textFinalMessage": "Previzualizarea s-a terminat. Atingeți pentru ieșiere.", + "textFind": "Găsire", + "textFindAndReplace": "Găsire și înlocuire", + "textFirstColumn": "Prima coloană", + "textFirstSlide": "Primul diapozitiv", + "textFontColor": "Culoare font", + "textFontColors": "Culorile font", + "textFonts": "Fonturi", + "textFromLibrary": "Imagine dintr-o bibliotecă ", + "textFromURL": "Imaginea prin URL", + "textHeaderRow": "Rândul de antet", + "textHighlight": "Evidențierea rezultatelor", + "textHighlightColor": "Culoare de evidențiere", + "textHorizontalIn": "Orizontal în interior", + "textHorizontalOut": "Orizontal în exterior", + "textHyperlink": "Hyperlink", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textLastColumn": "Ultima coloană", + "textLastSlide": "Ultimul diapozitiv", + "textLayout": "Aspect", + "textLeft": "Stânga", + "textLetterSpacing": "Spațierea dintre caractere", + "textLineSpacing": "Interlinie", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkTo": "Legătură la", + "textLinkType": "Tip link", + "textMoveBackward": "Mutare în ultimul plan", + "textMoveForward": "Mutare înainte", + "textNextSlide": "Diapozitivul următor", + "textNone": "Niciunul", + "textNoStyles": "Niciun stil pentru acest tip de diagramă.", + "textNoTextFound": "Textul nu a fost găsit", + "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "textNumbers": "Numere", + "textOpacity": "Transparență", + "textOptions": "Opțiuni", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPreviousSlide": "Diapozitivul anterior", + "textPt": "pt", + "textPush": "Împingere", + "textRemoveChart": "Ștergere diagrama", + "textRemoveImage": "Ștergere imagine", + "textRemoveLink": "Ștergere link", + "textRemoveShape": "Stergere forma", + "textRemoveTable": "Ștergere tabel", + "textReorder": "Reordonare", + "textReplace": "Înlocuire", + "textReplaceAll": "Înlocuire peste tot", + "textReplaceImage": "Înlocuire imagine", + "textRight": "Dreapta", + "textScreenTip": "Sfaturi ecran", + "textSearch": "Căutare", + "textSec": "s", + "textSelectObjectToEdit": "Selectați obiectul pentru editare", + "textSendToBackground": "Trimitere în plan secundar", + "textShape": "Forma", + "textSize": "Dimensiune", + "textSlide": "Diapozitiv", + "textSlideInThisPresentation": "Diapozitivul din această prezentare", + "textSlideNumber": "Număr diapozitiv", + "textSmallCaps": "Majuscule reduse", + "textSmoothly": "Lin", + "textSplit": "Scindare", + "textStartOnClick": "Pornire la clic", + "textStrikethrough": "Tăiere cu o linie", + "textStyle": "Stil", + "textStyleOptions": "Opțiuni de stil", + "textSubscript": "Indice", + "textSuperscript": "Exponent", + "textTable": "Tabel", + "textText": "Text", + "textTheme": "Temă", + "textTop": "Sus", + "textTopLeft": "Stânga sus", + "textTopRight": "Dreapta sus", + "textTotalRow": "Rând total", + "textTransition": "Tranziții", + "textType": "Tip", + "textUnCover": "Descoperire", + "textVerticalIn": "Vertical în interior", + "textVerticalOut": "Vertical în exterior", + "textWedge": "Pană", + "textWipe": "Ștergere", + "textZoom": "Zoom", + "textZoomIn": "Mărire", + "textZoomOut": "Micșorare", + "textZoomRotate": "Zoom și rotire" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Ecran lat (16:9)", + "textAbout": "Despre", + "textAddress": "adresă:", + "textApplication": "Aplicația", + "textApplicationSettings": "Setări Aplicație", + "textAuthor": "Autor", + "textBack": "Înapoi", + "textCaseSensitive": "Sensibil la litere mari și mici", + "textCentimeter": "Centimetru", + "textCollaboration": "Colaborare", + "textColorSchemes": "Scheme de culori", + "textComment": "Comentariu", + "textCreated": "A fost creat la", + "textDisableAll": "Se dezactivează toate", + "textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzileâ cu notificare", + "textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile fără notificare", + "textDone": "Gata", + "textDownload": "Descărcare", + "textDownloadAs": "Descărcare ca...", + "textEmail": "e-mail:", + "textEnableAll": "Se activează toate", + "textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile cu notificare ", + "textFind": "Găsire", + "textFindAndReplace": "Găsire și înlocuire", + "textFindAndReplaceAll": "Găsire și înlocuire totală", + "textHelp": "Ajutor", + "textHighlight": "Evidențierea rezultatelor", + "textInch": "Inch", + "textLastModified": "Data ultimei modificări", + "textLastModifiedBy": "Modificat ultima dată de către", + "textLoading": "Se încarcă...", + "textLocation": "Locația", + "textMacrosSettings": "Setări macrocomandă", + "textNoTextFound": "Textul nu a fost găsit", + "textOwner": "Proprietar", + "textPoint": "Punct", + "textPoweredBy": "Dezvoltat de", + "textPresentationInfo": "Informații despre prezentarea", + "textPresentationSettings": "Setări prezentare", + "textPresentationTitle": "Titlu prezentare", + "textPrint": "Imprimare", + "textReplace": "Înlocuire", + "textReplaceAll": "Înlocuire peste tot", + "textSearch": "Căutare", + "textSettings": "Setări", + "textShowNotification": "Afișare notificări", + "textSlideSize": "Dimensiune diapozitiv", + "textSpellcheck": "Verificarea ortografică", + "textSubject": "Subiect", + "textTel": "tel:", + "textTitle": "Titlu", + "textUnitOfMeasurement": "Unitate de măsură ", + "textUploaded": "S-a încărcat", + "textVersion": "Versiune", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metrou", + "txtScheme12": "Modul", + "txtScheme13": "Opulent", + "txtScheme14": "Foișor", + "txtScheme15": "Origine", + "txtScheme16": "Hârtie", + "txtScheme17": "Solstițiu", + "txtScheme18": "Tehnic", + "txtScheme19": "Turist", + "txtScheme2": "Tonuri de gri", + "txtScheme20": "Urban", + "txtScheme21": "Vervă", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concurență", + "txtScheme7": "Echilibru", + "txtScheme8": "Flux", + "txtScheme9": "Forjă" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/ru.json b/apps/presentationeditor/mobile/locale/ru.json index 58a3e3732..744bb2ceb 100644 --- a/apps/presentationeditor/mobile/locale/ru.json +++ b/apps/presentationeditor/mobile/locale/ru.json @@ -71,6 +71,8 @@ "notcriticalErrorTitle": "Внимание", "SDK": { "Chart": "Диаграмма", + "Click to add first slide": "Нажмите, чтобы добавить первый слайд", + "Click to add notes": "Нажмите, чтобы добавить заметки", "ClipArt": "Картинка", "Date and time": "Дата и время", "Diagram": "SmartArt", @@ -78,7 +80,9 @@ "Footer": "Нижний колонтитул", "Header": "Верхний колонтитул", "Image": "Рисунок", + "Loading": "Загрузка", "Media": "Клип мультимедиа", + "None": "Нет", "Picture": "Рисунок", "Series": "Ряд", "Slide number": "Номер слайда", @@ -258,6 +262,7 @@ "textBottomLeft": "Снизу слева", "textBottomRight": "Снизу справа", "textBringToForeground": "Перенести на передний план", + "textBullets": "Маркеры", "textBulletsAndNumbers": "Маркеры и нумерация", "textCaseSensitive": "С учетом регистра", "textCellMargins": "Поля ячейки", @@ -321,7 +326,8 @@ "textNoStyles": "Для этого типа диаграммы нет стилей.", "textNoTextFound": "Текст не найден", "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", - "textOpacity": "Прозрачность", + "textNumbers": "Нумерация", + "textOpacity": "Непрозрачность", "textOptions": "Параметры", "textPictureFromLibrary": "Рисунок из библиотеки", "textPictureFromURL": "Рисунок по URL", @@ -431,7 +437,29 @@ "textTitle": "Название", "textUnitOfMeasurement": "Единица измерения", "textUploaded": "Загружена", - "textVersion": "Версия" + "textVersion": "Версия", + "txtScheme1": "Стандартная", + "txtScheme10": "Обычная", + "txtScheme11": "Метро", + "txtScheme12": "Модульная", + "txtScheme13": "Изящная", + "txtScheme14": "Эркер", + "txtScheme15": "Начальная", + "txtScheme16": "Бумажная", + "txtScheme17": "Солнцестояние", + "txtScheme18": "Техническая", + "txtScheme19": "Трек", + "txtScheme2": "Оттенки серого", + "txtScheme20": "Городская", + "txtScheme21": "Яркая", + "txtScheme22": "Новая офисная", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Официальная", + "txtScheme6": "Открытая", + "txtScheme7": "Справедливость", + "txtScheme8": "Поток", + "txtScheme9": "Литейная" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/sk.json b/apps/presentationeditor/mobile/locale/sk.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/sk.json +++ b/apps/presentationeditor/mobile/locale/sk.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/sl.json b/apps/presentationeditor/mobile/locale/sl.json index 61f3898a9..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/sl.json +++ b/apps/presentationeditor/mobile/locale/sl.json @@ -1,563 +1,465 @@ { - "Common.Controllers.Collaboration.textAddReply": "Dodaj odgovor", - "Common.Controllers.Collaboration.textCancel": "Zapri", - "Common.Controllers.Collaboration.textDeleteComment": "Izbriši komentar", - "Common.Controllers.Collaboration.textDeleteReply": "Izbriši odgovor", - "Common.Controllers.Collaboration.textDone": "Končano", - "Common.Controllers.Collaboration.textEdit": "Uredi", - "Common.Controllers.Collaboration.textEditUser": "Uporabniki, ki urejajo datoteko:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Ste prepričani da želite izbrisati ta komentar?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Želite res izbrisati ta odgovor?", - "Common.Controllers.Collaboration.textReopen": "Ponovno odpri", - "Common.Controllers.Collaboration.textResolve": "Razreši", - "Common.Controllers.Collaboration.textYes": "Da", - "Common.UI.ThemeColorPalette.textCustomColors": "Barve po meri", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardne barve", - "Common.UI.ThemeColorPalette.textThemeColors": "Barve teme", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Dodaj odgovor", - "Common.Views.Collaboration.textBack": "Nazaj", - "Common.Views.Collaboration.textCancel": "Zapri", - "Common.Views.Collaboration.textCollaboration": "Skupinsko delo", - "Common.Views.Collaboration.textDone": "Končano", - "Common.Views.Collaboration.textEditReply": "Uredi odgovor", - "Common.Views.Collaboration.textEditUsers": "Uporabniki", - "Common.Views.Collaboration.textEditСomment": "Uredi komentar", - "Common.Views.Collaboration.textNoComments": "Prezentacija ne vsebuje komentarjev", - "Common.Views.Collaboration.textСomments": "Komentarji", - "PE.Controllers.AddContainer.textImage": "Slika", - "PE.Controllers.AddContainer.textLink": "Povezava", - "PE.Controllers.AddContainer.textOther": "Drugo", - "PE.Controllers.AddContainer.textShape": "Oblika", - "PE.Controllers.AddContainer.textSlide": "Diapozitiv", - "PE.Controllers.AddContainer.textTable": "Tabela", - "PE.Controllers.AddImage.textEmptyImgUrl": "Določiti morate URL slike.", - "PE.Controllers.AddImage.txtNotUrl": "To polje URL naslova naj bo v obliki „http://www.example.com“", - "PE.Controllers.AddLink.textDefault": "Izbrano besedilo", - "PE.Controllers.AddLink.textExternalLink": "Zunanja povezava", - "PE.Controllers.AddLink.textFirst": "Prvi diapozitiv", - "PE.Controllers.AddLink.textInternalLink": "Diapozitiv v tej predstavitvi", - "PE.Controllers.AddLink.textLast": "Zadnji diapozitiv", - "PE.Controllers.AddLink.textNext": "Naslednji diapozitiv", - "PE.Controllers.AddLink.textPrev": "Prejšnji diapozitiv", - "PE.Controllers.AddLink.textSlide": "Diapozitiv", - "PE.Controllers.AddLink.txtNotUrl": "To polje URL naslova naj bo v obliki „http://www.example.com“", - "PE.Controllers.AddOther.textCancel": "Zapri", - "PE.Controllers.AddOther.textContinue": "Nadaljuj", - "PE.Controllers.AddOther.textDelete": "Izbriši", - "PE.Controllers.AddOther.textDeleteDraft": "Ali res želite izbrisati osnutek?", - "PE.Controllers.AddTable.textCancel": "Zapri", - "PE.Controllers.AddTable.textColumns": "Stolpci", - "PE.Controllers.AddTable.textRows": "Vrstice", - "PE.Controllers.AddTable.textTableSize": "Velikost tabele", - "PE.Controllers.DocumentHolder.errorCopyCutPaste": "Dejanja kopiranja, rezanja in lepljenja s kontekstnim menijem se izvajajo samo v trenutni datoteki.", - "PE.Controllers.DocumentHolder.menuAddComment": "Dodaj komentar", - "PE.Controllers.DocumentHolder.menuAddLink": "Dodaj povezavo", - "PE.Controllers.DocumentHolder.menuCopy": "Kopiraj", - "PE.Controllers.DocumentHolder.menuCut": "Izreži", - "PE.Controllers.DocumentHolder.menuDelete": "Izbriši", - "PE.Controllers.DocumentHolder.menuEdit": "Uredi", - "PE.Controllers.DocumentHolder.menuMore": "Več", - "PE.Controllers.DocumentHolder.menuOpenLink": "Odpri povezavo", - "PE.Controllers.DocumentHolder.menuPaste": "Prilepi", - "PE.Controllers.DocumentHolder.menuViewComment": "Ogled komentarja", - "PE.Controllers.DocumentHolder.sheetCancel": "Zapri", - "PE.Controllers.DocumentHolder.textCopyCutPasteActions": "Kopiraj, izreži in prilepi možnosti", - "PE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne pokaži znova", - "PE.Controllers.DocumentPreview.txtFinalMessage": "Konec predogleda diapozitiva. Pritisnite za izhod.", - "PE.Controllers.EditContainer.textChart": "Graf", - "PE.Controllers.EditContainer.textHyperlink": "Hiperpovezava", - "PE.Controllers.EditContainer.textImage": "Slika", - "PE.Controllers.EditContainer.textSettings": "Nastavitve", - "PE.Controllers.EditContainer.textShape": "Oblika", - "PE.Controllers.EditContainer.textSlide": "Diapozitiv", - "PE.Controllers.EditContainer.textTable": "Tabela", - "PE.Controllers.EditContainer.textText": "Besedilo", - "PE.Controllers.EditImage.textEmptyImgUrl": "Določiti morate URL slike.", - "PE.Controllers.EditImage.txtNotUrl": "To polje URL naslova naj bo v obliki „http://www.example.com“", - "PE.Controllers.EditLink.textDefault": "Izbrano besedilo", - "PE.Controllers.EditLink.textExternalLink": "Zunanja povezava", - "PE.Controllers.EditLink.textFirst": "Prvi diapozitiv", - "PE.Controllers.EditLink.textInternalLink": "Diapozitiv v tej predstavitvi", - "PE.Controllers.EditLink.textLast": "Zadnji diapozitiv", - "PE.Controllers.EditLink.textNext": "Naslednji diapozitiv", - "PE.Controllers.EditLink.textPrev": "Prejšnji diapozitiv", - "PE.Controllers.EditLink.textSlide": "Diapozitiv", - "PE.Controllers.EditLink.txtNotUrl": "To polje URL naslova naj bo v obliki „http://www.example.com“", - "PE.Controllers.EditSlide.textSec": "S", - "PE.Controllers.EditText.textAuto": "Samodejno", - "PE.Controllers.EditText.textFonts": "Fonti", - "PE.Controllers.EditText.textPt": "pt", - "PE.Controllers.Main.advDRMEnterPassword": "Vnesite geslo:", - "PE.Controllers.Main.advDRMOptions": "Zaščitena datoteka", - "PE.Controllers.Main.advDRMPassword": "Geslo", - "PE.Controllers.Main.applyChangesTextText": "Nalaganje podatkov ...", - "PE.Controllers.Main.applyChangesTitleText": "Nalaganje podatkov", - "PE.Controllers.Main.closeButtonText": "Zapri datoteko", - "PE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.", - "PE.Controllers.Main.criticalErrorExtText": "Pritisnite »V redu«, da se vrnete na seznam dokumentov.", - "PE.Controllers.Main.criticalErrorTitle": "Napaka", - "PE.Controllers.Main.downloadErrorText": "Prenos ni uspel.", - "PE.Controllers.Main.downloadTextText": "Prenašanje predstavitve ...", - "PE.Controllers.Main.downloadTitleText": "Prenašanje predstavitve", - "PE.Controllers.Main.errorAccessDeny": "Poskušate izvesti dejanje, za katerega nimate pravic.
    Obrnite se na skrbnika strežnika dokumentov.", - "PE.Controllers.Main.errorBadImageUrl": "URL slike je napačen", - "PE.Controllers.Main.errorCoAuthoringDisconnect": "Povezava s strežnikom je izgubljena. Ne morete več urejati.", - "PE.Controllers.Main.errorConnectToServer": "Dokumenta ni bilo mogoče shraniti. Preverite nastavitve povezave ali se obrnite na skrbnika.
    Ko kliknete gumb »V redu«, boste pozvani, da prenesete dokument.", - "PE.Controllers.Main.errorDatabaseConnection": "Zunanje težave.
    Težave s povezavo s podatkovno bazo. Prosimo kontaktirajte podporo.", - "PE.Controllers.Main.errorDataEncrypted": "Prejete so šifrirane spremembe, ki jih ni mogoče razvozlati.", - "PE.Controllers.Main.errorDataRange": "Nepravilen obseg podatkov.", - "PE.Controllers.Main.errorDefaultMessage": "Koda napake: %1", - "PE.Controllers.Main.errorEditingDownloadas": "Med delom z dokumentom je prišlo do napake.
    Z možnostjo »Prenos« shranite varnostno kopijo datoteke na trdi disk računalnika.", - "PE.Controllers.Main.errorFilePassProtect": "Datoteka je zaščitena z geslom in je ni mogoče odpreti.", - "PE.Controllers.Main.errorFileSizeExceed": "Velikost datoteke presega omejitev, nastavljeno za vaš strežnik.
    Za podrobnosti se obrnite na skrbnika.", - "PE.Controllers.Main.errorKeyEncrypt": "Neznan ključni deskriptor", - "PE.Controllers.Main.errorKeyExpire": "Ključni deskriptor je potekel", - "PE.Controllers.Main.errorOpensource": "Z brezplačno različico Community lahko dokumente odprete samo za ogled. Za dostop do mobilnih spletnih urejevalnikov je potrebna komercialna licenca.", - "PE.Controllers.Main.errorProcessSaveResult": "Shranjevanje je bilo neuspešno.", - "PE.Controllers.Main.errorServerVersion": "Različica urejevalnika je posodobljena. Stran bo ponovno naložena, da bo spremenila spremembe.", - "PE.Controllers.Main.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
    otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", - "PE.Controllers.Main.errorUpdateVersion": "Različica datoteke je bila spremenjena. Stran bo osvežena.", - "PE.Controllers.Main.errorUpdateVersionOnDisconnect": "Povezava s spletom je bila obnovljena in spremenjena je različica datoteke.
    Preden nadaljujete z delom, morate datoteko prenesti ali kopirati njeno vsebino, da se prepričate, da se nič ne izgubi, in nato znova naložite to stran.", - "PE.Controllers.Main.errorUserDrop": "Do datoteke v tem trenutku ni možno dostopati.", - "PE.Controllers.Main.errorUsersExceed": "Število uporabnikov je bilo preseženo", - "PE.Controllers.Main.errorViewerDisconnect": "Povezava je izgubljena. Dokument si lahko še vedno ogledate,
    vendar ga ne boste mogli prenesti, dokler se povezava ne vzpostavi in ​​stran ponovno naloži.", - "PE.Controllers.Main.leavePageText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", - "PE.Controllers.Main.loadFontsTextText": "Nalaganje podatkov ...", - "PE.Controllers.Main.loadFontsTitleText": "Nalaganje podatkov", - "PE.Controllers.Main.loadFontTextText": "Nalaganje podatkov ...", - "PE.Controllers.Main.loadFontTitleText": "Nalaganje podatkov", - "PE.Controllers.Main.loadImagesTextText": "Nalaganje slik ...", - "PE.Controllers.Main.loadImagesTitleText": "Nalaganje slik", - "PE.Controllers.Main.loadImageTextText": "Nalaganje slike ...", - "PE.Controllers.Main.loadImageTitleText": "Nalaganje slike", - "PE.Controllers.Main.loadingDocumentTextText": "Nalaganje prezentacije ...", - "PE.Controllers.Main.loadingDocumentTitleText": "Nalaganje prezentacije", - "PE.Controllers.Main.loadThemeTextText": "Nalaganje teme ...", - "PE.Controllers.Main.loadThemeTitleText": "Nalaganje teme", - "PE.Controllers.Main.notcriticalErrorTitle": "Opozorilo", - "PE.Controllers.Main.openErrorText": "Prišlo je do težave med odpiranjem datoteke.", - "PE.Controllers.Main.openTextText": "Odpiranje dokumenta ...", - "PE.Controllers.Main.openTitleText": "Odpiranje dokumenta", - "PE.Controllers.Main.printTextText": "Tiskanje dokumenta ...", - "PE.Controllers.Main.printTitleText": "Tiskanje dokumenta", - "PE.Controllers.Main.reloadButtonText": "Osveži stran", - "PE.Controllers.Main.requestEditFailedMessageText": "Nekdo v tem trenutku ureja ta dokument. Prosim ponovno poskusite kasneje.", - "PE.Controllers.Main.requestEditFailedTitleText": "Dostop zavrnjen", - "PE.Controllers.Main.saveErrorText": "Prišlo je do težave med shranjevanjem datoteke.", - "PE.Controllers.Main.savePreparingText": "Priprava na shranjevanje", - "PE.Controllers.Main.savePreparingTitle": "Priprava na shranjevanje. Prosim počakajte ...", - "PE.Controllers.Main.saveTextText": "Shranjevanje dokumenta ...", - "PE.Controllers.Main.saveTitleText": "Shranjevanje dokumenta", - "PE.Controllers.Main.scriptLoadError": "Povezava je počasna, nekatere komponente niso pravilno naložene. Prosimo osvežite stran.", - "PE.Controllers.Main.splitDividerErrorText": "Število vrstic mora biti deljivo s številom %1", - "PE.Controllers.Main.splitMaxColsErrorText": "Število stolpcev mora biti manjše od %1", - "PE.Controllers.Main.splitMaxRowsErrorText": "Število vrstic mora biti manjše od %1", - "PE.Controllers.Main.textAnonymous": "Anonimno", - "PE.Controllers.Main.textBack": "Nazaj", - "PE.Controllers.Main.textBuyNow": "Obišči spletno mesto", - "PE.Controllers.Main.textCancel": "Zapri", - "PE.Controllers.Main.textClose": "Zapri", - "PE.Controllers.Main.textCloseTip": "Kliknite za zaprtje nasveta.", - "PE.Controllers.Main.textContactUs": "Kontaktirajte oddelek za prodajo", - "PE.Controllers.Main.textCustomLoader": "Upoštevajte, da v skladu s pogoji licence niste upravičeni do menjave Loader-ja.
    Za ponudbo se obrnite na naš prodajni oddelek.", - "PE.Controllers.Main.textDone": "Končano", - "PE.Controllers.Main.textHasMacros": "Ta datoteka vsebuje avtomatske makroje.
    Jih želite res zagnati.", - "PE.Controllers.Main.textLoadingDocument": "Nalaganje prezentacije", - "PE.Controllers.Main.textNo": "Ne", - "PE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave", - "PE.Controllers.Main.textOK": "V redu", - "PE.Controllers.Main.textPaidFeature": "Plačljive funkcije", - "PE.Controllers.Main.textPassword": "Geslo", - "PE.Controllers.Main.textPreloader": "Nalaganje ...", - "PE.Controllers.Main.textRemember": "Zapomni si mojo izbiro", - "PE.Controllers.Main.textShape": "Oblika", - "PE.Controllers.Main.textTryUndoRedo": "Funkcije Undo / Redo so onemogočene za način hitrega urejanja.", - "PE.Controllers.Main.textUsername": "Uporabniško ime", - "PE.Controllers.Main.textYes": "Da", - "PE.Controllers.Main.titleLicenseExp": "Licenca je potekla", - "PE.Controllers.Main.titleServerVersion": "Urednik je bil posodobljen", - "PE.Controllers.Main.txtArt": "Vaše besedilo pride tukaj", - "PE.Controllers.Main.txtBasicShapes": "Osnovne oblike", - "PE.Controllers.Main.txtButtons": "Gumbi", - "PE.Controllers.Main.txtCallouts": "Oblački", - "PE.Controllers.Main.txtCharts": "Grafi", - "PE.Controllers.Main.txtClipArt": "Clip Art", - "PE.Controllers.Main.txtDateTime": "Datum in čas", - "PE.Controllers.Main.txtDiagram": "SmartArt", - "PE.Controllers.Main.txtDiagramTitle": "Naslov grafa", - "PE.Controllers.Main.txtEditingMode": "Nastavi način urejanja ...", - "PE.Controllers.Main.txtFiguredArrows": "Figurirane puščice", - "PE.Controllers.Main.txtFooter": "Noga", - "PE.Controllers.Main.txtHeader": "Glava", - "PE.Controllers.Main.txtImage": "Slika", - "PE.Controllers.Main.txtLines": "Vrstice", - "PE.Controllers.Main.txtMath": "Matematika", - "PE.Controllers.Main.txtMedia": "Media", - "PE.Controllers.Main.txtNeedSynchronize": "Imate posodobitve", - "PE.Controllers.Main.txtPicture": "Slika", - "PE.Controllers.Main.txtProtected": "Ko vnesete geslo in odprete datoteko, bo trenutno geslo datoteke ponastavljeno", - "PE.Controllers.Main.txtRectangles": "Pravokotniki", - "PE.Controllers.Main.txtSeries": "Niz", - "PE.Controllers.Main.txtSldLtTBlank": "Prazen", - "PE.Controllers.Main.txtSldLtTChart": "Graf", - "PE.Controllers.Main.txtSldLtTChartAndTx": "Graf in besedilo", - "PE.Controllers.Main.txtSldLtTClipArtAndTx": "Izrezki in besedilo", - "PE.Controllers.Main.txtSldLtTClipArtAndVertTx": "Izrezki in vertikalno besedilo", - "PE.Controllers.Main.txtSldLtTCust": "Po meri", - "PE.Controllers.Main.txtSldLtTDgm": "Diagram", - "PE.Controllers.Main.txtSldLtTFourObj": "Štirje objekti", - "PE.Controllers.Main.txtSldLtTMediaAndTx": "Mediji in besedilo", - "PE.Controllers.Main.txtSldLtTObj": "Naslov in objekt", - "PE.Controllers.Main.txtSldLtTObjAndTwoObj": "Objekt in dva objekta", - "PE.Controllers.Main.txtSldLtTObjAndTx": "Objekt in besedilo", - "PE.Controllers.Main.txtSldLtTObjOnly": "Objekt", - "PE.Controllers.Main.txtSldLtTObjOverTx": "Objekt nad besedilom", - "PE.Controllers.Main.txtSldLtTObjTx": "Naslov, objekt in napis", - "PE.Controllers.Main.txtSldLtTPicTx": "Slika in napis", - "PE.Controllers.Main.txtSldLtTSecHead": "Glava odseka", - "PE.Controllers.Main.txtSldLtTTbl": "Tabela", - "PE.Controllers.Main.txtSldLtTTitle": "Naslov", - "PE.Controllers.Main.txtSldLtTTitleOnly": "Le naslov", - "PE.Controllers.Main.txtSldLtTTwoColTx": "Dvo stolpično besedilo", - "PE.Controllers.Main.txtSldLtTTwoObj": "Dva objekta", - "PE.Controllers.Main.txtSldLtTTwoObjAndObj": "Dva objekta in objekt", - "PE.Controllers.Main.txtSldLtTTwoObjAndTx": "Dva objekta in besedilo", - "PE.Controllers.Main.txtSldLtTTwoObjOverTx": "Dva objekta nad besedilom", - "PE.Controllers.Main.txtSldLtTTwoTxTwoObj": "Dve besedili in dva objekta", - "PE.Controllers.Main.txtSldLtTTx": "Besedilo", - "PE.Controllers.Main.txtSldLtTTxAndChart": "Besedilo in graf", - "PE.Controllers.Main.txtSldLtTTxAndClipArt": "Besedilo in izrezki", - "PE.Controllers.Main.txtSldLtTTxAndMedia": "Besedilo in mediji", - "PE.Controllers.Main.txtSldLtTTxAndObj": "Besedilo in objekt", - "PE.Controllers.Main.txtSldLtTTxAndTwoObj": "Besedilo in dva objekta", - "PE.Controllers.Main.txtSldLtTTxOverObj": "Besedilo nad objektom", - "PE.Controllers.Main.txtSldLtTVertTitleAndTx": "Vertikalen naslov in besedilo", - "PE.Controllers.Main.txtSldLtTVertTitleAndTxOverChart": "Vertikalen naslov in besedilo nad tabelo", - "PE.Controllers.Main.txtSldLtTVertTx": "Vertikalno besedilo", - "PE.Controllers.Main.txtSlideNumber": "Številka diapozitiva", - "PE.Controllers.Main.txtSlideSubtitle": "Podnaslov diapozitiva", - "PE.Controllers.Main.txtSlideText": "Drsno besedilo", - "PE.Controllers.Main.txtSlideTitle": "Naslov diapozitiva", - "PE.Controllers.Main.txtStarsRibbons": "Zvezde & Trakovi", - "PE.Controllers.Main.txtXAxis": "X os", - "PE.Controllers.Main.txtYAxis": "Y os", - "PE.Controllers.Main.unknownErrorText": "Neznana napaka.", - "PE.Controllers.Main.unsupportedBrowserErrorText": "Vaš brskalnik ni podprt.", - "PE.Controllers.Main.uploadImageExtMessage": "Neznan format slike.", - "PE.Controllers.Main.uploadImageFileCountMessage": "Ni naloženih slik.", - "PE.Controllers.Main.uploadImageSizeMessage": "Maksimalni limit velikosti slike je presežen.", - "PE.Controllers.Main.uploadImageTextText": "Nalaganje slike ...", - "PE.Controllers.Main.uploadImageTitleText": "Nalaganje slike", - "PE.Controllers.Main.waitText": "Prosimo počakajte ...", - "PE.Controllers.Main.warnLicenseExceeded": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
    Če želite izvedeti več, se obrnite na skrbnika.", - "PE.Controllers.Main.warnLicenseExp": "Vaša licnenca je potekla.
    Prosimo nadgradite licenco in osvežite stran.", - "PE.Controllers.Main.warnLicenseUsersExceeded": "Dosegli ste omejitev uporabnikov za %1 urednike. Če želite izvedeti več, se obrnite na skrbnika.", - "PE.Controllers.Main.warnNoLicense": "Dosegli ste omejitev za istočasno povezavo z urejevalniki % 1. Ta dokument bo na voljo samo za ogled.
    Za osebne pogoje nadgradnje se obrnite na% 1 prodajno ekipo.", - "PE.Controllers.Main.warnNoLicenseUsers": "Dosegli ste omejitev uporabnika za %1 urednike. Za osebne pogoje nadgradnje se obrnite na %1 prodajno ekipo.", - "PE.Controllers.Main.warnProcessRightsChange": "Pravica, da urejate datoteko je bila zavrnjena.", - "PE.Controllers.Search.textNoTextFound": "Besedila ni mogoče najti", - "PE.Controllers.Search.textReplaceAll": "Zamenjaj vse", - "PE.Controllers.Settings.notcriticalErrorTitle": "Opozorilo", - "PE.Controllers.Settings.txtLoading": "Nalaganje ...", - "PE.Controllers.Toolbar.dlgLeaveMsgText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", - "PE.Controllers.Toolbar.dlgLeaveTitleText": "Zapuščate aplikacijo", - "PE.Controllers.Toolbar.leaveButtonText": "Zapusti to stran", - "PE.Controllers.Toolbar.stayButtonText": "Ostani na tej strani", - "PE.Views.AddImage.textAddress": "Naslov", - "PE.Views.AddImage.textBack": "Nazaj", - "PE.Views.AddImage.textFromLibrary": "Slika iz knjižnice", - "PE.Views.AddImage.textFromURL": "Slika iz URL", - "PE.Views.AddImage.textImageURL": "URL naslov slike", - "PE.Views.AddImage.textInsertImage": "Vstavi sliko", - "PE.Views.AddImage.textLinkSettings": "Nastavitve povezave", - "PE.Views.AddLink.textBack": "Nazaj", - "PE.Views.AddLink.textDisplay": "Prikaži", - "PE.Views.AddLink.textExternalLink": "Zunanja povezava", - "PE.Views.AddLink.textFirst": "Prvi diapozitiv", - "PE.Views.AddLink.textInsert": "Vstavi", - "PE.Views.AddLink.textInternalLink": "Diapozitiv v tej predstavitvi", - "PE.Views.AddLink.textLast": "Zadnji diapozitiv", - "PE.Views.AddLink.textLink": "Povezava", - "PE.Views.AddLink.textLinkSlide": "Povezava k", - "PE.Views.AddLink.textLinkType": "Vrsta povezave", - "PE.Views.AddLink.textNext": "Naslednji diapozitiv", - "PE.Views.AddLink.textNumber": "Številka diapozitiva", - "PE.Views.AddLink.textPrev": "Prejšnji diapozitiv", - "PE.Views.AddLink.textTip": "Nasvet", - "PE.Views.AddOther.textAddComment": "Dodaj komentar", - "PE.Views.AddOther.textBack": "Nazaj", - "PE.Views.AddOther.textComment": "Komentar", - "PE.Views.AddOther.textDisplay": "Prikaži", - "PE.Views.AddOther.textDone": "Končano", - "PE.Views.AddOther.textExternalLink": "Zunanja povezava", - "PE.Views.AddOther.textFirst": "Prvi diapozitiv", - "PE.Views.AddOther.textInsert": "Vstavi", - "PE.Views.AddOther.textInternalLink": "Diapozitiv v tej predstavitvi", - "PE.Views.AddOther.textLast": "Zadnji diapozitiv", - "PE.Views.AddOther.textLink": "Povezava", - "PE.Views.AddOther.textLinkSlide": "Povezava do", - "PE.Views.AddOther.textLinkType": "Vrsta povezave", - "PE.Views.AddOther.textNext": "Naslednji diapozitiv", - "PE.Views.AddOther.textNumber": "Številka diapozitiva", - "PE.Views.AddOther.textPrev": "Prejšnji diapozitiv", - "PE.Views.AddOther.textTable": "Tabela", - "PE.Views.AddOther.textTip": "Nasvet", - "PE.Views.EditChart.textAddCustomColor": "Dodaj barvo po meri", - "PE.Views.EditChart.textAlign": "Poravnava", - "PE.Views.EditChart.textAlignBottom": "Poravnaj dno", - "PE.Views.EditChart.textAlignCenter": "Poravnava na sredino", - "PE.Views.EditChart.textAlignLeft": "Poravnaj levo", - "PE.Views.EditChart.textAlignMiddle": "Poravnaj na sredino", - "PE.Views.EditChart.textAlignRight": "Poravnaj desno", - "PE.Views.EditChart.textAlignTop": "Poravnaj na vrh", - "PE.Views.EditChart.textBack": "Nazaj", - "PE.Views.EditChart.textBackward": "Premakni nazaj", - "PE.Views.EditChart.textBorder": "Obrobe", - "PE.Views.EditChart.textColor": "Barva", - "PE.Views.EditChart.textCustomColor": "Barva po meri", - "PE.Views.EditChart.textFill": "Zapolni", - "PE.Views.EditChart.textForward": "Premakni naprej", - "PE.Views.EditChart.textRemoveChart": "Odstrani graf", - "PE.Views.EditChart.textReorder": "Preuredi", - "PE.Views.EditChart.textSize": "Velikost", - "PE.Views.EditChart.textStyle": "Slog", - "PE.Views.EditChart.textToBackground": "Pošlji v ozadje", - "PE.Views.EditChart.textToForeground": "Premakni v ospredje", - "PE.Views.EditChart.textType": "Tip", - "PE.Views.EditChart.txtDistribHor": "Distributiraj horizontalno", - "PE.Views.EditChart.txtDistribVert": "Distributiraj vertikalno", - "PE.Views.EditImage.textAddress": "Naslov", - "PE.Views.EditImage.textAlign": "Poravnava", - "PE.Views.EditImage.textAlignBottom": "Poravnaj dno", - "PE.Views.EditImage.textAlignCenter": "Poravnava na sredino", - "PE.Views.EditImage.textAlignLeft": "Poravnaj levo", - "PE.Views.EditImage.textAlignMiddle": "Poravnaj na sredino", - "PE.Views.EditImage.textAlignRight": "Poravnaj desno", - "PE.Views.EditImage.textAlignTop": "Poravnaj na vrh", - "PE.Views.EditImage.textBack": "Nazaj", - "PE.Views.EditImage.textBackward": "Premakni nazaj", - "PE.Views.EditImage.textDefault": "Dejanska velikost", - "PE.Views.EditImage.textForward": "Premakni naprej", - "PE.Views.EditImage.textFromLibrary": "Slika iz knjižnice", - "PE.Views.EditImage.textFromURL": "Slika iz URL", - "PE.Views.EditImage.textImageURL": "URL naslov slike", - "PE.Views.EditImage.textLinkSettings": "Nastavitve povezave", - "PE.Views.EditImage.textRemove": "Odstrani sliko", - "PE.Views.EditImage.textReorder": "Preuredi", - "PE.Views.EditImage.textReplace": "Zamenjaj", - "PE.Views.EditImage.textReplaceImg": "Zamenjaj sliko", - "PE.Views.EditImage.textToBackground": "Pošlji v ozadje", - "PE.Views.EditImage.textToForeground": "Premakni v ospredje", - "PE.Views.EditImage.txtDistribHor": "Distributiraj horizontalno", - "PE.Views.EditImage.txtDistribVert": "Distributiraj vertikalno", - "PE.Views.EditLink.textBack": "Nazaj", - "PE.Views.EditLink.textDisplay": "Prikaži", - "PE.Views.EditLink.textEdit": "Uredi povezavo", - "PE.Views.EditLink.textExternalLink": "Zunanja povezava", - "PE.Views.EditLink.textFirst": "Prvi diapozitiv", - "PE.Views.EditLink.textInternalLink": "Diapozitiv v tej predstavitvi", - "PE.Views.EditLink.textLast": "Zadnji diapozitiv", - "PE.Views.EditLink.textLink": "Povezava", - "PE.Views.EditLink.textLinkSlide": "Povezava do", - "PE.Views.EditLink.textLinkType": "Vrsta povezave", - "PE.Views.EditLink.textNext": "Naslednji diapozitiv", - "PE.Views.EditLink.textNumber": "Številka diapozitiva", - "PE.Views.EditLink.textPrev": "Prejšnji diapozitiv", - "PE.Views.EditLink.textRemove": "Odstrani povezavo", - "PE.Views.EditLink.textTip": "Nasvet", - "PE.Views.EditShape.textAddCustomColor": "Dodaj barvo po meri", - "PE.Views.EditShape.textAlign": "Poravnava", - "PE.Views.EditShape.textAlignBottom": "Poravnaj dno", - "PE.Views.EditShape.textAlignCenter": "Poravnava na sredino", - "PE.Views.EditShape.textAlignLeft": "Poravnaj levo", - "PE.Views.EditShape.textAlignMiddle": "Poravnaj na sredino", - "PE.Views.EditShape.textAlignRight": "Poravnaj desno", - "PE.Views.EditShape.textAlignTop": "Poravnaj na vrh", - "PE.Views.EditShape.textBack": "Nazaj", - "PE.Views.EditShape.textBackward": "Premakni nazaj", - "PE.Views.EditShape.textBorder": "Obrobe", - "PE.Views.EditShape.textColor": "Barva", - "PE.Views.EditShape.textCustomColor": "Barva po meri", - "PE.Views.EditShape.textEffects": "Učinki", - "PE.Views.EditShape.textFill": "Zapolni", - "PE.Views.EditShape.textForward": "Premakni naprej", - "PE.Views.EditShape.textOpacity": "Prosojnost", - "PE.Views.EditShape.textRemoveShape": "Odstrani obliko", - "PE.Views.EditShape.textReorder": "Preuredi", - "PE.Views.EditShape.textReplace": "Zamenjaj", - "PE.Views.EditShape.textSize": "Velikost", - "PE.Views.EditShape.textStyle": "Slog", - "PE.Views.EditShape.textToBackground": "Pošlji v ozadje", - "PE.Views.EditShape.textToForeground": "Premakni v ospredje", - "PE.Views.EditShape.txtDistribHor": "Distributiraj horizontalno", - "PE.Views.EditShape.txtDistribVert": "Distributiraj vertikalno", - "PE.Views.EditSlide.textAddCustomColor": "Dodaj barvo po meri", - "PE.Views.EditSlide.textApplyAll": "Uporabi za vse diapozitive", - "PE.Views.EditSlide.textBack": "Nazaj", - "PE.Views.EditSlide.textBlack": "Skozi črno", - "PE.Views.EditSlide.textBottom": "Dno", - "PE.Views.EditSlide.textBottomLeft": "Spodaj levo", - "PE.Views.EditSlide.textBottomRight": "Spodaj desno", - "PE.Views.EditSlide.textClock": "Ura", - "PE.Views.EditSlide.textClockwise": "V smeri urinega kazalca", - "PE.Views.EditSlide.textColor": "Barva", - "PE.Views.EditSlide.textCounterclockwise": "V nasprotni smeri urinega kazalca", - "PE.Views.EditSlide.textCover": "Naslovnica", - "PE.Views.EditSlide.textCustomColor": "Barva po meri", - "PE.Views.EditSlide.textDelay": "Zamik", - "PE.Views.EditSlide.textDuplicateSlide": "Podvoji diapozitiv", - "PE.Views.EditSlide.textDuration": "Trajanje", - "PE.Views.EditSlide.textEffect": "Učinek", - "PE.Views.EditSlide.textFade": "Zbledi", - "PE.Views.EditSlide.textFill": "Zapolni", - "PE.Views.EditSlide.textHorizontalIn": "Horizontalno v", - "PE.Views.EditSlide.textHorizontalOut": "Horizontalno iz", - "PE.Views.EditSlide.textLayout": "Postavitev", - "PE.Views.EditSlide.textLeft": "Levo", - "PE.Views.EditSlide.textNone": "nič", - "PE.Views.EditSlide.textOpacity": "Prosojnost", - "PE.Views.EditSlide.textPush": "Potisni", - "PE.Views.EditSlide.textRemoveSlide": "Izbriši diapozitiv", - "PE.Views.EditSlide.textRight": "Desno", - "PE.Views.EditSlide.textSmoothly": "Gladko", - "PE.Views.EditSlide.textSplit": "Razdeli", - "PE.Views.EditSlide.textStartOnClick": "Začni z klikom", - "PE.Views.EditSlide.textStyle": "Slog", - "PE.Views.EditSlide.textTheme": "Tema", - "PE.Views.EditSlide.textTop": "Vrh", - "PE.Views.EditSlide.textTopLeft": "Zgoraj levo", - "PE.Views.EditSlide.textTopRight": "Zgoraj desno", - "PE.Views.EditSlide.textTransition": "Prehodi", - "PE.Views.EditSlide.textType": "Tip", - "PE.Views.EditSlide.textUnCover": "Razkrij", - "PE.Views.EditSlide.textVerticalIn": "Vertikalen v", - "PE.Views.EditSlide.textVerticalOut": "Vertikalen iz", - "PE.Views.EditSlide.textWedge": "Zagozda", - "PE.Views.EditSlide.textWipe": "Obriši", - "PE.Views.EditSlide.textZoom": "Povečava", - "PE.Views.EditSlide.textZoomIn": "Povečaj", - "PE.Views.EditSlide.textZoomOut": "Pomanjšaj", - "PE.Views.EditSlide.textZoomRotate": "Povečaj in zavrti", - "PE.Views.EditTable.textAddCustomColor": "Dodaj barvo po meri", - "PE.Views.EditTable.textAlign": "Poravnava", - "PE.Views.EditTable.textAlignBottom": "Poravnaj dno", - "PE.Views.EditTable.textAlignCenter": "Poravnava na sredino", - "PE.Views.EditTable.textAlignLeft": "Poravnaj levo", - "PE.Views.EditTable.textAlignMiddle": "Poravnaj na sredino", - "PE.Views.EditTable.textAlignRight": "Poravnaj desno", - "PE.Views.EditTable.textAlignTop": "Poravnaj na vrh", - "PE.Views.EditTable.textBack": "Nazaj", - "PE.Views.EditTable.textBackward": "Premakni nazaj", - "PE.Views.EditTable.textBandedColumn": "Stolpec", - "PE.Views.EditTable.textBandedRow": "Povezana vrstica", - "PE.Views.EditTable.textBorder": "Obrobe", - "PE.Views.EditTable.textCellMargins": "Robovi celice", - "PE.Views.EditTable.textColor": "Barva", - "PE.Views.EditTable.textCustomColor": "Barva po meri", - "PE.Views.EditTable.textFill": "Zapolni", - "PE.Views.EditTable.textFirstColumn": "Prvi stolpec", - "PE.Views.EditTable.textForward": "Premakni naprej", - "PE.Views.EditTable.textHeaderRow": "Vrstica v glavi", - "PE.Views.EditTable.textLastColumn": "Zadnji stolpec", - "PE.Views.EditTable.textOptions": "Možnosti", - "PE.Views.EditTable.textRemoveTable": "Odstrani tabelo", - "PE.Views.EditTable.textReorder": "Preuredi", - "PE.Views.EditTable.textSize": "Velikost", - "PE.Views.EditTable.textStyle": "Slog", - "PE.Views.EditTable.textStyleOptions": "Možnosti oblikovanja", - "PE.Views.EditTable.textTableOptions": "Možnosti tabele", - "PE.Views.EditTable.textToBackground": "Pošlji v ozadje", - "PE.Views.EditTable.textToForeground": "Premakni v ospredje", - "PE.Views.EditTable.textTotalRow": "Skupno število vrstic", - "PE.Views.EditTable.txtDistribHor": "Distributiraj horizontalno", - "PE.Views.EditTable.txtDistribVert": "Distributiraj vertikalno", - "PE.Views.EditText.textAddCustomColor": "Dodaj barvo po meri", - "PE.Views.EditText.textAdditional": "Dodatno", - "PE.Views.EditText.textAdditionalFormat": "Dodatno oblikovanje", - "PE.Views.EditText.textAfter": "po", - "PE.Views.EditText.textAllCaps": "Vse z veliko", - "PE.Views.EditText.textAutomatic": "Samodejeno", - "PE.Views.EditText.textBack": "Nazaj", - "PE.Views.EditText.textBefore": "Pred", - "PE.Views.EditText.textBullets": "Krogle", - "PE.Views.EditText.textCharacterBold": "B", - "PE.Views.EditText.textCharacterItalic": "I", - "PE.Views.EditText.textCharacterStrikethrough": "S", - "PE.Views.EditText.textCharacterUnderline": "U", - "PE.Views.EditText.textCustomColor": "Barva po meri", - "PE.Views.EditText.textDblStrikethrough": "Dvojno prečrtanje", - "PE.Views.EditText.textDblSuperscript": "Nadpisano", - "PE.Views.EditText.textFontColor": "Barva pisave", - "PE.Views.EditText.textFontColors": "Barve pisave", - "PE.Views.EditText.textFonts": "Fonti", - "PE.Views.EditText.textFromText": "Oddaljenost od besedila", - "PE.Views.EditText.textLetterSpacing": "Razmik med črkami", - "PE.Views.EditText.textLineSpacing": "Razmik med vrsticami", - "PE.Views.EditText.textNone": "nič", - "PE.Views.EditText.textNumbers": "Števila", - "PE.Views.EditText.textSize": "Velikost", - "PE.Views.EditText.textSmallCaps": "Male črke", - "PE.Views.EditText.textStrikethrough": "Prečrtano", - "PE.Views.EditText.textSubscript": "Podpisano", - "PE.Views.Search.textCase": "Občutljiv na velike in male črke", - "PE.Views.Search.textDone": "Končano", - "PE.Views.Search.textFind": "Najdi", - "PE.Views.Search.textFindAndReplace": "Najdi in zamenjaj", - "PE.Views.Search.textReplace": "Zamenjaj", - "PE.Views.Search.textSearch": "Iskanje", - "PE.Views.Settings. textComment": "Komentar", - "PE.Views.Settings.mniSlideStandard": "Standardno (4:3)", - "PE.Views.Settings.mniSlideWide": "Širok zaslon (16:9)", - "PE.Views.Settings.textAbout": "O programu", - "PE.Views.Settings.textAddress": "naslov", - "PE.Views.Settings.textApplication": "Aplikacija", - "PE.Views.Settings.textApplicationSettings": "Nastavitve aplikacije", - "PE.Views.Settings.textAuthor": "Avtor", - "PE.Views.Settings.textBack": "Nazaj", - "PE.Views.Settings.textCentimeter": "Centimeter", - "PE.Views.Settings.textCollaboration": "Skupinsko delo", - "PE.Views.Settings.textColorSchemes": "Barvna shema", - "PE.Views.Settings.textCreated": "Ustvarjeno", - "PE.Views.Settings.textCreateDate": "Datum nastanka", - "PE.Views.Settings.textDisableAll": "Onemogoči vse", - "PE.Views.Settings.textDisableAllMacrosWithNotification": "Onemogoči vse makroje z obvestilom", - "PE.Views.Settings.textDisableAllMacrosWithoutNotification": "Onemogoči vse makroje brez obvestila", - "PE.Views.Settings.textDone": "Končano", - "PE.Views.Settings.textDownload": "Prenesi", - "PE.Views.Settings.textDownloadAs": "Prenesi kot ...", - "PE.Views.Settings.textEditPresent": "Uredi predstavitev", - "PE.Views.Settings.textEmail": "e-naslov", - "PE.Views.Settings.textEnableAll": "Omogoči vse", - "PE.Views.Settings.textEnableAllMacrosWithoutNotification": "Omogoči vse makroje brez obvestila", - "PE.Views.Settings.textFind": "Iskanje", - "PE.Views.Settings.textFindAndReplace": "Najdi in zamenjaj", - "PE.Views.Settings.textHelp": "Pomoč", - "PE.Views.Settings.textInch": "Palec", - "PE.Views.Settings.textLastModified": "Nazadnje spremenjeno", - "PE.Views.Settings.textLastModifiedBy": "Nazadnje spremenjenil/a", - "PE.Views.Settings.textLoading": "Nalaganje ...", - "PE.Views.Settings.textLocation": "Lokacija", - "PE.Views.Settings.textMacrosSettings": "Nastavitve makrojev", - "PE.Views.Settings.textOwner": "Lastnik", - "PE.Views.Settings.textPoint": "Točka", - "PE.Views.Settings.textPoweredBy": "Poganja", - "PE.Views.Settings.textPresentInfo": "Informacije o prezentaciji", - "PE.Views.Settings.textPresentSettings": "Nastavitve prezentacije", - "PE.Views.Settings.textPresentSetup": "Nastavitve prezentacije", - "PE.Views.Settings.textPresentTitle": "Naslov prezentacije", - "PE.Views.Settings.textPrint": "Natisni", - "PE.Views.Settings.textSettings": "Nastavitve", - "PE.Views.Settings.textShowNotification": "Prikaži obvestila", - "PE.Views.Settings.textSlideSize": "Velikost diapozitiva", - "PE.Views.Settings.textSpellcheck": "Preverjanje črkovanja", - "PE.Views.Settings.textSubject": "Zadeva", - "PE.Views.Settings.textTel": "Telefon", - "PE.Views.Settings.textTitle": "Naslov", - "PE.Views.Settings.textUnitOfMeasurement": "Merilna enota", - "PE.Views.Settings.textUploaded": "Naloženo", - "PE.Views.Settings.textVersion": "Različica", - "PE.Views.Settings.unknownText": "Neznan", - "PE.Views.Toolbar.textBack": "Nazaj" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/tr.json b/apps/presentationeditor/mobile/locale/tr.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/tr.json +++ b/apps/presentationeditor/mobile/locale/tr.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/uk.json b/apps/presentationeditor/mobile/locale/uk.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/uk.json +++ b/apps/presentationeditor/mobile/locale/uk.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/vi.json b/apps/presentationeditor/mobile/locale/vi.json index 0e0dcd235..a6531c874 100644 --- a/apps/presentationeditor/mobile/locale/vi.json +++ b/apps/presentationeditor/mobile/locale/vi.json @@ -1,3 +1,465 @@ { - + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuDelete": "Delete", + "menuDeleteTable": "Delete Table", + "menuEdit": "Edit", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuSplit": "Split", + "menuViewComment": "View Comment", + "textColumns": "Columns", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "textRows": "Rows" + }, + "Controller": { + "Main": { + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorOpensource": "Using the free Community version, you can open documents for viewing only. To access mobile web editors, a commercial license is required.", + "errorProcessSaveResult": "Saving failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "Chart": "Chart", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "ClipArt": "Clip Art", + "Date and time": "Date and time", + "Diagram": "Diagram", + "Diagram Title": "Chart Title", + "Footer": "Footer", + "Header": "Header", + "Image": "Image", + "Loading": "Loading", + "Media": "Media", + "None": "None", + "Picture": "Picture", + "Series": "Series", + "Slide number": "Slide number", + "Slide subtitle": "Slide subtitle", + "Slide text": "Slide text", + "Slide title": "Slide title", + "Table": "Table", + "X Axis": "X Axis XAS", + "Y Axis": "Y Axis", + "Your text here": "Your text here" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textOpenFile": "Enter a password to open the file", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleLicenseExp": "License expired", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseExp": "Your license has expired. Please, update it and refresh the page.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your administrator.", + "warnLicenseLimitedRenewed": "The license needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your admin.", + "errorBadImageUrl": "Image url is incorrect", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "splitDividerErrorText": "The number of rows must be a divisor of %1", + "splitMaxColsErrorText": "The number of columns must be less than %1", + "splitMaxRowsErrorText": "The number of rows must be less than %1", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "loadThemeTextText": "Loading theme...", + "loadThemeTitleText": "Loading Theme", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": "Warning", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textColumns": "Columns", + "textComment": "Comment", + "textDefault": "Selected text", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFirstSlide": "First Slide", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textLastSlide": "Last Slide", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textNextSlide": "Next Slide", + "textOther": "Other", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textRows": "Rows", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textTable": "Table", + "textTableSize": "Table Size", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAdditional": "Additional", + "textAdditionalFormatting": "Additional Formatting", + "textAddress": "Address", + "textAfter": "After", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllCaps": "All Caps", + "textApplyAll": "Apply to All Slides", + "textAuto": "Auto", + "textBack": "Back", + "textBandedColumn": "Banded Column", + "textBandedRow": "Banded Row", + "textBefore": "Before", + "textBlack": "Through Black", + "textBorder": "Border", + "textBottom": "Bottom", + "textBottomLeft": "Bottom-Left", + "textBottomRight": "Bottom-Right", + "textBringToForeground": "Bring to Foreground", + "textBullets": "Bullets", + "textBulletsAndNumbers": "Bullets & Numbers", + "textCaseSensitive": "Case Sensitive", + "textCellMargins": "Cell Margins", + "textChart": "Chart", + "textClock": "Clock", + "textClockwise": "Clockwise", + "textColor": "Color", + "textCounterclockwise": "Counterclockwise", + "textCover": "Cover", + "textCustomColor": "Custom Color", + "textDefault": "Selected text", + "textDelay": "Delay", + "textDeleteSlide": "Delete Slide", + "textDisplay": "Display", + "textDistanceFromText": "Distance From Text", + "textDistributeHorizontally": "Distribute Horizontally", + "textDistributeVertically": "Distribute Vertically", + "textDone": "Done", + "textDoubleStrikethrough": "Double Strikethrough", + "textDuplicateSlide": "Duplicate Slide", + "textDuration": "Duration", + "textEditLink": "Edit Link", + "textEffect": "Effect", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFade": "Fade", + "textFill": "Fill", + "textFinalMessage": "The end of slide preview. Click to exit.", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFirstColumn": "First Column", + "textFirstSlide": "First Slide", + "textFontColor": "Font Color", + "textFontColors": "Font Colors", + "textFonts": "Fonts", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textHeaderRow": "Header Row", + "textHighlight": "Highlight Results", + "textHighlightColor": "Highlight Color", + "textHorizontalIn": "Horizontal In", + "textHorizontalOut": "Horizontal Out", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textLastColumn": "Last Column", + "textLastSlide": "Last Slide", + "textLayout": "Layout", + "textLeft": "Left", + "textLetterSpacing": "Letter Spacing", + "textLineSpacing": "Line Spacing", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkTo": "Link to", + "textLinkType": "Link Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextSlide": "Next Slide", + "textNone": "None", + "textNoStyles": "No styles for this type of chart.", + "textNoTextFound": "Text not found", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumbers": "Numbers", + "textOpacity": "Opacity", + "textOptions": "Options", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPreviousSlide": "Previous Slide", + "textPt": "pt", + "textPush": "Push", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textRemoveTable": "Remove Table", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textReplaceImage": "Replace Image", + "textRight": "Right", + "textScreenTip": "Screen Tip", + "textSearch": "Search", + "textSec": "s", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textShape": "Shape", + "textSize": "Size", + "textSlide": "Slide", + "textSlideInThisPresentation": "Slide in this Presentation", + "textSlideNumber": "Slide Number", + "textSmallCaps": "Small Caps", + "textSmoothly": "Smoothly", + "textSplit": "Split", + "textStartOnClick": "Start On Click", + "textStrikethrough": "Strikethrough", + "textStyle": "Style", + "textStyleOptions": "Style Options", + "textSubscript": "Subscript", + "textSuperscript": "Superscript", + "textTable": "Table", + "textText": "Text", + "textTheme": "Theme", + "textTop": "Top", + "textTopLeft": "Top-Left", + "textTopRight": "Top-Right", + "textTotalRow": "Total Row", + "textTransition": "Transition", + "textType": "Type", + "textUnCover": "UnCover", + "textVerticalIn": "Vertical In", + "textVerticalOut": "Vertical Out", + "textWedge": "Wedge", + "textWipe": "Wipe", + "textZoom": "Zoom", + "textZoomIn": "Zoom In", + "textZoomOut": "Zoom Out", + "textZoomRotate": "Zoom and Rotate" + }, + "Settings": { + "mniSlideStandard": "Standard (4:3)", + "mniSlideWide": "Widescreen (16:9)", + "textAbout": "About", + "textAddress": "address:", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textCaseSensitive": "Case Sensitive", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCreated": "Created", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As...", + "textEmail": "email:", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textHelp": "Help", + "textHighlight": "Highlight Results", + "textInch": "Inch", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLoading": "Loading...", + "textLocation": "Location", + "textMacrosSettings": "Macros Settings", + "textNoTextFound": "Text not found", + "textOwner": "Owner", + "textPoint": "Point", + "textPoweredBy": "Powered By", + "textPresentationInfo": "Presentation Info", + "textPresentationSettings": "Presentation Settings", + "textPresentationTitle": "Presentation Title", + "textPrint": "Print", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textSearch": "Search", + "textSettings": "Settings", + "textShowNotification": "Show Notification", + "textSlideSize": "Slide Size", + "textSpellcheck": "Spell Checking", + "textSubject": "Subject", + "textTel": "tel:", + "textTitle": "Title", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/locale/zh.json b/apps/presentationeditor/mobile/locale/zh.json index 041812df5..fda1b5902 100644 --- a/apps/presentationeditor/mobile/locale/zh.json +++ b/apps/presentationeditor/mobile/locale/zh.json @@ -88,7 +88,11 @@ "Table": "表格", "X Axis": "X 轴 XAS", "Y Axis": "Y 轴", - "Your text here": "你的文本在此" + "Your text here": "你的文本在此", + "Click to add first slide": "Click to add first slide", + "Click to add notes": "Click to add notes", + "Loading": "Loading", + "None": "None" }, "textAnonymous": "匿名", "textBuyNow": "访问网站", @@ -374,7 +378,9 @@ "textZoom": "放大", "textZoomIn": "放大", "textZoomOut": "缩小", - "textZoomRotate": "缩放并旋转" + "textZoomRotate": "缩放并旋转", + "textBullets": "Bullets", + "textNumbers": "Numbers" }, "Settings": { "mniSlideStandard": "标准(4:3)", @@ -431,7 +437,29 @@ "textTitle": "标题", "textUnitOfMeasurement": "计量单位", "textUploaded": "已上传", - "textVersion": "版本" + "textVersion": "版本", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" } } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/app.js b/apps/presentationeditor/mobile/src/app.js index 0f945afb1..e6dabe8f6 100644 --- a/apps/presentationeditor/mobile/src/app.js +++ b/apps/presentationeditor/mobile/src/app.js @@ -35,7 +35,7 @@ Framework7.use(Framework7React) ReactDOM.render( - + diff --git a/apps/presentationeditor/mobile/src/controller/Main.jsx b/apps/presentationeditor/mobile/src/controller/Main.jsx index 832eea745..fc61c7668 100644 --- a/apps/presentationeditor/mobile/src/controller/Main.jsx +++ b/apps/presentationeditor/mobile/src/controller/Main.jsx @@ -17,6 +17,7 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. import { Device } from '../../../../common/mobile/utils/device'; @inject( + "users", "storeFocusObjects", "storeAppOptions", "storePresentationInfo", @@ -26,7 +27,8 @@ import { Device } from '../../../../common/mobile/utils/device'; "storeTableSettings", "storeChartSettings", "storeLinkSettings", - "storeApplicationSettings" + "storeApplicationSettings", + "storeToolbarSettings" ) class MainController extends Component { constructor (props) { @@ -323,6 +325,7 @@ class MainController extends Component { // Text settings const storeTextSettings = this.props.storeTextSettings; + storeTextSettings.resetFontsRecent(LocalStorage.getItem('ppe-settings-recent-fonts')); EditorUIController.initFonts && EditorUIController.initFonts(storeTextSettings); @@ -388,6 +391,21 @@ class MainController extends Component { // Chart settings EditorUIController.updateChartStyles && EditorUIController.updateChartStyles(this.props.storeChartSettings, this.props.storeFocusObjects); + + // Toolbar settings + + const storeToolbarSettings = this.props.storeToolbarSettings; + this.api.asc_registerCallback('asc_onCanUndo', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanUndo(can); + }); + this.api.asc_registerCallback('asc_onCanRedo', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanRedo(can); + }); + this.api.asc_registerCallback('asc_onCountPages', (count) => { + storeToolbarSettings.setCountPages(count); + }); } onDocumentContentReady () { diff --git a/apps/presentationeditor/mobile/src/controller/Preview.jsx b/apps/presentationeditor/mobile/src/controller/Preview.jsx index feeab5209..bd9e4fe6f 100644 --- a/apps/presentationeditor/mobile/src/controller/Preview.jsx +++ b/apps/presentationeditor/mobile/src/controller/Preview.jsx @@ -11,8 +11,6 @@ const PreviewController = props => { let _view, _touches, _touchStart, _touchEnd; - _view = $$('#pe-preview'); - useEffect(() => { const onDocumentReady = () => { const api = Common.EditorApi.get(); @@ -25,10 +23,10 @@ const PreviewController = props => { show(); onDocumentReady(); + _view = $$('#pe-preview'); _view.on('touchstart', onTouchStart); _view.on('touchmove', onTouchMove); _view.on('touchend', onTouchEnd); - _view.on('click', onClick); return () => { const api = Common.EditorApi.get(); @@ -38,7 +36,6 @@ const PreviewController = props => { _view.off('touchstart', onTouchStart); _view.off('touchmove', onTouchMove); _view.off('touchend', onTouchEnd); - _view.off('click', onClick); }; }, []); @@ -82,15 +79,10 @@ const PreviewController = props => { if (_touchEnd[0] - _touchStart[0] > 20) api.DemonstrationPrevSlide(); - else if (_touchStart[0] - _touchEnd[0] > 20) + else if (_touchStart[0] - _touchEnd[0] > 20 || (Math.abs(_touchEnd[0] - _touchStart[0]) < 1 && Math.abs(_touchEnd[1] - _touchStart[1]) < 1)) api.DemonstrationNextSlide(); }; - const onClick = e => { - const api = Common.EditorApi.get(); - api.DemonstrationNextSlide(); - }; - // API Handlers const onEndDemonstration = () => { diff --git a/apps/presentationeditor/mobile/src/controller/Toolbar.jsx b/apps/presentationeditor/mobile/src/controller/Toolbar.jsx index 5f50b615a..a1ba3d10d 100644 --- a/apps/presentationeditor/mobile/src/controller/Toolbar.jsx +++ b/apps/presentationeditor/mobile/src/controller/Toolbar.jsx @@ -4,7 +4,7 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { +const ToolbarController = inject('storeAppOptions', 'users', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => { const {t} = useTranslation(); const _t = t("Toolbar", { returnObjects: true }); @@ -14,24 +14,19 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; + const isEditLocked = props.storeFocusObjects.isEditLocked; + + const storeToolbarSettings = props.storeToolbarSettings; + const isCanUndo = storeToolbarSettings.isCanUndo; + const isCanRedo = storeToolbarSettings.isCanRedo; + const disabledPreview = storeToolbarSettings.countPages <= 0; + useEffect(() => { - const onDocumentReady = () => { - const api = Common.EditorApi.get(); - api.asc_registerCallback('asc_onCanUndo', onApiCanUndo); - api.asc_registerCallback('asc_onCanRedo', onApiCanRedo); - api.asc_registerCallback('asc_onFocusObject', onApiFocusObject); - api.asc_registerCallback('asc_onCountPages', onApiCountPages); - Common.Notifications.on('toolbar:activatecontrols', activateControls); - Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); - Common.Notifications.on('goback', goBack); - }; - if ( !Common.EditorApi ) { - Common.Notifications.on('document:ready', onDocumentReady); - Common.Notifications.on('setdoctitle', setDocTitle); - Common.Gateway.on('init', loadConfig); - } else { - onDocumentReady(); - } + Common.Notifications.on('setdoctitle', setDocTitle); + Common.Gateway.on('init', loadConfig); + Common.Notifications.on('toolbar:activatecontrols', activateControls); + Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); + Common.Notifications.on('goback', goBack); if (isDisconnected) { f7.popover.close(); @@ -40,17 +35,10 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { } return () => { - Common.Notifications.off('document:ready', onDocumentReady); Common.Notifications.off('setdoctitle', setDocTitle); Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('goback', goBack); - - const api = Common.EditorApi.get(); - api.asc_unregisterCallback('asc_onCanUndo', onApiCanUndo); - api.asc_unregisterCallback('asc_onCanRedo', onApiCanRedo); - api.asc_unregisterCallback('asc_onFocusObject', onApiFocusObject); - api.asc_unregisterCallback('asc_onCountPages', onApiCountPages); } }); @@ -107,17 +95,6 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { //} } - // Undo and Redo - const [isCanUndo, setCanUndo] = useState(true); - const [isCanRedo, setCanRedo] = useState(true); - const onApiCanUndo = (can) => { - if (isDisconnected) return; - setCanUndo(can); - }; - const onApiCanRedo = (can) => { - if (isDisconnected) return; - setCanRedo(can); - }; const onUndo = () => { const api = Common.EditorApi.get(); if (api) { @@ -131,36 +108,6 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { } } - const [disabledEdit, setDisabledEdit] = useState(false); - const onApiFocusObject = (objects) => { - if (isDisconnected) return; - - if (objects.length > 0) { - let slide_deleted = false, - slide_lock = false, - no_object = true, - objectLocked = false; - objects.forEach((object) => { - const type = object.get_ObjectType(); - const objectValue = object.get_ObjectValue(); - if (type === Asc.c_oAscTypeSelectElement.Slide) { - slide_deleted = objectValue.get_LockDelete(); - slide_lock = objectValue.get_LockLayout() || objectValue.get_LockBackground() || objectValue.get_LockTransition() || objectValue.get_LockTiming(); - } else if (objectValue && typeof objectValue.get_Locked === 'function') { - no_object = false; - objectLocked = objectLocked || objectValue.get_Locked(); - } - }); - - setDisabledEdit(slide_deleted || (objectLocked || no_object) && slide_lock); - } - }; - - const [disabledPreview, setDisabledPreview] = useState(false); - const onApiCountPages = (count) => { - setDisabledPreview(count <= 0); - }; - const [disabledEditControls, setDisabledEditControls] = useState(false); const [disabledSettings, setDisabledSettings] = useState(false); const deactivateEditControls = (enableDownload) => { @@ -192,7 +139,7 @@ const ToolbarController = inject('storeAppOptions', 'users')(observer(props => { isCanRedo={isCanRedo} onUndo={onUndo} onRedo={onRedo} - disabledEdit={disabledEdit} + disabledEdit={isEditLocked} disabledPreview={disabledPreview} disabledControls={disabledControls} disabledEditControls={disabledEditControls} diff --git a/apps/presentationeditor/mobile/src/page/main.jsx b/apps/presentationeditor/mobile/src/page/main.jsx index 2727a2b4c..690cb6f4d 100644 --- a/apps/presentationeditor/mobile/src/page/main.jsx +++ b/apps/presentationeditor/mobile/src/page/main.jsx @@ -30,34 +30,52 @@ class MainPage extends Component { handleClickToOpenOptions = (opts, showOpts) => { ContextMenu.closeContextMenu(); - this.setState(state => { - if ( opts == 'edit' ) - return {editOptionsVisible: true}; - else if ( opts == 'add' ) - return { - addOptionsVisible: true, - addShowOptions: showOpts - }; - else if ( opts == 'settings' ) - return {settingsVisible: true}; - else if ( opts == 'coauth' ) - return {collaborationVisible: true}; - else if ( opts == 'preview' ) - return {previewVisible: true}; - }); + setTimeout(() => { + let opened = false; + const newState = {}; + if ( opts === 'edit' ) { + this.state.editOptionsVisible && (opened = true); + newState.editOptionsVisible = true; + } else if ( opts === 'add' ) { + this.state.addOptionsVisible && (opened = true); + newState.addOptionsVisible = true; + newState.addShowOptions = showOpts; + } else if ( opts === 'settings' ) { + this.state.settingsVisible && (opened = true); + newState.settingsVisible = true; + } else if ( opts === 'coauth' ) { + this.state.collaborationVisible && (opened = true); + newState.collaborationVisible = true; + } else if ( opts === 'preview' ) { + this.state.previewVisible && (opened = true); + newState.previewVisible = true; + } - if ((opts === 'edit' || opts === 'coauth') && Device.phone) { - f7.navbar.hide('.main-navbar'); - } + for (let key in this.state) { + if (this.state[key] && !opened) { + setTimeout(() => { + this.handleClickToOpenOptions(opts, showOpts); + }, 10); + return; + } + } + + if (!opened) { + this.setState(newState); + if ((opts === 'edit' || opts === 'coauth') && Device.phone) { + f7.navbar.hide('.main-navbar'); + } + } + }, 10); }; handleOptionsViewClosed = opts => { - (async () => { - await 1 && this.setState(state => { + setTimeout(() => { + this.setState(state => { if ( opts == 'edit' ) return {editOptionsVisible: false}; else if ( opts == 'add' ) - return {addOptionsVisible: false}; + return {addOptionsVisible: false, addShowOptions: null}; else if ( opts == 'settings' ) return {settingsVisible: false}; else if ( opts == 'coauth' ) @@ -68,7 +86,7 @@ class MainPage extends Component { if ((opts === 'edit' || opts === 'coauth') && Device.phone) { f7.navbar.show('.main-navbar'); } - })(); + }); }; render() { diff --git a/apps/presentationeditor/mobile/src/store/focusObjects.js b/apps/presentationeditor/mobile/src/store/focusObjects.js index 2a363150a..e22ef57c1 100644 --- a/apps/presentationeditor/mobile/src/store/focusObjects.js +++ b/apps/presentationeditor/mobile/src/store/focusObjects.js @@ -14,7 +14,8 @@ export class storeFocusObjects { tableObject: computed, isTableInStack: computed, chartObject: computed, - linkObject: computed + linkObject: computed, + isEditLocked: computed }); } @@ -74,4 +75,26 @@ export class storeFocusObjects { get linkObject() { return !!this.intf ? this.intf.getLinkObject() : null; } + + get isEditLocked() { + if (this._focusObjects.length > 0) { + let slide_deleted = false, + slide_lock = false, + no_object = true, + objectLocked = false; + this._focusObjects.forEach((object) => { + const type = object.get_ObjectType(); + const objectValue = object.get_ObjectValue(); + if (type === Asc.c_oAscTypeSelectElement.Slide) { + slide_deleted = objectValue.get_LockDelete(); + slide_lock = objectValue.get_LockLayout() || objectValue.get_LockBackground() || objectValue.get_LockTransition() || objectValue.get_LockTiming(); + } else if (objectValue && typeof objectValue.get_Locked === 'function') { + no_object = false; + objectLocked = objectLocked || objectValue.get_Locked(); + } + }); + + return (slide_deleted || (objectLocked || no_object) && slide_lock); + } + } } \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/store/mainStore.js b/apps/presentationeditor/mobile/src/store/mainStore.js index 299a6a63b..586e7a83e 100644 --- a/apps/presentationeditor/mobile/src/store/mainStore.js +++ b/apps/presentationeditor/mobile/src/store/mainStore.js @@ -16,7 +16,9 @@ import { storeLinkSettings } from "./linkSettings"; // import {storeParagraphSettings} from "./paragraphSettings"; // import {storeShapeSettings} from "./shapeSettings"; // import {storeImageSettings} from "./imageSettings"; +import {storeReview} from '../../../../common/mobile/lib/store/review'; import {storeComments} from "../../../../common/mobile/lib/store/comments"; +import {storeToolbarSettings} from "./toolbar"; export const stores = { storeAppOptions: new storeAppOptions(), @@ -33,10 +35,12 @@ export const stores = { storeTableSettings: new storeTableSettings(), storeChartSettings: new storeChartSettings(), storeLinkSettings: new storeLinkSettings(), + storeReview: new storeReview(), // storeTextSettings: new storeTextSettings(), // storeParagraphSettings: new storeParagraphSettings(), // storeShapeSettings: new storeShapeSettings(), // storeChartSettings: new storeChartSettings(), - storeComments: new storeComments() + storeComments: new storeComments(), + storeToolbarSettings: new storeToolbarSettings() }; diff --git a/apps/presentationeditor/mobile/src/store/textSettings.js b/apps/presentationeditor/mobile/src/store/textSettings.js index 524a26b15..e4b97a118 100644 --- a/apps/presentationeditor/mobile/src/store/textSettings.js +++ b/apps/presentationeditor/mobile/src/store/textSettings.js @@ -5,6 +5,7 @@ export class storeTextSettings { makeObservable(this, { fontsArray: observable, fontName: observable, + arrayRecentFonts:observable, fontSize: observable, isBold: observable, isItalic: observable, @@ -23,6 +24,7 @@ export class storeTextSettings { lineSpacing: observable, initEditorFonts: action, resetFontName: action, + resetFontsRecent:action, resetFontSize: action, resetIsBold: action, resetIsItalic: action, @@ -40,11 +42,13 @@ export class storeTextSettings { resetParagraphValign: action, resetTextColor: action, changeCustomTextColors: action, - resetLineSpacing: action + resetLineSpacing: action, + addFontToRecent:action }); } fontsArray = []; + arrayRecentFonts = []; fontName = ''; fontSize = undefined; isBold = false; @@ -88,6 +92,11 @@ export class storeTextSettings { this.fontName = name; } + resetFontsRecent(fonts) { + this.arrayRecentFonts = fonts; + this.arrayRecentFonts = this.arrayRecentFonts ? this.arrayRecentFonts.split(';') : []; + } + resetFontSize (size) { this.fontSize = size; } @@ -204,6 +213,15 @@ export class storeTextSettings { this.customTextColors = colors; } + addFontToRecent (font) { + this.arrayRecentFonts.forEach(item => { + if (item === font) this.arrayRecentFonts.splice(this.arrayRecentFonts.indexOf(item),1); + }) + this.arrayRecentFonts.unshift(font); + + if (this.arrayRecentFonts.length > 5) this.arrayRecentFonts.splice(4,1); + } + resetLineSpacing (vc) { let line = (vc.get_Line() === null || vc.get_LineRule() === null || vc.get_LineRule() != 1) ? -1 : vc.get_Line(); this.lineSpacing = line; diff --git a/apps/presentationeditor/mobile/src/store/toolbar.js b/apps/presentationeditor/mobile/src/store/toolbar.js new file mode 100644 index 000000000..db3a9e87d --- /dev/null +++ b/apps/presentationeditor/mobile/src/store/toolbar.js @@ -0,0 +1,32 @@ +import {action, observable, makeObservable} from 'mobx'; + +export class storeToolbarSettings { + constructor() { + makeObservable(this, { + isCanUndo: observable, + setCanUndo: action, + isCanRedo: observable, + setCanRedo: action, + countPages: observable, + setCountPages: action + }) + } + + isCanUndo = false; + + setCanUndo(can) { + this.isCanUndo = can; + } + + isCanRedo = false; + + setCanRedo(can) { + this.isCanRedo = can; + } + + countPages = 0; + + setCountPages(count) { + this.countPages = count; + } +} \ No newline at end of file diff --git a/apps/presentationeditor/mobile/src/view/add/Add.jsx b/apps/presentationeditor/mobile/src/view/add/Add.jsx index 9608afc93..afbfcc092 100644 --- a/apps/presentationeditor/mobile/src/view/add/Add.jsx +++ b/apps/presentationeditor/mobile/src/view/add/Add.jsx @@ -141,7 +141,7 @@ class AddView extends Component { const show_popover = this.props.usePopover; return ( show_popover ? - this.props.onclosed()}> + this.props.onclosed()}> : this.props.onclosed()}> diff --git a/apps/presentationeditor/mobile/src/view/add/AddLink.jsx b/apps/presentationeditor/mobile/src/view/add/AddLink.jsx index c99ae87d3..1b255ac68 100644 --- a/apps/presentationeditor/mobile/src/view/add/AddLink.jsx +++ b/apps/presentationeditor/mobile/src/view/add/AddLink.jsx @@ -117,7 +117,7 @@ const PageLink = props => { value={link} onChange={(event) => { setLink(event.target.value); - if(stateAutoUpdate) setDisplay(event.target.value); + if((!stateDisplay || stateDisplay === link) && stateAutoUpdate) setDisplay(event.target.value); }} /> : { placeholder={_t.textDisplay} value={stateDisplay} disabled={displayDisabled} - onChange={(event) => {setDisplay(event.target.value); - setAutoUpdate(event.target.value == ''); }} + onChange={(event) => { + setDisplay(event.target.value); + setAutoUpdate(event.target.value == ''); + }} /> { const layouts = props.storeSlideSettings.slideLayouts; + const [stateDisabled, setDisabled] = useState(false); return (
    {layouts.map((row, rowIndex) => { @@ -13,7 +14,8 @@ const AddSlide = props => {
      {row.map((layout, index) => { return ( -
    • {props.onSlideLayout(layout.type)}}> +
    • {props.onSlideLayout(layout.type); setDisabled(true)}}>
    • ) diff --git a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx index f33894022..2e9fcd1ae 100644 --- a/apps/presentationeditor/mobile/src/view/edit/EditText.jsx +++ b/apps/presentationeditor/mobile/src/view/edit/EditText.jsx @@ -4,6 +4,7 @@ import {f7, Swiper, View, SwiperSlide, List, ListItem, Icon, Row, Button, Page, import { useTranslation } from 'react-i18next'; import {Device} from '../../../../../common/mobile/utils/device'; import { ThemeColorPalette, CustomColorPicker } from '../../../../../common/mobile/lib/component/ThemeColorPalette.jsx'; +import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage'; const EditText = props => { const isAndroid = Device.android; @@ -185,6 +186,14 @@ const PageFonts = props => { const displaySize = typeof size === 'undefined' || size == '' ? _t.textAuto : size + ' ' + _t.textPt; const curFontName = storeTextSettings.fontName; const fonts = storeTextSettings.fontsArray; + const arrayFonts = storeTextSettings.arrayRecentFonts; + + const addRecentStorage = () => { + let arr = []; + arrayFonts.forEach(item => arr.push(item)); + arr = arr.join(';'); + LocalStorage.setItem('ppe-settings-recent-fonts', arr); + } const [vlFonts, setVlFonts] = useState({ vlData: { @@ -236,6 +245,20 @@ const PageFonts = props => { {_t.textFonts} + {!!arrayFonts.length && + + {arrayFonts.map((item,index) => ( + {props.changeFontFamily(item)}} + /> + ))} + + } { checked={curFontName === item.name} title={item.name} style={{fontFamily: `${item.name}`}} - onClick={() => {props.changeFontFamily(item.name)}} + onClick={() => {props.changeFontFamily(item.name); storeTextSettings.addFontToRecent(item.name); + addRecentStorage()}} > ))}
    @@ -386,13 +410,13 @@ const PageAdditionalFormatting = props => { - {!isAndroid &&
    {Number(letterSpacing).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName()}
    } + {!isAndroid &&
    {(Number.isInteger(letterSpacing) ? letterSpacing : letterSpacing.toFixed(2)) + ' ' + Common.Utils.Metric.getCurrentMetricName()}
    }
    - {isAndroid && } + {isAndroid && } diff --git a/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx b/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx index b04053ca8..0f5b4d39d 100644 --- a/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx +++ b/apps/presentationeditor/mobile/src/view/settings/PresentationSettings.jsx @@ -35,20 +35,20 @@ const PagePresentationColorSchemes = props => { const { t } = useTranslation(); const curScheme = props.initPageColorSchemes(); const [stateScheme, setScheme] = useState(curScheme); - const _t = t('View.Settings', {returnObjects: true}); const storePresentationSettings = props.storePresentationSettings; const allSchemes = storePresentationSettings.allSchemes; - const SchemeNames = [ - _t.txtScheme1, _t.txtScheme2, _t.txtScheme3, _t.txtScheme4, _t.txtScheme5, - _t.txtScheme6, _t.txtScheme7, _t.txtScheme8, _t.txtScheme9, _t.txtScheme10, - _t.txtScheme11, _t.txtScheme12, _t.txtScheme13, _t.txtScheme14, _t.txtScheme15, - _t.txtScheme16, _t.txtScheme17, _t.txtScheme18, _t.txtScheme19, _t.txtScheme20, - _t.txtScheme21, _t.txtScheme22 + const SchemeNames = [ t('View.Settings.txtScheme22'), + t('View.Settings.txtScheme1'), t('View.Settings.txtScheme2'), t('View.Settings.txtScheme3'), t('View.Settings.txtScheme4'), + t('View.Settings.txtScheme5'), t('View.Settings.txtScheme6'), t('View.Settings.txtScheme7'), t('View.Settings.txtScheme8'), + t('View.Settings.txtScheme9'), t('View.Settings.txtScheme10'), t('View.Settings.txtScheme11'), t('View.Settings.txtScheme12'), + t('View.Settings.txtScheme13'), t('View.Settings.txtScheme14'), t('View.Settings.txtScheme15'), t('View.Settings.txtScheme16'), + t('View.Settings.txtScheme17'), t('View.Settings.txtScheme18'), t('View.Settings.txtScheme19'), t('View.Settings.txtScheme20'), + t('View.Settings.txtScheme21') ]; return ( - + { allSchemes ? allSchemes.map((scheme, index) => { diff --git a/apps/spreadsheeteditor/embed/index.html b/apps/spreadsheeteditor/embed/index.html index c21511fc4..a2527e811 100644 --- a/apps/spreadsheeteditor/embed/index.html +++ b/apps/spreadsheeteditor/embed/index.html @@ -50,7 +50,7 @@ .loadmask > .brendpanel .loading-logo > img { display: inline-block; - max-width: 100px; + max-width: 124px; max-height: 20px; margin-top: 2px; opacity: 0; @@ -181,8 +181,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/embed/index.html.deploy b/apps/spreadsheeteditor/embed/index.html.deploy index 50678b73f..758db33b7 100644 --- a/apps/spreadsheeteditor/embed/index.html.deploy +++ b/apps/spreadsheeteditor/embed/index.html.deploy @@ -47,7 +47,7 @@ .loadmask > .brendpanel .loading-logo > img { display: inline-block; - max-width: 100px; + max-width: 124px; max-height: 20px; margin-top: 2px; opacity: 0; @@ -173,8 +173,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/embed/index_loader.html b/apps/spreadsheeteditor/embed/index_loader.html index dffe44305..7e37cb96c 100644 --- a/apps/spreadsheeteditor/embed/index_loader.html +++ b/apps/spreadsheeteditor/embed/index_loader.html @@ -225,8 +225,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/embed/index_loader.html.deploy b/apps/spreadsheeteditor/embed/index_loader.html.deploy index 097125983..3459e52ad 100644 --- a/apps/spreadsheeteditor/embed/index_loader.html.deploy +++ b/apps/spreadsheeteditor/embed/index_loader.html.deploy @@ -217,8 +217,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); diff --git a/apps/spreadsheeteditor/embed/js/ApplicationController.js b/apps/spreadsheeteditor/embed/js/ApplicationController.js index c2dd584da..bc6540a6f 100644 --- a/apps/spreadsheeteditor/embed/js/ApplicationController.js +++ b/apps/spreadsheeteditor/embed/js/ApplicationController.js @@ -179,8 +179,8 @@ SSE.ApplicationController = new(function(){ setActiveWorkSheet(api.asc_getActiveWorksheetIndex()); } - function onDownloadUrl(url) { - Common.Gateway.downloadAs(url); + function onDownloadUrl(url, fileType) { + Common.Gateway.downloadAs(url, fileType); } function onPrint() { @@ -481,6 +481,11 @@ SSE.ApplicationController = new(function(){ message = me.errorAccessDeny; break; + case Asc.c_oAscError.ID.ForceSaveButton: + case Asc.c_oAscError.ID.ForceSaveTimeout: + message = me.errorForceSave; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -663,6 +668,7 @@ SSE.ApplicationController = new(function(){ errorFileSizeExceed: 'The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.', errorUpdateVersionOnDisconnect: 'Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.', textGuest: 'Guest', - textAnonymous: 'Anonymous' + textAnonymous: 'Anonymous', + errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later." } })(); \ No newline at end of file diff --git a/apps/spreadsheeteditor/embed/locale/ca.json b/apps/spreadsheeteditor/embed/locale/ca.json index c32ab28f8..9f684b35d 100644 --- a/apps/spreadsheeteditor/embed/locale/ca.json +++ b/apps/spreadsheeteditor/embed/locale/ca.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", "SSE.ApplicationController.notcriticalErrorTitle": "Advertiment", "SSE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", + "SSE.ApplicationController.textAnonymous": "Anònim", + "SSE.ApplicationController.textGuest": "Convidat", "SSE.ApplicationController.textLoadingDocument": "Carregant full de càlcul", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Tancar", diff --git a/apps/spreadsheeteditor/embed/locale/de.json b/apps/spreadsheeteditor/embed/locale/de.json index c40f7d37e..30fc78019 100644 --- a/apps/spreadsheeteditor/embed/locale/de.json +++ b/apps/spreadsheeteditor/embed/locale/de.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Kein Zugriff auf diese Datei möglich.", "SSE.ApplicationController.notcriticalErrorTitle": "Warnung", "SSE.ApplicationController.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", + "SSE.ApplicationController.textAnonymous": "Anonym", + "SSE.ApplicationController.textGuest": "Gast", "SSE.ApplicationController.textLoadingDocument": "Tabelle wird geladen", "SSE.ApplicationController.textOf": "von", "SSE.ApplicationController.txtClose": "Schließen", diff --git a/apps/spreadsheeteditor/embed/locale/el.json b/apps/spreadsheeteditor/embed/locale/el.json index dbbbef656..b096c0c70 100644 --- a/apps/spreadsheeteditor/embed/locale/el.json +++ b/apps/spreadsheeteditor/embed/locale/el.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Δεν είναι δυνατή η πρόσβαση στο αρχείο αυτήν τη στιγμή.", "SSE.ApplicationController.notcriticalErrorTitle": "Προειδοποίηση", "SSE.ApplicationController.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", + "SSE.ApplicationController.textAnonymous": "Ανώνυμος", + "SSE.ApplicationController.textGuest": "Επισκέπτης", "SSE.ApplicationController.textLoadingDocument": "Γίνεται φόρτωση λογιστικού φύλλου", "SSE.ApplicationController.textOf": "του", "SSE.ApplicationController.txtClose": "Κλείσιμο", diff --git a/apps/spreadsheeteditor/embed/locale/en.json b/apps/spreadsheeteditor/embed/locale/en.json index 4485edab0..93eadaf48 100644 --- a/apps/spreadsheeteditor/embed/locale/en.json +++ b/apps/spreadsheeteditor/embed/locale/en.json @@ -13,6 +13,7 @@ "SSE.ApplicationController.errorDefaultMessage": "Error code: %1", "SSE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "SSE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.", + "SSE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", "SSE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "SSE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", "SSE.ApplicationController.notcriticalErrorTitle": "Warning", diff --git a/apps/spreadsheeteditor/embed/locale/es.json b/apps/spreadsheeteditor/embed/locale/es.json index 9864c4a18..e89e0fc28 100644 --- a/apps/spreadsheeteditor/embed/locale/es.json +++ b/apps/spreadsheeteditor/embed/locale/es.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "No se puede acceder al archivo ahora mismo.", "SSE.ApplicationController.notcriticalErrorTitle": "Aviso", "SSE.ApplicationController.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", + "SSE.ApplicationController.textAnonymous": "Anónimo", + "SSE.ApplicationController.textGuest": "Invitado", "SSE.ApplicationController.textLoadingDocument": "Cargando hoja de cálculo", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Cerrar", diff --git a/apps/spreadsheeteditor/embed/locale/fr.json b/apps/spreadsheeteditor/embed/locale/fr.json index 2cfe950c9..503c671a8 100644 --- a/apps/spreadsheeteditor/embed/locale/fr.json +++ b/apps/spreadsheeteditor/embed/locale/fr.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", "SSE.ApplicationController.notcriticalErrorTitle": "Avertissement", "SSE.ApplicationController.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "SSE.ApplicationController.textAnonymous": "Anonyme", + "SSE.ApplicationController.textGuest": "Invité", "SSE.ApplicationController.textLoadingDocument": "Chargement d'une feuille de calcul", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Fermer", diff --git a/apps/spreadsheeteditor/embed/locale/it.json b/apps/spreadsheeteditor/embed/locale/it.json index cf1389d5f..b008e8923 100644 --- a/apps/spreadsheeteditor/embed/locale/it.json +++ b/apps/spreadsheeteditor/embed/locale/it.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", "SSE.ApplicationController.notcriticalErrorTitle": "Avviso", "SSE.ApplicationController.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", + "SSE.ApplicationController.textAnonymous": "Anonimo", + "SSE.ApplicationController.textGuest": "Ospite", "SSE.ApplicationController.textLoadingDocument": "Caricamento del foglio di calcolo", "SSE.ApplicationController.textOf": "di", "SSE.ApplicationController.txtClose": "Chiudi", diff --git a/apps/spreadsheeteditor/embed/locale/ja.json b/apps/spreadsheeteditor/embed/locale/ja.json index 1ce05fcd2..f3d0b9f4c 100644 --- a/apps/spreadsheeteditor/embed/locale/ja.json +++ b/apps/spreadsheeteditor/embed/locale/ja.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "今、ファイルにアクセスすることはできません。", "SSE.ApplicationController.notcriticalErrorTitle": "警告", "SSE.ApplicationController.scriptLoadError": "接続が非常に遅いため、いくつかのコンポーネントはロードされませんでした。ページを再読み込みしてください。", + "SSE.ApplicationController.textAnonymous": "匿名", + "SSE.ApplicationController.textGuest": "ゲスト", "SSE.ApplicationController.textLoadingDocument": "スプレッドシートの読み込み中", "SSE.ApplicationController.textOf": "から", "SSE.ApplicationController.txtClose": "閉じる", @@ -25,6 +27,7 @@ "SSE.ApplicationController.waitText": "少々お待ちください...", "SSE.ApplicationView.txtDownload": "ダウンロード", "SSE.ApplicationView.txtEmbed": "埋め込み", + "SSE.ApplicationView.txtFileLocation": "ファイルを開く", "SSE.ApplicationView.txtFullScreen": "全画面表示", "SSE.ApplicationView.txtPrint": "印刷する", "SSE.ApplicationView.txtShare": "シェア" diff --git a/apps/spreadsheeteditor/embed/locale/nl.json b/apps/spreadsheeteditor/embed/locale/nl.json index 857bc3624..b7385f0f4 100644 --- a/apps/spreadsheeteditor/embed/locale/nl.json +++ b/apps/spreadsheeteditor/embed/locale/nl.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", "SSE.ApplicationController.notcriticalErrorTitle": "Waarschuwing", "SSE.ApplicationController.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", + "SSE.ApplicationController.textAnonymous": "Anoniem", + "SSE.ApplicationController.textGuest": "Gast", "SSE.ApplicationController.textLoadingDocument": "Spreadsheet wordt geladen", "SSE.ApplicationController.textOf": "van", "SSE.ApplicationController.txtClose": "Sluiten", @@ -25,6 +27,7 @@ "SSE.ApplicationController.waitText": "Een moment geduld", "SSE.ApplicationView.txtDownload": "Downloaden", "SSE.ApplicationView.txtEmbed": "Invoegen", + "SSE.ApplicationView.txtFileLocation": "Open bestandslocatie", "SSE.ApplicationView.txtFullScreen": "Volledig scherm", "SSE.ApplicationView.txtPrint": "Afdrukken", "SSE.ApplicationView.txtShare": "Delen" diff --git a/apps/spreadsheeteditor/embed/locale/pt.json b/apps/spreadsheeteditor/embed/locale/pt.json index 27d9a8128..a0e2ffb62 100644 --- a/apps/spreadsheeteditor/embed/locale/pt.json +++ b/apps/spreadsheeteditor/embed/locale/pt.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "O arquivo não pode ser acessado agora.", "SSE.ApplicationController.notcriticalErrorTitle": "Aviso", "SSE.ApplicationController.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.", + "SSE.ApplicationController.textAnonymous": "Anônimo", + "SSE.ApplicationController.textGuest": "Convidado(a)", "SSE.ApplicationController.textLoadingDocument": "Carregando planilha", "SSE.ApplicationController.textOf": "de", "SSE.ApplicationController.txtClose": "Fechar", diff --git a/apps/spreadsheeteditor/embed/locale/ro.json b/apps/spreadsheeteditor/embed/locale/ro.json index 91753d4c0..0b75aa2df 100644 --- a/apps/spreadsheeteditor/embed/locale/ro.json +++ b/apps/spreadsheeteditor/embed/locale/ro.json @@ -17,10 +17,12 @@ "SSE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", "SSE.ApplicationController.notcriticalErrorTitle": "Avertisment", "SSE.ApplicationController.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "SSE.ApplicationController.textAnonymous": "Anonim", + "SSE.ApplicationController.textGuest": "Invitat", "SSE.ApplicationController.textLoadingDocument": "Încărcare foaie de calcul", "SSE.ApplicationController.textOf": "din", "SSE.ApplicationController.txtClose": "Închidere", - "SSE.ApplicationController.unknownErrorText": "Eroare Necunoscut.", + "SSE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "SSE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "SSE.ApplicationController.waitText": "Vă rugăm să așteptați...", "SSE.ApplicationView.txtDownload": "Descărcare", diff --git a/apps/spreadsheeteditor/embed/locale/sv.json b/apps/spreadsheeteditor/embed/locale/sv.json index 5500ef008..1b3b569ab 100644 --- a/apps/spreadsheeteditor/embed/locale/sv.json +++ b/apps/spreadsheeteditor/embed/locale/sv.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "Filen kan inte nås för tillfället. ", "SSE.ApplicationController.notcriticalErrorTitle": "Varning", "SSE.ApplicationController.scriptLoadError": "Anslutningen är för långsam, vissa av komponenterna kunde inte laddas. Vänligen ladda om sidan.", + "SSE.ApplicationController.textAnonymous": "Anonym", + "SSE.ApplicationController.textGuest": "Gäst", "SSE.ApplicationController.textLoadingDocument": "Hämtar kalkylblad", "SSE.ApplicationController.textOf": "av", "SSE.ApplicationController.txtClose": "Stäng", @@ -25,6 +27,7 @@ "SSE.ApplicationController.waitText": "Var snäll och vänta...", "SSE.ApplicationView.txtDownload": "Ladda ner", "SSE.ApplicationView.txtEmbed": "Inbädda", + "SSE.ApplicationView.txtFileLocation": "Gå till filens plats", "SSE.ApplicationView.txtFullScreen": "Fullskärm", "SSE.ApplicationView.txtPrint": "Skriva ut", "SSE.ApplicationView.txtShare": "Dela" diff --git a/apps/spreadsheeteditor/embed/locale/zh.json b/apps/spreadsheeteditor/embed/locale/zh.json index 667a0a52b..62c409d83 100644 --- a/apps/spreadsheeteditor/embed/locale/zh.json +++ b/apps/spreadsheeteditor/embed/locale/zh.json @@ -17,6 +17,8 @@ "SSE.ApplicationController.errorUserDrop": "该文件现在无法访问。", "SSE.ApplicationController.notcriticalErrorTitle": "警告", "SSE.ApplicationController.scriptLoadError": "连接速度过慢,部分组件无法被加载。请重新加载页面。", + "SSE.ApplicationController.textAnonymous": "访客", + "SSE.ApplicationController.textGuest": "访客", "SSE.ApplicationController.textLoadingDocument": "正在加载电子表格…", "SSE.ApplicationController.textOf": "的", "SSE.ApplicationController.txtClose": "关闭", diff --git a/apps/spreadsheeteditor/main/app.js b/apps/spreadsheeteditor/main/app.js index 2057534be..74d763024 100644 --- a/apps/spreadsheeteditor/main/app.js +++ b/apps/spreadsheeteditor/main/app.js @@ -159,7 +159,9 @@ require([ 'PivotTable', 'DataTab', 'ViewTab', + 'WBProtection', 'Common.Controllers.Fonts', + 'Common.Controllers.History', 'Common.Controllers.Chat', 'Common.Controllers.Comments', 'Common.Controllers.Plugins' @@ -183,6 +185,7 @@ require([ 'spreadsheeteditor/main/app/controller/PivotTable', 'spreadsheeteditor/main/app/controller/DataTab', 'spreadsheeteditor/main/app/controller/ViewTab', + 'spreadsheeteditor/main/app/controller/WBProtection', 'spreadsheeteditor/main/app/view/FileMenuPanels', 'spreadsheeteditor/main/app/view/ParagraphSettings', 'spreadsheeteditor/main/app/view/ImageSettings', @@ -196,6 +199,7 @@ require([ 'common/main/lib/util/utils', 'common/main/lib/util/LocalStorage', 'common/main/lib/controller/Fonts', + 'common/main/lib/controller/History', 'common/main/lib/controller/Comments', 'common/main/lib/controller/Chat', 'common/main/lib/controller/Plugins' diff --git a/apps/spreadsheeteditor/main/app/controller/CellEditor.js b/apps/spreadsheeteditor/main/app/controller/CellEditor.js index f6f88365f..ba3f04cc0 100644 --- a/apps/spreadsheeteditor/main/app/controller/CellEditor.js +++ b/apps/spreadsheeteditor/main/app/controller/CellEditor.js @@ -316,6 +316,7 @@ define([ } prev_name = name; }); + this.editor.btnNamedRanges.menu.items[0].setDisabled(!!this.api.asc_isProtectedSheet()); this.editor.btnNamedRanges.menu.items[1].setVisible(rangesMenu.items.length>2); }, diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 486cffcb8..5e965b1cc 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -71,8 +71,11 @@ define([ this.api = api; this.api.asc_registerCallback('asc_onSelectionChanged', _.bind(this.onSelectionChanged, this)); this.api.asc_registerCallback('asc_onWorksheetLocked', _.bind(this.onWorksheetLocked, this)); + this.api.asc_registerCallback('asc_onChangeProtectWorkbook',_.bind(this.onChangeProtectWorkbook, this)); this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this)); + Common.NotificationCenter.on('protect:wslock', _.bind(this.onChangeProtectSheet, this)); + Common.NotificationCenter.on('document:ready', _.bind(this.onDocumentReady, this)); } return this; }, @@ -226,6 +229,7 @@ define([ Common.NotificationCenter.trigger('edit:complete', this.toolbar); } else if (type === 'url') { (new Common.Views.ImageFromUrlDialog({ + title: me.txtUrlTitle, handler: function(result, value) { if (result == 'ok') { if (me.api) { @@ -275,29 +279,52 @@ define([ }, onCustomSort: function() { + Common.NotificationCenter.trigger('protect:check', this.onCustomSortCallback, this); + }, + + onCustomSortCallback: function() { var me = this; if (this.api) { var res = this.api.asc_sortCellsRangeExpand(); - if (res) { - var config = { - width: 500, - title: this.toolbar.txtSorting, - msg: this.toolbar.txtExpandSort, - - buttons: [ {caption: this.toolbar.txtExpand, primary: true, value: 'expand'}, - {caption: this.toolbar.txtSortSelected, primary: true, value: 'sort'}, - 'cancel'], - callback: function(btn){ - if (btn == 'expand' || btn == 'sort') { - setTimeout(function(){ - me.showCustomSort(btn == 'expand'); - },1); + switch (res) { + case Asc.c_oAscSelectionSortExpand.showExpandMessage: + var config = { + width: 500, + title: this.toolbar.txtSorting, + msg: this.toolbar.txtExpandSort, + buttons: [ {caption: this.toolbar.txtExpand, primary: true, value: 'expand'}, + {caption: this.toolbar.txtSortSelected, primary: true, value: 'sort'}, + 'cancel'], + callback: function(btn){ + if (btn == 'expand' || btn == 'sort') { + setTimeout(function(){ + me.showCustomSort(btn == 'expand'); + },1); + } } - } - }; - Common.UI.alert(config); - } else - me.showCustomSort(res !== null); + }; + Common.UI.alert(config); + break; + case Asc.c_oAscSelectionSortExpand.showLockMessage: + var config = { + width: 500, + title: this.toolbar.txtSorting, + msg: this.toolbar.txtLockSort, + buttons: ['yes', 'no'], + primary: 'yes', + callback: function(btn){ + (btn == 'yes') && setTimeout(function(){ + me.showCustomSort(false); + },1); + } + }; + Common.UI.alert(config); + break; + case Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage: + case Asc.c_oAscSelectionSortExpand.notExpandAndNotShowMessage: + me.showCustomSort(res === Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage); + break; + } } }, @@ -322,7 +349,7 @@ define([ var me = this; if (this.api) { var res = this.api.asc_sortCellsRangeExpand(); - if (res) { + if (res===Asc.c_oAscSelectionSortExpand.showExpandMessage) { var config = { width: 500, title: this.txtRemDuplicates, @@ -339,8 +366,8 @@ define([ } }; Common.UI.alert(config); - } else - me.showRemDuplicates(res !== null); + } else if (res !== Asc.c_oAscSelectionSortExpand.showLockMessage) + me.showRemDuplicates(res===Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage); } }, @@ -408,6 +435,10 @@ define([ } }, + onChangeProtectWorkbook: function() { + Common.Utils.lockControls(SSE.enumLock.wbLock, this.api.asc_isProtectedWorkbook(), {array: [this.view.btnDataFromText]}); + }, + onApiSheetChanged: function() { if (!this.toolbar.mode || !this.toolbar.mode.isEdit || this.toolbar.mode.isEditDiagram || this.toolbar.mode.isEditMailMerge) return; @@ -415,6 +446,18 @@ define([ this.onWorksheetLocked(currentSheet, this.api.asc_isWorksheetLockedOrDeleted(currentSheet)); }, + onChangeProtectSheet: function(props) { + if (!props) { + var wbprotect = this.getApplication().getController('WBProtection'); + props = wbprotect ? wbprotect.getWSProps() : null; + } + props && props.wsProps && Common.Utils.lockControls(SSE.enumLock['Sort'], props.wsProps['Sort'], {array: this.view.btnsSortDown.concat(this.view.btnsSortUp, this.view.btnCustomSort)}); + }, + + onDocumentReady: function() { + this.onChangeProtectSheet(); + }, + textWizard: 'Text to Columns Wizard', txtRemDuplicates: 'Remove Duplicates', txtExpandRemDuplicates: 'The data next to the selection will not be removed. Do you want to expand the selection to include the adjacent data or continue with the currently selected cells only?', @@ -426,7 +469,8 @@ define([ txtExtendDataValidation: 'The selection contains some cells without Data Validation settings.
    Do you want to extend Data Validation to these cells?', txtRemoveDataValidation: 'The selection contains more than one type of validation.
    Erase current settings and continue?', textEmptyUrl: 'You need to specify URL.', - txtImportWizard: 'Text Import Wizard' + txtImportWizard: 'Text Import Wizard', + txtUrlTitle: 'Paste a data URL' }, SSE.Controllers.DataTab || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index 61ef63069..3706815d0 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -104,7 +104,10 @@ define([ }, filter: {ttHeight: 40}, func_arg: {}, - input_msg: {} + input_msg: {}, + foreignSelect: { + ttHeight: 20 + } }; me.mouse = {}; me.popupmenu = false; @@ -114,6 +117,8 @@ define([ me._currentParaObjDisabled = false; me._isDisabled = false; me._state = {}; + me.fastcoauthtips = []; + me._TtHeight = 20; /** coauthoring begin **/ this.wrapEvents = { apiHideComment: _.bind(this.onApiHideComment, this) @@ -160,18 +165,20 @@ define([ }, 'modal:show': function(e){ me.hideCoAuthTips(); + me.hideForeignSelectTips(); }, 'layout:changed': function(e){ me.hideHyperlinkTip(); me.hideCoAuthTips(); + me.hideForeignSelectTips(); me.onDocumentResize(); }, 'cells:range': function(status){ me.onCellsRange(status); }, - 'tabs:dragend': _.bind(me.onDragEndMouseUp, me) + 'tabs:dragend': _.bind(me.onDragEndMouseUp, me), + 'protect:wslock': _.bind(me.onChangeProtectSheet, me) }); - Common.Gateway.on('processmouse', _.bind(me.onProcessMouse, me)); }, @@ -230,7 +237,7 @@ define([ view.menuParagraphBullets.menu.on('show:after', _.bind(me.onBulletMenuShowAfter, me)); view.menuAddHyperlinkShape.on('click', _.bind(me.onInsHyperlink, me)); view.menuEditHyperlinkShape.on('click', _.bind(me.onInsHyperlink, me)); - view.menuRemoveHyperlinkShape.on('click', _.bind(me.onRemoveHyperlinkShape, me)); + view.menuRemoveHyperlinkShape.on('click', _.bind(me.onDelHyperlink, me)); view.pmiTextAdvanced.on('click', _.bind(me.onTextAdvanced, me)); view.mnuShapeAdvanced.on('click', _.bind(me.onShapeAdvanced, me)); view.mnuChartEdit.on('click', _.bind(me.onChartEdit, me)); @@ -289,6 +296,7 @@ define([ } Common.Utils.isChrome ? addEvent(document, 'mousewheel', _.bind(this.onDocumentWheel,this), { passive: false } ) : $(document).on('mousewheel', _.bind(this.onDocumentWheel, this)); + this.onChangeProtectSheet(); }, loadConfig: function(data) { @@ -332,6 +340,9 @@ define([ this.api.asc_registerCallback('asc_onTableTotalMenu', _.bind(this.onTableTotalMenu, this)); this.api.asc_registerCallback('asc_onShowPivotGroupDialog', _.bind(this.onShowPivotGroupDialog, this)); } + this.api.asc_registerCallback('asc_onShowForeignCursorLabel', _.bind(this.onShowForeignCursorLabel, this)); + this.api.asc_registerCallback('asc_onHideForeignCursorLabel', _.bind(this.onHideForeignCursorLabel, this)); + return this; }, @@ -415,34 +426,56 @@ define([ }, onSortCells: function(menu, item) { + Common.NotificationCenter.trigger('protect:check', this.onSortCellsCallback, this, [menu, item]); + }, + + onSortCellsCallback: function(menu, item) { if (item.value=='advanced') { Common.NotificationCenter.trigger('data:sortcustom', this); return; } if (this.api) { var res = this.api.asc_sortCellsRangeExpand(); - if (res) { - var config = { - width: 500, - title: this.txtSorting, - msg: this.txtExpandSort, - buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, - {caption: this.txtSortSelected, primary: true, value: 'sort'}, - 'cancel'], - callback: _.bind(function(btn){ - if (btn == 'expand' || btn == 'sort') { - this.api.asc_sortColFilter(item.value, '', undefined, (item.value==Asc.c_oAscSortOptions.ByColorFill) ? this.documentHolder.ssMenu.cellColor : this.documentHolder.ssMenu.fontColor, btn == 'expand'); - } - Common.NotificationCenter.trigger('edit:complete', this.documentHolder); - Common.component.Analytics.trackEvent('DocumentHolder', 'Sort Cells'); - }, this) - }; - Common.UI.alert(config); - } else { - this.api.asc_sortColFilter(item.value, '', undefined, (item.value==Asc.c_oAscSortOptions.ByColorFill) ? this.documentHolder.ssMenu.cellColor : this.documentHolder.ssMenu.fontColor, res !== null); - - Common.NotificationCenter.trigger('edit:complete', this.documentHolder); - Common.component.Analytics.trackEvent('DocumentHolder', 'Sort Cells'); + switch (res) { + case Asc.c_oAscSelectionSortExpand.showExpandMessage: + var config = { + width: 500, + title: this.txtSorting, + msg: this.txtExpandSort, + buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, + {caption: this.txtSortSelected, primary: true, value: 'sort'}, + 'cancel'], + callback: _.bind(function(btn){ + if (btn == 'expand' || btn == 'sort') { + this.api.asc_sortColFilter(item.value, '', undefined, (item.value==Asc.c_oAscSortOptions.ByColorFill) ? this.documentHolder.ssMenu.cellColor : this.documentHolder.ssMenu.fontColor, btn == 'expand'); + } + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + Common.component.Analytics.trackEvent('DocumentHolder', 'Sort Cells'); + }, this) + }; + Common.UI.alert(config); + break; + case Asc.c_oAscSelectionSortExpand.showLockMessage: + var config = { + width: 500, + title: this.txtSorting, + msg: this.txtLockSort, + buttons: ['yes', 'no'], + primary: 'yes', + callback: _.bind(function(btn){ + (btn == 'yes') && this.api.asc_sortColFilter(item.value, '', undefined, (item.value==Asc.c_oAscSortOptions.ByColorFill) ? this.documentHolder.ssMenu.cellColor : this.documentHolder.ssMenu.fontColor, false); + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + Common.component.Analytics.trackEvent('DocumentHolder', 'Sort Cells'); + }, this) + }; + Common.UI.alert(config); + break; + case Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage: + case Asc.c_oAscSelectionSortExpand.notExpandAndNotShowMessage: + this.api.asc_sortColFilter(item.value, '', undefined, (item.value==Asc.c_oAscSortOptions.ByColorFill) ? this.documentHolder.ssMenu.cellColor : this.documentHolder.ssMenu.fontColor, res === Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage); + Common.NotificationCenter.trigger('edit:complete', this.documentHolder); + Common.component.Analytics.trackEvent('DocumentHolder', 'Sort Cells'); + break; } } }, @@ -521,7 +554,16 @@ define([ win.setSettings(rangePr, dateTypes, defRangePr); }, - onClear: function(menu, item) { + onClear: function(menu, item, e) { + if (item.value == Asc.c_oAscCleanOptions.Format && !this._state.wsProps['FormatCells'] || item.value == Asc.c_oAscCleanOptions.All && !this.api.asc_checkLockedCells()) + this.onClearCallback(menu, item); + else if (item.value == Asc.c_oAscCleanOptions.Comments) { + this._state.wsProps['Objects'] ? Common.NotificationCenter.trigger('showerror', Asc.c_oAscError.ID.ChangeOnProtectedSheet, Asc.c_oAscError.Level.NoCritical) : this.onClearCallback(menu, item); + } else + Common.NotificationCenter.trigger('protect:check', this.onClearCallback, this, [menu, item]); + }, + + onClearCallback: function(menu, item) { if (this.api) { if (item.value == Asc.c_oAscCleanOptions.Comments) { this.api.asc_RemoveAllComments(!this.permissions.canDeleteComments, true);// 1 param = true if remove only my comments, 2 param - remove current comments @@ -568,6 +610,10 @@ define([ }, onInsHyperlink: function(item) { + Common.NotificationCenter.trigger('protect:check', this.onInsHyperlinkCallback, this, [item]); + }, + + onInsHyperlinkCallback: function(item) { var me = this; var win, props; @@ -615,6 +661,10 @@ define([ }, onDelHyperlink: function(item) { + Common.NotificationCenter.trigger('protect:check', this.onDelHyperlinkCallback, this); + }, + + onDelHyperlinkCallback: function(item) { if (this.api) { this.api.asc_removeHyperlink(); @@ -674,16 +724,20 @@ define([ }, onAddComment: function(item) { + if (this._state.wsProps['Objects']) return; + if (this.api && this.permissions.canCoAuthoring && this.permissions.canComments) { var controller = SSE.getController('Common.Controllers.Comments'), cellinfo = this.api.asc_getCellInfo(); if (controller) { var comments = cellinfo.asc_getComments(); - if (comments.length) { - controller.onEditComments(comments); - } else if (this.permissions.canCoAuthoring || this.commentsCollection.getCommentsReplysCount()<3) { - controller.addDummyComment(); + if (comments) { + if (comments.length) { + controller.onEditComments(comments); + } else if (this.permissions.canCoAuthoring) { + controller.addDummyComment(); + } } } } @@ -875,15 +929,6 @@ define([ Common.component.Analytics.trackEvent('DocumentHolder', 'List Type'); }, - onRemoveHyperlinkShape: function(item) { - if (this.api) { - this.api.asc_removeHyperlink(); - - Common.NotificationCenter.trigger('edit:complete', this.documentHolder); - Common.component.Analytics.trackEvent('DocumentHolder', 'Remove Hyperlink'); - } - }, - onTextAdvanced: function(item) { var me = this; @@ -1017,6 +1062,15 @@ define([ } }, + hideForeignSelectTips: function() { + if (this.tooltips.foreignSelect.ref) { + $(this.tooltips.foreignSelect.ref).remove(); + this.tooltips.foreignSelect.ref = undefined; + this.tooltips.foreignSelect.x_point = undefined; + this.tooltips.foreignSelect.y_point = undefined; + } + }, + hideHyperlinkTip: function() { if (!this.tooltips.hyperlink.isHidden && this.tooltips.hyperlink.ref) { this.tooltips.hyperlink.ref.hide(); @@ -1035,7 +1089,8 @@ define([ index_locked, index_column, index_row, index_filter, - index_slicer; + index_slicer, + index_foreign; for (var i = dataarray.length; i > 0; i--) { switch (dataarray[i-1].asc_getType()) { case Asc.c_oAscMouseMoveType.Hyperlink: @@ -1061,6 +1116,9 @@ define([ case Asc.c_oAscMouseMoveType.Tooltip: index_slicer = i; break; + case Asc.c_oAscMouseMoveType.ForeignSelect: + index_foreign = i; + break; } } @@ -1074,6 +1132,7 @@ define([ row_columnTip = me.tooltips.row_column, filterTip = me.tooltips.filter, slicerTip = me.tooltips.slicer, + foreignSelect = me.tooltips.foreignSelect, pos = [ me.documentHolder.cmpEl.offset().left - $(window).scrollLeft(), me.documentHolder.cmpEl.offset().top - $(window).scrollTop() @@ -1111,6 +1170,9 @@ define([ if (!index_locked) { me.hideCoAuthTips(); } + if (!index_foreign) { + me.hideForeignSelectTips(); + } if (index_slicer===undefined) { if (!slicerTip.isHidden && slicerTip.ref) { slicerTip.ref.hide(); @@ -1129,17 +1191,6 @@ define([ } } // show tooltips - /** coauthoring begin **/ - var getUserName = function(id){ - var usersStore = SSE.getCollection('Common.Collections.Users'); - if (usersStore){ - var rec = usersStore.findUser(id); - if (rec) - return AscCommon.UserInfoParser.getParsedName(rec.get('username')); - } - return me.guestText; - }; - /** coauthoring end **/ if (index_hyperlink) { if (!hyperlinkTip.parentEl) { @@ -1305,8 +1356,8 @@ define([ if (showPoint[1] >= coAuthTip.XY[1] && showPoint[1] + coAuthTip.ttHeight < coAuthTip.XY[1] + coAuthTip.apiHeight) { - src.text(getUserName(data.asc_getUserId())); - if (coAuthTip.bodyWidth - showPoint[0] < coAuthTip.ref.width() ) { + src.text(me.getUserName(data.asc_getUserId())); + if (coAuthTip.bodyWidth - showPoint[0] < coAuthTip.ref.outerWidth() ) { src.css({ visibility : 'visible', left : '0px', @@ -1321,6 +1372,45 @@ define([ } } } + if (index_foreign) { + data = dataarray[index_foreign-1]; + + if (!coAuthTip.XY) + me.onDocumentResize(); + + if (foreignSelect.x_point != data.asc_getX() || foreignSelect.y_point != data.asc_getY()) { + me.hideForeignSelectTips(); + + foreignSelect.x_point = data.asc_getX(); + foreignSelect.y_point = data.asc_getY(); + + var src = $(document.createElement("div")), + color = data.asc_getColor(); + foreignSelect.ref = src; + + src.addClass('username-tip'); + src.css({ + height : foreignSelect.ttHeight + 'px', + position : 'absolute', + zIndex : '900', + visibility : 'visible', + 'background-color': '#'+Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()) + }); + $(document.body).append(src); + + showPoint = [ + foreignSelect.x_point + coAuthTip.XY[0], + foreignSelect.y_point + coAuthTip.XY[1] - foreignSelect.ttHeight + ]; + + src.text(me.getUserName(data.asc_getUserId())); + src.css({ + visibility : 'visible', + left : ((showPoint[0]+foreignSelect.ref.outerWidth()>coAuthTip.bodyWidth-coAuthTip.rightMenuWidth) ? coAuthTip.bodyWidth-coAuthTip.rightMenuWidth-foreignSelect.ref.outerWidth() : showPoint[0]) + 'px', + top : showPoint[1] + 'px' + }); + } + } } if (index_filter!==undefined && !(me.dlgFilter && me.dlgFilter.isVisible()) && !(me.currentMenu && me.currentMenu.isVisible()) && !dataarray[index_filter-1].asc_getFilter().asc_getPivotObj()) { @@ -1450,6 +1540,8 @@ define([ } if (me.permissions.isEdit) { if (!me.dlgFilter) { + if (me._state.wsProps['PivotTables'] && config.asc_getPivotObj() || me._state.wsProps['AutoFilter'] && !config.asc_getPivotObj()) return; + me.dlgFilter = new SSE.Views.AutoFilterDialog({api: this.api}).on({ 'close': function () { if (me.api) { @@ -1747,7 +1839,7 @@ define([ if (!documentHolder.copyPasteMenu || !showMenu && !documentHolder.copyPasteMenu.isVisible()) return; if (showMenu) this.showPopupMenu(documentHolder.copyPasteMenu, {}, event); } else if (isimagemenu || isshapemenu || ischartmenu) { - if (!documentHolder.imgMenu || !showMenu && !documentHolder.imgMenu.isVisible()) return; + if (!documentHolder.imgMenu || !showMenu && !documentHolder.imgMenu.isVisible() || this._state.wsProps['Objects']) return; isimagemenu = isshapemenu = ischartmenu = isslicermenu = false; documentHolder.mnuImgAdvanced.imageInfo = undefined; @@ -1836,7 +1928,7 @@ define([ documentHolder.menuSignatureEditSetup.cmpEl.attr('data-value', signGuid); // edit signature settings } } else if (istextshapemenu || istextchartmenu) { - if (!documentHolder.textInShapeMenu || !showMenu && !documentHolder.textInShapeMenu.isVisible()) return; + if (!documentHolder.textInShapeMenu || !showMenu && !documentHolder.textInShapeMenu.isVisible() || this._state.wsProps['Objects']) return; documentHolder.pmiTextAdvanced.textInfo = undefined; @@ -1913,6 +2005,8 @@ define([ item.setDisabled(isObjLocked); }); documentHolder.pmiTextCopy.setDisabled(false); + documentHolder.menuHyperlinkShape.setDisabled(isObjLocked || this._state.wsProps['InsertHyperlinks']); + documentHolder.menuAddHyperlinkShape.setDisabled(isObjLocked || this._state.wsProps['InsertHyperlinks']); //equation menu var eqlen = 0; @@ -1983,9 +2077,9 @@ define([ documentHolder.pmiFreezePanes.setCaption(this.api.asc_getSheetViewSettings().asc_getIsFreezePane() ? documentHolder.textUnFreezePanes : documentHolder.textFreezePanes); /** coauthoring begin **/ - var count = cellinfo.asc_getComments().length; - documentHolder.ssMenu.items[19].setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && count < 1); - documentHolder.pmiAddComment.setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && count < 1); + var celcomments = cellinfo.asc_getComments(); // celcomments===null - has comment, but no permissions to view it + documentHolder.ssMenu.items[19].setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && celcomments && (celcomments.length < 1)); + documentHolder.pmiAddComment.setVisible(iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && celcomments && (celcomments.length < 1)); /** coauthoring end **/ documentHolder.pmiCellMenuSeparator.setVisible(iscellmenu && !iscelledit || isrowmenu || iscolmenu || isallmenu); documentHolder.pmiEntireHide.isrowmenu = isrowmenu; @@ -2020,28 +2114,36 @@ define([ item.setDisabled(isCellLocked); }); documentHolder.pmiCopy.setDisabled(false); - documentHolder.pmiCut.setDisabled(isCellLocked); // can't edit pivot cells - documentHolder.pmiPaste.setDisabled(isCellLocked); - documentHolder.pmiInsertEntire.setDisabled(isCellLocked || isTableLocked); - documentHolder.pmiInsertCells.setDisabled(isCellLocked || isTableLocked || inPivot); - documentHolder.pmiInsertTable.setDisabled(isCellLocked || isTableLocked); - documentHolder.pmiDeleteEntire.setDisabled(isCellLocked || isTableLocked); - documentHolder.pmiDeleteCells.setDisabled(isCellLocked || isTableLocked || inPivot); - documentHolder.pmiDeleteTable.setDisabled(isCellLocked || isTableLocked); + documentHolder.pmiSelectTable.setDisabled(this._state.wsLock); + documentHolder.pmiInsertEntire.setDisabled(isCellLocked || isTableLocked || isrowmenu && this._state.wsProps['InsertRows'] || iscolmenu && this._state.wsProps['InsertColumns']); + documentHolder.pmiInsertCells.setDisabled(isCellLocked || isTableLocked || inPivot || this._state.wsLock); + documentHolder.pmiInsertTable.setDisabled(isCellLocked || isTableLocked || this._state.wsLock); + documentHolder.pmiDeleteEntire.setDisabled(isCellLocked || isTableLocked || isrowmenu && this._state.wsProps['DeleteRows'] || iscolmenu && this._state.wsProps['DeleteColumns']); + documentHolder.pmiDeleteCells.setDisabled(isCellLocked || isTableLocked || inPivot || this._state.wsLock); + documentHolder.pmiDeleteTable.setDisabled(isCellLocked || isTableLocked || this._state.wsLock); documentHolder.pmiClear.setDisabled(isCellLocked || inPivot); - documentHolder.pmiFilterCells.setDisabled(isCellLocked || isTableLocked|| (filterInfo==null) || inPivot || !filterInfo && !this.permissions.canModifyFilter); - documentHolder.pmiSortCells.setDisabled(isCellLocked || isTableLocked|| (filterInfo==null) || inPivot || !this.permissions.canModifyFilter); + documentHolder.pmiFilterCells.setDisabled(isCellLocked || isTableLocked|| (filterInfo==null) || inPivot || !filterInfo && !this.permissions.canModifyFilter || this._state.wsLock); + documentHolder.pmiSortCells.setDisabled(isCellLocked || isTableLocked|| (filterInfo==null) || inPivot || !this.permissions.canModifyFilter || this._state.wsProps['Sort']); documentHolder.pmiReapply.setDisabled(isCellLocked || isTableLocked|| (isApplyAutoFilter!==true)); - documentHolder.pmiCondFormat.setDisabled(isCellLocked || isTableLocked); - documentHolder.menuHyperlink.setDisabled(isCellLocked || inPivot); - documentHolder.menuAddHyperlink.setDisabled(isCellLocked || inPivot); + documentHolder.pmiCondFormat.setDisabled(isCellLocked || isTableLocked || this._state.wsProps['FormatCells']); + documentHolder.menuHyperlink.setDisabled(isCellLocked || inPivot || this._state.wsProps['InsertHyperlinks']); + documentHolder.menuAddHyperlink.setDisabled(isCellLocked || inPivot || this._state.wsProps['InsertHyperlinks']); documentHolder.pmiInsFunction.setDisabled(isCellLocked || inPivot); documentHolder.pmiFreezePanes.setDisabled(this.api.asc_isWorksheetLockedOrDeleted(this.api.asc_getActiveWorksheetIndex())); + documentHolder.pmiRowHeight.setDisabled(isCellLocked || this._state.wsProps['FormatRows']); + documentHolder.pmiColumnWidth.setDisabled(isCellLocked || this._state.wsProps['FormatColumns']); + documentHolder.pmiEntireHide.setDisabled(isCellLocked || iscolmenu && this._state.wsProps['FormatColumns'] || isrowmenu && this._state.wsProps['FormatRows']); + documentHolder.pmiEntireShow.setDisabled(isCellLocked || iscolmenu && this._state.wsProps['FormatColumns'] ||isrowmenu && this._state.wsProps['FormatRows']); + documentHolder.pmiNumFormat.setDisabled(isCellLocked || this._state.wsProps['FormatCells']); + documentHolder.pmiSparklines.setDisabled(isCellLocked || this._state.wsLock); + documentHolder.pmiEntriesList.setDisabled(isCellLocked || this._state.wsLock); + documentHolder.pmiAddNamedRange.setDisabled(isCellLocked || this._state.wsLock); + documentHolder.pmiAddComment.setDisabled(isCellLocked || this._state.wsProps['Objects']); if (inPivot) { var canGroup = this.api.asc_canGroupPivot(); - documentHolder.mnuGroupPivot.setDisabled(isPivotLocked || !canGroup); - documentHolder.mnuUnGroupPivot.setDisabled(isPivotLocked || !canGroup); + documentHolder.mnuGroupPivot.setDisabled(isPivotLocked || !canGroup || this._state.wsLock); + documentHolder.mnuUnGroupPivot.setDisabled(isPivotLocked || !canGroup || this._state.wsLock); } if (showMenu) this.showPopupMenu(documentHolder.ssMenu, {}, event); @@ -2093,7 +2195,7 @@ define([ var signProps = (signGuid) ? this.api.asc_getSignatureSetup(signGuid) : null, isInSign = !!signProps && this._canProtect, - canComment = iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && !this._isDisabled && cellinfo.asc_getComments().length < 1; + canComment = iscellmenu && !iscelledit && this.permissions.canCoAuthoring && this.permissions.canComments && !this._isDisabled && cellinfo.asc_getComments() && cellinfo.asc_getComments().length < 1; documentHolder.menuViewUndo.setVisible(this.permissions.canCoAuthoring && this.permissions.canComments && !this._isDisabled); documentHolder.menuViewUndo.setDisabled(!this.api.asc_getCanUndo() && !this._isDisabled); @@ -2108,7 +2210,7 @@ define([ documentHolder.menuViewAddComment.setVisible(canComment); commentsController && commentsController.blockPopover(true); - documentHolder.menuViewAddComment.setDisabled(isCellLocked || isTableLocked); + documentHolder.menuViewAddComment.setDisabled(isCellLocked || isTableLocked || this._state.wsProps['Objects']); if (showMenu) this.showPopupMenu(documentHolder.viewModeMenu, {}, event); if (isInSign) { @@ -3620,7 +3722,75 @@ define([ win.setActiveCategory(2); } }, - + + onChangeProtectSheet: function(props) { + if (!props) { + var wbprotect = this.getApplication().getController('WBProtection'); + props = wbprotect ? wbprotect.getWSProps() : null; + } + if (props) { + this._state.wsProps = props.wsProps; + this._state.wsLock = props.wsLock; + } + }, + + onShowForeignCursorLabel: function(UserId, X, Y, color) { + /** coauthoring begin **/ + var src; + var me = this; + for (var i=0; icoAuthTip.bodyWidth-coAuthTip.rightMenuWidth || Y<0 || Y>coAuthTip.apiHeight) { + src && this.onHideForeignCursorLabel(UserId); + return; + } + + if (!src) { + src = $(document.createElement("div")); + src.addClass('username-tip'); + src.attr('userid', UserId); + src.css({height: me._TtHeight + 'px', position: 'absolute', zIndex: '900', display: 'none', 'pointer-events': 'none', + 'background-color': '#'+Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b())}); + src.text(me.getUserName(UserId)); + + $('#editor_sdk').append(src); + me.fastcoauthtips.push(src); + src.fadeIn(150); + } + src.css({ + left : ((X+coAuthTip.XY[0]+src.outerWidth()>coAuthTip.bodyWidth-coAuthTip.rightMenuWidth) ? coAuthTip.bodyWidth-coAuthTip.rightMenuWidth-src.outerWidth()-coAuthTip.XY[0] : X) + 'px', + top : (Y-me._TtHeight) + 'px' + }); + /** coauthoring end **/ + }, + + onHideForeignCursorLabel: function(UserId) { + var me = this; + for (var i=0; iDo you wish to continue with the current selection?' }, SSE.Controllers.DocumentHolder || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js index b0b515451..27f16d8d1 100644 --- a/apps/spreadsheeteditor/main/app/controller/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/LeftMenu.js @@ -56,7 +56,11 @@ define([ 'hide': _.bind(this.onHidePlugins, this) }, 'Common.Views.Header': { - 'file:settings': _.bind(this.clickToolbarSettings,this) + 'file:settings': _.bind(this.clickToolbarSettings,this), + 'history:show': function () { + if ( !this.leftMenu.panelHistory.isVisible() ) + this.clickMenuFileItem('header', 'history'); + }.bind(this) }, 'LeftMenu': { 'file:show': _.bind(this.fileShowHide, this, true), @@ -99,6 +103,10 @@ define([ }); Common.NotificationCenter.on('app:comment:add', _.bind(this.onAppAddComment, this)); Common.NotificationCenter.on('leftmenu:change', _.bind(this.onMenuChange, this)); + Common.NotificationCenter.on('collaboration:history', _.bind(function () { + if ( !this.leftMenu.panelHistory.isVisible() ) + this.clickMenuFileItem(null, 'history'); + }, this)); }, onLaunch: function() { @@ -158,7 +166,8 @@ define([ var collection = comments[name], resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); for (var i = 0; i < collection.length; ++i) { - if (collection.at(i).get('userid') !== this.mode.user.id && (resolved || !collection.at(i).get('resolved'))) { + var comment = collection.at(i); + if (!comment.get('hide') && comment.get('userid') !== this.mode.user.id && (resolved || !comment.get('resolved'))) { this.leftMenu.markCoauthOptions('comments', true); break; } @@ -170,6 +179,8 @@ define([ if (!this.mode.isEditMailMerge && !this.mode.isEditDiagram) this.api.asc_registerCallback('asc_onEditCell', _.bind(this.onApiEditCell, this)); this.leftMenu.getMenu('file').setApi(api); + if (this.mode.canUseHistory) + this.getApplication().getController('Common.Controllers.History').setApi(this.api).setMode(this.mode); return this; }, @@ -232,6 +243,8 @@ define([ this.leftMenu.btnSpellcheck.show(); this.leftMenu.setOptionsPanel('spellcheck', this.getApplication().getController('Spellcheck').getView('Spellcheck')); } + if (this.mode.canUseHistory) + this.leftMenu.setOptionsPanel('history', this.getApplication().getController('Common.Controllers.History').getView('Common.Views.History')); (this.mode.trialMode || this.mode.isBeta) && this.leftMenu.setDeveloperMode(this.mode.trialMode, this.mode.isBeta, this.mode.buildVersion); /** coauthoring end **/ @@ -280,10 +293,35 @@ define([ } })).show(); break; + case 'history': + if (!this.leftMenu.panelHistory.isVisible()) { + if (this.api.asc_isDocumentModified()) { + var me = this; + this.api.asc_stopSaving(); + Common.UI.warning({ + closable: false, + width: 500, + title: this.notcriticalErrorTitle, + msg: this.leavePageText, + buttons: ['ok', 'cancel'], + primary: 'ok', + callback: function(btn) { + if (btn == 'ok') { + me.api.asc_undoAllChanges(); + me.api.asc_continueSaving(); + me.showHistory(); + } else + me.api.asc_continueSaving(); + } + }); + } else + this.showHistory(); + } + break; default: close_menu = false; } - if (close_menu) { + if (close_menu && menu) { menu.hide(); } }, @@ -335,7 +373,7 @@ define([ } }, - onDownloadUrl: function(url) { + onDownloadUrl: function(url, fileType) { if (this.isFromFileDownloadAs) { var me = this, defFileName = this.getApplication().getController('Viewport').getView('Common.Views.Header').getDocumentCaption(); @@ -348,7 +386,7 @@ define([ } if (me.mode.canRequestSaveAs) { - Common.Gateway.requestSaveAs(url, defFileName); + Common.Gateway.requestSaveAs(url, defFileName, fileType); } else { me._saveCopyDlg = new Common.Views.SaveAsDlg({ saveFolderUrl: me.mode.saveAsUrl, @@ -734,14 +772,14 @@ define([ onApiAddComment: function(id, data) { var resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); - if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved())) + if (data && data.asc_getUserId() !== this.mode.user.id && (resolved || !data.asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) this.leftMenu.markCoauthOptions('comments'); }, onApiAddComments: function(data) { var resolved = Common.Utils.InternalSettings.get("sse-settings-resolvedcomment"); for (var i = 0; i < data.length; ++i) { - if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved())) { + if (data[i].asc_getUserId() !== this.mode.user.id && (resolved || !data[i].asc_getSolved()) && AscCommon.UserInfoParser.canViewComment(data.asc_getUserName())) { this.leftMenu.markCoauthOptions('comments'); break; } @@ -977,6 +1015,17 @@ define([ } }, + showHistory: function() { + if (!this.mode.wopi) { + var maincontroller = this.getApplication().getController('Main'); + if (!maincontroller.loadMask) + maincontroller.loadMask = new Common.UI.LoadMask({owner: $('#viewport')}); + maincontroller.loadMask.setTitle(this.textLoadHistory); + maincontroller.loadMask.show(); + } + Common.Gateway.requestHistory(); + }, + textNoTextFound : 'Text not found', newDocumentTitle : 'Unnamed document', textItemEntireCell : 'Entire cell contents', @@ -994,6 +1043,8 @@ define([ textWithin: 'Within', textSearch: 'Search', textLookin: 'Look in', - txtUntitled: 'Untitled' + txtUntitled: 'Untitled', + textLoadHistory : 'Loading version history...', + leavePageText: 'All unsaved changes in this document will be lost.
    Click \'Cancel\' then \'Save\' to save them. Click \'OK\' to discard all the unsaved changes.' }, SSE.Controllers.LeftMenu || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/Main.js b/apps/spreadsheeteditor/main/app/controller/Main.js index 540104bc0..43a6876dd 100644 --- a/apps/spreadsheeteditor/main/app/controller/Main.js +++ b/apps/spreadsheeteditor/main/app/controller/Main.js @@ -91,7 +91,8 @@ define([ 'TableTemplates', 'ConditionalFormatIcons', 'ConditionalFormatIconsPresets', - 'Common.Collections.TextArt' + 'Common.Collections.TextArt', + 'Common.Collections.HistoryUsers' ], views: [], @@ -212,7 +213,9 @@ define([ Common.NotificationCenter.on('download:advanced', _.bind(this.onAdvancedOptions, this)); Common.NotificationCenter.on('showmessage', _.bind(this.onExternalMessage, this)); Common.NotificationCenter.on('markfavorite', _.bind(this.markFavorite, this)); + Common.NotificationCenter.on('protect:check', _.bind(this.checkProtectedRange, this)); Common.NotificationCenter.on('editing:disable', _.bind(this.onEditingDisable, this)); + Common.NotificationCenter.on('showerror', _.bind(this.onError, this)); this.stackLongActions = new Common.IrregularStack({ strongCompare : this._compareActionStrong, @@ -546,7 +549,8 @@ define([ Asc.c_oAscFileType.PDF, Asc.c_oAscFileType.PDFA, Asc.c_oAscFileType.XLTX, - Asc.c_oAscFileType.OTS + Asc.c_oAscFileType.OTS, + Asc.c_oAscFileType.XLSM ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -989,6 +993,7 @@ define([ Common.Gateway.on('downloadas', _.bind(me.onDownloadAs, me)); Common.Gateway.on('setfavorite', _.bind(me.onSetFavorite, me)); Common.Gateway.on('requestclose', _.bind(me.onRequestClose, me)); + Common.Gateway.on('refreshhistory',_.bind(me.onRefreshHistory, me)); Common.Gateway.sendInfo({mode:me.appOptions.isEdit?'edit':'view'}); $(document).on('contextmenu', _.bind(me.onContextMenu, me)); @@ -1250,6 +1255,14 @@ define([ this.getApplication().getController('Common.Controllers.Plugins').setMode(this.appOptions); } + this.appOptions.canUseHistory = this.appOptions.canLicense && this.editorConfig.canUseHistory && this.appOptions.canCoAuthoring && !this.appOptions.isOffline; + this.appOptions.canHistoryClose = this.editorConfig.canHistoryClose; + this.appOptions.canHistoryRestore= this.editorConfig.canHistoryRestore; + + if ( this.appOptions.isLightVersion ) { + this.appOptions.canUseHistory = false; + } + this.loadCoAuthSettings(); this.applyModeCommonElements(); this.applyModeEditorElements(); @@ -1390,8 +1403,8 @@ define([ // statusbarController && statusbarController.setApi(me.api); rightmenuController && rightmenuController.setApi(me.api); - if (me.appOptions.canProtect) - application.getController('Common.Controllers.Protection').setMode(me.appOptions).setConfig({config: me.editorConfig}, me.api); + application.getController('Common.Controllers.Protection').setMode(me.appOptions).setConfig({config: me.editorConfig}, me.api); + application.getController('WBProtection').setMode(me.appOptions).setConfig({config: me.editorConfig}, me.api); if (statusbarController) { statusbarController.getView('Statusbar').changeViewMode(true); @@ -1418,6 +1431,7 @@ define([ me.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(me.onAuthParticipantsChanged, me)); me.api.asc_registerCallback('asc_onParticipantsChanged', _.bind(me.onAuthParticipantsChanged, me)); me.api.asc_registerCallback('asc_onConnectionStateChanged', _.bind(me.onUserConnection, me)); + me.api.asc_registerCallback('asc_onConvertEquationToMath', _.bind(me.onConvertEquationToMath, me)); /** coauthoring end **/ if (me.appOptions.isEditDiagram) me.api.asc_registerCallback('asc_onSelectionChanged', _.bind(me.onSelectionChanged, me)); @@ -1807,12 +1821,35 @@ define([ config.msg = this.errorPivotWithoutUnderlying; break; + case Asc.c_oAscError.ID.ChangeOnProtectedSheet: + config.msg = this.errorChangeOnProtectedSheet; + break; + + case Asc.c_oAscError.ID.SingleColumnOrRowError: + config.msg = this.errorSingleColumnOrRowError; + break; + + case Asc.c_oAscError.ID.LocationOrDataRangeError: + config.msg = this.errorLocationOrDataRangeError; + break; + + case Asc.c_oAscError.ID.PasswordIsNotCorrect: + config.msg = this.errorPasswordIsNotCorrect; + break; + + case Asc.c_oAscError.ID.DeleteColumnContainsLockedCell: + config.msg = this.errorDeleteColumnContainsLockedCell; + break; + + case Asc.c_oAscError.ID.DeleteRowContainsLockedCell: + config.msg = this.errorDeleteRowContainsLockedCell; + break; + default: config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); break; } - if (level == Asc.c_oAscError.Level.Critical) { Common.Gateway.reportError(id, config.msg); @@ -2007,9 +2044,10 @@ define([ }); }, - onDownloadUrl: function(url) { - if (this._state.isFromGatewayDownloadAs) - Common.Gateway.downloadAs(url); + onDownloadUrl: function(url, fileType) { + if (this._state.isFromGatewayDownloadAs) { + Common.Gateway.downloadAs(url, fileType); + } this._state.isFromGatewayDownloadAs = false; }, @@ -2122,7 +2160,7 @@ define([ } }, - onConfirmAction: function(id, apiCallback) { + onConfirmAction: function(id, apiCallback, data) { var me = this; if (id == Asc.c_oAscConfirm.ConfirmReplaceRange || id == Asc.c_oAscConfirm.ConfirmReplaceFormulaInTable) { Common.UI.warning({ @@ -2153,6 +2191,68 @@ define([ me.onEditComplete(me.application.getController('DocumentHolder').getView('DocumentHolder')); }, this) }); + } else if (id == Asc.c_oAscConfirm.ConfirmChangeProtectRange) { + var win = new Common.Views.OpenDialog({ + title: this.txtUnlockRange, + closable: true, + type: Common.Utils.importTextType.DRM, + warning: true, + warningMsg: this.txtUnlockRangeWarning, + txtOpenFile: this.txtUnlockRangeDescription, + validatePwd: false, + handler: function (result, value) { + if (me.api && apiCallback) { + apiCallback((result == 'ok') ? me.api.asc_checkProtectedRangesPassword(value.drmOptions.asc_getPassword(), data) : false, result !== 'ok'); + } + me.onEditComplete(me.application.getController('DocumentHolder').getView('DocumentHolder')); + } + }); + win.show(); + } + }, + + checkProtectedRange: function(callback, scope, args) { + var result = this.api.asc_isProtectedSheet() ? this.api.asc_checkProtectedRange() : false; + if (result===null) { + this.onError(Asc.c_oAscError.ID.ChangeOnProtectedSheet, Asc.c_oAscError.Level.NoCritical); + return; + } + + if (result) { + var me = this; + var win = new Common.Views.OpenDialog({ + title: this.txtUnlockRange, + closable: true, + type: Common.Utils.importTextType.DRM, + warning: true, + warningMsg: this.txtUnlockRangeWarning, + txtOpenFile: this.txtUnlockRangeDescription, + validatePwd: false, + handler: function (result, value) { + if (result == 'ok') { + if (me.api) { + if (me.api.asc_checkActiveCellPassword(value.drmOptions.asc_getPassword())) { + callback && setTimeout(function() { + callback.apply(scope, args); + }, 1); + } else { + Common.UI.warning({ + msg: me.errorWrongPassword, + callback: function() { + Common.NotificationCenter.trigger('edit:complete', me.toolbar); + } + }); + } + } + } + Common.NotificationCenter.trigger('edit:complete', me.toolbar); + } + }); + win.show(); + } else { + callback && setTimeout(function() { + callback.apply(scope, args); + }, 1); } }, @@ -2652,6 +2752,159 @@ define([ this._renameDialog.show(Common.Utils.innerWidth() - this._renameDialog.options.width - 15, 30); }, + onRefreshHistory: function(opts) { + if (!this.appOptions.canUseHistory) return; + + this.loadMask && this.loadMask.hide(); + if (opts.data.error || !opts.data.history) { + var historyStore = this.getApplication().getCollection('Common.Collections.HistoryVersions'); + if (historyStore && historyStore.size()>0) { + historyStore.each(function(item){ + item.set('canRestore', false); + }); + } + Common.UI.alert({ + title: this.notcriticalErrorTitle, + msg: (opts.data.error) ? opts.data.error : this.txtErrorLoadHistory, + iconCls: 'warn', + buttons: ['ok'], + callback: _.bind(function(btn){ + this.onEditComplete(); + }, this) + }); + } else { + this.api.asc_coAuthoringDisconnect(); + this.headerView.setCanRename(false); + this.headerView.getButton('users') && this.headerView.getButton('users').hide(); + this.getApplication().getController('LeftMenu').getView('LeftMenu').showHistory(); + this.disableEditing(true); + this._renameDialog && this._renameDialog.close(); + var versions = opts.data.history, + historyStore = this.getApplication().getCollection('Common.Collections.HistoryVersions'), + currentVersion = null; + if (historyStore) { + var arrVersions = [], ver, version, group = -1, prev_ver = -1, arrColors = [], docIdPrev = '', + usersStore = this.getApplication().getCollection('Common.Collections.HistoryUsers'), user = null, usersCnt = 0; + + for (ver=versions.length-1; ver>=0; ver--) { + version = versions[ver]; + if (version.versionGroup===undefined || version.versionGroup===null) + version.versionGroup = version.version; + if (version) { + if (!version.user) version.user = {}; + docIdPrev = (ver>0 && versions[ver-1]) ? versions[ver-1].key : version.key + '0'; + user = usersStore.findUser(version.user.id); + if (!user) { + user = new Common.Models.User({ + id : version.user.id, + username : version.user.name, + colorval : Asc.c_oAscArrUserColors[usersCnt], + color : this.generateUserColor(Asc.c_oAscArrUserColors[usersCnt++]) + }); + usersStore.add(user); + } + + arrVersions.push(new Common.Models.HistoryVersion({ + version: version.versionGroup, + revision: version.version, + userid : version.user.id, + username : version.user.name, + usercolor: user.get('color'), + created: version.created, + docId: version.key, + markedAsVersion: (group!==version.versionGroup), + selected: (opts.data.currentVersion == version.version), + canRestore: this.appOptions.canHistoryRestore && (ver < versions.length-1), + isExpanded: true, + serverVersion: version.serverVersion, + fileType: 'xslx' + })); + if (opts.data.currentVersion == version.version) { + currentVersion = arrVersions[arrVersions.length-1]; + } + group = version.versionGroup; + if (prev_ver!==version.version) { + prev_ver = version.version; + arrColors.reverse(); + for (i=0; i0) { + arrVersions[arrVersions.length-1].set('docIdPrev', docIdPrev); + if (!_.isEmpty(version.serverVersion) && version.serverVersion == this.appOptions.buildVersion) { + arrVersions[arrVersions.length-1].set('changeid', changes.length-1); + arrVersions[arrVersions.length-1].set('hasChanges', changes.length>1); + for (i=changes.length-2; i>=0; i--) { + change = changes[i]; + + user = usersStore.findUser(change.user.id); + if (!user) { + user = new Common.Models.User({ + id : change.user.id, + username : change.user.name, + colorval : Asc.c_oAscArrUserColors[usersCnt], + color : this.generateUserColor(Asc.c_oAscArrUserColors[usersCnt++]) + }); + usersStore.add(user); + } + + arrVersions.push(new Common.Models.HistoryVersion({ + version: version.versionGroup, + revision: version.version, + changeid: i, + userid : change.user.id, + username : change.user.name, + usercolor: user.get('color'), + created: change.created, + docId: version.key, + docIdPrev: docIdPrev, + selected: false, + canRestore: this.appOptions.canHistoryRestore && this.appOptions.canDownload, + isRevision: false, + isVisible: true, + serverVersion: version.serverVersion, + fileType: 'xslx' + })); + arrColors.push(user.get('colorval')); + } + } + } else if (ver==0 && versions.length==1) { + arrVersions[arrVersions.length-1].set('docId', version.key + '1'); + } + } + } + if (arrColors.length>0) { + arrColors.reverse(); + for (i=0; i0) { + currentVersion = historyStore.at(0); + currentVersion.set('selected', true); + } + // if (currentVersion) + // this.getApplication().getController('Common.Controllers.History').onSelectRevision(null, null, currentVersion); + } + } + }, + + DisableVersionHistory: function() { + this.editorConfig.canUseHistory = false; + this.appOptions.canUseHistory = false; + }, + + generateUserColor: function(color) { + return"#"+("000000"+color.toString(16)).substr(-6); + }, + onGrabFocus: function() { this.getApplication().getController('DocumentHolder').getView().focus(); }, @@ -2678,6 +2931,30 @@ define([ synchronizeChanges: function() { this.toolbarView && this.toolbarView.synchronizeChanges(); this._state.hasCollaborativeChanges = false; + }, + + onConvertEquationToMath: function(equation) { + var me = this, + win; + var msg = this.textConvertEquation + '

    ' + this.textLearnMore + ''; + win = Common.UI.warning({ + width: 500, + msg: msg, + buttons: ['yes', 'cancel'], + primary: 'yes', + dontshow: true, + textDontShow: this.textApplyAll, + callback: _.bind(function(btn, dontshow){ + if (btn == 'yes') { + this.api.asc_ConvertEquationToMath(equation, dontshow); + } + this.onEditComplete(); + }, this) + }); + win.$window.find('#id-equation-convert-help').on('click', function (e) { + win && win.close(); + me.getApplication().getController('LeftMenu').getView('LeftMenu').showMenu('file:help', 'UsageInstructions\/InsertEquation.htm#convertequation'); + }) }, leavePageText: 'You have unsaved changes in this document. Click \'Stay on this Page\' then \'Save\' to save them. Click \'Leave this Page\' to discard all the unsaved changes.', @@ -3080,9 +3357,24 @@ define([ errorPivotWithoutUnderlying: 'The Pivot Table report was saved without the underlying data.
    Use the \'Refresh\' button to update the report.', txtQuarter: 'Qtr', txtOr: '%1 or %2', - errorLang: 'The interface language is not loaded.
    Please contact your Document Server administrator.', confirmReplaceFormulaInTable: 'Formulas in the header row will be removed and converted to static text.
    Do you want to continue?', + errorChangeOnProtectedSheet: 'The cell or chart you are trying to change is on a protected sheet.
    To make a change, unprotect the sheet. You might be requested to enter a password.', + txtUnlockRange: 'Unlock Range', + txtUnlockRangeWarning: 'A range you are trying to change is password protected.', + txtUnlockRangeDescription: 'Enter the password to change this range:', + txtUnlock: 'Unlock', + errorWrongPassword: 'The password you supplied is not correct.', + errorLang: 'The interface language is not loaded.
    Please contact your Document Server administrator.', textDisconnect: 'Connection is lost', + textConvertEquation: 'This equation was created with an old version of equation editor which is no longer supported. Converting this equation to Office Math ML format will make it editable.
    Do you want to convert this equation?', + textApplyAll: 'Apply to all equations', + textLearnMore: 'Learn More', + errorSingleColumnOrRowError: 'Location reference is not valid because the cells are not all in the same column or row.
    Select cells that are all in a single column or row.', + errorLocationOrDataRangeError: 'The reference for the location or data range is not valid.', + txtErrorLoadHistory: 'Loading history failed', + errorPasswordIsNotCorrect: 'The password you supplied is not correct.
    Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.', + errorDeleteColumnContainsLockedCell: 'You are trying to delete a column that contains a locked cell. Locked cells cannot be deleted while the worksheet is protected.
    To delete a locked cell, unprotect the sheet. You might be requested to enter a password.', + errorDeleteRowContainsLockedCell: 'You are trying to delete a row that contains a locked cell. Locked cells cannot be deleted while the worksheet is protected.
    To delete a locked cell, unprotect the sheet. You might be requested to enter a password.', textNeedSynchronize: 'You have an updates', textChangesSaved: 'All changes saved' } diff --git a/apps/spreadsheeteditor/main/app/controller/RightMenu.js b/apps/spreadsheeteditor/main/app/controller/RightMenu.js index 76477378c..be2acfa89 100644 --- a/apps/spreadsheeteditor/main/app/controller/RightMenu.js +++ b/apps/spreadsheeteditor/main/app/controller/RightMenu.js @@ -104,6 +104,7 @@ define([ this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('cells:range', _.bind(this.onCellsRange, this)); + Common.NotificationCenter.on('protect:wslock', _.bind(this.onChangeProtectSheet, this)); }, setMode: function(mode) { @@ -138,7 +139,7 @@ define([ var panel = this._settings[type].panel; var props = this._settings[type].props; if (props && panel) - panel.ChangeSettings.call(panel, (type==Common.Utils.documentSettingsType.Signature) ? undefined : props); + panel.ChangeSettings.call(panel, (type==Common.Utils.documentSettingsType.Signature) ? undefined : props, this._state.wsLock, this._state.wsProps); } Common.NotificationCenter.trigger('layout:changed', 'rightmenu'); }, @@ -171,10 +172,10 @@ define([ if (!this.editMode) return; - var isCellLocked = cellInfo.asc_getLocked(), - isTableLocked = (cellInfo.asc_getLockedTable()===true || !this.rightmenu.mode.canModifyFilter), - isSparkLocked = (cellInfo.asc_getLockedSparkline()===true), - isPivotLocked = (cellInfo.asc_getLockedPivotTable()===true); + var isCellLocked = cellInfo.asc_getLocked() || this._state.wsProps['FormatCells'], + isTableLocked = (cellInfo.asc_getLockedTable()===true || !this.rightmenu.mode.canModifyFilter) || this._state.wsProps['FormatCells'], + isSparkLocked = (cellInfo.asc_getLockedSparkline()===true) || this._state.wsLock, + isPivotLocked = (cellInfo.asc_getLockedPivotTable()===true) || this._state.wsProps['PivotTables']; for (var i=0; i 0) { item = this.statusbar.tabbar.getAt(i); @@ -174,11 +176,12 @@ define([ onWorksheetLocked: function(index,locked) { var count = this.statusbar.tabbar.getCount(), tab; + var wbprotected = this.api.asc_isProtectedWorkbook(); for (var i = count; i-- > 0; ) { tab = this.statusbar.tabbar.getAt(i); if (index == tab.sheetindex) { tab[locked?'addClass':'removeClass']('coauth-locked'); - tab.isLockTheDrag = locked || (this.statusbar.rangeSelectionMode==Asc.c_oAscSelectionDialogType.FormatTable) || (this.statusbar.rangeSelectionMode==Asc.c_oAscSelectionDialogType.PrintTitles); + tab.isLockTheDrag = locked || wbprotected || (this.statusbar.rangeSelectionMode==Asc.c_oAscSelectionDialogType.FormatTable) || (this.statusbar.rangeSelectionMode==Asc.c_oAscSelectionDialogType.PrintTitles); tab.$el.children(':first-child').attr('draggable', tab.isLockTheDrag?'false':'true'); break; } @@ -188,6 +191,19 @@ define([ listItem.setDisabled(locked); } }, + + onChangeProtectWorkbook: function() { + this.statusbar.btnAddWorksheet.setDisabled(this.api.isCellEdited || this.api.asc_isWorkbookLocked() || this.api.asc_isProtectedWorkbook() || this.statusbar.rangeSelectionMode!=Asc.c_oAscSelectionDialogType.None); + var count = this.statusbar.tabbar.getCount(), tab; + var wbprotected = this.api.asc_isProtectedWorkbook(); + for (var i = count; i-- > 0; ) { + tab = this.statusbar.tabbar.getAt(i); + var islocked = tab.hasClass('coauth-locked'); + tab.isLockTheDrag = islocked || wbprotected || (this.statusbar.rangeSelectionMode==Asc.c_oAscSelectionDialogType.FormatTable) || (this.statusbar.rangeSelectionMode==Asc.c_oAscSelectionDialogType.PrintTitles); + tab.$el.children(':first-child').attr('draggable', tab.isLockTheDrag?'false':'true'); + } + }, + /** coauthoring end **/ onApiMathChanged: function(info) { @@ -221,7 +237,7 @@ define([ statusbar.btnZoomUp.setDisabled(disable); statusbar.btnZoomDown.setDisabled(disable); statusbar.labelZoom[disable?'addClass':'removeClass']('disabled'); - statusbar.btnAddWorksheet.setDisabled(disable || this.api.asc_isWorkbookLocked() || statusbar.rangeSelectionMode!=Asc.c_oAscSelectionDialogType.None); + statusbar.btnAddWorksheet.setDisabled(disable || this.api.asc_isWorkbookLocked() || this.api.asc_isProtectedWorkbook() || statusbar.rangeSelectionMode!=Asc.c_oAscSelectionDialogType.None); statusbar.$el.find('#statusbar_bottom li span').attr('oo_editor_input', !disableAdd); @@ -252,16 +268,17 @@ define([ onRangeDialogMode: function (mode) { var islocked = this.statusbar.tabbar.hasClass('coauth-locked'), currentIdx = this.api.asc_getActiveWorksheetIndex(); - this.statusbar.btnAddWorksheet.setDisabled(islocked || this.api.isCellEdited || mode!=Asc.c_oAscSelectionDialogType.None); + this.statusbar.btnAddWorksheet.setDisabled(islocked || this.api.isCellEdited || this.api.asc_isProtectedWorkbook() || mode!=Asc.c_oAscSelectionDialogType.None); this.statusbar.btnSheetList[mode==Asc.c_oAscSelectionDialogType.FormatTable || mode==Asc.c_oAscSelectionDialogType.PrintTitles ? 'addClass' : 'removeClass']('disabled'); var item, i = this.statusbar.tabbar.getCount(); + var wbprotected = this.api.asc_isProtectedWorkbook(); while (i-- > 0) { item = this.statusbar.tabbar.getAt(i); if (item.sheetindex !== currentIdx) { item.disable(mode==Asc.c_oAscSelectionDialogType.FormatTable || mode==Asc.c_oAscSelectionDialogType.PrintTitles); } - item.isLockTheDrag = (item.hasClass('coauth-locked') || (mode!=Asc.c_oAscSelectionDialogType.None)); + item.isLockTheDrag = (item.hasClass('coauth-locked') || wbprotected || (mode!=Asc.c_oAscSelectionDialogType.None)); } this.statusbar.rangeSelectionMode = mode; }, @@ -300,6 +317,9 @@ define([ me.hideWorksheet(true, arrIndex); }, 1); break; + case 'protect': + this.protectWorksheet(); + break; } }, @@ -777,6 +797,10 @@ define([ this.statusbar.clearStatusMessage(); }, + protectWorksheet: function() { + Common.NotificationCenter.trigger('protect:sheet', !this.api.asc_isProtectedSheet()); + }, + zoomText : 'Zoom {0}%', errorLastSheet : 'Workbook must have at least one visible worksheet.', errorRemoveSheet: 'Can\'t delete the worksheet.', diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index 4dda125d5..29c9a68bb 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -118,7 +118,8 @@ define([ Asc.c_oAscFileType.CSV, Asc.c_oAscFileType.PDFA, Asc.c_oAscFileType.XLTX, - Asc.c_oAscFileType.OTS + Asc.c_oAscFileType.OTS, + Asc.c_oAscFileType.XLSM ]; if ( !_format || _supported.indexOf(_format) < 0 ) @@ -170,10 +171,6 @@ define([ merge: undefined, angle: undefined, controlsdisabled: { - rows: undefined, - cols: undefined, - cells_right: undefined, - cells_down: undefined, filters: undefined }, selection_type: undefined, @@ -194,7 +191,9 @@ define([ pgorient: undefined, lock_doc: undefined, cf_locked: [], - selectedCells: 0 + selectedCells: 0, + wsLock: false, + wsProps: [] }; this.binding = {}; @@ -912,6 +911,10 @@ define([ }, onHyperlink: function(btn) { + Common.NotificationCenter.trigger('protect:check', this.onHyperlinkCallback, this, [btn]); + }, + + onHyperlinkCallback: function(btn) { var me = this; var win, props; @@ -1180,6 +1183,10 @@ define([ }, onSortType: function(type, btn) { + Common.NotificationCenter.trigger('protect:check', this.onSortTypeCallback, this, [type, btn]); + }, + + onSortTypeCallback: function(type, btn) { if (this.api) { if (this.api.asc_getCellInfo().asc_getSelectionType()==Asc.c_oAscSelectionType.RangeSlicer) { var selectedObjects = this.api.asc_getGraphicObjectProps(); @@ -1195,25 +1202,43 @@ define([ } Common.NotificationCenter.trigger('edit:complete', this.toolbar); } else { + var me = this; var res = this.api.asc_sortCellsRangeExpand(); - if (res) { - var config = { - width: 500, - title: this.txtSorting, - msg: this.txtExpandSort, - - buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, - {caption: this.txtSortSelected, primary: true, value: 'sort'}, - 'cancel'], - callback: _.bind(function(btn){ - if (btn == 'expand' || btn == 'sort') { - this.api.asc_sortColFilter(type, '', undefined, undefined, btn == 'expand'); + switch (res) { + case Asc.c_oAscSelectionSortExpand.showExpandMessage: + var config = { + width: 500, + title: this.txtSorting, + msg: this.txtExpandSort, + buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, + {caption: this.txtSortSelected, primary: true, value: 'sort'}, + 'cancel'], + callback: function(btn){ + if (btn == 'expand' || btn == 'sort') { + me.api.asc_sortColFilter(type, '', undefined, undefined, btn == 'expand') + } } - }, this) - }; - Common.UI.alert(config); - } else - this.api.asc_sortColFilter(type, '', undefined, undefined, res !== null); + }; + Common.UI.alert(config); + break; + case Asc.c_oAscSelectionSortExpand.showLockMessage: + var config = { + width: 500, + title: this.txtSorting, + msg: this.txtLockSort, + buttons: ['yes', 'no'], + primary: 'yes', + callback: function(btn){ + (btn == 'yes') && me.api.asc_sortColFilter(type, '', undefined, undefined, false); + } + }; + Common.UI.alert(config); + break; + case Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage: + case Asc.c_oAscSelectionSortExpand.notExpandAndNotShowMessage: + this.api.asc_sortColFilter(type, '', undefined, undefined, res === Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage); + break; + } } } }, @@ -1455,6 +1480,16 @@ define([ }, onClearStyleMenu: function(menu, item, e) { + if (item.value == Asc.c_oAscCleanOptions.Format && (!this._state.wsProps['FormatCells'] || !this.api.asc_checkLockedCells()) || + item.value == Asc.c_oAscCleanOptions.All && !this.api.asc_checkLockedCells()) + this.onClearStyleMenuCallback(menu, item); + else if (item.value == Asc.c_oAscCleanOptions.Comments) { + this._state.wsProps['Objects'] ? Common.NotificationCenter.trigger('showerror', Asc.c_oAscError.ID.ChangeOnProtectedSheet, Asc.c_oAscError.Level.NoCritical) : this.onClearStyleMenuCallback(menu, item); + } else + Common.NotificationCenter.trigger('protect:check', this.onClearStyleMenuCallback, this, [menu, item]); + }, + + onClearStyleMenuCallback: function(menu, item, e) { if (this.api) { if (item.value == Asc.c_oAscCleanOptions.Comments) { this.api.asc_RemoveAllComments(!this.mode.canDeleteComments, true);// 1 param = true if remove only my comments, 2 param - remove current comments @@ -1801,6 +1836,7 @@ define([ this.api.asc_registerCallback('asc_onUpdateDocumentProps', _.bind(this.onUpdateDocumentProps, this)); this.api.asc_registerCallback('asc_onLockDocumentProps', _.bind(this.onApiLockDocumentProps, this)); this.api.asc_registerCallback('asc_onUnLockDocumentProps', _.bind(this.onApiUnLockDocumentProps, this)); + Common.NotificationCenter.on('protect:wslock', _.bind(this.onChangeProtectSheet, this)); } if ( !this.appConfig.isEditMailMerge ) { @@ -1816,7 +1852,7 @@ define([ var shortcuts = { 'command+l,ctrl+l': function(e) { - if ( me.editMode && !me._state.multiselect && me.appConfig.canModifyFilter) { + if ( me.editMode && !me._state.multiselect && me.appConfig.canModifyFilter && !me._state.wsLock) { var cellinfo = me.api.asc_getCellInfo(), filterinfo = cellinfo.asc_getAutoFilterInfo(), formattableinfo = cellinfo.asc_getFormatTableInfo(); @@ -1829,7 +1865,7 @@ define([ return false; }, 'command+shift+l,ctrl+shift+l': function(e) { - if (me.editMode && me.api && !me._state.multiselect && me.appConfig.canModifyFilter) { + if (me.editMode && me.api && !me._state.multiselect && me.appConfig.canModifyFilter && !me._state.wsLock) { var state = me._state.filter; me._state.filter = undefined; @@ -1848,7 +1884,7 @@ define([ }, 'command+k,ctrl+k': function (e) { if (me.editMode && !me.toolbar.mode.isEditMailMerge && !me.toolbar.mode.isEditDiagram && !me.api.isCellEdited && !me._state.multiselect && !me._state.inpivot && - !me.getApplication().getController('LeftMenu').leftMenu.menuFile.isVisible()) { + !me.getApplication().getController('LeftMenu').leftMenu.menuFile.isVisible() && !me._state.wsProps['InsertHyperlinks']) { var cellinfo = me.api.asc_getCellInfo(), selectionType = cellinfo.asc_getSelectionType(); if (selectionType !== Asc.c_oAscSelectionType.RangeShapeText || me.api.asc_canAddShapeHyperlink()!==false) @@ -1879,14 +1915,18 @@ define([ var cellinfo = me.api.asc_getCellInfo(), selectionType = cellinfo.asc_getSelectionType(); if (selectionType === Asc.c_oAscSelectionType.RangeRow || selectionType === Asc.c_oAscSelectionType.RangeCol) { - me.api.asc_insertCells(selectionType === Asc.c_oAscSelectionType.RangeRow ? Asc.c_oAscInsertOptions.InsertRows :Asc.c_oAscInsertOptions.InsertColumns ); + (selectionType === Asc.c_oAscSelectionType.RangeRow) && !me.toolbar.btnAddCell.menu.items[2].isDisabled() && me.api.asc_insertCells(Asc.c_oAscInsertOptions.InsertRows); + (selectionType === Asc.c_oAscSelectionType.RangeCol) && !me.toolbar.btnAddCell.menu.items[3].isDisabled() && me.api.asc_insertCells(Asc.c_oAscInsertOptions.InsertColumns); Common.NotificationCenter.trigger('edit:complete', me.toolbar); } else { var items = me.toolbar.btnAddCell.menu.items, - arr = []; - for (var i=0; i<4; i++) + arr = [], + enabled = false; + for (var i=0; i<4; i++) { arr.push({caption: items[i].caption, value: items[i].value, disabled: items[i].isDisabled()}); - (new Common.Views.OptionsDialog({ + !items[i].isDisabled() && (enabled = true); + } + enabled && (new Common.Views.OptionsDialog({ title: me.txtInsertCells, items: arr, handler: function (dlg, result) { @@ -1910,10 +1950,13 @@ define([ Common.NotificationCenter.trigger('edit:complete', me.toolbar); } else { var items = me.toolbar.btnDeleteCell.menu.items, - arr = []; - for (var i=0; i<4; i++) + arr = [], + enabled = false; + for (var i=0; i<4; i++) { arr.push({caption: items[i].caption, value: items[i].value, disabled: items[i].isDisabled()}); - (new Common.Views.OptionsDialog({ + !items[i].isDisabled() && (enabled = true); + } + enabled && (new Common.Views.OptionsDialog({ title: me.txtDeleteCells, items: arr, handler: function (dlg, result) { @@ -1930,7 +1973,7 @@ define([ }; Common.util.Shortcuts.delegateShortcuts({shortcuts: shortcuts}); - this.onApiSelectionChanged(this.api.asc_getCellInfo()); + this.onChangeProtectSheet(); this.attachToControlEvents(); this.onApiSheetChanged(); @@ -2485,6 +2528,15 @@ define([ toolbar.btnImgAlign.menu.items[7].setDisabled(objcount<3); toolbar.btnImgAlign.menu.items[8].setDisabled(objcount<3); + // disable on protected sheet + // lock formatting controls in cell with FormatCells protection or in shape and Objects protection + need_disable = (selectionType === Asc.c_oAscSelectionType.RangeImage || selectionType === Asc.c_oAscSelectionType.RangeChart || selectionType === Asc.c_oAscSelectionType.RangeChartText || + selectionType === Asc.c_oAscSelectionType.RangeShape || selectionType === Asc.c_oAscSelectionType.RangeShapeText || selectionType === Asc.c_oAscSelectionType.RangeSlicer); + toolbar.lockToolbar(SSE.enumLock.wsLockFormat, need_disable && !!this._state.wsProps['Objects'] || !need_disable && !!this._state.wsProps['FormatCells']); + + toolbar.lockToolbar(SSE.enumLock['Objects'], !!this._state.wsProps['Objects']); + toolbar.lockToolbar(SSE.enumLock['FormatCells'], !!this._state.wsProps['FormatCells']); + if (editOptionsDisabled) return; /* read font params */ @@ -2797,32 +2849,51 @@ define([ } } - val = (selectionType==Asc.c_oAscSelectionType.RangeRow); - if ( this._state.controlsdisabled.rows!==val ) { - this._state.controlsdisabled.rows=val; - toolbar.btnAddCell.menu.items[3].setDisabled(val); - toolbar.btnDeleteCell.menu.items[3].setDisabled(val); - } - val = (selectionType==Asc.c_oAscSelectionType.RangeCol); - if ( this._state.controlsdisabled.cols!==val ) { - this._state.controlsdisabled.cols=val; - toolbar.btnAddCell.menu.items[2].setDisabled(val); - toolbar.btnDeleteCell.menu.items[2].setDisabled(val); - } + var selCol = selectionType==Asc.c_oAscSelectionType.RangeCol, + selRow = selectionType==Asc.c_oAscSelectionType.RangeRow, + selMax = selectionType==Asc.c_oAscSelectionType.RangeMax; + + need_disable = selRow || selMax && this._state.wsLock || this._state.wsProps['InsertColumns']; + toolbar.btnAddCell.menu.items[3].setDisabled(need_disable); + + need_disable = selRow || selMax && this._state.wsLock || !selCol && this._state.wsLock || this._state.wsProps['DeleteColumns']; + toolbar.btnDeleteCell.menu.items[3].setDisabled(need_disable); + + need_disable = selCol || selMax && this._state.wsLock || this._state.wsProps['InsertRows']; + toolbar.btnAddCell.menu.items[2].setDisabled(need_disable); + + need_disable = selCol || selMax && this._state.wsLock || !selRow && this._state.wsLock || this._state.wsProps['DeleteRows']; + toolbar.btnDeleteCell.menu.items[2].setDisabled(need_disable); val = filterInfo && filterInfo.asc_getIsApplyAutoFilter(); - if ( this._state.controlsdisabled.cells_right!==(this._state.controlsdisabled.rows || val) ) { - this._state.controlsdisabled.cells_right = (this._state.controlsdisabled.rows || val); - toolbar.btnAddCell.menu.items[0].setDisabled(this._state.controlsdisabled.cells_right); - toolbar.btnDeleteCell.menu.items[0].setDisabled(this._state.controlsdisabled.cells_right); - } - if ( this._state.controlsdisabled.cells_down!==(this._state.controlsdisabled.cols || val) ) { - this._state.controlsdisabled.cells_down = (this._state.controlsdisabled.cols || val); - toolbar.btnAddCell.menu.items[1].setDisabled(this._state.controlsdisabled.cells_down); - toolbar.btnDeleteCell.menu.items[1].setDisabled(this._state.controlsdisabled.cells_down); - } + need_disable = selRow || val || !(selCol || selMax) && this._state.wsLock || selCol && this._state.wsProps['InsertColumns'] || selMax && this._state.wsProps['InsertColumns'] && this._state.wsProps['InsertRows']; + toolbar.btnAddCell.menu.items[0].setDisabled(need_disable); - toolbar.lockToolbar(SSE.enumLock.commentLock, (selectionType == Asc.c_oAscSelectionType.RangeCells) && (info.asc_getComments().length>0 || info.asc_getLocked()) || + need_disable = selRow || val || !(selCol || selMax) && this._state.wsLock || selCol && this._state.wsProps['DeleteColumns'] || selMax && this._state.wsProps['DeleteColumns'] && this._state.wsProps['DeleteRows']; + toolbar.btnDeleteCell.menu.items[0].setDisabled(need_disable); + + need_disable = selCol || val || !(selRow || selMax) && this._state.wsLock || selRow && this._state.wsProps['InsertRows'] || selMax && this._state.wsProps['InsertColumns'] && this._state.wsProps['InsertRows']; + toolbar.btnAddCell.menu.items[1].setDisabled(need_disable); + + need_disable = selCol || val || !(selRow || selMax) && this._state.wsLock || selRow && this._state.wsProps['DeleteRows'] || selMax && this._state.wsProps['DeleteColumns'] && this._state.wsProps['DeleteRows']; + toolbar.btnDeleteCell.menu.items[1].setDisabled(need_disable); + + var items = toolbar.btnAddCell.menu.items, + enabled = false; + for (var i=0; i<4; i++) { + !items[i].isDisabled() && (enabled = true); + } + toolbar.lockToolbar(SSE.enumLock.itemsDisabled, !enabled, {array: [toolbar.btnAddCell]}); + + items = me.toolbar.btnDeleteCell.menu.items; + enabled = false; + for (var i=0; i<4; i++) { + !items[i].isDisabled() && (enabled = true); + } + toolbar.lockToolbar(SSE.enumLock.itemsDisabled, !enabled, {array: [toolbar.btnDeleteCell]}); + + // info.asc_getComments()===null - has comment, but no permissions to view it + toolbar.lockToolbar(SSE.enumLock.commentLock, (selectionType == Asc.c_oAscSelectionType.RangeCells) && (!info.asc_getComments() || info.asc_getComments().length>0 || info.asc_getLocked()) || this.toolbar.mode.compatibleFeatures && (selectionType != Asc.c_oAscSelectionType.RangeCells), { array: this.btnsComment }); @@ -2831,7 +2902,7 @@ define([ onApiSelectionChangedRestricted: function(info) { var selectionType = info.asc_getSelectionType(); - this.toolbar.lockToolbar(SSE.enumLock.commentLock, (selectionType == Asc.c_oAscSelectionType.RangeCells) && (info.asc_getComments().length>0 || info.asc_getLocked()) || + this.toolbar.lockToolbar(SSE.enumLock.commentLock, (selectionType == Asc.c_oAscSelectionType.RangeCells) && (!info.asc_getComments() || info.asc_getComments().length>0 || info.asc_getLocked()) || this.appConfig && this.appConfig.compatibleFeatures && (selectionType != Asc.c_oAscSelectionType.RangeCells), { array: this.btnsComment }); }, @@ -3183,6 +3254,10 @@ define([ }, onInsertSymbolClick: function() { + Common.NotificationCenter.trigger('protect:check', this.onInsertSymbolClickCallback, this, []); + }, + + onInsertSymbolClickCallback: function() { if (this.api) { var me = this, selected = me.api.asc_GetSelectedText(), @@ -3688,13 +3763,14 @@ define([ me.toolbar.btnCopy.$el.removeClass('split'); } - if ( config.isDesktopApp ) { - if ( config.canProtect ) { - var tab = {action: 'protect', caption: me.toolbar.textTabProtect}; - var $panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel(); - if ($panel) - me.toolbar.addTab(tab, $panel, 7); - } + var tab = {action: 'protect', caption: me.toolbar.textTabProtect}; + var $panel = me.getApplication().getController('Common.Controllers.Protection').createToolbarPanel(); + if ($panel) { + config.canProtect && $panel.append($('
    ')); + var wbtab = me.getApplication().getController('WBProtection'); + $panel.append(wbtab.createToolbarPanel()); + me.toolbar.addTab(tab, $panel, 7); + Array.prototype.push.apply(me.toolbar.lockControls, wbtab.getView('WBProtection').getButtons()); } var viewtab = me.getApplication().getController('ViewTab'); @@ -3711,7 +3787,8 @@ define([ this.btnsComment = []; if ( config.canCoAuthoring && config.canComments ) { var _set = SSE.enumLock; - this.btnsComment = Common.Utils.injectButtons(this.toolbar.$el.find('.slot-comment'), 'tlbtn-addcomment-', 'toolbar__icon btn-menu-comments', this.toolbar.capBtnComment, [_set.lostConnect, _set.commentLock, _set.editCell], undefined, undefined, undefined, '1', 'bottom', 'small'); + this.btnsComment = Common.Utils.injectButtons(this.toolbar.$el.find('.slot-comment'), 'tlbtn-addcomment-', 'toolbar__icon btn-menu-comments', this.toolbar.capBtnComment, + [_set.lostConnect, _set.commentLock, _set.editCell, _set['Objects']], undefined, undefined, undefined, '1', 'bottom', 'small'); if ( this.btnsComment.length ) { var _comments = SSE.getController('Common.Controllers.Comments').getView(); @@ -3965,6 +4042,21 @@ define([ Common.NotificationCenter.trigger('edit:complete', this.toolbar); }, + onChangeProtectSheet: function(props) { + if (!props) { + var wbprotect = this.getApplication().getController('WBProtection'); + props = wbprotect ? wbprotect.getWSProps() : null; + } + if (props) { + this._state.wsProps = props.wsProps; + this._state.wsLock = props.wsLock; + + this.toolbar.lockToolbar(SSE.enumLock.wsLock, this._state.wsLock); + this.toolbar.lockToolbar(SSE.enumLock['InsertHyperlinks'], this._state.wsProps['InsertHyperlinks'], {array: [this.toolbar.btnInsertHyperlink]}); + this.onApiSelectionChanged(this.api.asc_getCellInfo()); + } + }, + textEmptyImgUrl : 'You need to specify image URL.', warnMergeLostData : 'Operation can destroy data in the selected cells.
    Continue?', textWarning : 'Warning', @@ -4331,7 +4423,8 @@ define([ textDirectional: 'Directional', textShapes: 'Shapes', textIndicator: 'Indicators', - textRating: 'Ratings' + textRating: 'Ratings', + txtLockSort: 'Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?' }, SSE.Controllers.Toolbar || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/controller/Viewport.js b/apps/spreadsheeteditor/main/app/controller/Viewport.js index 636152c0c..16dfa9b34 100644 --- a/apps/spreadsheeteditor/main/app/controller/Viewport.js +++ b/apps/spreadsheeteditor/main/app/controller/Viewport.js @@ -368,10 +368,11 @@ define([ this.api.asc_Resize(); }, this); - var leftPanel = $('#left-menu'); + var leftPanel = $('#left-menu'), + histPanel = $('#left-panel-history'); this.viewport.hlayout.on('layout:resizedrag', function() { this.api.asc_Resize(); - Common.localStorage.setItem('sse-mainmenu-width',leftPanel.width()); + Common.localStorage.setItem('sse-mainmenu-width',histPanel.is(':visible') ? (histPanel.width()+SCALE_MIN) : leftPanel.width()); }, this); this.boxSdk = $('#editor_sdk'); @@ -392,6 +393,14 @@ define([ case 'rightmenu': this.viewport.hlayout.doLayout(); break; + case 'history': + var panel = this.viewport.hlayout.items[1]; + if (panel.resize.el) { + this.boxSdk.css('border-left', ''); + panel.resize.el.show(); + } + this.viewport.hlayout.doLayout(); + break; case 'leftmenu': var panel = this.viewport.hlayout.items[0]; if (panel.resize.el) { diff --git a/apps/spreadsheeteditor/main/app/controller/WBProtection.js b/apps/spreadsheeteditor/main/app/controller/WBProtection.js new file mode 100644 index 000000000..53ae60bd0 --- /dev/null +++ b/apps/spreadsheeteditor/main/app/controller/WBProtection.js @@ -0,0 +1,362 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2021 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * + */ + +/** + * WBProtection.js + * + * Created by Julia Radzhabova on 21.06.2021 + * Copyright (c) 2021Ascensio System SIA. All rights reserved. + * + */ +define([ + 'core', + 'common/main/lib/view/Protection', + 'spreadsheeteditor/main/app/view/WBProtection', + 'spreadsheeteditor/main/app/view/ProtectDialog', + 'spreadsheeteditor/main/app/view/ProtectRangesDlg' +], function () { + 'use strict'; + + SSE.Controllers.WBProtection = Backbone.Controller.extend(_.extend({ + models : [], + collections : [ + ], + views : [ + 'WBProtection' + ], + sdkViewName : '#id_main', + + initialize: function () { + + this.addListeners({ + 'WBProtection': { + 'protect:workbook': _.bind(this.onWorkbookClick, this), + 'protect:sheet': _.bind(this.onSheetClick, this), + 'protect:ranges': _.bind(this.onRangesClick, this), + 'protect:lock-options': _.bind(this.onLockOptionClick, this) + } + }); + }, + onLaunch: function () { + this._state = {}; + this.wsLockOptions = ['SelectLockedCells', 'SelectUnlockedCells', 'FormatCells', 'FormatColumns', 'FormatRows', 'InsertColumns', 'InsertRows', 'InsertHyperlinks', 'DeleteColumns', + 'DeleteRows', 'Sort', 'AutoFilter', 'PivotTables', 'Objects', 'Scenarios']; + SSE.enumLock && this.wsLockOptions.forEach(function(item){ + SSE.enumLock[item] = item; + }); + + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); + Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this)); + Common.NotificationCenter.on('protect:sheet', _.bind(this.onSheetClick, this)); + }, + setConfig: function (data, api) { + this.setApi(api); + + if (data) { + this.sdkViewName = data['sdkviewname'] || this.sdkViewName; + } + }, + setApi: function (api) { + if (api) { + this.api = api; + this.api.asc_registerCallback('asc_onChangeProtectWorkbook',_.bind(this.onChangeProtectWorkbook, this)); + this.api.asc_registerCallback('asc_onChangeProtectWorksheet',_.bind(this.onChangeProtectSheet, this)); + this.api.asc_registerCallback('asc_onActiveSheetChanged', _.bind(this.onActiveSheetChanged, this)); + this.api.asc_registerCallback('asc_onSelectionChanged', _.bind(this.onApiSelectionChanged, this)); + this.api.asc_registerCallback('asc_onCoAuthoringDisconnect',_.bind(this.onCoAuthoringDisconnect, this)); + } + }, + + setMode: function(mode) { + this.appConfig = mode; + + this.view = this.createView('WBProtection', { + mode: mode + }); + + return this; + }, + + createToolbarPanel: function() { + return this.view.getPanel(); + }, + + getView: function(name) { + return !name && this.view ? + this.view : Backbone.Controller.prototype.getView.call(this, name); + }, + + onWorkbookClick: function(state) { + if (state) { + var me = this, + btn, + win = new SSE.Views.ProtectDialog({ + type: 'workbook', + handler: function(result, value) { + btn = result; + if (result == 'ok') { + var props = me.api.asc_getProtectedWorkbook(); + props.asc_setLockStructure(true); + value && props.asc_setPassword(value); + me.api.asc_setProtectedWorkbook(props); + } + Common.NotificationCenter.trigger('edit:complete'); + } + }).on('close', function() { + if (btn!=='ok') + me.view.btnProtectWB.toggle(false, true); + }); + + win.show(); + } else { + var me = this, + btn, + props = me.api.asc_getProtectedWorkbook(); + if (props.asc_isPassword()) { + var win = new Common.Views.OpenDialog({ + title: me.view.txtWBUnlockTitle, + closable: true, + type: Common.Utils.importTextType.DRM, + txtOpenFile: me.view.txtWBUnlockDescription, + validatePwd: false, + handler: function (result, value) { + btn = result; + if (result == 'ok') { + if (me.api) { + props.asc_setLockStructure(false, value); + me.api.asc_setProtectedWorkbook(props); + } + Common.NotificationCenter.trigger('edit:complete'); + } + } + }).on('close', function() { + if (btn!=='ok') + me.view.btnProtectWB.toggle(true, true); + }); + + win.show(); + } else { + props.asc_setLockStructure(false); + me.api.asc_setProtectedWorkbook(props); + } + } + }, + + onSheetClick: function(state) { + if (state) { + var me = this, + btn, + props = me.api.asc_getProtectedSheet(), + win = new SSE.Views.ProtectDialog({ + type: 'sheet', + props: props, + handler: function(result, value, props) { + btn = result; + if (result == 'ok') { + props.asc_setSheet(true); + value && props.asc_setPassword(value); + me.api.asc_setProtectedSheet(props); + } + Common.NotificationCenter.trigger('edit:complete'); + } + }).on('close', function() { + if (btn!=='ok') + me.view.btnProtectSheet.toggle(false, true); + }); + + win.show(); + } else { + var me = this, + btn, + props = me.api.asc_getProtectedSheet(); + if (props.asc_isPassword()) { + var win = new Common.Views.OpenDialog({ + title: me.view.txtSheetUnlockTitle, + closable: true, + type: Common.Utils.importTextType.DRM, + txtOpenFile: me.view.txtSheetUnlockDescription, + validatePwd: false, + handler: function (result, value) { + btn = result; + if (result == 'ok') { + if (me.api) { + props.asc_setSheet(false, value); + me.api.asc_setProtectedSheet(props); + } + Common.NotificationCenter.trigger('edit:complete'); + } + } + }).on('close', function() { + if (btn!=='ok') + me.view.btnProtectSheet.toggle(true, true); + }); + + win.show(); + } else { + props.asc_setSheet(false); + me.api.asc_setProtectedSheet(props); + } + } + }, + + onRangesClick: function() { + var me = this, + props = me.api.asc_getProtectedRanges(), + win = new SSE.Views.ProtectRangesDlg({ + api: me.api, + props: props, + handler: function(result, settings) { + if (result=='protect-sheet') { + me.api.asc_setProtectedRanges(settings.arr, settings.deletedArr); + me.onSheetClick(true); + } else if (result == 'ok') { + me.api.asc_setProtectedRanges(settings.arr, settings.deletedArr); + } + Common.NotificationCenter.trigger('edit:complete'); + } + }); + + win.show(); + }, + + onLockOptionClick: function(type, value) { + switch (type) { + case 0: // cell + this.api.asc_setCellLocked(value=='checked'); + break; + case 1: // shape + var props = new Asc.asc_CImgProperty(); + props.asc_putProtectionLocked(value=='checked'); + this.api.asc_setGraphicObjectProps(props); + break; + case 2: // text + var props = new Asc.asc_CImgProperty(); + props.asc_putProtectionLockText(value=='checked'); + this.api.asc_setGraphicObjectProps(props); + break; + case 3: // formula + this.api.asc_setCellHiddenFormulas(value=='checked'); + break; + } + Common.NotificationCenter.trigger('edit:complete', this); + }, + + onAppReady: function (config) { + var me = this; + (new Promise(function (resolve) { + resolve(); + })).then(function () { + me.view.btnProtectWB.toggle(me.api.asc_isProtectedWorkbook(), true); + + var props = me.getWSProps(); + me.view.btnProtectSheet.toggle(props.wsLock, true); //current sheet + Common.Utils.lockControls(SSE.enumLock['Objects'], props.wsProps['Objects'], { array: [me.view.chLockedText, me.view.chLockedShape]}); + Common.Utils.lockControls(SSE.enumLock.wsLock, props.wsLock, { array: [me.view.btnAllowRanges]}); + }); + }, + + onChangeProtectWorkbook: function() { + this.view.btnProtectWB.toggle(this.api.asc_isProtectedWorkbook(), true); + }, + + onChangeProtectSheet: function() { + var props = this.getWSProps(true); + + this.view.btnProtectSheet.toggle(props.wsLock, true); //current sheet + Common.Utils.lockControls(SSE.enumLock['Objects'], props.wsProps['Objects'], { array: [this.view.chLockedText, this.view.chLockedShape]}); + Common.Utils.lockControls(SSE.enumLock.wsLock, props.wsLock, { array: [this.view.btnAllowRanges]}); + Common.NotificationCenter.trigger('protect:wslock', props); + }, + + onActiveSheetChanged: function() { + this.onChangeProtectSheet(); //current sheet + }, + + getWSProps: function(update) { + if (update || !this._state.protection) { + var wsProtected = !!this.api.asc_isProtectedSheet(); + var arr = []; + if (wsProtected) { + arr = []; + var props = this.api.asc_getProtectedSheet(); + props && this.wsLockOptions.forEach(function(item){ + arr[item] = props['asc_get' + item] ? props['asc_get' + item]() : false; + }); + } else { + this.wsLockOptions.forEach(function(item){ + arr[item] = false; + }); + } + this._state.protection = {wsLock: wsProtected, wsProps: arr}; + } + + return this._state.protection; + }, + + onApiSelectionChanged: function(info) { + if ($('.asc-window.enable-key-events:visible').length>0) return; + + var selectionType = info.asc_getSelectionType(); + var need_disable = (selectionType === Asc.c_oAscSelectionType.RangeCells || selectionType === Asc.c_oAscSelectionType.RangeCol || + selectionType === Asc.c_oAscSelectionType.RangeRow || selectionType === Asc.c_oAscSelectionType.RangeMax); + Common.Utils.lockControls(SSE.enumLock.selRange, need_disable, { array: [this.view.chLockedText, this.view.chLockedShape]}); + + var xfs = info.asc_getXfs(); + this.view.chLockedCell.setValue(!!xfs.asc_getLocked(), true); + this.view.chHiddenFormula.setValue(!!xfs.asc_getHidden(), true); + + if (selectionType === Asc.c_oAscSelectionType.RangeSlicer || selectionType === Asc.c_oAscSelectionType.RangeImage || + selectionType === Asc.c_oAscSelectionType.RangeShape || selectionType === Asc.c_oAscSelectionType.RangeShapeText || + selectionType === Asc.c_oAscSelectionType.RangeChart || selectionType === Asc.c_oAscSelectionType.RangeChartText) { + var selectedObjects = this.api.asc_getGraphicObjectProps(); + for (var i = 0; i < selectedObjects.length; i++) { + if (selectedObjects[i].asc_getObjectType() == Asc.c_oAscTypeSelectElement.Image) { + var elValue = selectedObjects[i].asc_getObjectValue(); + var locktext = elValue.asc_getProtectionLockText(), + lock = elValue.asc_getProtectionLocked(); + this.view.chLockedText.setValue(locktext!==undefined ? !!locktext : 'indeterminate', true); + this.view.chLockedShape.setValue(lock!==undefined ? !!lock : 'indeterminate', true); + Common.Utils.lockControls(SSE.enumLock.wsLockText, locktext===null, { array: [this.view.chLockedText]}); + Common.Utils.lockControls(SSE.enumLock.wsLockShape, lock===null, { array: [this.view.chLockedShape]}); + break; + } + } + } + }, + + onCoAuthoringDisconnect: function() { + this.SetDisabled(true); + } + + }, SSE.Controllers.WBProtection || {})); +}); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/template/FileMenu.template b/apps/spreadsheeteditor/main/app/template/FileMenu.template index a2c9eb462..8bb022a44 100644 --- a/apps/spreadsheeteditor/main/app/template/FileMenu.template +++ b/apps/spreadsheeteditor/main/app/template/FileMenu.template @@ -16,6 +16,7 @@
  • +
  • diff --git a/apps/spreadsheeteditor/main/app/template/ProtectRangesDlg.template b/apps/spreadsheeteditor/main/app/template/ProtectRangesDlg.template new file mode 100644 index 000000000..fee4ace45 --- /dev/null +++ b/apps/spreadsheeteditor/main/app/template/ProtectRangesDlg.template @@ -0,0 +1,35 @@ +
    +
    + + + + + + + + + + + + + + + + + +
    + +
    + + + +
    +
    +
    + + + + +
    +
    +
    \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/template/Viewport.template b/apps/spreadsheeteditor/main/app/template/Viewport.template index 960a1c56e..bdec29548 100644 --- a/apps/spreadsheeteditor/main/app/template/Viewport.template +++ b/apps/spreadsheeteditor/main/app/template/Viewport.template @@ -16,6 +16,7 @@
    +
    diff --git a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js index a7708b77c..80b13fbbc 100644 --- a/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ChartTypeDialog.js @@ -348,6 +348,7 @@ define([ }, onSelectStyles: function(dataView, itemView, record) { + if (!record) return; this.chartSettings.putStyle(record.get('data')); }, diff --git a/apps/spreadsheeteditor/main/app/view/DataTab.js b/apps/spreadsheeteditor/main/app/view/DataTab.js index 294e011e6..b5c4f8d0d 100644 --- a/apps/spreadsheeteditor/main/app/view/DataTab.js +++ b/apps/spreadsheeteditor/main/app/view/DataTab.js @@ -130,7 +130,7 @@ define([ caption: this.capDataFromText, menu: !this.toolbar.mode.isDesktopApp, disabled: true, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.sheetLock, _set.lostConnect, _set.coAuth], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.sheetLock, _set.wbLock, _set.lostConnect, _set.coAuth, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -145,7 +145,7 @@ define([ split: true, menu: true, disabled: true, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.sheetLock, _set.lostConnect, _set.coAuth], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.sheetLock, _set.lostConnect, _set.coAuth, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -160,7 +160,7 @@ define([ split: true, menu: true, disabled: true, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.sheetLock, _set.lostConnect, _set.coAuth], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.sheetLock, _set.lostConnect, _set.coAuth, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -174,7 +174,7 @@ define([ caption: this.capBtnTextToCol, split: false, disabled: true, - lock: [_set.multiselect, _set.multiselectCols, _set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock: [_set.multiselect, _set.multiselectCols, _set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -207,7 +207,7 @@ define([ iconCls: 'toolbar__icon btn-remove-duplicates', caption: this.capBtnTextRemDuplicates, disabled: true, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.sheetLock], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.sheetLock, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -220,7 +220,7 @@ define([ iconCls: 'toolbar__icon btn-data-validation', caption: this.capBtnTextDataValidation, disabled: true, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.sheetLock], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.sheetLock, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -233,7 +233,7 @@ define([ iconCls: 'toolbar__icon btn-custom-sort', caption: this.capBtnTextCustomSort, disabled: true, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.sheetLock], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.sheetLock, _set['Sort']], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -241,17 +241,17 @@ define([ this.lockedControls.push(this.btnCustomSort); this.btnsSortDown = Common.Utils.injectButtons($host.find('.slot-sortdesc'), '', 'toolbar__icon btn-sort-down', '', - [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock, _set.cantSort], undefined, undefined, undefined, '1', 'top', undefined, 'D'); + [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock, _set.cantSort, _set['Sort']], undefined, undefined, undefined, '1', 'top', undefined, 'D'); this.btnsSortUp = Common.Utils.injectButtons($host.find('.slot-sortasc'), '', 'toolbar__icon btn-sort-up', '', - [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock, _set.cantSort], undefined, undefined, undefined, '1', 'top', undefined, 'U'); + [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.cantModifyFilter, _set.sheetLock, _set.cantSort, _set['Sort']], undefined, undefined, undefined, '1', 'top', undefined, 'U'); this.btnsSetAutofilter = Common.Utils.injectButtons($host.find('.slot-btn-setfilter'), '', 'toolbar__icon btn-autofilter', '', - [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.tableHasSlicer], + [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.editPivot, _set.cantModifyFilter, _set.tableHasSlicer, _set.wsLock], false, false, true, '1', 'bottom', undefined, 'F'); this.btnsClearAutofilter = Common.Utils.injectButtons($host.find('.slot-btn-clear-filter'), '', 'toolbar__icon btn-clear-filter', '', - [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleDelFilter], undefined, undefined, undefined, '1', 'bottom', undefined, 'N'); + [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.ruleDelFilter, _set.wsLock], undefined, undefined, undefined, '1', 'bottom', undefined, 'N'); Array.prototype.push.apply(this.lockedControls, this.btnsSortDown.concat(this.btnsSortUp, this.btnsSetAutofilter,this.btnsClearAutofilter)); diff --git a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js index a317f9438..d4e268cb4 100644 --- a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js @@ -946,21 +946,21 @@ define([ me.paraBulletsPicker = { conf: {rec: null}, store : new Common.UI.DataViewStore([ - {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 1}, - {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 2}, - {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 3}, - {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 4}, - {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 5}, - {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 6}, - {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 7}, - {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 8}, - {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 4}, - {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 5}, - {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 6}, - {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 1}, - {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 2}, - {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 3}, - {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 7} + {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 1, skipRenderOnChange: true}, + {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 2, skipRenderOnChange: true}, + {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 3, skipRenderOnChange: true}, + {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 4, skipRenderOnChange: true}, + {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 5, skipRenderOnChange: true}, + {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 6, skipRenderOnChange: true}, + {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 7, skipRenderOnChange: true}, + {group: 'menu-list-bullet-group', id: 'id-markers-' + Common.UI.getId(), type: 0, subtype: 8, skipRenderOnChange: true}, + {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 4, skipRenderOnChange: true}, + {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 5, skipRenderOnChange: true}, + {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 6, skipRenderOnChange: true}, + {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 1, skipRenderOnChange: true}, + {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 2, skipRenderOnChange: true}, + {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 3, skipRenderOnChange: true}, + {group: 'menu-list-number-group', id: 'id-numbers-' + Common.UI.getId(), type: 1, subtype: 7, skipRenderOnChange: true} ]), groups: new Common.UI.DataViewGroupStore([ {id: 'menu-list-bullet-group', caption: this.textBullets}, diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index 8ce7b08e5..0eca61fea 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -217,6 +217,16 @@ define([ dataHintOffset: [2, 14] }); + this.miHistory = new Common.UI.MenuItem({ + el : $markup.elementById('#fm-btn-history'), + action : 'history', + caption : this.btnHistoryCaption, + canFocused: false, + dataHint: 1, + dataHintDirection: 'left-top', + dataHintOffset: [2, 14] + }); + this.items = []; this.items.push( new Common.UI.MenuItem({ @@ -248,6 +258,7 @@ define([ dataHintOffset: [2, 14] }), this.miAccess, + this.miHistory, this.miSettings, this.miHelp, new Common.UI.MenuItem({ @@ -288,7 +299,7 @@ define([ return this; }, - show: function(panel) { + show: function(panel, opts) { if (this.isVisible() && panel===undefined || !this.mode) return; if ( !this.rendered ) @@ -299,7 +310,7 @@ define([ panel = this.active || defPanel; this.$el.show(); this.scroller.update(); - this.selectMenu(panel, defPanel); + this.selectMenu(panel, opts, defPanel); this.api.asc_enableKeyEvents(false); @@ -377,11 +388,11 @@ define([ } if (this.mode.canDownload) { - !this.panels['saveas'] && (this.panels['saveas'] = (new SSE.Views.FileMenuPanels.ViewSaveAs({menu: this})).render()); + !this.panels['saveas'] && (this.panels['saveas'] = (new SSE.Views.FileMenuPanels.ViewSaveAs({menu: this, fileType: this.document.fileType})).render()); } if (this.mode.canDownload && (this.mode.canRequestSaveAs || this.mode.saveAsUrl)) { - !this.panels['save-copy'] && (this.panels['save-copy'] = (new SSE.Views.FileMenuPanels.ViewSaveCopy({menu: this})).render()); + !this.panels['save-copy'] && (this.panels['save-copy'] = (new SSE.Views.FileMenuPanels.ViewSaveCopy({menu: this, fileType: this.document.fileType})).render()); } if (this.mode.canHelp && !this.panels['help']) { @@ -389,6 +400,8 @@ define([ this.panels['help'].setLangConfig(this.mode.lang); } + this.miHistory[this.mode.canUseHistory&&!this.mode.isDisconnected?'show':'hide'](); + if ( this.mode.disableEditing != undefined ) { this.panels['opts'].SetDisabled(this.mode.disableEditing); delete this.mode.disableEditing; @@ -426,7 +439,7 @@ define([ this.document = data.doc; }, - selectMenu: function(menu, defMenu) { + selectMenu: function(menu, opts, defMenu) { if ( menu ) { var item = this._getMenuItem(menu), panel = this.panels[menu]; @@ -439,7 +452,7 @@ define([ item.$el.addClass('active'); this.$el.find('.content-box:visible').hide(); - panel.show(); + panel.show(opts); if (this.scroller) { var itemTop = item.$el.position().top, @@ -504,7 +517,6 @@ define([ } var _btn_protect = this.getButton('protect'); - options && options.protect && _btn_protect.setDisabled(disable || !this.mode.isEdit); }, @@ -524,6 +536,7 @@ define([ btnRenameCaption : 'Rename...', btnCloseMenuCaption : 'Close Menu', btnProtectCaption: 'Protect', - btnSaveCopyAsCaption : 'Save Copy as...' + btnSaveCopyAsCaption : 'Save Copy as...', + btnHistoryCaption : 'Versions History' }, SSE.Views.FileMenu || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 0ba25a2ac..7a3a17670 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -50,7 +50,8 @@ define([ ],[ {name: 'XLTX', imgCls: 'xltx', type: Asc.c_oAscFileType.XLTX}, {name: 'PDFA', imgCls: 'pdfa', type: Asc.c_oAscFileType.PDFA}, - {name: 'OTS', imgCls: 'ots', type: Asc.c_oAscFileType.OTS} + {name: 'OTS', imgCls: 'ots', type: Asc.c_oAscFileType.OTS}, + {name: 'XLSM', imgCls: 'xlsm', type: Asc.c_oAscFileType.XLSM} ] // ,[ // {name: 'HTML', imgCls: 'html', type: Asc.c_oAscFileType.HTML} @@ -63,9 +64,11 @@ define([ '<% _.each(rows, function(row) { %>', '', '<% _.each(row, function(item) { %>', + '<% if (item.type!==Asc.c_oAscFileType.XLSM || fileType=="xlsm") { %>', '
    ', '', '
    ', + '<% } %>', '<% }) %>', '', '<% }) %>', @@ -76,10 +79,11 @@ define([ Common.UI.BaseView.prototype.initialize.call(this,arguments); this.menu = options.menu; + this.fileType = options.fileType; }, render: function() { - this.$el.html(this.template({rows:this.formats})); + this.$el.html(this.template({rows:this.formats, fileType: (this.fileType || 'xlsx').toLowerCase()})); $('.btn-doc-format',this.el).on('click', _.bind(this.onFormatClick,this)); if (_.isUndefined(this.scroller)) { @@ -118,7 +122,8 @@ define([ ],[ {name: 'XLTX', imgCls: 'xltx', type: Asc.c_oAscFileType.XLTX, ext: '.xltx'}, {name: 'PDFA', imgCls: 'pdfa', type: Asc.c_oAscFileType.PDFA, ext: '.pdf'}, - {name: 'OTS', imgCls: 'ots', type: Asc.c_oAscFileType.OTS, ext: '.ots'} + {name: 'OTS', imgCls: 'ots', type: Asc.c_oAscFileType.OTS, ext: '.ots'}, + {name: 'XLSM', imgCls: 'xlsm', type: Asc.c_oAscFileType.XLSM, ext: '.xlsm'} ] // ,[ // {name: 'HTML', imgCls: 'html', type: Asc.c_oAscFileType.HTML, ext: '.html'} @@ -130,9 +135,11 @@ define([ '<% _.each(rows, function(row) { %>', '', '<% _.each(row, function(item) { %>', + '<% if (item.type!==Asc.c_oAscFileType.XLSM || fileType=="xlsm") { %>', '
    ', '', '
    ', + '<% } %>', '<% }) %>', '', '<% }) %>', @@ -143,10 +150,11 @@ define([ Common.UI.BaseView.prototype.initialize.call(this,arguments); this.menu = options.menu; + this.fileType = options.fileType; }, render: function() { - this.$el.html(this.template({rows:this.formats})); + this.$el.html(this.template({rows:this.formats, fileType: (this.fileType || 'xlsx').toLowerCase()})); $('.btn-doc-format',this.el).on('click', _.bind(this.onFormatClick,this)); if (_.isUndefined(this.scroller)) { @@ -797,7 +805,7 @@ define([ '', '', '', - '', + '', '', '
    ', '', @@ -973,7 +981,7 @@ define([ me.updateFuncExample(record.exampleValue); }); - var regdata = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, + var regdata = [{ value: 0x042C }, { value: 0x0402 }, { value: 0x0405 }, { value: 0x0C07 }, { value: 0x0407 }, {value: 0x0807}, { value: 0x0408 }, { value: 0x0C09 }, { value: 0x0809 }, { value: 0x0409 }, { value: 0x0C0A }, { value: 0x080A }, { value: 0x040B }, { value: 0x040C }, { value: 0x0410 }, { value: 0x0411 }, { value: 0x0412 }, { value: 0x0426 }, { value: 0x040E }, { value: 0x0413 }, { value: 0x0415 }, { value: 0x0416 }, { value: 0x0816 }, { value: 0x0419 }, { value: 0x041B }, { value: 0x0424 }, { value: 0x081D }, { value: 0x041D }, { value: 0x041F }, { value: 0x0422 }, { value: 0x042A }, { value: 0x0804 }]; regdata.forEach(function(item) { @@ -2338,6 +2346,7 @@ define([ this.menu = options.menu; this.urlPref = 'resources/help/{{DEFAULT_LANG}}/'; + this.openUrl = null; this.en_data = [ {"src": "ProgramInterface/ProgramInterface.htm", "name": "Introducing Spreadsheet Editor user interface", "headername": "Program Interface"}, @@ -2403,7 +2412,7 @@ define([ }); this.viewHelpPicker.on('item:select', function(dataview, itemview, record) { - me.iFrame.src = me.urlPref + record.get('src'); + me.onSelectItem(record.get('src')); }); this.iFrame = document.createElement('iframe'); @@ -2449,9 +2458,14 @@ define([ } }, success: function () { - var rec = store.at(0); - me.viewHelpPicker.selectRecord(rec); - me.iFrame.src = me.urlPref + rec.get('src'); + var rec = me.openUrl ? store.find(function(record){ + return (me.openUrl.indexOf(record.get('src'))>=0); + }) : store.at(0); + if (rec) { + me.viewHelpPicker.selectRecord(rec, true); + me.viewHelpPicker.scrollToRecord(rec); + } + me.onSelectItem(me.openUrl ? me.openUrl : rec.get('src')); } }; store.url = 'resources/help/' + lang + '/Contents.json'; @@ -2460,12 +2474,29 @@ define([ } }, - show: function () { + show: function (url) { Common.UI.BaseView.prototype.show.call(this); if (!this._scrollerInited) { this.viewHelpPicker.scroller.update(); this._scrollerInited = true; } + if (url) { + if (this.viewHelpPicker.store.length>0) { + var rec = this.viewHelpPicker.store.find(function(record){ + return (url.indexOf(record.get('src'))>=0); + }); + if (rec) { + this.viewHelpPicker.selectRecord(rec, true); + this.viewHelpPicker.scrollToRecord(rec); + } + this.onSelectItem(url); + } else + this.openUrl = url; + } + }, + + onSelectItem: function(src) { + this.iFrame.src = this.urlPref + src; } }); diff --git a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js index 5862b1dd0..390a7504e 100644 --- a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js +++ b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js @@ -844,7 +844,8 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', record.value==Asc.c_oAscCfvoType.AutoMin || record.value==Asc.c_oAscCfvoType.AutoMax); me.setDefComboValue(combo.options.type, record.value, me.barControls[combo.options.type].range); }); - combo.setValue(arr[1].value); + var value = (i==0) ? Asc.c_oAscCfvoType.AutoMin : Asc.c_oAscCfvoType.AutoMax; + combo.setValue(value); Common.UI.FocusManager.add(this, combo); var range = new Common.UI.InputFieldBtn({ @@ -854,9 +855,10 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', allowBlank : true, btnHint : this.textSelectData, validateOnChange: false, - type : i + type : i, + disabled : (value==Asc.c_oAscCfvoType.AutoMin || value==Asc.c_oAscCfvoType.AutoMax || value==Asc.c_oAscCfvoType.Minimum || value==Asc.c_oAscCfvoType.Maximum) }); - range.setValue(0); + me.setDefComboValue(i, value, range); range.on('button:click', _.bind(this.onSelectData, this)); this.barControls.push({combo: combo, range: range}); Common.UI.FocusManager.add(this, range); @@ -1318,7 +1320,7 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', if (type == Asc.c_oAscCFType.containsText || type == Asc.c_oAscCFType.containsBlanks || type == Asc.c_oAscCFType.duplicateValues || type == Asc.c_oAscCFType.timePeriod || type == Asc.c_oAscCFType.aboveAverage || type == Asc.c_oAscCFType.top10 || type == Asc.c_oAscCFType.cellIs || type == Asc.c_oAscCFType.expression) { - this.xfsFormat && props.asc_setDxf(this.xfsFormat); + (this.xfsFormat || this.xfsFormat===null) && props.asc_setDxf(this.xfsFormat); } switch (type) { @@ -1339,7 +1341,7 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', var above = !(val%2); props.asc_setAboveAverage(above); props.asc_setEqualAverage(val==2 || val==3); - props.asc_setStdDev(val>3 ? (val/2 - 1) : 0); + props.asc_setStdDev(val>3 ? (Math.floor(val/2) - 1) : 0); break; case Asc.c_oAscCFType.top10: props.asc_setBottom(!!this.cmbRule.getValue()); @@ -1349,7 +1351,7 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', case Asc.c_oAscCFType.cellIs: props.asc_setOperator(this.cmbRule.getValue()); props.asc_setValue1(this.txtRange1.getValue()); - props.asc_setValue2(this.txtRange2.getValue()); + this.txtRange2.isVisible() && props.asc_setValue2(this.txtRange2.getValue()); break; case Asc.c_oAscCFType.expression: props.asc_setValue1(this.txtRange1.getValue()); @@ -1395,8 +1397,10 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', barProps.asc_setBorderColor(Common.Utils.ThemeColor.getRgbColor(this.btnPosBorder.colorPicker.currentColor)); barProps.asc_setNegativeBorderColor(Common.Utils.ThemeColor.getRgbColor(this.chBorder.getValue()=='checked' ? this.btnPosBorder.colorPicker.currentColor : this.btnNegBorder.colorPicker.currentColor)); barProps.asc_setNegativeBarBorderColorSameAsPositive(this.chBorder.getValue()=='checked'); - } else + } else { barProps.asc_setBorderColor(null); + barProps.asc_setNegativeBorderColor(null); + } barProps.asc_setDirection(this.cmbBarDirection.getValue()); barProps.asc_setShowValue(this.chShowBar.getValue()!=='checked'); @@ -1479,7 +1483,7 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', if (type == Asc.c_oAscCFType.containsText || type == Asc.c_oAscCFType.containsBlanks || type == Asc.c_oAscCFType.duplicateValues || type == Asc.c_oAscCFType.timePeriod || type == Asc.c_oAscCFType.aboveAverage || type == Asc.c_oAscCFType.top10 || type == Asc.c_oAscCFType.cellIs || type == Asc.c_oAscCFType.expression) { - this.xfsFormat && this._changedProps.asc_setDxf(this.xfsFormat); + (this.xfsFormat || this.xfsFormat===null) && this._changedProps.asc_setDxf(this.xfsFormat); } else if (type == Asc.c_oAscCFType.colorScale) { var scalesCount = rec.get('num'); var arr = (scalesCount==2) ? [this.scaleControls[0], this.scaleControls[2]] : this.scaleControls; diff --git a/apps/spreadsheeteditor/main/app/view/FormulaTab.js b/apps/spreadsheeteditor/main/app/view/FormulaTab.js index cdfba9a76..8c89c952c 100644 --- a/apps/spreadsheeteditor/main/app/view/FormulaTab.js +++ b/apps/spreadsheeteditor/main/app/view/FormulaTab.js @@ -293,7 +293,7 @@ define([ hint: this.toolbar.txtNamedRange, split: false, disabled: true, - lock : [_set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.selRangeEdit], + lock : [_set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.selRangeEdit, _set.wsLock], menu: new Common.UI.Menu({ items: [ { diff --git a/apps/spreadsheeteditor/main/app/view/LeftMenu.js b/apps/spreadsheeteditor/main/app/view/LeftMenu.js index 248bdbf94..72e602521 100644 --- a/apps/spreadsheeteditor/main/app/view/LeftMenu.js +++ b/apps/spreadsheeteditor/main/app/view/LeftMenu.js @@ -40,6 +40,7 @@ define([ /** coauthoring begin **/ 'common/main/lib/view/Comments', 'common/main/lib/view/Chat', + 'common/main/lib/view/History', /** coauthoring end **/ 'common/main/lib/view/SearchDialog', 'common/main/lib/view/Plugins', @@ -244,6 +245,8 @@ define([ } else if (name == 'spellcheck' && !this.panelSpellcheck) { this.panelSpellcheck = panel.render('#left-panel-spellcheck'); + } else if (name == 'history') { + this.panelHistory = panel.render('#left-panel-history'); } }, @@ -307,10 +310,10 @@ define([ this.btnSpellcheck.setDisabled(false); }, - showMenu: function(menu) { + showMenu: function(menu, opts) { var re = /^(\w+):?(\w*)$/.exec(menu); if ( re[1] == 'file' ) { - this.menuFile.show(re[2].length ? re[2] : undefined); + this.menuFile.show(re[2].length ? re[2] : undefined, opts); } else { /** coauthoring begin **/ if (menu == 'chat') { @@ -423,6 +426,14 @@ define([ this.limitHint && this.limitHint.css('top', top); }, + showHistory: function() { + this._state.pluginIsRunning = false; + this._state.historyIsRunning = true; + this.panelHistory.show(); + this.panelHistory.$el.width((parseInt(Common.localStorage.getItem('sse-mainmenu-width')) || MENU_SCALE_PART) - SCALE_MIN); + Common.NotificationCenter.trigger('layout:changed', 'history'); + }, + /** coauthoring begin **/ tipComments : 'Comments', tipChat : 'Chat', diff --git a/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js b/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js index 06775e9c6..ebe91e717 100644 --- a/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js +++ b/apps/spreadsheeteditor/main/app/view/ParagraphSettingsAdvanced.js @@ -721,6 +721,7 @@ define([ 'text!spreadsheeteditor/main/app/template/ParagraphSettingsAdvanced. }, onSelectTab: function(lisvView, itemView, record) { + if (!record) return; var rawData = {}, isViewSelect = _.isFunction(record.toJSON); diff --git a/apps/spreadsheeteditor/main/app/view/PivotSettings.js b/apps/spreadsheeteditor/main/app/view/PivotSettings.js index aac363f90..8a7d9da8b 100644 --- a/apps/spreadsheeteditor/main/app/view/PivotSettings.js +++ b/apps/spreadsheeteditor/main/app/view/PivotSettings.js @@ -638,141 +638,138 @@ define([ }, onColumnsSelect: function(type, picker, item, record, e){ - var btn = $(e.target); - if (btn && btn.hasClass('listitem-icon')) { - this._state.field = {record: record, type: type, length: picker.store.length}; - if (this.fieldsMenu) { - if (this.fieldsMenu.isVisible()) { - this.fieldsMenu.hide(); - return; - } - } else { - this.miMoveUp = new Common.UI.MenuItem({ - caption : this.txtMoveUp, - checkable : false - }); - this.miMoveUp.on('click', _.bind(this.onMoveUp, this)); - this.miMoveDown = new Common.UI.MenuItem({ - caption : this.txtMoveDown, - checkable : false - }); - this.miMoveDown.on('click', _.bind(this.onMoveDown, this)); - this.miMoveBegin = new Common.UI.MenuItem({ - caption : this.txtMoveBegin, - checkable : false - }); - this.miMoveBegin.on('click', _.bind(this.onMoveBegin, this)); - this.miMoveEnd = new Common.UI.MenuItem({ - caption : this.txtMoveEnd, - checkable : false - }); - this.miMoveEnd.on('click', _.bind(this.onMoveEnd, this)); - - this.miMoveFilter = new Common.UI.MenuItem({ - caption : this.txtMoveFilter, - checkable : false - }); - this.miMoveFilter.on('click', _.bind(this.onMoveTo, this, 3)); - this.miMoveRow = new Common.UI.MenuItem({ - caption : this.txtMoveRow, - checkable : false - }); - this.miMoveRow.on('click', _.bind(this.onMoveTo, this, 1)); - this.miMoveColumn = new Common.UI.MenuItem({ - caption : this.txtMoveColumn, - checkable : false - }); - this.miMoveColumn.on('click', _.bind(this.onMoveTo, this, 0)); - this.miMoveValues = new Common.UI.MenuItem({ - caption : this.txtMoveValues, - checkable : false - }); - this.miMoveValues.on('click', _.bind(this.onMoveTo, this, 2)); - - this.miRemove = new Common.UI.MenuItem({ - caption : this.txtRemove, - checkable : false - }); - this.miRemove.on('click', _.bind(this.onRemove, this)); - - this.miFieldSettings = new Common.UI.MenuItem({ - caption : this.txtFieldSettings, - checkable : false - }); - this.miFieldSettings.on('click', _.bind(this.onFieldSettings, this)); - - this.fieldsMenu = new Common.UI.Menu({ - menuAlign: 'tr-br', - items: [ - this.miMoveUp, - this.miMoveDown, - this.miMoveBegin, - this.miMoveEnd, - {caption : '--'}, - this.miMoveFilter, - this.miMoveRow, - this.miMoveColumn, - this.miMoveValues, - {caption : '--'}, - this.miRemove, - {caption : '--'}, - this.miFieldSettings - ] - }); + this._state.field = {record: record, type: type, length: picker.store.length}; + if (this.fieldsMenu) { + if (this.fieldsMenu.isVisible()) { + this.fieldsMenu.hide(); + return; } + } else { + this.miMoveUp = new Common.UI.MenuItem({ + caption : this.txtMoveUp, + checkable : false + }); + this.miMoveUp.on('click', _.bind(this.onMoveUp, this)); + this.miMoveDown = new Common.UI.MenuItem({ + caption : this.txtMoveDown, + checkable : false + }); + this.miMoveDown.on('click', _.bind(this.onMoveDown, this)); + this.miMoveBegin = new Common.UI.MenuItem({ + caption : this.txtMoveBegin, + checkable : false + }); + this.miMoveBegin.on('click', _.bind(this.onMoveBegin, this)); + this.miMoveEnd = new Common.UI.MenuItem({ + caption : this.txtMoveEnd, + checkable : false + }); + this.miMoveEnd.on('click', _.bind(this.onMoveEnd, this)); + this.miMoveFilter = new Common.UI.MenuItem({ + caption : this.txtMoveFilter, + checkable : false + }); + this.miMoveFilter.on('click', _.bind(this.onMoveTo, this, 3)); + this.miMoveRow = new Common.UI.MenuItem({ + caption : this.txtMoveRow, + checkable : false + }); + this.miMoveRow.on('click', _.bind(this.onMoveTo, this, 1)); + this.miMoveColumn = new Common.UI.MenuItem({ + caption : this.txtMoveColumn, + checkable : false + }); + this.miMoveColumn.on('click', _.bind(this.onMoveTo, this, 0)); + this.miMoveValues = new Common.UI.MenuItem({ + caption : this.txtMoveValues, + checkable : false + }); + this.miMoveValues.on('click', _.bind(this.onMoveTo, this, 2)); - var recIndex = (record != undefined) ? record.get('index') : -1, - len = picker.store.length, - pivotIndex = record.get('pivotIndex'); - this.miMoveUp.setDisabled(recIndex<1); - this.miMoveDown.setDisabled(recIndex>len-2 || recIndex<0); - this.miMoveBegin.setDisabled(recIndex<1); - this.miMoveEnd.setDisabled(recIndex>len-2 || recIndex<0); + this.miRemove = new Common.UI.MenuItem({ + caption : this.txtRemove, + checkable : false + }); + this.miRemove.on('click', _.bind(this.onRemove, this)); - this.miMoveFilter.setDisabled(type == 3 || pivotIndex==-2); // menu for filter - this.miMoveRow.setDisabled(type == 1); // menu for row - this.miMoveColumn.setDisabled(type == 0); // menu for column - this.miMoveValues.setDisabled(type == 2 || pivotIndex==-2); // menu for value + this.miFieldSettings = new Common.UI.MenuItem({ + caption : this.txtFieldSettings, + checkable : false + }); + this.miFieldSettings.on('click', _.bind(this.onFieldSettings, this)); - this.miFieldSettings.setDisabled(pivotIndex==-2); - - var menu = this.fieldsMenu, - showPoint, me = this, - currentTarget = $(e.currentTarget), - parent = $(this.el), - offset = currentTarget.offset(), - offsetParent = parent.offset(); - - showPoint = [offset.left - offsetParent.left + currentTarget.width(), offset.top - offsetParent.top + currentTarget.height()/2]; - - var menuContainer = parent.find('#menu-pivot-container'); - if (!menu.rendered) { - if (menuContainer.length < 1) { - menuContainer = $('', menu.id); - parent.append(menuContainer); - } - menu.render(menuContainer); - menu.cmpEl.attr({tabindex: "-1"}); - - menu.on('show:after', function(cmp) { - if (cmp && cmp.menuAlignEl) - cmp.menuAlignEl.toggleClass('over', true); - }).on('hide:after', function(cmp) { - if (cmp && cmp.menuAlignEl) - cmp.menuAlignEl.toggleClass('over', false); - }); - } - - menu.menuAlignEl = currentTarget; - menu.setOffset(-20, -currentTarget.height()/2 - 3); - menu.show(); - _.delay(function() { - menu.cmpEl.focus(); - }, 10); - e.stopPropagation(); - e.preventDefault(); + this.fieldsMenu = new Common.UI.Menu({ + menuAlign: 'tr-br', + items: [ + this.miMoveUp, + this.miMoveDown, + this.miMoveBegin, + this.miMoveEnd, + {caption : '--'}, + this.miMoveFilter, + this.miMoveRow, + this.miMoveColumn, + this.miMoveValues, + {caption : '--'}, + this.miRemove, + {caption : '--'}, + this.miFieldSettings + ] + }); } + + + var recIndex = (record != undefined) ? record.get('index') : -1, + len = picker.store.length, + pivotIndex = record.get('pivotIndex'); + this.miMoveUp.setDisabled(recIndex<1); + this.miMoveDown.setDisabled(recIndex>len-2 || recIndex<0); + this.miMoveBegin.setDisabled(recIndex<1); + this.miMoveEnd.setDisabled(recIndex>len-2 || recIndex<0); + + this.miMoveFilter.setDisabled(type == 3 || pivotIndex==-2); // menu for filter + this.miMoveRow.setDisabled(type == 1); // menu for row + this.miMoveColumn.setDisabled(type == 0); // menu for column + this.miMoveValues.setDisabled(type == 2 || pivotIndex==-2); // menu for value + + this.miFieldSettings.setDisabled(pivotIndex==-2); + + var menu = this.fieldsMenu, + showPoint, me = this, + currentTarget = $(e.currentTarget), + parent = $(this.el), + offset = currentTarget.offset(), + offsetParent = parent.offset(); + + showPoint = [offset.left - offsetParent.left + currentTarget.width(), offset.top - offsetParent.top + currentTarget.height()/2]; + + var menuContainer = parent.find('#menu-pivot-container'); + if (!menu.rendered) { + if (menuContainer.length < 1) { + menuContainer = $('', menu.id); + parent.append(menuContainer); + } + menu.render(menuContainer); + menu.cmpEl.attr({tabindex: "-1"}); + + menu.on('show:after', function(cmp) { + if (cmp && cmp.menuAlignEl) + cmp.menuAlignEl.toggleClass('over', true); + }).on('hide:after', function(cmp) { + if (cmp && cmp.menuAlignEl) + cmp.menuAlignEl.toggleClass('over', false); + }); + } + + menu.menuAlignEl = currentTarget; + menu.setOffset(-20, -currentTarget.height()/2 - 3); + menu.show(); + _.delay(function() { + menu.cmpEl.focus(); + }, 10); + e.stopPropagation(); + e.preventDefault(); }, setLocked: function (locked) { diff --git a/apps/spreadsheeteditor/main/app/view/PivotTable.js b/apps/spreadsheeteditor/main/app/view/PivotTable.js index 0f5823955..9043c9ba5 100644 --- a/apps/spreadsheeteditor/main/app/view/PivotTable.js +++ b/apps/spreadsheeteditor/main/app/view/PivotTable.js @@ -157,11 +157,11 @@ define([ var _set = SSE.enumLock; this.btnsAddPivot = Common.Utils.injectButtons(this.toolbar.$el.find('.btn-slot.slot-add-pivot'), '', 'toolbar__icon btn-pivot-sum', this.txtPivotTable, - [_set.lostConnect, _set.coAuth, _set.editPivot, _set.selRangeEdit, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.editCell], undefined, undefined, undefined, '1', 'bottom', 'small'); + [_set.lostConnect, _set.coAuth, _set.editPivot, _set.selRangeEdit, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.editCell, _set.wsLock], undefined, undefined, undefined, '1', 'bottom', 'small'); this.chRowHeader = new Common.UI.CheckBox({ labelText: this.textRowHeader, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set['FormatCells'], _set['PivotTables']], dataHint : '1', dataHintDirection: 'left', dataHintOffset: 'small' @@ -170,7 +170,7 @@ define([ this.chColHeader = new Common.UI.CheckBox({ labelText: this.textColHeader, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set['FormatCells'], _set['PivotTables']], dataHint : '1', dataHintDirection: 'left', dataHintOffset: 'small' @@ -179,7 +179,7 @@ define([ this.chRowBanded = new Common.UI.CheckBox({ labelText: this.textRowBanded, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set['FormatCells'], _set['PivotTables']], dataHint : '1', dataHintDirection: 'left', dataHintOffset: 'small' @@ -188,7 +188,7 @@ define([ this.chColBanded = new Common.UI.CheckBox({ labelText: this.textColBanded, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set['FormatCells'], _set['PivotTables']], dataHint : '1', dataHintDirection: 'left', dataHintOffset: 'small' @@ -200,7 +200,7 @@ define([ iconCls : 'toolbar__icon btn-pivot-layout', caption : this.capLayout, disabled : true, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set.wsLock], menu : true, dataHint : '1', dataHintDirection: 'bottom', @@ -213,7 +213,7 @@ define([ iconCls : 'toolbar__icon btn-blank-rows', caption : this.capBlankRows, disabled : true, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set.wsLock], menu : true, dataHint : '1', dataHintDirection: 'bottom', @@ -226,7 +226,7 @@ define([ iconCls : 'toolbar__icon btn-subtotals', caption : this.capSubtotals, disabled : true, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set.wsLock], menu : true, dataHint : '1', dataHintDirection: 'bottom', @@ -239,7 +239,7 @@ define([ iconCls : 'toolbar__icon btn-grand-totals', caption : this.capGrandTotals, disabled : true, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set.wsLock], menu : true, dataHint : '1', dataHintDirection: 'bottom', @@ -252,7 +252,7 @@ define([ iconCls: 'toolbar__icon btn-update', caption: this.txtRefresh, disabled : true, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set.wsLock], dataHint : '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -263,7 +263,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-select-pivot', caption: this.txtSelect, - lock: [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit], + lock: [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set['PivotTables']], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -276,7 +276,7 @@ define([ itemWidth : 61, itemHeight : 49, menuMaxHeight : 300, - lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock], + lock : [_set.lostConnect, _set.coAuth, _set.noPivot, _set.selRangeEdit, _set.pivotLock, _set['FormatCells'], _set['PivotTables']], beforeOpenHandler: function(e) { var cmp = this, menu = cmp.openButton.menu; @@ -359,7 +359,7 @@ define([ var _set = SSE.enumLock; this.btnsAddPivot = this.btnsAddPivot.concat(Common.Utils.injectButtons(this.$el.find('.btn-slot.slot-add-pivot'), '', 'toolbar__icon btn-pivot-sum', this.txtCreate, - [_set.lostConnect, _set.coAuth, _set.editPivot, _set.selRangeEdit, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.editCell], undefined, undefined, undefined, '1', 'bottom', 'small')); + [_set.lostConnect, _set.coAuth, _set.editPivot, _set.selRangeEdit, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.editCell, _set.wsLock], undefined, undefined, undefined, '1', 'bottom', 'small')); this.chRowHeader.render(this.$el.find('#slot-chk-header-row')); this.chColHeader.render(this.$el.find('#slot-chk-header-column')); diff --git a/apps/spreadsheeteditor/main/app/view/ProtectDialog.js b/apps/spreadsheeteditor/main/app/view/ProtectDialog.js new file mode 100644 index 000000000..b6ada3867 --- /dev/null +++ b/apps/spreadsheeteditor/main/app/view/ProtectDialog.js @@ -0,0 +1,435 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2021 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * + */ +/** + * ProtectDialog.js + * + * Created by Julia Radzhabova on 21.06.2021 + * Copyright (c) 2021 Ascensio System SIA. All rights reserved. + * + */ + +define([ + 'common/main/lib/component/Window' +], function () { + 'use strict'; + + SSE.Views.ProtectDialog = Common.UI.Window.extend(_.extend({ + + initialize : function (options) { + var t = this, + _options = {}; + + _.extend(_options, { + title: options.title ? options.title : (options.type=='sheet' ? this.txtSheetTitle : this.txtWBTitle), + cls: 'modal-dlg', + width: 350, + height: options.type=='sheet' ? 447 : (options.type=='range' ? 338 : 306), + buttons: options.buttons ? options.buttons : [{ + value: 'ok', + caption: this.txtProtect + }, 'cancel'] + }, options); + + this.handler = options.handler; + this.txtDescription = options.txtDescription || ''; + this.type = options.type || 'workbook'; + this.props = options.props; + this.api = options.api; + + this.template = options.template || [ + '
    ', + '<% if (type=="range") { %>', + '
    ', + '', + '
    ', + '
    ', + '
    ', + '', + '
    ', + '
    ', + '<% } else { %>', + '
    ', + '', + '
    ', + '<% } %>', + '
    ', + '', + '
    ', + '
    ', + '
    ', + '', + '
    ', + '
    ', + '<% if (type=="sheet") { %>', + '
    ', + '', + '
    ', + '
    ', + '<% } %>', + '', + '
    ' + ].join(''); + + _options.tpl = _.template(this.template)(_options); + + Common.UI.Window.prototype.initialize.call(this, _options); + }, + render: function () { + Common.UI.Window.prototype.render.call(this); + + var me = this; + this.$window.find('.dlg-btn').on('click', _.bind(this.onBtnClick, this)); + this.inputPwd = new Common.UI.InputField({ + el: $('#id-password-txt'), + type: 'password', + allowBlank : true, + style : 'width: 100%;', + maxLength: 255, + validateOnBlur: false + }); + this.repeatPwd = new Common.UI.InputField({ + el: $('#id-repeat-txt'), + type: 'password', + allowBlank : true, + style : 'width: 100%;', + maxLength: 255, + validateOnBlur: false, + validation : function(value) { + return me.txtIncorrectPwd; + } + }); + + if (this.type == 'sheet') { + this.optionsList = new Common.UI.ListView({ + el: $('#protect-dlg-options', this.$window), + store: new Common.UI.DataViewStore(), + simpleAddMode: true, + scrollAlwaysVisible: true, + template: _.template(['
    '].join('')), + itemTemplate: _.template([ + '
    ', + '', + '
    ', + '
    <%= Common.Utils.String.htmlEncode(value) %>
    ', + '
    ', + '
    ' + ].join('')) + }); + this.optionsList.on({ + 'item:change': this.onItemChanged.bind(this), + 'item:add': this.onItemChanged.bind(this), + 'item:select': this.onCellCheck.bind(this) + }); + this.optionsList.onKeyDown = _.bind(this.onListKeyDown, this); + this.optionsList.on('entervalue', _.bind(this.onPrimary, this)); + } + + if (this.type == 'range') { + this.inputRangeName = new Common.UI.InputField({ + el: $('#id-range-name-txt'), + allowBlank : false, + blankError : this.txtEmpty, + style : 'width: 100%;', + maxLength: 255, + validateOnBlur: false + }); + this.txtDataRange = new Common.UI.InputFieldBtn({ + el : $('#id-range-txt'), + name : 'range', + style : 'width: 100%;', + allowBlank : false, + btnHint : this.textSelectData, + blankError : this.txtEmpty, + validateOnChange: true, + validateOnBlur: false, + validation : function(value) { + var isvalid = me.api.asc_checkDataRange(Asc.c_oAscSelectionDialogType.ConditionalFormattingRule, value, true); + return (isvalid!==Asc.c_oAscError.ID.DataRangeError) ? true : me.textInvalidRange; + } + }); + this.txtDataRange.on('button:click', _.bind(this.onSelectData, this)); + } + this.afterRender(); + }, + + getFocusedComponents: function() { + var arr = []; + (this.type == 'range') && (arr = arr.concat([this.inputRangeName, this.txtDataRange])); + arr = arr.concat([this.inputPwd, this.repeatPwd]); + (this.type == 'sheet') && (arr = arr.concat([this.optionsList])); + return arr; + }, + + getDefaultFocusableComponent: function () { + return (this.type == 'range') ? this.inputRangeName : this.inputPwd; + }, + + afterRender: function() { + this._setDefaults(this.props); + }, + + onPrimary: function(event) { + this._handleInput('ok'); + return false; + }, + + onBtnClick: function(event) { + this._handleInput(event.currentTarget.attributes['result'].value); + }, + + _handleInput: function(state) { + if (this.handler) { + if (state == 'ok') { + if (this.inputRangeName && this.inputRangeName.checkValidate() !== true) { + this.inputRangeName.focus(); + return; + } + if (this.txtDataRange && this.txtDataRange.checkValidate() !== true) { + this.txtDataRange.focus(); + return; + } + if (this.inputPwd.checkValidate() !== true) { + this.inputPwd.focus(); + return; + } + if (this.inputPwd.getValue() !== this.repeatPwd.getValue()) { + this.repeatPwd.checkValidate(); + this.repeatPwd.focus(); + return; + } + } + this.handler.call(this, state, this.inputPwd.getValue(), (state == 'ok') ? this.getSettings() : undefined); + } + + this.close(); + }, + + _setDefaults: function (props) { + this.optionsList && this.updateOptionsList(props); + (this.type=='range') && this.updateRangeSettings(props); + }, + + onItemChanged: function (view, record) { + var state = record.model.get('check'); + if ( state == 'indeterminate' ) + $('input[type=checkbox]', record.$el).prop('indeterminate', true); + else $('input[type=checkbox]', record.$el).prop({checked: state, indeterminate: false}); + }, + + onCellCheck: function (listView, itemView, record) { + if (this.checkCellTrigerBlock) + return; + + var target = '', isLabel = false, bound = null; + + var event = window.event ? window.event : window._event; + if (event) { + target = $(event.currentTarget).find('.list-item'); + + if (target.length) { + bound = target.get(0).getBoundingClientRect(); + var _clientX = event.clientX*Common.Utils.zoom(), + _clientY = event.clientY*Common.Utils.zoom(); + if (bound.left < _clientX && _clientX < bound.right && + bound.top < _clientY && _clientY < bound.bottom) { + isLabel = true; + } + } + + if (isLabel || event.target.className.match('checkbox')) { + this.updateCellCheck(listView, record); + + _.delay(function () { + listView.focus(); + }, 100, this); + } + } + }, + + onListKeyDown: function (e, data) { + var record = null, listView = this.optionsList; + + if (listView.disabled) return; + if (_.isUndefined(undefined)) data = e; + + if (data.keyCode == Common.UI.Keys.SPACE) { + data.preventDefault(); + data.stopPropagation(); + + this.updateCellCheck(listView, listView.getSelectedRec()); + + } else { + Common.UI.DataView.prototype.onKeyDown.call(this.optionsList, e, data); + } + }, + + updateCellCheck: function (listView, record) { + if (record && listView) { + record.set('check', !record.get('check')); + if (record.get('optionName') == 'SelectLockedCells' && record.get('check')) + this.optionsList.store.findWhere({optionName: 'SelectUnlockedCells'}).set('check', true); + if (record.get('optionName') == 'SelectUnlockedCells' && !record.get('check')) + this.optionsList.store.findWhere({optionName: 'SelectLockedCells'}).set('check', false); + // listView.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + } + }, + updateRangeSettings: function (props) { + if (props) { + this.inputRangeName.setValue(props.asc_getName()); + this.txtDataRange.setValue(props.asc_getSqref()); + } + }, + + updateOptionsList: function(props) { + var optionsArr = [ + { value: this.txtSelLocked, optionName: 'SelectLockedCells'}, + { value: this.txtSelUnLocked, optionName: 'SelectUnlockedCells'}, + { value: this.txtFormatCells, optionName: 'FormatCells'}, + { value: this.txtFormatCols, optionName: 'FormatColumns'}, + { value: this.txtFormatRows, optionName: 'FormatRows'}, + { value: this.txtInsCols, optionName: 'InsertColumns'}, + { value: this.txtInsRows, optionName: 'InsertRows'}, + { value: this.txtInsHyper, optionName: 'InsertHyperlinks'}, + { value: this.txtDelCols, optionName: 'DeleteColumns'}, + { value: this.txtDelRows, optionName: 'DeleteRows'}, + { value: this.txtSort, optionName: 'Sort'}, + { value: this.txtAutofilter, optionName: 'AutoFilter'}, + { value: this.txtPivot, optionName: 'PivotTables'}, + { value: this.txtObjs, optionName: 'Objects'}, + { value: this.txtScen, optionName: 'Scenarios'} + ]; + + var arr = []; + optionsArr.forEach(function (item, index) { + arr.push(new Common.UI.DataViewModel({ + selected : false, + allowSelected : true, + value : item.value, + optionName : item.optionName, + check : props && props['asc_get' + item.optionName] ? !props['asc_get' + item.optionName]() : false + })); + }); + + this.optionsList.store.reset(arr); + this.optionsList.scroller.update({minScrollbarLength : 40, alwaysVisibleY: true, suppressScrollX: true}); + }, + + getSettings: function() { + if (this.type == 'sheet') return this.getSheetSettings(); + if (this.type == 'range') return this.getRangeSettings(); + }, + + getSheetSettings: function() { + var props = this.props ? this.props : new Asc.CSheetProtection(); + this.optionsList.store.each(function (item, index) { + props && props['asc_set' + item.get('optionName')] && props['asc_set' + item.get('optionName')](!item.get('check')); + }); + return props; + }, + + getRangeSettings: function() { + var props = this.props ? this.props : new Asc.CProtectedRange(); + props.asc_setName(this.inputRangeName.getValue()); + props.asc_setSqref(this.txtDataRange.getValue()); + return props; + }, + + onSelectData: function() { + var me = this; + if (me.api) { + var handlerDlg = function(dlg, result) { + if (result == 'ok') { + me.dataRangeValid = dlg.getSettings(); + me.txtDataRange.setValue(me.dataRangeValid); + me.txtDataRange.checkValidate(); + } + }; + + var win = new SSE.Views.CellRangeDialog({ + handler: handlerDlg + }).on('close', function() { + me.show(); + _.delay(function(){ + me.txtDataRange.focus(); + },1); + }); + + var xy = me.$window.offset(); + me.hide(); + win.show(xy.left + 65, xy.top + 77); + win.setSettings({ + api : me.api, + range : (!_.isEmpty(me.txtDataRange.getValue()) && (me.txtDataRange.checkValidate()==true)) ? me.txtDataRange.getValue() : me.dataRangeValid, + type : Asc.c_oAscSelectionDialogType.ConditionalFormattingRule, + validation: function() {return true;} + }); + } + }, + + txtPassword : "Password", + txtRepeat: 'Repeat password', + txtIncorrectPwd: 'Confirmation password is not identical', + txtWarning: 'Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.', + txtOptional: 'optional', + txtProtect: 'Protect', + txtSelLocked: 'Select locked cells', + txtSelUnLocked: 'Select unlocked cells', + txtFormatCells: 'Format cells', + txtFormatCols: 'Format columns', + txtFormatRows: 'Format rows', + txtInsCols: 'Insert columns', + txtInsRows: 'Insert rows', + txtInsHyper: 'Insert hyperlink', + txtDelCols: 'Delete columns', + txtDelRows: 'Delete rows', + txtSort: 'Sort', + txtAutofilter: 'Use AutoFilter', + txtPivot: 'Use PivotTable and PivotChart', + txtObjs: 'Edit objects', + txtScen: 'Edit scenarios', + txtWBDescription: 'To prevent other users from viewing hidden worksheets, adding, moving, deleting, or hiding worksheets and renaming worksheets, you can protect the structure of your workbook with a password.', + txtWBTitle: 'Protect Workbook structure', + txtSheetDescription: 'Prevent unwanted changes from others by limiting their ability to edit.', + txtSheetTitle: 'Protect Sheet', + txtAllow: 'Allow all users of this sheet to', + txtRangeName: 'Title', + txtRange: 'Range', + txtEmpty: 'This field is required', + textSelectData: 'Select Data', + textInvalidRange: 'ERROR! Invalid cells range' + + }, SSE.Views.ProtectDialog || {})); +}); diff --git a/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js b/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js new file mode 100644 index 000000000..66701f65f --- /dev/null +++ b/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js @@ -0,0 +1,439 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2021 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * +*/ +/** + * + * ProtectRangesDlg.js + * + * Created by Julia.Radzhabova on 22.06.21 + * Copyright (c) 2021 Ascensio System SIA. All rights reserved. + * + */ + +define([ 'text!spreadsheeteditor/main/app/template/ProtectRangesDlg.template', + 'common/main/lib/view/AdvancedSettingsWindow', + 'common/main/lib/component/ListView' +], function (contentTemplate) { + 'use strict'; + + SSE.Views = SSE.Views || {}; + + SSE.Views.ProtectRangesDlg = Common.Views.AdvancedSettingsWindow.extend(_.extend({ + options: { + alias: 'ProtectRangesDlg', + contentWidth: 480, + height: 353 + }, + + initialize: function (options) { + var me = this; + _.extend(this.options, { + title: this.txtTitle, + template: [ + '
    ', + '
    ' + _.template(contentTemplate)({scope: this}) + '
    ', + '
    ', + '
    ' + ].join(''), + buttons: [{ + value: 'protect-sheet', + caption: this.textProtect + }, 'ok','cancel'], + primary: 'protect-sheet' + }, options); + + this.api = options.api; + this.handler = options.handler; + this.props = options.props; + this.locked = options.locked || false; + this.userTooltip = true; + this.currentRange = undefined; + this.deletedArr = []; + + this.wrapEvents = { + onLockProtectedRangeManager: _.bind(this.onLockProtectedRangeManager, this), + onUnLockProtectedRangeManager: _.bind(this.onUnLockProtectedRangeManager, this), + onLockProtectedRange: _.bind(this.onLockProtectedRange, this), + onUnLockProtectedRange: _.bind(this.onUnLockProtectedRange, this) + }; + + Common.Views.AdvancedSettingsWindow.prototype.initialize.call(this, this.options); + }, + render: function () { + Common.Views.AdvancedSettingsWindow.prototype.render.call(this); + var me = this; + + this.rangeList = new Common.UI.ListView({ + el: $('#protect-ranges-list', this.$window), + store: new Common.UI.DataViewStore(), + simpleAddMode: true, + emptyText: this.textEmpty, + itemTemplate: _.template([ + '
    ', + '
    <%= Common.Utils.String.htmlEncode(name) %>
    ', + '
    <%= range %>
    ', + '
    <% if (pwd) { %>', me.txtYes, '<% } else { %>', me.txtNo, '<% } %>
    ', + '<% if (lock) { %>', + '
    <%=lockuser%>
    ', + '<% } %>', + '
    ' + ].join('')), + tabindex: 1 + }); + this.rangeList.store.comparator = function(item1, item2) { + var n1 = item1.get('name').toLowerCase(), + n2 = item2.get('name').toLowerCase(); + if (n1==n2) return 0; + return (n10) { + if (selectedItem===undefined || selectedItem===null) selectedItem = 0; + if (_.isNumber(selectedItem)) { + if (selectedItem>val-1) selectedItem = val-1; + this.rangeList.selectByIndex(selectedItem); + setTimeout(function() { + me.rangeList.scrollToRecord(store.at(selectedItem)); + }, 50); + + } else if (selectedItem){ // object + var rec = store.findWhere({name: selectedItem.asc_getName(true)}); + if (rec) { + this.rangeList.selectRecord(rec); + setTimeout(function() { + me.rangeList.scrollToRecord(rec); + }, 50); + } + } + + if (this.userTooltip===true && this.rangeList.cmpEl.find('.lock-user').length>0) + this.rangeList.cmpEl.on('mouseover', _.bind(me.onMouseOverLock, me)).on('mouseout', _.bind(me.onMouseOutLock, me)); + } + this.updateButtons(); + _.delay(function () { + me.rangeList.scroller.update({alwaysVisibleY: true}); + }, 100, this); + }, + + onMouseOverLock: function (evt, el, opt) { + if (this.userTooltip===true && $(evt.target).hasClass('lock-user')) { + var me = this, + tipdata = $(evt.target).tooltip({title: this.tipIsLocked,trigger:'manual'}).data('bs.tooltip'); + + this.userTooltip = tipdata.tip(); + this.userTooltip.css('z-index', parseInt(this.$window.css('z-index')) + 10); + tipdata.show(); + + setTimeout(function() { me.userTipHide(); }, 5000); + } + }, + + userTipHide: function () { + if (typeof this.userTooltip == 'object') { + this.userTooltip.remove(); + this.userTooltip = undefined; + this.rangeList.cmpEl.off('mouseover').off('mouseout'); + } + }, + + onMouseOutLock: function (evt, el, opt) { + if (typeof this.userTooltip == 'object') this.userTipHide(); + }, + + onEditRange: function (isEdit) { + if (this._isWarningVisible) return; + + if (this.locked) { + Common.NotificationCenter.trigger('namedrange:locked'); + return; + } + var me = this, + xy = me.$window.offset(), + rec = this.rangeList.getSelectedRec(), + props; + if (isEdit) + props = rec.get('props'); + else { + props = new Asc.CProtectedRange(); + props.asc_setSqref(me.api.asc_getActiveRangeStr(Asc.referenceType.A)); + } + + var win = new SSE.Views.ProtectDialog({ + title : isEdit ? me.txtEditRange : me.txtNewRange, + type : 'range', + props : props, + isEdit : isEdit, + api : me.api, + buttons : ['ok', 'cancel'], + handler : function(result, value, props) { + if (result == 'ok') { + value && props.asc_setPassword(value); + if (isEdit) { + rec.set('props', props); + rec.set('name', props.asc_getName()); + rec.set('range', props.asc_getSqref()); + rec.set('pwd', props.asc_isPassword()); + } else { + rec = me.rangeList.store.add({ + name: props.asc_getName(), + pwd: props.asc_isPassword(), + range: props.asc_getSqref(), + props: props, + isNew: true, + lock: false, + lockuser: this.guestText + }); + me.rangeList.selectRecord(rec); + me.rangeList.scrollToRecord(me.rangeList.getSelectedRec()); + me.updateButtons(); + } + } + } + }).on('close', function() { + me.show(); + setTimeout(function(){ me.getDefaultFocusableComponent().focus(); }, 100); + }); + + me.hide(); + win.show(xy.left + 65, xy.top + 77); + }, + + onDeleteRange: function () { + var store = this.rangeList.store, + rec = this.rangeList.getSelectedRec(); + if (rec) { + !rec.get('isNew') && this.deletedArr.push(rec.get('props')); + var index = store.indexOf(rec); + store.remove(rec); + (store.length>0) && this.rangeList.selectByIndex(index); + this.rangeList.scrollToRecord(this.rangeList.getSelectedRec()); + } + this.updateButtons(); + }, + + getSettings: function() { + var arr = []; + this.rangeList.store.each(function(item){ + arr.push(item.get('props')); + }); + return {arr: arr, deletedArr: this.deletedArr}; + }, + + onPrimary: function() { + return true; + }, + + onDlgBtnClick: function(event) { + this.handler && this.handler.call(this, event.currentTarget.attributes['result'].value, this.getSettings()); + this.close(); + }, + + getUserName: function(id){ + var usersStore = SSE.getCollection('Common.Collections.Users'); + if (usersStore){ + var rec = usersStore.findUser(id); + if (rec) + return AscCommon.UserInfoParser.getParsedName(rec.get('username')); + } + return this.guestText; + }, + + onSelectRangeItem: function(lisvView, itemView, record) { + if (!record) return; + + this.userTipHide(); + var rawData = {}, + isViewSelect = _.isFunction(record.toJSON); + + if (isViewSelect){ + if (record.get('selected')) { + rawData = record.toJSON(); + } else {// record deselected + return; + } + this.currentNamedRange = _.indexOf(this.rangeList.store.models, record); + } + this.updateButtons(); + }, + + hide: function () { + this.userTipHide(); + Common.UI.Window.prototype.hide.call(this); + }, + + close: function () { + this.userTipHide(); + this.api.asc_unregisterCallback('asc_onLockProtectedRangeManager', this.wrapEvents.onLockProtectedRangeManager); + this.api.asc_unregisterCallback('asc_onUnLockProtectedRangeManager', this.wrapEvents.onUnLockProtectedRangeManager); + this.api.asc_unregisterCallback('asc_onLockProtectedRange', this.wrapEvents.onLockProtectedRange); + this.api.asc_unregisterCallback('asc_onUnLockProtectedRange', this.wrapEvents.onUnLockProtectedRange); + Common.UI.Window.prototype.close.call(this); + }, + + onKeyDown: function (lisvView, record, e) { + if (e.keyCode==Common.UI.Keys.DELETE && !this.btnDeleteRange.isDisabled()) + this.onDeleteRange(); + }, + + onDblClickItem: function (lisvView, record, e) { + if (!this.btnEditRange.isDisabled()) + this.onEditRange(true); + }, + + onLockProtectedRangeManager: function(index) { + if (this.currentSheet !== index) return; + this.locked = true; + this.updateButtons(); + if (this.userTooltip===true && this.rulesList.cmpEl.find('.lock-user').length>0) + this.rulesList.cmpEl.on('mouseover', _.bind(this.onMouseOverLock, this)).on('mouseout', _.bind(this.onMouseOutLock, this)); + }, + + onUnLockProtectedRangeManager: function(index) { + if (this.currentSheet !== index) return; + this.locked = false; + this.updateButtons(); + }, + + onLockProtectedRange: function(index, ruleId, userId) { + if (this.currentSheet !== index) return; + var store = this.rulesList.store, + rec = store.findWhere({ruleId: ruleId}); + if (rec) { + rec.set('lockuser', (userId) ? this.getUserName(userId) : this.guestText); + rec.set('lock', true); + this.updateButtons(); + } + if (this.userTooltip===true && this.rulesList.cmpEl.find('.lock-user').length>0) + this.rulesList.cmpEl.on('mouseover', _.bind(this.onMouseOverLock, this)).on('mouseout', _.bind(this.onMouseOutLock, this)); + }, + + onUnLockProtectedRange: function(index, ruleId) { + if (this.currentSheet !== index) return; + var store = this.rulesList.store, + rec = store.findWhere({ruleId: ruleId}); + if (rec) { + rec.set('lockuser', ''); + rec.set('lock', false); + this.updateButtons(); + } + }, + + updateButtons: function() { + var rec = this.rangeList.getSelectedRec(), + lock = rec ? rec.get('lock') : false, + length = this.rangeList.store.length; + this.btnDeleteRange.setDisabled(length<1 || lock); + this.btnEditRange.setDisabled(length<1 || lock); + }, + + txtTitle: 'Allow Users to Edit Ranges', + textRangesDesc: 'Ranges unlocked by a password when sheet is protected (this works only for locked cells)', + textTitle: 'Title', + textRange: 'Range', + textPwd: 'Password', + textNew: 'New', + textEdit: 'Edit', + textDelete: 'Delete', + textEmpty: 'No ranges allowed for edit.', + guestText: 'Guest', + tipIsLocked: 'This element is being edited by another user.', + warnDelete: 'Are you sure you want to delete the name {0}?', + textProtect: 'Protect Sheet', + txtYes: 'Yes', + txtNo: 'No', + txtEditRange: 'Edit Range', + txtNewRange: 'New Range' + + }, SSE.Views.ProtectRangesDlg || {})); +}); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/Statusbar.js b/apps/spreadsheeteditor/main/app/view/Statusbar.js index eaf8a3e6c..3d8d73df2 100644 --- a/apps/spreadsheeteditor/main/app/view/Statusbar.js +++ b/apps/spreadsheeteditor/main/app/view/Statusbar.js @@ -377,6 +377,7 @@ define([ caption: this.itemHidden, menu: menuHiddenItems }, + {caption: this.itemProtect, value: 'protect'}, { caption: this.itemTabColor, menu: menuColorItems @@ -553,6 +554,7 @@ define([ var wc = this.api.asc_getWorksheetsCount(), i = -1; var hidentems = [], items = [], allItems = [], tab, locked, name; var sindex = this.api.asc_getActiveWorksheetIndex(); + var wbprotected = this.api.asc_isProtectedWorkbook(); while (++i < wc) { locked = me.api.asc_isWorksheetLockedOrDeleted(i); @@ -564,7 +566,7 @@ define([ label : me.api.asc_getWorksheetName(i), // reorderable : !locked, cls : locked ? 'coauth-locked':'', - isLockTheDrag : locked || me.mode.isDisconnected, + isLockTheDrag : locked || me.mode.isDisconnected || wbprotected, iconCls : 'btn-sheet-view', iconTitle : name, iconVisible : name!=='' @@ -616,9 +618,9 @@ define([ if (!this.tabbar.isTabVisible(sindex)) this.tabbar.setTabVisible(sindex); - this.tabbar.addDataHint(sindex); + this.btnAddWorksheet.setDisabled(me.mode.isDisconnected || me.api.asc_isWorkbookLocked() || me.api.asc_isProtectedWorkbook() || me.api.isCellEdited); + this.tabbar.addDataHint(_.findIndex(items, function (item) { return item.sheetindex === sindex; })); - this.btnAddWorksheet.setDisabled(me.mode.isDisconnected || me.api.asc_isWorkbookLocked() || me.api.isCellEdited); $('#status-label-zoom').text(Common.Utils.String.format(this.zoomText, Math.floor((this.api.asc_getZoom() +.005)*100))); this.updateNumberOfSheet(sindex, wc); @@ -737,24 +739,28 @@ define([ } var isdoclocked = this.api.asc_isWorkbookLocked(); + var isdocprotected = this.api.asc_isProtectedWorkbook(); - this.tabMenu.items[0].setDisabled(isdoclocked); - this.tabMenu.items[1].setDisabled(issheetlocked); - this.tabMenu.items[2].setDisabled(issheetlocked); - this.tabMenu.items[3].setDisabled(issheetlocked); - this.tabMenu.items[4].setDisabled(issheetlocked); - this.tabMenu.items[5].setDisabled(issheetlocked); - this.tabMenu.items[6].setDisabled(isdoclocked); - this.tabMenu.items[7].setDisabled(issheetlocked); + this.tabMenu.items[0].setDisabled(isdoclocked || isdocprotected); + this.tabMenu.items[1].setDisabled(issheetlocked || isdocprotected); + this.tabMenu.items[2].setDisabled(issheetlocked || isdocprotected); + this.tabMenu.items[3].setDisabled(issheetlocked || isdocprotected); + this.tabMenu.items[4].setDisabled(issheetlocked || isdocprotected); + this.tabMenu.items[5].setDisabled(issheetlocked || isdocprotected); + this.tabMenu.items[6].setDisabled(isdoclocked || isdocprotected); + this.tabMenu.items[7].setDisabled(select.length>1); + this.tabMenu.items[8].setDisabled(issheetlocked || isdocprotected); + + this.tabMenu.items[7].setCaption(this.api.asc_isProtectedSheet() ? this.itemUnProtect : this.itemProtect); if (select.length === 1) { - this.tabMenu.items[10].hide(); + this.tabMenu.items[11].hide(); } else { - this.tabMenu.items[10].show(); + this.tabMenu.items[11].show(); } - this.tabMenu.items[9].setDisabled(issheetlocked); - this.tabMenu.items[10].setDisabled(issheetlocked); + this.tabMenu.items[10].setDisabled(issheetlocked || isdocprotected); + this.tabMenu.items[11].setDisabled(issheetlocked || isdocprotected); this.api.asc_closeCellEditor(); this.api.asc_enableKeyEvents(false); @@ -1027,7 +1033,9 @@ define([ itemMinimum : 'Minimum', itemMaximum : 'Maximum', itemSum : 'Sum', - itemStatus : 'Saving status' + itemStatus : 'Saving status', + itemProtect : 'Protect', + itemUnProtect : 'Unprotect' }, SSE.Views.Statusbar || {})); SSE.Views.Statusbar.RenameDialog = Common.UI.Window.extend(_.extend({ diff --git a/apps/spreadsheeteditor/main/app/view/TableSettings.js b/apps/spreadsheeteditor/main/app/view/TableSettings.js index fa662f465..705c35feb 100644 --- a/apps/spreadsheeteditor/main/app/view/TableSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TableSettings.js @@ -86,6 +86,8 @@ define([ }; this.lockedControls = []; this._locked = false; + this.wsLock = false; + this.wsProps = []; this.isEditCell = false; this._originalProps = null; @@ -403,10 +405,12 @@ define([ } }, - ChangeSettings: function(props) { + ChangeSettings: function(props, wsLock, wsProps) { if (this._initSettings) this.createDelayedControls(); + this.wsLock = wsLock; + this.wsProps = wsProps; this.disableControls(this._locked); // need to update combodataview after disabled state if (props )//formatTableInfo @@ -470,9 +474,9 @@ define([ this._state.CheckFilter=value; } if (this.chFilter.isDisabled() !== (!this._state.CheckHeader || this._locked || value===null)) - this.chFilter.setDisabled(!this._state.CheckHeader || this._locked || value===null); + this.chFilter.setDisabled(!this._state.CheckHeader || this._locked || value===null || this.wsLock); - if (needTablePictures) + if (needTablePictures || !this.mnuTableTemplatePicker) this.onApiInitTableTemplates(this.api.asc_getTablePictures(props)); //for table-template @@ -533,7 +537,7 @@ define([ this.btnTableTemplate.render($('#table-btn-template')); this.lockedControls.push(this.btnTableTemplate); this.mnuTableTemplatePicker.on('item:click', _.bind(this.onTableTemplateSelect, this, this.btnTableTemplate)); - if (this._locked) this.btnTableTemplate.setDisabled(this._locked); + if (this._locked) this.btnTableTemplate.setDisabled(this._locked || this.wsProps['FormatCells']); } @@ -636,13 +640,16 @@ define([ if (this._initSettings) return; disable = disable || this.isEditCell; - if (this._state.DisabledControls!==disable) { - this._state.DisabledControls = disable; - _.each(this.lockedControls, function(item) { - item.setDisabled(disable); - }); - this.linkAdvanced.toggleClass('disabled', disable); - } + var me = this; + _.each(this.lockedControls, function(item) { + item.setDisabled(disable || me.wsLock); + }); + this.linkAdvanced.toggleClass('disabled', disable || this.wsLock); + this.btnTableTemplate && this.btnTableTemplate.setDisabled(disable || this.wsProps['FormatCells']); + this.chBanded.setDisabled(disable || this.wsProps['FormatCells']); + this.chFirst.setDisabled(disable || this.wsProps['FormatCells']); + this.chLast.setDisabled(disable || this.wsProps['FormatCells']); + this.chColBanded.setDisabled(disable || this.wsProps['FormatCells']); }, textEdit: 'Rows & Columns', diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index 800054ac3..a11d75f43 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -98,7 +98,13 @@ define([ cantSort: 'cant-sort', pivotLock: 'pivot-lock', tableHasSlicer: 'table-has-slicer', - sheetView: 'sheet-view' + sheetView: 'sheet-view', + wbLock: 'workbook-lock', + wsLock: 'worksheet-lock', + itemsDisabled: 'all-items-disabled', + wsLockText: 'worksheet-lock-text', + wsLockShape: 'worksheet-lock-shape', + wsLockFormat: 'worksheet-lock-format' }; SSE.Views.Toolbar = Common.UI.Mixtbar.extend(_.extend({ @@ -417,7 +423,7 @@ define([ id : 'id-toolbar-btn-incfont', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-incfont', - lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], dataHint : '1', dataHintDirection: 'top' }); @@ -426,7 +432,7 @@ define([ id : 'id-toolbar-btn-decfont', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-decfont', - lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], dataHint : '1', dataHintDirection: 'top' }); @@ -435,7 +441,7 @@ define([ id : 'id-toolbar-btn-bold', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-bold', - lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], enableToggle: true, dataHint : '1', dataHintDirection: 'bottom' @@ -445,7 +451,7 @@ define([ id : 'id-toolbar-btn-italic', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-italic', - lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], enableToggle: true, dataHint : '1', dataHintDirection: 'bottom' @@ -455,7 +461,7 @@ define([ id : 'id-toolbar-btn-underline', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-underline', - lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], enableToggle: true, dataHint : '1', dataHintDirection: 'bottom' @@ -465,7 +471,7 @@ define([ id: 'id-toolbar-btn-strikeout', cls: 'btn-toolbar', iconCls: 'toolbar__icon btn-strikeout', - lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], enableToggle: true, dataHint : '1', dataHintDirection: 'bottom' @@ -478,7 +484,7 @@ define([ icls : 'btn-subscript', split : true, enableToggle: true, - lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], menu : new Common.UI.Menu({ items: [ { @@ -514,7 +520,7 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-fontcolor', split : true, - lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editFormula, _set.selRangeEdit, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], menu: true, auto: true, dataHint : '1', @@ -528,7 +534,7 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-paracolor', split : true, - lock : [_set.selImage, _set.editCell, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect], + lock : [_set.selImage, _set.editCell, _set.selSlicer, _set.coAuth, _set.coAuthText, _set.lostConnect, _set.wsLockFormat], transparent: true, menu: true, dataHint: '1', @@ -543,7 +549,7 @@ define([ icls : 'btn-border-out', borderId : 'outer', borderswidth: Asc.c_oAscBorderStyles.Thin, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], split : true, menu : true, dataHint : '1', @@ -556,7 +562,7 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-align-left', enableToggle: true, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.wsLockFormat], toggleGroup : 'alignGroup', dataHint : '1', dataHintDirection: 'bottom' @@ -567,7 +573,7 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-align-center', enableToggle: true, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.wsLockFormat], toggleGroup : 'alignGroup', dataHint : '1', dataHintDirection: 'bottom' @@ -578,7 +584,7 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-align-right', enableToggle: true, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.wsLockFormat], toggleGroup : 'alignGroup', dataHint : '1', dataHintDirection: 'bottom' @@ -589,7 +595,7 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-align-just', enableToggle: true, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.wsLockFormat], toggleGroup: 'alignGroup', dataHint : '1', dataHintDirection: 'bottom' @@ -602,7 +608,7 @@ define([ enableToggle: true, allowDepress: true, split : true, - lock : [_set.editCell, _set.selShape, _set.selShapeText, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleMerge, _set.editPivot], + lock : [_set.editCell, _set.selShape, _set.selShapeText, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleMerge, _set.editPivot, _set.wsLock], menu : new Common.UI.Menu({ items: [ { @@ -636,7 +642,7 @@ define([ id : 'id-toolbar-rtn-valign-top', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-align-top', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.wsLockFormat], enableToggle: true, toggleGroup : 'vAlignGroup', dataHint : '1', @@ -648,7 +654,7 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-align-middle', enableToggle: true, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.wsLockFormat], toggleGroup : 'vAlignGroup', dataHint : '1', dataHintDirection: 'top' @@ -658,7 +664,7 @@ define([ id : 'id-toolbar-rtn-valign-bottom', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-align-bottom', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.wsLockFormat], enableToggle: true, toggleGroup : 'vAlignGroup', dataHint : '1', @@ -669,7 +675,7 @@ define([ id : 'id-toolbar-rtn-wrap', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-wrap', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], enableToggle: true, allowDepress: true, dataHint : '1', @@ -680,7 +686,7 @@ define([ id : 'id-toolbar-rtn-textorient', cls : 'btn-toolbar', iconCls : 'toolbar__icon text-orient-ccw', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.wsLockFormat], menu : new Common.UI.Menu({ items: [ { @@ -742,7 +748,7 @@ define([ cls : 'btn-toolbar x-huge icon-top', iconCls : 'toolbar__icon btn-insertimage', caption : me.capInsertImage, - lock : [_set.editCell, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.lostConnect, _set.coAuth, _set['Objects']], menu : new Common.UI.Menu({ items: [ { caption: me.mniImageFromFile, value: 'file' }, @@ -760,7 +766,7 @@ define([ cls : 'btn-toolbar x-huge icon-top', iconCls : 'toolbar__icon btn-inserthyperlink', caption : me.capInsertHyperlink, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selShape, _set.cantHyperlink, _set.selSlicer, _set.multiselect, _set.lostConnect, _set.coAuth, _set.editPivot], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selShape, _set.cantHyperlink, _set.selSlicer, _set.multiselect, _set.lostConnect, _set.coAuth, _set.editPivot, _set['InsertHyperlinks']], dataHint : '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -770,7 +776,7 @@ define([ id : 'tlbtn-insertchart', cls : 'btn-toolbar x-huge icon-top', iconCls : 'toolbar__icon btn-insertchart', - lock : [_set.editCell, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.editCell, _set.lostConnect, _set.coAuth, _set.coAuthText, _set['Objects']], caption : me.capInsertChart, menu : true, dataHint : '1', @@ -782,7 +788,7 @@ define([ id : 'tlbtn-insertsparkline', cls : 'btn-toolbar x-huge icon-top', iconCls : 'toolbar__icon btn-sparkline', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selShape, _set.selSlicer, _set.multiselect, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.editPivot], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selImage, _set.selShape, _set.selSlicer, _set.multiselect, _set.lostConnect, _set.coAuth, _set.coAuthText, _set.editPivot, _set.wsLock], caption : me.capInsertSpark, menu : true, dataHint : '1', @@ -796,7 +802,7 @@ define([ iconCls : 'toolbar__icon btn-insertshape', enableToggle: true, caption : me.capInsertShape, - lock : [_set.editCell, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.lostConnect, _set.coAuth, _set['Objects']], menu : new Common.UI.Menu({cls: 'menu-shapes'}), dataHint : '1', dataHintDirection: 'bottom', @@ -808,7 +814,7 @@ define([ cls : 'btn-toolbar x-huge icon-top', iconCls : 'toolbar__icon btn-text', caption : me.capInsertText, - lock : [_set.editCell, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.lostConnect, _set.coAuth, _set['Objects']], enableToggle: true, dataHint : '1', dataHintDirection: 'bottom', @@ -820,7 +826,7 @@ define([ cls : 'btn-toolbar x-huge icon-top', iconCls : 'toolbar__icon btn-textart', caption : me.capInsertTextart, - lock : [_set.editCell, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.lostConnect, _set.coAuth, _set['Objects']], menu : new Common.UI.Menu({ cls: 'menu-shapes', items: [ @@ -861,7 +867,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-slicer', caption: me.capBtnInsSlicer, - lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.multiselect, _set.noSlicerSource], + lock: [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.multiselect, _set.noSlicerSource, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -871,7 +877,7 @@ define([ id : 'id-toolbar-btn-ttempl', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-menu-table', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.multiselect, _set.cantModifyFilter], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.multiselect, _set.cantModifyFilter, _set.wsLock], menu : new Common.UI.Menu({ items: [ { template: _.template('
    ') } @@ -887,7 +893,7 @@ define([ cls : 'btn-toolbar x-huge icon-top', iconCls : 'toolbar__icon btn-inserttable', caption : me.capInsertTable, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.multiselect, _set.cantModifyFilter, _set.ruleMerge, _set.editPivot], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.multiselect, _set.cantModifyFilter, _set.ruleMerge, _set.editPivot, _set.wsLock], dataHint: '1', dataHintDirection: 'bottom', dataHintOffset: 'small' @@ -899,7 +905,7 @@ define([ itemWidth : 112, itemHeight : 38, menuMaxHeight : 226, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], dataHint : '1', dataHintDirection: 'bottom', dataHintOffset : '-16, 0', @@ -950,7 +956,7 @@ define([ cls : 'input-group-nr', menuStyle : 'min-width: 180px;', hint : me.tipNumFormat, - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set['FormatCells']], itemsTemplate: formatTemplate, editable : false, data : me.numFormatData, @@ -962,7 +968,7 @@ define([ id : 'id-toolbar-btn-percent-style', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-percent-style', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], styleName : 'Percent', dataHint : '1', dataHintDirection: 'bottom' @@ -972,7 +978,7 @@ define([ id : 'id-toolbar-btn-accounting-style', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-currency-style', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], styleName : 'Currency', split : true, menu : new Common.UI.Menu({ @@ -1013,7 +1019,7 @@ define([ id : 'id-toolbar-btn-decdecimal', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-decdecimal', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], dataHint : '1', dataHintDirection: 'bottom' }); @@ -1022,7 +1028,7 @@ define([ id : 'id-toolbar-btn-incdecimal', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-incdecimal', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], dataHint : '1', dataHintDirection: 'bottom' }); @@ -1058,7 +1064,7 @@ define([ id : 'id-toolbar-btn-insertrange', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-named-range', - lock : [_set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.selRangeEdit], + lock : [_set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set.selRangeEdit, _set.wsLock], menu : new Common.UI.Menu({ style : 'min-width: 110px', items : [ @@ -1137,16 +1143,18 @@ define([ id : 'id-toolbar-btn-addcell', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-addcell', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.itemsDisabled, _set.lostConnect, _set.coAuth], menu : new Common.UI.Menu({ items : [ { caption : me.textInsRight, - value : Asc.c_oAscInsertOptions.InsertCellsAndShiftRight + value : Asc.c_oAscInsertOptions.InsertCellsAndShiftRight, + lock : [_set.wsLock] }, { caption : me.textInsDown, - value : Asc.c_oAscInsertOptions.InsertCellsAndShiftDown + value : Asc.c_oAscInsertOptions.InsertCellsAndShiftDown, + lock : [_set.wsLock] }, { caption : me.textEntireRow, @@ -1167,16 +1175,18 @@ define([ id : 'id-toolbar-btn-delcell', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-delcell', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.itemsDisabled, _set.lostConnect, _set.coAuth], menu : new Common.UI.Menu({ items : [ { caption : me.textDelLeft, - value : Asc.c_oAscDeleteOptions.DeleteCellsAndShiftLeft + value : Asc.c_oAscDeleteOptions.DeleteCellsAndShiftLeft, + lock : [_set.wsLock] }, { caption : me.textDelUp, - value : Asc.c_oAscDeleteOptions.DeleteCellsAndShiftTop + value : Asc.c_oAscDeleteOptions.DeleteCellsAndShiftTop, + lock : [_set.wsLock] }, { caption : me.textEntireRow, @@ -1197,7 +1207,7 @@ define([ id : 'id-toolbar-btn-condformat', cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-cond-format', - lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.lostConnect, _set.coAuth, _set['FormatCells']], menu : true, dataHint : '1', dataHintDirection: 'top', @@ -1209,7 +1219,7 @@ define([ cls : 'btn-toolbar x-huge icon-top', iconCls : 'toolbar__icon btn-colorschemas', caption : me.capBtnColorSchemas, - lock : [_set.editCell, _set.lostConnect, _set.coAuth], + lock : [_set.editCell, _set.lostConnect, _set.coAuth, _set.wsLock], menu : new Common.UI.Menu({ cls: 'shifted-left', items: [], @@ -1561,7 +1571,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-align', caption: me.capImgAlign, - lock : [_set.selRange, _set.selRangeEdit, _set.cantGroup, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.selRange, _set.selRangeEdit, _set.cantGroup, _set.lostConnect, _set.coAuth, _set.coAuthText, _set["Objects"]], menu: true, dataHint: '1', dataHintDirection: 'bottom', @@ -1572,7 +1582,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-group', caption: me.capImgGroup, - lock : [_set.selRange, _set.selRangeEdit, _set.cantGroupUngroup, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.selRange, _set.selRangeEdit, _set.cantGroupUngroup, _set.lostConnect, _set.coAuth, _set.coAuthText, _set["Objects"]], menu: true, dataHint: '1', dataHintDirection: 'bottom', @@ -1583,7 +1593,7 @@ define([ iconCls: 'toolbar__icon btn-img-frwd', caption: me.capImgForward, split: true, - lock : [_set.selRange, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.selRange, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.coAuthText, _set["Objects"]], menu: true, dataHint: '1', dataHintDirection: 'bottom', @@ -1593,7 +1603,7 @@ define([ cls: 'btn-toolbar x-huge icon-top', iconCls: 'toolbar__icon btn-img-bkwd', caption: me.capImgBackward, - lock : [_set.selRange, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.coAuthText], + lock : [_set.selRange, _set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.coAuthText, _set["Objects"]], split: true, menu: true, dataHint: '1', diff --git a/apps/spreadsheeteditor/main/app/view/ViewTab.js b/apps/spreadsheeteditor/main/app/view/ViewTab.js index 017fe8dc7..269283802 100644 --- a/apps/spreadsheeteditor/main/app/view/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/view/ViewTab.js @@ -98,7 +98,10 @@ define([ iconCls: 'toolbar__icon btn-sheet-view', caption: me.capBtnSheetView, lock : [_set.lostConnect, _set.coAuth], - menu: true + menu: true, + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' }); this.lockedControls.push(this.btnSheetView); @@ -107,7 +110,10 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-sheet-view-new', caption : this.textCreate, - lock : [_set.coAuth, _set.lostConnect] + lock : [_set.coAuth, _set.lostConnect], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'big' }); this.lockedControls.push(this.btnCreateView); Common.Utils.injectComponent($host.find('#slot-createview'), this.btnCreateView); @@ -117,7 +123,10 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-sheet-view-close', caption : this.textClose, - lock : [_set.sheetView, _set.coAuth, _set.lostConnect] + lock : [_set.sheetView, _set.coAuth, _set.lostConnect], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'big' }); this.lockedControls.push(this.btnCloseView); Common.Utils.injectComponent($host.find('#slot-closeview'), this.btnCloseView); @@ -192,7 +201,10 @@ define([ this.chZeros = new Common.UI.CheckBox({ el: $host.findById('#slot-chk-zeros'), labelText: this.textZeros, - lock : [_set.sheetLock, _set.lostConnect, _set.coAuth] + lock : [_set.sheetLock, _set.lostConnect, _set.coAuth], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' }); this.lockedControls.push(this.chZeros); diff --git a/apps/spreadsheeteditor/main/app/view/Viewport.js b/apps/spreadsheeteditor/main/app/view/Viewport.js index eebaf3390..89b7e2707 100644 --- a/apps/spreadsheeteditor/main/app/view/Viewport.js +++ b/apps/spreadsheeteditor/main/app/view/Viewport.js @@ -118,6 +118,15 @@ define([ max: 600, offset: 4 } + }, { // history versions + el: items[3], + rely: true, + resize: { + hidden: true, + autohide: false, + min: 300, + max: 600 + } }, { el: items[1], stretch: true diff --git a/apps/spreadsheeteditor/main/app/view/WBProtection.js b/apps/spreadsheeteditor/main/app/view/WBProtection.js new file mode 100644 index 000000000..f1a076f30 --- /dev/null +++ b/apps/spreadsheeteditor/main/app/view/WBProtection.js @@ -0,0 +1,246 @@ +/* + * + * (c) Copyright Ascensio System SIA 2010-2021 + * + * This program is a free software product. You can redistribute it and/or + * modify it under the terms of the GNU Affero General Public License (AGPL) + * version 3 as published by the Free Software Foundation. In accordance with + * Section 7(a) of the GNU AGPL its Section 15 shall be amended to the effect + * that Ascensio System SIA expressly excludes the warranty of non-infringement + * of any third-party rights. + * + * This program is distributed WITHOUT ANY WARRANTY; without even the implied + * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. For + * details, see the GNU AGPL at: http://www.gnu.org/licenses/agpl-3.0.html + * + * You can contact Ascensio System SIA at 20A-12 Ernesta Birznieka-Upisha + * street, Riga, Latvia, EU, LV-1050. + * + * The interactive user interfaces in modified source and object code versions + * of the Program must display Appropriate Legal Notices, as required under + * Section 5 of the GNU AGPL version 3. + * + * Pursuant to Section 7(b) of the License you must retain the original Product + * logo when distributing the program. Pursuant to Section 7(e) we decline to + * grant you any rights under trademark law for use of our trademarks. + * + * All the Product's GUI elements, including illustrations and icon sets, as + * well as technical writing content are licensed under the terms of the + * Creative Commons Attribution-ShareAlike 4.0 International. See the License + * terms at http://creativecommons.org/licenses/by-sa/4.0/legalcode + * + */ + +/** + * WBProtection.js + * + * Created by Julia Radzhabova on 21.06.2021 + * Copyright (c) 2021Ascensio System SIA. All rights reserved. + * + */ +define([ + 'common/main/lib/util/utils', + 'common/main/lib/component/BaseView', + 'common/main/lib/component/Layout', + 'common/main/lib/component/Window' +], function (template) { + 'use strict'; + + SSE.Views.WBProtection = Common.UI.BaseView.extend(_.extend((function(){ + var template = + '
    ' + + '' + + '' + + '' + + '
    ' + + '
    ' + + '
    ' + + '' + + '
    ' + + '
    ' + + '' + + '
    ' + + '
    ' + + '
    ' + + '
    ' + + '' + + '
    ' + + '
    ' + + '' + + '
    ' + + '
    '; + + function setEvents() { + var me = this; + + this.btnProtectWB.on('click', function (btn, e) { + me.fireEvent('protect:workbook', [btn.pressed]); + }); + this.btnProtectSheet.on('click', function (btn, e) { + me.fireEvent('protect:sheet', [btn.pressed]); + }); + this.btnAllowRanges.on('click', function (btn, e) { + me.fireEvent('protect:ranges'); + }); + this.chLockedCell.on('change', function (field, value) { + me.fireEvent('protect:lock-options', [0, value]); + }); + this.chLockedShape.on('change', function (field, value) { + me.fireEvent('protect:lock-options', [1, value]); + }); + this.chLockedText.on('change', function (field, value) { + me.fireEvent('protect:lock-options', [2, value]); + }); + this.chHiddenFormula.on('change', function (field, value) { + me.fireEvent('protect:lock-options', [3, value]); + }); + + me._isSetEvents = true; + } + + return { + + options: {}, + + initialize: function (options) { + Common.UI.BaseView.prototype.initialize.call(this, options); + + this.appConfig = options.mode; + + var _set = SSE.enumLock; + this.lockedControls = []; + this._state = {disabled: false}; + + this.btnProtectWB = new Common.UI.Button({ + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon protect-workbook', + enableToggle: true, + caption: this.txtProtectWB, + lock : [_set.selRangeEdit, _set.lostConnect, _set.coAuth], + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnProtectWB); + + this.btnProtectSheet = new Common.UI.Button({ + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon protect-sheet', + enableToggle: true, + caption: this.txtProtectSheet, + lock : [_set.selRangeEdit, _set.lostConnect, _set.coAuth], + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnProtectSheet); + + this.btnAllowRanges = new Common.UI.Button({ + cls: 'btn-toolbar x-huge icon-top', + iconCls: 'toolbar__icon allow-edit-ranges', + caption: this.txtAllowRanges, + lock : [_set.selRangeEdit, _set.lostConnect, _set.coAuth, _set.wsLock], + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.btnAllowRanges); + + this.chLockedCell = new Common.UI.CheckBox({ + labelText: this.txtLockedCell, + lock : [_set.editCell, _set.selRangeEdit, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.wsLock, _set.wbLock, _set.lostConnect, _set.coAuth], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chLockedCell); + + this.chLockedShape = new Common.UI.CheckBox({ + labelText: this.txtLockedShape, + lock : [_set.selRange, _set.selRangeEdit, _set.wbLock, _set.lostConnect, _set.coAuth, _set['Objects'], _set.wsLockShape], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chLockedShape); + + this.chLockedText = new Common.UI.CheckBox({ + labelText: this.txtLockedText, + lock : [_set.selRange, _set.selRangeEdit, _set.selRangeEdit, _set.selImage, _set.selSlicer, _set.wbLock, _set.lostConnect, _set.coAuth, _set['Objects'], _set.wsLockText], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chLockedText); + + this.chHiddenFormula = new Common.UI.CheckBox({ + labelText: this.txtHiddenFormula, + lock : [_set.editCell, _set.selRangeEdit, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.wsLock, _set.wbLock, _set.lostConnect, _set.coAuth], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' + }); + this.lockedControls.push(this.chHiddenFormula); + + Common.NotificationCenter.on('app:ready', this.onAppReady.bind(this)); + }, + + render: function (el) { + return this; + }, + + onAppReady: function (config) { + var me = this; + (new Promise(function (accept, reject) { + accept(); + })).then(function(){ + me.btnProtectWB.updateHint(me.hintProtectWB); + me.btnProtectSheet.updateHint(me.hintProtectSheet); + me.btnAllowRanges.updateHint(me.hintAllowRanges); + + setEvents.call(me); + }); + }, + + getPanel: function () { + this.$el = $(_.template(template)( {} )); + + this.btnProtectWB.render(this.$el.find('#slot-btn-protect-wb')); + this.btnProtectSheet.render(this.$el.find('#slot-btn-protect-sheet')); + this.btnAllowRanges.render(this.$el.find('#slot-btn-allow-ranges')); + this.chLockedCell.render(this.$el.find('#slot-chk-locked-cell')); + this.chLockedShape.render(this.$el.find('#slot-chk-locked-shape')); + this.chLockedText.render(this.$el.find('#slot-chk-locked-text')); + this.chHiddenFormula.render(this.$el.find('#slot-chk-hidden-formula')); + + return this.$el; + }, + + getButtons: function(type) { + if (type===undefined) + return this.lockedControls; + return []; + }, + + show: function () { + Common.UI.BaseView.prototype.show.call(this); + this.fireEvent('show', this); + }, + + txtProtectWB: 'Protect Workbook', + txtProtectSheet: 'Protect Sheet', + txtAllowRanges: 'Allow Edit Ranges', + hintProtectWB: 'Protect workbook', + hintProtectSheet: 'Protect sheet', + hintAllowRanges: 'Allow edit ranges', + txtLockedCell: 'Locked Cell', + txtLockedShape: 'Shape Locked', + txtLockedText: 'Lock Text', + txtHiddenFormula: 'Hidden Formulas', + txtWBUnlockTitle: 'Unprotect Workbook', + txtWBUnlockDescription: 'Enter a password to unprotect workbook', + txtSheetUnlockTitle: 'Unprotect Sheet', + txtSheetUnlockDescription: 'Enter a password to unprotect sheet' + } + }()), SSE.Views.WBProtection || {})); +}); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app_dev.js b/apps/spreadsheeteditor/main/app_dev.js index 86e790254..c3253a8fe 100644 --- a/apps/spreadsheeteditor/main/app_dev.js +++ b/apps/spreadsheeteditor/main/app_dev.js @@ -149,7 +149,9 @@ require([ 'PivotTable', 'DataTab', 'ViewTab', + 'WBProtection', 'Common.Controllers.Fonts', + 'Common.Controllers.History', 'Common.Controllers.Chat', 'Common.Controllers.Comments', 'Common.Controllers.Plugins' @@ -173,6 +175,7 @@ require([ 'spreadsheeteditor/main/app/controller/PivotTable', 'spreadsheeteditor/main/app/controller/DataTab', 'spreadsheeteditor/main/app/controller/ViewTab', + 'spreadsheeteditor/main/app/controller/WBProtection', 'spreadsheeteditor/main/app/view/FileMenuPanels', 'spreadsheeteditor/main/app/view/ParagraphSettings', 'spreadsheeteditor/main/app/view/ImageSettings', @@ -186,6 +189,7 @@ require([ 'common/main/lib/util/utils', 'common/main/lib/util/LocalStorage', 'common/main/lib/controller/Fonts', + 'common/main/lib/controller/History', 'common/main/lib/controller/Comments', 'common/main/lib/controller/Chat', 'common/main/lib/controller/Plugins' diff --git a/apps/spreadsheeteditor/main/index.html b/apps/spreadsheeteditor/main/index.html index 3fc0f9f9f..936febcb3 100644 --- a/apps/spreadsheeteditor/main/index.html +++ b/apps/spreadsheeteditor/main/index.html @@ -254,8 +254,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -350,6 +349,7 @@ + diff --git a/apps/spreadsheeteditor/main/index.html.deploy b/apps/spreadsheeteditor/main/index.html.deploy index bf6708198..2e9d6fab0 100644 --- a/apps/spreadsheeteditor/main/index.html.deploy +++ b/apps/spreadsheeteditor/main/index.html.deploy @@ -239,8 +239,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -369,6 +368,7 @@ + diff --git a/apps/spreadsheeteditor/main/index_loader.html b/apps/spreadsheeteditor/main/index_loader.html index 8c6425661..45872b9d1 100644 --- a/apps/spreadsheeteditor/main/index_loader.html +++ b/apps/spreadsheeteditor/main/index_loader.html @@ -189,8 +189,7 @@ return urlParams; } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -259,6 +258,7 @@ + diff --git a/apps/spreadsheeteditor/main/index_loader.html.deploy b/apps/spreadsheeteditor/main/index_loader.html.deploy index 884f65146..fe84ec2ad 100644 --- a/apps/spreadsheeteditor/main/index_loader.html.deploy +++ b/apps/spreadsheeteditor/main/index_loader.html.deploy @@ -217,8 +217,7 @@ } function encodeUrlParam(str) { - return str.replace(/&/g, '&') - .replace(/"/g, '"') + return str.replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); @@ -310,6 +309,7 @@ + diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 930468a47..1ab48b540 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -163,6 +163,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Funcions Reconegudes", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions següents són expressions matemàtiques reconegudes. No es posaran en cursiva automàticament.", "Common.Views.AutoCorrectDialog.textReplace": "Substitueix", + "Common.Views.AutoCorrectDialog.textReplaceText": "Reemplaçar Mentre Escriu", "Common.Views.AutoCorrectDialog.textReplaceType": "Substituïu el text mentre escriviu", "Common.Views.AutoCorrectDialog.textReset": "Restablir", "Common.Views.AutoCorrectDialog.textResetAll": "Restableix a valor predeterminat", @@ -419,6 +420,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Eliminar els Duplicats", "SSE.Controllers.DataTab.txtRemoveDataValidation": "La selecció conté més d'un tipus de validació.
    Esborrar la configuració actual i continua?", "SSE.Controllers.DataTab.txtRemSelected": "Eliminar les opcions seleccionades", + "SSE.Controllers.DataTab.txtUrlTitle": "Enganxeu una URL de dades", "SSE.Controllers.DocumentHolder.alignmentText": "Alineació", "SSE.Controllers.DocumentHolder.centerText": "Centre", "SSE.Controllers.DocumentHolder.deleteColumnText": "Suprimeix la Columna", @@ -601,6 +603,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les funcions, excepte el text.
    Esteu segur que voleu continuar?", "SSE.Controllers.Main.confirmMoveCellRange": "El rang de cel·les de destinació pot contenir dades. Continuar l'operació?", "SSE.Controllers.Main.confirmPutMergeRange": "Les dades de l’origen contenien cel·les fusionades.
    No s’havien fusionat abans d’enganxar-les a la taula.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Les fórmules de la fila de capçalera s'eliminaran i es convertiran en text estàtic.
    Voleu continuar?", "SSE.Controllers.Main.convertationTimeoutText": "Conversió fora de temps", "SSE.Controllers.Main.criticalErrorExtText": "Prem \"Acceptar\" per tornar al document.", "SSE.Controllers.Main.criticalErrorTitle": "Error", @@ -651,6 +654,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de la clau desconegut", "SSE.Controllers.Main.errorKeyExpire": "El descriptor de la clau ha caducat", "SSE.Controllers.Main.errorLabledColumnsPivot": "Per crear una taula dinàmica, heu d'utilitzar dades organitzades com a llista amb columnes amb etiquetes.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "La referència per a la ubicació o l'interval de dades no és vàlida.", "SSE.Controllers.Main.errorLockedAll": "L'operació no s'ha pogut fer ja que un altre usuari ha bloquejat el full.", "SSE.Controllers.Main.errorLockedCellPivot": "No podeu canviar les dades d'una taula de pivot.", "SSE.Controllers.Main.errorLockedWorksheetRename": "De moment no es pot canviar el nom del full ja que el torna a anomenar un altre usuari", @@ -674,6 +678,7 @@ "SSE.Controllers.Main.errorSessionIdle": "El document no s’ha editat des de fa temps. Torneu a carregar la pàgina.", "SSE.Controllers.Main.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", "SSE.Controllers.Main.errorSetPassword": "No s'ha pogut establir la contrasenya.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "La referència d'ubicació no és vàlida perquè les cel·les no estan totes a la mateixa columna o fila.
    Seleccioneu les cel·les que estiguin totes en una sola columna o fila.", "SSE.Controllers.Main.errorStockChart": "Ordre de fila incorrecte. Per crear un gràfic de valors, col·loqueu les dades del full en l’ordre següent:
    preu d’obertura, preu màxim, preu mínim, preu de tancament.", "SSE.Controllers.Main.errorToken": "El testimoni de seguretat del document no està format correctament.
    Contacteu l'administrador del servidor de documents.", "SSE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
    Contacteu amb l'administrador del Document Server.", @@ -1873,6 +1878,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Columna sencera", "SSE.Views.DocumentHolder.txtColumnWidth": "Ajustar l'Amplada de la Columna", + "SSE.Views.DocumentHolder.txtCondFormat": "Format Condicional", "SSE.Views.DocumentHolder.txtCopy": "Copiar", "SSE.Views.DocumentHolder.txtCurrency": "Moneda", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Amplada de Columna Personalitzada", @@ -2182,6 +2188,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Aquest camp és obligatori", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fracció", "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sense Icona", "SSE.Views.FormatRulesEditDlg.txtNumber": "Número", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentatge", "SSE.Views.FormatRulesEditDlg.txtScientific": "Científic", @@ -3118,7 +3125,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hiperenllaç", "SSE.Views.Toolbar.capInsertImage": "Imatge", "SSE.Views.Toolbar.capInsertShape": "Forma", - "SSE.Views.Toolbar.capInsertSpark": "Sparklines", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", "SSE.Views.Toolbar.capInsertTable": "Taula", "SSE.Views.Toolbar.capInsertText": "Quadre de Text", "SSE.Views.Toolbar.mniImageFromFile": "Imatge d'un Fitxer", @@ -3330,6 +3337,7 @@ "SSE.Views.Toolbar.txtScheme2": "Escala de Gris", "SSE.Views.Toolbar.txtScheme20": "Urbà", "SSE.Views.Toolbar.txtScheme21": "Empenta", + "SSE.Views.Toolbar.txtScheme22": "Nova Oficina", "SSE.Views.Toolbar.txtScheme3": "Àpex", "SSE.Views.Toolbar.txtScheme4": "Aspecte", "SSE.Views.Toolbar.txtScheme5": "Cívic", @@ -3406,9 +3414,13 @@ "SSE.Views.ViewTab.textCreate": "Nou", "SSE.Views.ViewTab.textDefault": "Per defecte", "SSE.Views.ViewTab.textFormula": "Barra de Fórmules", + "SSE.Views.ViewTab.textFreezeCol": "Fixar Primera Columna", + "SSE.Views.ViewTab.textFreezeRow": "Fixar Fila Superior", "SSE.Views.ViewTab.textGridlines": "Línies de Quadrícules", "SSE.Views.ViewTab.textHeadings": "Encapçalaments", "SSE.Views.ViewTab.textManager": "Administrador de vista", + "SSE.Views.ViewTab.textUnFreeze": "Moure Panells", + "SSE.Views.ViewTab.textZeros": "Mostrar zeros", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Tanca la visualització de fulls", "SSE.Views.ViewTab.tipCreate": "Crea visualització de full", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index 7e9053af4..e1f3163b4 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -152,7 +152,7 @@ "Common.Views.AutoCorrectDialog.textAdd": "Hinzufügen", "Common.Views.AutoCorrectDialog.textApplyAsWork": "Bei der Arbeit anwenden", "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrektur", - "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat während des Tippens", + "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat während der Eingabe", "Common.Views.AutoCorrectDialog.textBy": "Nach", "Common.Views.AutoCorrectDialog.textDelete": "Löschen", "Common.Views.AutoCorrectDialog.textHyperlink": "Internet- und Netzwerkpfade durch Links", @@ -161,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Erkannte Funktionen", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Die folgenden Ausdrücke sind erkannte mathematische Funktionen. Diese werden nicht automatisch kursiviert.", "Common.Views.AutoCorrectDialog.textReplace": "Ersetze", + "Common.Views.AutoCorrectDialog.textReplaceText": "Bei der Eingabe ersetzen", "Common.Views.AutoCorrectDialog.textReplaceType": "Text bei der Eingabe ersetzen", "Common.Views.AutoCorrectDialog.textReset": "Zurücksetzen", "Common.Views.AutoCorrectDialog.textResetAll": "Zurücksetzen auf die Standardeinstellungen", @@ -417,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Entferne Duplikate", "SSE.Controllers.DataTab.txtRemoveDataValidation": "Die Auswahl enthält mehr als eine Prüfungsart.
    Sollen die aktuellen Einstellungen gelöscht und dann fortgefahren werden?", "SSE.Controllers.DataTab.txtRemSelected": "Aus dem ausgewählten Bereich entfernen", + "SSE.Controllers.DataTab.txtUrlTitle": "In Daten-URL einfügen", "SSE.Controllers.DocumentHolder.alignmentText": "Ausrichtung", "SSE.Controllers.DocumentHolder.centerText": "Zentriert", "SSE.Controllers.DocumentHolder.deleteColumnText": "Spalte löschen", @@ -599,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
    Möchten Sie wirklich fortsetzen?", "SSE.Controllers.Main.confirmMoveCellRange": "Der Zielzellenbereich kann Daten enthalten. Die Operation fortsetzen?", "SSE.Controllers.Main.confirmPutMergeRange": "Die Quelldaten enthielten verbundene Zellen.
    Vor dem Einfügen dieser Zellen in die Tabelle, wurde die Zusammenführung aufgehoben. ", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formeln in der Kopfzeile werden entfernt und in statischen Text konvertiert.
    Möchten Sie den Vorgang fortsetzen?", "SSE.Controllers.Main.convertationTimeoutText": "Timeout für die Konvertierung wurde überschritten.", "SSE.Controllers.Main.criticalErrorExtText": "Klicken Sie auf 'OK', um zur Dokumentenliste zu übergehen.", "SSE.Controllers.Main.criticalErrorTitle": "Fehler", @@ -649,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "SSE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "SSE.Controllers.Main.errorLabledColumnsPivot": "Um eine Pivot-Tabelle zu erstellen, verwenden Sie Daten, die in einer Liste mit Spaltenüberschriften organisiert sind.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Die Referenz für den Standort oder den Datenbereich ist nicht gültig.", "SSE.Controllers.Main.errorLockedAll": "Die Operation kann nicht durchgeführt werden, weil das Blatt von einem anderen Benutzer gesperrt ist.", "SSE.Controllers.Main.errorLockedCellPivot": "Die Daten innerhalb einer Pivot-Tabelle können nicht geändert werden.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Umbenennen des Blattes ist derzeit nicht möglich, denn es wird gleichzeitig von einem anderen Benutzer umbenannt.", @@ -672,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "Das Dokument wurde lange nicht bearbeitet. Laden Sie die Seite neu.", "SSE.Controllers.Main.errorSessionToken": "Die Verbindung zum Server wurde unterbrochen. Laden Sie die Seite neu.", "SSE.Controllers.Main.errorSetPassword": "Das Passwort konnte nicht festgelegt werden.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Der Ortsbezug ist nicht gültig, da sich die Zellen nicht alle in derselben Spalte oder Zeile befinden.
    Wählen Sie Zellen aus, die sich alle in einer einzigen Spalte oder Zeile befinden.", "SSE.Controllers.Main.errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, ordnen Sie die Daten auf dem Blatt folgendermaßen an:
    Eröffnungspreis, Höchstpreis, Tiefstpreis, Schlusskurs.", "SSE.Controllers.Main.errorToken": "Sicherheitstoken des Dokuments ist nicht korrekt.
    Wenden Sie sich an Ihren Serveradministrator.", "SSE.Controllers.Main.errorTokenExpire": "Sicherheitstoken des Dokuments ist abgelaufen.
    Wenden Sie sich an Ihren Serveradministrator.", @@ -1871,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Ganze Spalte", "SSE.Views.DocumentHolder.txtColumnWidth": "Spaltenbreite einstellen", + "SSE.Views.DocumentHolder.txtCondFormat": "Bedingte Formatierung", "SSE.Views.DocumentHolder.txtCopy": "Kopieren", "SSE.Views.DocumentHolder.txtCurrency": "Währung", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Benutzerdefinierte Spaltenbreite", @@ -2180,6 +2186,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Dieses Feld ist erforderlich", "SSE.Views.FormatRulesEditDlg.txtFraction": "Bruch", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Allgemeines", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Kein Symbol", "SSE.Views.FormatRulesEditDlg.txtNumber": "Zahl", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Prozentsatz", "SSE.Views.FormatRulesEditDlg.txtScientific": "Wissenschaftlich", @@ -3116,7 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", "SSE.Views.Toolbar.capInsertImage": "Bild", "SSE.Views.Toolbar.capInsertShape": "Form", - "SSE.Views.Toolbar.capInsertSpark": "Sparklines", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", "SSE.Views.Toolbar.capInsertTable": "Tabelle", "SSE.Views.Toolbar.capInsertText": "Textfeld", "SSE.Views.Toolbar.mniImageFromFile": "Bild aus Datei", @@ -3328,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Graustufe", "SSE.Views.Toolbar.txtScheme20": "Rhea", "SSE.Views.Toolbar.txtScheme21": "Telesto", + "SSE.Views.Toolbar.txtScheme22": "Neues Office", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Aspekt ", "SSE.Views.Toolbar.txtScheme5": "Cronus", @@ -3404,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Neu", "SSE.Views.ViewTab.textDefault": "Standard", "SSE.Views.ViewTab.textFormula": "Formelleiste", + "SSE.Views.ViewTab.textFreezeCol": "Erste Spalte einfrieren", + "SSE.Views.ViewTab.textFreezeRow": "Oberste Zeile einfrieren", "SSE.Views.ViewTab.textGridlines": "Gitternetzlinien ", "SSE.Views.ViewTab.textHeadings": "Überschriften", "SSE.Views.ViewTab.textManager": "Ansichten-Manager", + "SSE.Views.ViewTab.textUnFreeze": "Fixierung aufheben", + "SSE.Views.ViewTab.textZeros": "Nullen anzeigen", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Tabellenansicht schließen", "SSE.Views.ViewTab.tipCreate": "Tabellenansicht erstellen", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index de83fb994..6d2a4d10f 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1,3438 +1,3464 @@ -{ - "cancelButtonText": "Cancel", - "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", - "Common.Controllers.Chat.textEnterMessage": "Enter your message here", - "Common.define.chartData.textArea": "Area", - "Common.define.chartData.textAreaStacked": "Stacked area", - "Common.define.chartData.textAreaStackedPer": "100% Stacked area", - "Common.define.chartData.textBar": "Bar", - "Common.define.chartData.textBarNormal": "Clustered column", - "Common.define.chartData.textBarNormal3d": "3-D Clustered column", - "Common.define.chartData.textBarNormal3dPerspective": "3-D column", - "Common.define.chartData.textBarStacked": "Stacked column", - "Common.define.chartData.textBarStacked3d": "3-D Stacked column", - "Common.define.chartData.textBarStackedPer": "100% Stacked column", - "Common.define.chartData.textBarStackedPer3d": "3-D 100% Stacked column", - "Common.define.chartData.textCharts": "Charts", - "Common.define.chartData.textColumn": "Column", - "Common.define.chartData.textColumnSpark": "Column", - "Common.define.chartData.textCombo": "Combo", - "Common.define.chartData.textComboAreaBar": "Stacked area - clustered column", - "Common.define.chartData.textComboBarLine": "Clustered column - line", - "Common.define.chartData.textComboBarLineSecondary": "Clustered column - line on secondary axis", - "Common.define.chartData.textComboCustom": "Custom combination", - "Common.define.chartData.textDoughnut": "Doughnut", - "Common.define.chartData.textHBarNormal": "Clustered bar", - "Common.define.chartData.textHBarNormal3d": "3-D Clustered bar", - "Common.define.chartData.textHBarStacked": "Stacked bar", - "Common.define.chartData.textHBarStacked3d": "3-D Stacked bar", - "Common.define.chartData.textHBarStackedPer": "100% Stacked bar", - "Common.define.chartData.textHBarStackedPer3d": "3-D 100% Stacked bar", - "Common.define.chartData.textLine": "Line", - "Common.define.chartData.textLine3d": "3-D line", - "Common.define.chartData.textLineMarker": "Line with markers", - "Common.define.chartData.textLineSpark": "Line", - "Common.define.chartData.textLineStacked": "Stacked line", - "Common.define.chartData.textLineStackedMarker": "Stacked line with markers", - "Common.define.chartData.textLineStackedPer": "100% Stacked line", - "Common.define.chartData.textLineStackedPerMarker": "100% Stacked line with markers", - "Common.define.chartData.textPie": "Pie", - "Common.define.chartData.textPie3d": "3-D pie", - "Common.define.chartData.textPoint": "XY (Scatter)", - "Common.define.chartData.textScatter": "Scatter", - "Common.define.chartData.textScatterLine": "Scatter with straight lines", - "Common.define.chartData.textScatterLineMarker": "Scatter with straight lines and markers", - "Common.define.chartData.textScatterSmooth": "Scatter with smooth lines", - "Common.define.chartData.textScatterSmoothMarker": "Scatter with smooth lines and markers", - "Common.define.chartData.textSparks": "Sparklines", - "Common.define.chartData.textStock": "Stock", - "Common.define.chartData.textSurface": "Surface", - "Common.define.chartData.textWinLossSpark": "Win/Loss", - "Common.define.conditionalData.exampleText": "AaBbCcYyZz", - "Common.define.conditionalData.noFormatText": "No format set", - "Common.define.conditionalData.text1Above": "1 std dev above", - "Common.define.conditionalData.text1Below": "1 std dev below", - "Common.define.conditionalData.text2Above": "2 std dev above", - "Common.define.conditionalData.text2Below": "2 std dev below", - "Common.define.conditionalData.text3Above": "3 std dev above", - "Common.define.conditionalData.text3Below": "3 std dev below", - "Common.define.conditionalData.textAbove": "Above", - "Common.define.conditionalData.textAverage": "Average", - "Common.define.conditionalData.textBegins": "Begins with", - "Common.define.conditionalData.textBelow": "Below", - "Common.define.conditionalData.textBetween": "Between", - "Common.define.conditionalData.textBlank": "Blank", - "Common.define.conditionalData.textBlanks": "Contains blanks", - "Common.define.conditionalData.textBottom": "Bottom", - "Common.define.conditionalData.textContains": "Contains", - "Common.define.conditionalData.textDataBar": "Data bar", - "Common.define.conditionalData.textDate": "Date", - "Common.define.conditionalData.textDuplicate": "Duplicate", - "Common.define.conditionalData.textEnds": "Ends with", - "Common.define.conditionalData.textEqAbove": "Equal to or above", - "Common.define.conditionalData.textEqBelow": "Equal to or below", - "Common.define.conditionalData.textEqual": "Equal to", - "Common.define.conditionalData.textError": "Error", - "Common.define.conditionalData.textErrors": "Contains errors", - "Common.define.conditionalData.textFormula": "Formula", - "Common.define.conditionalData.textGreater": "Greater than", - "Common.define.conditionalData.textGreaterEq": "Greater than or equal to", - "Common.define.conditionalData.textIconSets": "Icon sets", - "Common.define.conditionalData.textLast7days": "In the last 7 days", - "Common.define.conditionalData.textLastMonth": "Last month", - "Common.define.conditionalData.textLastWeek": "Last week", - "Common.define.conditionalData.textLess": "Less than", - "Common.define.conditionalData.textLessEq": "Less than or equal to", - "Common.define.conditionalData.textNextMonth": "Next month", - "Common.define.conditionalData.textNextWeek": "Next week", - "Common.define.conditionalData.textNotBetween": "Not between", - "Common.define.conditionalData.textNotBlanks": "Does not contain blanks", - "Common.define.conditionalData.textNotContains": "Does not contain", - "Common.define.conditionalData.textNotEqual": "Not equal to", - "Common.define.conditionalData.textNotErrors": "Does not contain errors", - "Common.define.conditionalData.textText": "Text", - "Common.define.conditionalData.textThisMonth": "This month", - "Common.define.conditionalData.textThisWeek": "This week", - "Common.define.conditionalData.textToday": "Today", - "Common.define.conditionalData.textTomorrow": "Tomorrow", - "Common.define.conditionalData.textTop": "Top", - "Common.define.conditionalData.textUnique": "Unique", - "Common.define.conditionalData.textValue": "Value is", - "Common.define.conditionalData.textYesterday": "Yesterday", - "Common.Translation.warnFileLocked": "The file is being edited in another app. You can continue editing and save it as a copy.", - "Common.Translation.warnFileLockedBtnEdit": "Create a copy", - "Common.Translation.warnFileLockedBtnView": "Open for viewing", - "Common.UI.ButtonColored.textAutoColor": "Automatic", - "Common.UI.ButtonColored.textNewColor": "Add New Custom Color", - "del_Common.UI.ColorButton.textAutoColor": "Automatic", - "del_Common.UI.ColorButton.textNewColor": "Add New Custom Color", - "Common.UI.ComboBorderSize.txtNoBorders": "No borders", - "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", - "Common.UI.ComboDataView.emptyComboText": "No styles", - "Common.UI.ExtendedColorDialog.addButtonText": "Add", - "Common.UI.ExtendedColorDialog.textCurrent": "Current", - "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
    Please enter a value between 000000 and FFFFFF.", - "Common.UI.ExtendedColorDialog.textNew": "New", - "Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.
    Please enter a numeric value between 0 and 255.", - "Common.UI.HSBColorPicker.textNoColor": "No Color", - "Common.UI.SearchDialog.textHighlight": "Highlight results", - "Common.UI.SearchDialog.textMatchCase": "Case sensitive", - "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", - "Common.UI.SearchDialog.textSearchStart": "Enter your text here", - "Common.UI.SearchDialog.textTitle": "Find and Replace", - "Common.UI.SearchDialog.textTitle2": "Find", - "Common.UI.SearchDialog.textWholeWords": "Whole words only", - "Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace", - "Common.UI.SearchDialog.txtBtnReplace": "Replace", - "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", - "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", - "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
    Please click to save your changes and reload the updates.", - "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", - "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", - "Common.UI.Themes.txtThemeClassicLight": "Classic Light", - "Common.UI.Themes.txtThemeDark": "Dark", - "Common.UI.Themes.txtThemeLight": "Light", - "Common.UI.Window.cancelButtonText": "Cancel", - "Common.UI.Window.closeButtonText": "Close", - "Common.UI.Window.noButtonText": "No", - "Common.UI.Window.okButtonText": "OK", - "Common.UI.Window.textConfirmation": "Confirmation", - "Common.UI.Window.textDontShow": "Don't show this message again", - "Common.UI.Window.textError": "Error", - "Common.UI.Window.textInformation": "Information", - "Common.UI.Window.textWarning": "Warning", - "Common.UI.Window.yesButtonText": "Yes", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.About.txtAddress": "address: ", - "Common.Views.About.txtLicensee": "LICENSEE", - "Common.Views.About.txtLicensor": "LICENSOR", - "Common.Views.About.txtMail": "email: ", - "Common.Views.About.txtPoweredBy": "Powered by", - "Common.Views.About.txtTel": "tel.: ", - "Common.Views.About.txtVersion": "Version ", - "Common.Views.AutoCorrectDialog.textAdd": "Add", - "Common.Views.AutoCorrectDialog.textApplyAsWork": "Apply as you work", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect", - "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type", - "Common.Views.AutoCorrectDialog.textBy": "By", - "Common.Views.AutoCorrectDialog.textDelete": "Delete", - "Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks", - "Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect", - "Common.Views.AutoCorrectDialog.textNewRowCol": "Include new rows and columns in table", - "Common.Views.AutoCorrectDialog.textRecognized": "Recognized Functions", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.", - "Common.Views.AutoCorrectDialog.textReplace": "Replace", - "Common.Views.AutoCorrectDialog.textReplaceType": "Replace text as you type", - "Common.Views.AutoCorrectDialog.textReset": "Reset", - "Common.Views.AutoCorrectDialog.textResetAll": "Reset to default", - "Common.Views.AutoCorrectDialog.textRestore": "Restore", - "Common.Views.AutoCorrectDialog.textTitle": "AutoCorrect", - "Common.Views.AutoCorrectDialog.textWarnAddRec": "Recognized functions must contain only the letters A through Z, uppercase or lowercase.", - "Common.Views.AutoCorrectDialog.textWarnResetRec": "Any expression you added will be removed and the removed ones will be restored. Do you want to continue?", - "Common.Views.AutoCorrectDialog.warnReplace": "The autocorrect entry for %1 already exists. Do you want to replace it?", - "Common.Views.AutoCorrectDialog.warnReset": "Any autocorrect you added will be removed and the changed ones will be restored to their original values. Do you want to continue?", - "Common.Views.AutoCorrectDialog.warnRestore": "The autocorrect entry for %1 will be reset to its original value. Do you want to continue?", - "Common.Views.Chat.textSend": "Send", - "Common.Views.Comments.mniAuthorAsc": "Author A to Z", - "Common.Views.Comments.mniAuthorDesc": "Author Z to A", - "Common.Views.Comments.mniDateAsc": "Oldest", - "Common.Views.Comments.mniDateDesc": "Newest", - "Common.Views.Comments.mniPositionAsc": "From top", - "Common.Views.Comments.mniPositionDesc": "From bottom", - "Common.Views.Comments.textAdd": "Add", - "Common.Views.Comments.textAddComment": "Add Comment", - "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", - "Common.Views.Comments.textAddReply": "Add Reply", - "Common.Views.Comments.textAnonym": "Guest", - "Common.Views.Comments.textCancel": "Cancel", - "Common.Views.Comments.textClose": "Close", - "Common.Views.Comments.textClosePanel": "Close comments", - "Common.Views.Comments.textComments": "Comments", - "Common.Views.Comments.textEdit": "OK", - "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", - "Common.Views.Comments.textHintAddComment": "Add comment", - "Common.Views.Comments.textOpenAgain": "Open Again", - "Common.Views.Comments.textReply": "Reply", - "Common.Views.Comments.textResolve": "Resolve", - "Common.Views.Comments.textResolved": "Resolved", - "Common.Views.Comments.textSort": "Sort comments", - "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", - "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

    To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", - "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", - "Common.Views.CopyWarningDialog.textToCopy": "for Copy", - "Common.Views.CopyWarningDialog.textToCut": "for Cut", - "Common.Views.CopyWarningDialog.textToPaste": "for Paste", - "Common.Views.DocumentAccessDialog.textLoading": "Loading...", - "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings", - "Common.Views.EditNameDialog.textLabel": "Label:", - "Common.Views.EditNameDialog.textLabelError": "Label must not be empty.", - "Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:", - "Common.Views.Header.textAddFavorite": "Mark as favorite", - "Common.Views.Header.textAdvSettings": "Advanced settings", - "Common.Views.Header.textBack": "Open file location", - "Common.Views.Header.textCompactView": "Hide Toolbar", - "Common.Views.Header.textHideLines": "Hide Rulers", - "Common.Views.Header.textHideStatusBar": "Combine sheet and status bars", - "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", - "Common.Views.Header.textSaveBegin": "Saving...", - "Common.Views.Header.textSaveChanged": "Modified", - "Common.Views.Header.textSaveEnd": "All changes saved", - "Common.Views.Header.textSaveExpander": "All changes saved", - "Common.Views.Header.textZoom": "Zoom", - "Common.Views.Header.tipAccessRights": "Manage document access rights", - "Common.Views.Header.tipDownload": "Download file", - "Common.Views.Header.tipGoEdit": "Edit current file", - "Common.Views.Header.tipPrint": "Print file", - "Common.Views.Header.tipRedo": "Redo", - "Common.Views.Header.tipSave": "Save", - "Common.Views.Header.tipUndo": "Undo", - "Common.Views.Header.tipUndock": "Undock into separate window", - "Common.Views.Header.tipViewSettings": "View settings", - "Common.Views.Header.tipViewUsers": "View users and manage document access rights", - "Common.Views.Header.txtAccessRights": "Change access rights", - "Common.Views.Header.txtRename": "Rename", - "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", - "Common.Views.ListSettingsDialog.textBulleted": "Bulleted", - "Common.Views.ListSettingsDialog.textNumbering": "Numbered", - "Common.Views.ListSettingsDialog.tipChange": "Change bullet", - "Common.Views.ListSettingsDialog.txtBullet": "Bullet", - "Common.Views.ListSettingsDialog.txtColor": "Color", - "Common.Views.ListSettingsDialog.txtNewBullet": "New bullet", - "Common.Views.ListSettingsDialog.txtNone": "None", - "Common.Views.ListSettingsDialog.txtOfText": "% of text", - "Common.Views.ListSettingsDialog.txtSize": "Size", - "Common.Views.ListSettingsDialog.txtStart": "Start at", - "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", - "Common.Views.ListSettingsDialog.txtTitle": "List Settings", - "Common.Views.ListSettingsDialog.txtType": "Type", - "Common.Views.OpenDialog.closeButtonText": "Close File", - "Common.Views.OpenDialog.textInvalidRange": "Invalid cells range", - "Common.Views.OpenDialog.textSelectData": "Select data", - "Common.Views.OpenDialog.txtAdvanced": "Advanced", - "Common.Views.OpenDialog.txtColon": "Colon", - "Common.Views.OpenDialog.txtComma": "Comma", - "Common.Views.OpenDialog.txtDelimiter": "Delimiter", - "Common.Views.OpenDialog.txtDestData": "Choose where to put the data", - "Common.Views.OpenDialog.txtEmpty": "This field is required", - "Common.Views.OpenDialog.txtEncoding": "Encoding ", - "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", - "Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file", - "Common.Views.OpenDialog.txtOther": "Other", - "Common.Views.OpenDialog.txtPassword": "Password", - "Common.Views.OpenDialog.txtPreview": "Preview", - "Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.", - "Common.Views.OpenDialog.txtSemicolon": "Semicolon", - "Common.Views.OpenDialog.txtSpace": "Space", - "Common.Views.OpenDialog.txtTab": "Tab", - "Common.Views.OpenDialog.txtTitle": "Choose %1 options", - "Common.Views.OpenDialog.txtTitleProtected": "Protected File", - "Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document", - "Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical", - "Common.Views.PasswordDialog.txtPassword": "Password", - "Common.Views.PasswordDialog.txtRepeat": "Repeat password", - "Common.Views.PasswordDialog.txtTitle": "Set Password", - "Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", - "Common.Views.PluginDlg.textLoading": "Loading", - "Common.Views.Plugins.groupCaption": "Plugins", - "Common.Views.Plugins.strPlugins": "Plugins", - "Common.Views.Plugins.textLoading": "Loading", - "Common.Views.Plugins.textStart": "Start", - "Common.Views.Plugins.textStop": "Stop", - "Common.Views.Protection.hintAddPwd": "Encrypt with password", - "Common.Views.Protection.hintPwd": "Change or delete password", - "Common.Views.Protection.hintSignature": "Add digital signature or signature line", - "Common.Views.Protection.txtAddPwd": "Add password", - "Common.Views.Protection.txtChangePwd": "Change password", - "Common.Views.Protection.txtDeletePwd": "Delete password", - "Common.Views.Protection.txtEncrypt": "Encrypt", - "Common.Views.Protection.txtInvisibleSignature": "Add digital signature", - "Common.Views.Protection.txtSignature": "Signature", - "Common.Views.Protection.txtSignatureLine": "Add signature line", - "Common.Views.RenameDialog.textName": "File name", - "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", - "Common.Views.ReviewChanges.hintNext": "To next change", - "Common.Views.ReviewChanges.hintPrev": "To previous change", - "Common.Views.ReviewChanges.strFast": "Fast", - "Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.", - "Common.Views.ReviewChanges.strStrict": "Strict", - "Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.", - "Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change", - "Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode", - "Common.Views.ReviewChanges.tipCommentRem": "Remove comments", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments", - "Common.Views.ReviewChanges.tipCommentResolve": "Resolve comments", - "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolve current comments", - "Common.Views.ReviewChanges.tipHistory": "Show version history", - "Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change", - "Common.Views.ReviewChanges.tipReview": "Track changes", - "Common.Views.ReviewChanges.tipReviewView": "Select the mode you want the changes to be displayed", - "Common.Views.ReviewChanges.tipSetDocLang": "Set document language", - "Common.Views.ReviewChanges.tipSetSpelling": "Spell checking", - "Common.Views.ReviewChanges.tipSharing": "Manage document access rights", - "Common.Views.ReviewChanges.txtAccept": "Accept", - "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", - "Common.Views.ReviewChanges.txtAcceptChanges": "Accept changes", - "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Change", - "Common.Views.ReviewChanges.txtChat": "Chat", - "Common.Views.ReviewChanges.txtClose": "Close", - "Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode", - "Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments", - "Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments", - "Common.Views.ReviewChanges.txtCommentRemove": "Remove", - "Common.Views.ReviewChanges.txtCommentResolve": "Resolve", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve Current Comments", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments", - "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments", - "Common.Views.ReviewChanges.txtDocLang": "Language", - "Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)", - "Common.Views.ReviewChanges.txtFinalCap": "Final", - "Common.Views.ReviewChanges.txtHistory": "Version History", - "Common.Views.ReviewChanges.txtMarkup": "All changes (Editing)", - "Common.Views.ReviewChanges.txtMarkupCap": "Markup", - "Common.Views.ReviewChanges.txtNext": "Next", - "Common.Views.ReviewChanges.txtOriginal": "All changes rejected (Preview)", - "Common.Views.ReviewChanges.txtOriginalCap": "Original", - "Common.Views.ReviewChanges.txtPrev": "Previous", - "Common.Views.ReviewChanges.txtReject": "Reject", - "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", - "Common.Views.ReviewChanges.txtRejectChanges": "Reject changes", - "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Change", - "Common.Views.ReviewChanges.txtSharing": "Sharing", - "Common.Views.ReviewChanges.txtSpelling": "Spell Checking", - "Common.Views.ReviewChanges.txtTurnon": "Track Changes", - "Common.Views.ReviewChanges.txtView": "Display Mode", - "Common.Views.ReviewPopover.textAdd": "Add", - "Common.Views.ReviewPopover.textAddReply": "Add Reply", - "Common.Views.ReviewPopover.textCancel": "Cancel", - "Common.Views.ReviewPopover.textClose": "Close", - "Common.Views.ReviewPopover.textEdit": "OK", - "Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email", - "Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email", - "Common.Views.ReviewPopover.textOpenAgain": "Open Again", - "Common.Views.ReviewPopover.textReply": "Reply", - "Common.Views.ReviewPopover.textResolve": "Resolve", - "Common.Views.SaveAsDlg.textLoading": "Loading", - "Common.Views.SaveAsDlg.textTitle": "Folder for save", - "Common.Views.SelectFileDlg.textLoading": "Loading", - "Common.Views.SelectFileDlg.textTitle": "Select Data Source", - "Common.Views.SignDialog.textBold": "Bold", - "Common.Views.SignDialog.textCertificate": "Certificate", - "Common.Views.SignDialog.textChange": "Change", - "Common.Views.SignDialog.textInputName": "Input signer name", - "Common.Views.SignDialog.textItalic": "Italic", - "Common.Views.SignDialog.textNameError": "Signer name must not be empty.", - "Common.Views.SignDialog.textPurpose": "Purpose for signing this document", - "Common.Views.SignDialog.textSelect": "Select", - "Common.Views.SignDialog.textSelectImage": "Select Image", - "Common.Views.SignDialog.textSignature": "Signature looks as", - "Common.Views.SignDialog.textTitle": "Sign Document", - "Common.Views.SignDialog.textUseImage": "or click 'Select Image' to use a picture as signature", - "Common.Views.SignDialog.textValid": "Valid from %1 to %2", - "Common.Views.SignDialog.tipFontName": "Font Name", - "Common.Views.SignDialog.tipFontSize": "Font Size", - "Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog", - "Common.Views.SignSettingsDialog.textInfo": "Signer Info", - "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", - "Common.Views.SignSettingsDialog.textInfoName": "Name", - "Common.Views.SignSettingsDialog.textInfoTitle": "Signer Title", - "Common.Views.SignSettingsDialog.textInstructions": "Instructions for Signer", - "Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line", - "Common.Views.SignSettingsDialog.textTitle": "Signature Setup", - "Common.Views.SignSettingsDialog.txtEmpty": "This field is required", - "Common.Views.SymbolTableDialog.textCharacter": "Character", - "Common.Views.SymbolTableDialog.textCode": "Unicode HEX value", - "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign", - "Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote", - "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote", - "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis", - "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", - "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", - "Common.Views.SymbolTableDialog.textEnDash": "En Dash", - "Common.Views.SymbolTableDialog.textEnSpace": "En Space", - "Common.Views.SymbolTableDialog.textFont": "Font", - "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen", - "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space", - "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign", - "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", - "Common.Views.SymbolTableDialog.textRange": "Range", - "Common.Views.SymbolTableDialog.textRecent": "Recently used symbols", - "Common.Views.SymbolTableDialog.textRegistered": "Registered Sign", - "Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote", - "Common.Views.SymbolTableDialog.textSection": "Section Sign", - "Common.Views.SymbolTableDialog.textShortcut": "Shortcut key", - "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen", - "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote", - "Common.Views.SymbolTableDialog.textSpecial": "Special characters", - "Common.Views.SymbolTableDialog.textSymbols": "Symbols", - "Common.Views.SymbolTableDialog.textTitle": "Symbol", - "Common.Views.SymbolTableDialog.textTradeMark": "Trademark Symbol", - "Common.Views.UserNameDialog.textDontShow": "Don't ask me again", - "Common.Views.UserNameDialog.textLabel": "Label:", - "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", - "SSE.Controllers.DataTab.textColumns": "Columns", - "SSE.Controllers.DataTab.textEmptyUrl": "You need to specify URL.", - "SSE.Controllers.DataTab.textRows": "Rows", - "SSE.Controllers.DataTab.textWizard": "Text to Columns", - "SSE.Controllers.DataTab.txtDataValidation": "Data Validation", - "SSE.Controllers.DataTab.txtExpand": "Expand", - "SSE.Controllers.DataTab.txtExpandRemDuplicates": "The data next to the selection will not be removed. Do you want to expand the selection to include the adjacent data or continue with the currently selected cells only?", - "SSE.Controllers.DataTab.txtExtendDataValidation": "The selection contains some cells without Data Validation settings.
    Do you want to extend Data Validation to these cells?", - "SSE.Controllers.DataTab.txtImportWizard": "Text Import Wizard", - "SSE.Controllers.DataTab.txtRemDuplicates": "Remove Duplicates", - "SSE.Controllers.DataTab.txtRemoveDataValidation": "The selection contains more than one type of validation.
    Erase current settings and continue?", - "SSE.Controllers.DataTab.txtRemSelected": "Remove in selected", - "SSE.Controllers.DocumentHolder.alignmentText": "Alignment", - "SSE.Controllers.DocumentHolder.centerText": "Center", - "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column", - "SSE.Controllers.DocumentHolder.deleteRowText": "Delete Row", - "SSE.Controllers.DocumentHolder.deleteText": "Delete", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "The link reference does not exist. Please correct the link or delete it.", - "SSE.Controllers.DocumentHolder.guestText": "Guest", - "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Column Left", - "SSE.Controllers.DocumentHolder.insertColumnRightText": "Column Right", - "SSE.Controllers.DocumentHolder.insertRowAboveText": "Row Above", - "SSE.Controllers.DocumentHolder.insertRowBelowText": "Row Below", - "SSE.Controllers.DocumentHolder.insertText": "Insert", - "SSE.Controllers.DocumentHolder.leftText": "Left", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Warning", - "SSE.Controllers.DocumentHolder.rightText": "Right", - "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "AutoCorrect options", - "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Column Width {0} symbols ({1} pixels)", - "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Row Height {0} points ({1} pixels)", - "SSE.Controllers.DocumentHolder.textCtrlClick": "Click the link to open it or click and hold the mouse button to select the cell.", - "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", - "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", - "SSE.Controllers.DocumentHolder.textPasteSpecial": "Paste special", - "SSE.Controllers.DocumentHolder.textStopExpand": "Stop automatically expanding tables", - "SSE.Controllers.DocumentHolder.textSym": "sym", - "SSE.Controllers.DocumentHolder.tipIsLocked": "This element is being edited by another user.", - "SSE.Controllers.DocumentHolder.txtAboveAve": "Above average", - "SSE.Controllers.DocumentHolder.txtAddBottom": "Add bottom border", - "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Add fraction bar", - "SSE.Controllers.DocumentHolder.txtAddHor": "Add horizontal line", - "SSE.Controllers.DocumentHolder.txtAddLB": "Add left bottom line", - "SSE.Controllers.DocumentHolder.txtAddLeft": "Add left border", - "SSE.Controllers.DocumentHolder.txtAddLT": "Add left top line", - "SSE.Controllers.DocumentHolder.txtAddRight": "Add right border", - "SSE.Controllers.DocumentHolder.txtAddTop": "Add top border", - "SSE.Controllers.DocumentHolder.txtAddVer": "Add vertical line", - "SSE.Controllers.DocumentHolder.txtAlignToChar": "Align to character", - "SSE.Controllers.DocumentHolder.txtAll": "(All)", - "SSE.Controllers.DocumentHolder.txtAnd": "and", - "SSE.Controllers.DocumentHolder.txtBegins": "Begins with", - "SSE.Controllers.DocumentHolder.txtBelowAve": "Below average", - "SSE.Controllers.DocumentHolder.txtBlanks": "(Blanks)", - "SSE.Controllers.DocumentHolder.txtBorderProps": "Border properties", - "SSE.Controllers.DocumentHolder.txtBottom": "Bottom", - "SSE.Controllers.DocumentHolder.txtColumn": "Column", - "SSE.Controllers.DocumentHolder.txtColumnAlign": "Column alignment", - "SSE.Controllers.DocumentHolder.txtContains": "Contains", - "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Decrease argument size", - "SSE.Controllers.DocumentHolder.txtDeleteArg": "Delete argument", - "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Delete manual break", - "SSE.Controllers.DocumentHolder.txtDeleteChars": "Delete enclosing characters", - "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators", - "SSE.Controllers.DocumentHolder.txtDeleteEq": "Delete equation", - "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Delete char", - "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Delete radical", - "SSE.Controllers.DocumentHolder.txtEnds": "Ends with", - "SSE.Controllers.DocumentHolder.txtEquals": "Equals", - "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Equal to cell color", - "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Equal to font color", - "SSE.Controllers.DocumentHolder.txtExpand": "Expand and sort", - "SSE.Controllers.DocumentHolder.txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", - "SSE.Controllers.DocumentHolder.txtFilterBottom": "Bottom", - "SSE.Controllers.DocumentHolder.txtFilterTop": "Top", - "SSE.Controllers.DocumentHolder.txtFractionLinear": "Change to linear fraction", - "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Change to skewed fraction", - "SSE.Controllers.DocumentHolder.txtFractionStacked": "Change to stacked fraction", - "SSE.Controllers.DocumentHolder.txtGreater": "Greater than", - "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Greater than or equal to", - "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Char over text", - "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Char under text", - "SSE.Controllers.DocumentHolder.txtHeight": "Height", - "SSE.Controllers.DocumentHolder.txtHideBottom": "Hide bottom border", - "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Hide bottom limit", - "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Hide closing bracket", - "SSE.Controllers.DocumentHolder.txtHideDegree": "Hide degree", - "SSE.Controllers.DocumentHolder.txtHideHor": "Hide horizontal line", - "SSE.Controllers.DocumentHolder.txtHideLB": "Hide left bottom line", - "SSE.Controllers.DocumentHolder.txtHideLeft": "Hide left border", - "SSE.Controllers.DocumentHolder.txtHideLT": "Hide left top line", - "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Hide opening bracket", - "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Hide placeholder", - "SSE.Controllers.DocumentHolder.txtHideRight": "Hide right border", - "SSE.Controllers.DocumentHolder.txtHideTop": "Hide top border", - "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Hide top limit", - "SSE.Controllers.DocumentHolder.txtHideVer": "Hide vertical line", - "SSE.Controllers.DocumentHolder.txtImportWizard": "Text Import Wizard", - "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Increase argument size", - "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Insert argument after", - "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Insert argument before", - "SSE.Controllers.DocumentHolder.txtInsertBreak": "Insert manual break", - "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Insert equation after", - "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Insert equation before", - "SSE.Controllers.DocumentHolder.txtItems": "items", - "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Keep text only", - "SSE.Controllers.DocumentHolder.txtLess": "Less than", - "SSE.Controllers.DocumentHolder.txtLessEquals": "Less than or equal to", - "SSE.Controllers.DocumentHolder.txtLimitChange": "Change limits location", - "SSE.Controllers.DocumentHolder.txtLimitOver": "Limit over text", - "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limit under text", - "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Match brackets to argument height", - "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Matrix alignment", - "SSE.Controllers.DocumentHolder.txtNoChoices": "There are no choices for filling the cell.
    Only text values from the column can be selected for replacement.", - "SSE.Controllers.DocumentHolder.txtNotBegins": "Does not begin with", - "SSE.Controllers.DocumentHolder.txtNotContains": "Does not contain", - "SSE.Controllers.DocumentHolder.txtNotEnds": "Does not end with", - "SSE.Controllers.DocumentHolder.txtNotEquals": "Does not equal", - "SSE.Controllers.DocumentHolder.txtOr": "or", - "SSE.Controllers.DocumentHolder.txtOverbar": "Bar over text", - "SSE.Controllers.DocumentHolder.txtPaste": "Paste", - "SSE.Controllers.DocumentHolder.txtPasteBorders": "Formula without borders", - "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Formula + column width", - "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Destination formatting", - "SSE.Controllers.DocumentHolder.txtPasteFormat": "Paste only formatting", - "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Formula + number format", - "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Paste only formula", - "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Formula + all formatting", - "SSE.Controllers.DocumentHolder.txtPasteLink": "Paste link", - "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Linked picture", - "SSE.Controllers.DocumentHolder.txtPasteMerge": "Merge conditional formatting", - "SSE.Controllers.DocumentHolder.txtPastePicture": "Picture", - "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Source formatting", - "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpose", - "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Value + all formatting", - "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Value + number format", - "SSE.Controllers.DocumentHolder.txtPasteValues": "Paste only value", - "SSE.Controllers.DocumentHolder.txtPercent": "percent", - "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Redo table autoexpansion", - "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Remove fraction bar", - "SSE.Controllers.DocumentHolder.txtRemLimit": "Remove limit", - "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Remove accent character", - "SSE.Controllers.DocumentHolder.txtRemoveBar": "Remove bar", - "SSE.Controllers.DocumentHolder.txtRemScripts": "Remove scripts", - "SSE.Controllers.DocumentHolder.txtRemSubscript": "Remove subscript", - "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Remove superscript", - "SSE.Controllers.DocumentHolder.txtRowHeight": "Row Height", - "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Scripts after text", - "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Scripts before text", - "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Show bottom limit", - "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Show closing bracket", - "SSE.Controllers.DocumentHolder.txtShowDegree": "Show degree", - "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Show opening bracket", - "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Show placeholder", - "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Show top limit", - "SSE.Controllers.DocumentHolder.txtSorting": "Sorting", - "SSE.Controllers.DocumentHolder.txtSortSelected": "Sort selected", - "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Stretch brackets", - "SSE.Controllers.DocumentHolder.txtTop": "Top", - "SSE.Controllers.DocumentHolder.txtUnderbar": "Bar under text", - "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Undo table autoexpansion", - "SSE.Controllers.DocumentHolder.txtUseTextImport": "Use text import wizard", - "SSE.Controllers.DocumentHolder.txtWidth": "Width", - "SSE.Controllers.FormulaDialog.sCategoryAll": "All", - "SSE.Controllers.FormulaDialog.sCategoryCube": "Cube", - "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database", - "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Date and time", - "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Engineering", - "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financial", - "SSE.Controllers.FormulaDialog.sCategoryInformation": "Information", - "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 last used", - "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logical", - "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Lookup and reference", - "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Math and trigonometry", - "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistical", - "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Text and data", - "SSE.Controllers.LeftMenu.newDocumentTitle": "Unnamed spreadsheet", - "SSE.Controllers.LeftMenu.textByColumns": "By columns", - "SSE.Controllers.LeftMenu.textByRows": "By rows", - "SSE.Controllers.LeftMenu.textFormulas": "Formulas", - "SSE.Controllers.LeftMenu.textItemEntireCell": "Entire cell contents", - "SSE.Controllers.LeftMenu.textLookin": "Look in", - "SSE.Controllers.LeftMenu.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", - "SSE.Controllers.LeftMenu.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", - "SSE.Controllers.LeftMenu.textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", - "SSE.Controllers.LeftMenu.textSearch": "Search", - "SSE.Controllers.LeftMenu.textSheet": "Sheet", - "SSE.Controllers.LeftMenu.textValues": "Values", - "SSE.Controllers.LeftMenu.textWarning": "Warning", - "SSE.Controllers.LeftMenu.textWithin": "Within", - "SSE.Controllers.LeftMenu.textWorkbook": "Workbook", - "SSE.Controllers.LeftMenu.txtUntitled": "Untitled", - "SSE.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?", - "SSE.Controllers.Main.confirmMoveCellRange": "The destination cell range can contain data. Continue the operation?", - "SSE.Controllers.Main.confirmPutMergeRange": "The source data contained merged cells.
    They had been unmerged before they were pasted into the table.", - "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", - "SSE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", - "SSE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.", - "SSE.Controllers.Main.criticalErrorTitle": "Error", - "SSE.Controllers.Main.downloadErrorText": "Download failed.", - "SSE.Controllers.Main.downloadTextText": "Downloading spreadsheet...", - "SSE.Controllers.Main.downloadTitleText": "Downloading Spreadsheet", - "SSE.Controllers.Main.errNoDuplicates": "No duplicate values found.", - "SSE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.", - "SSE.Controllers.Main.errorArgsRange": "An error in the entered formula.
    Incorrect argument range is used.", - "SSE.Controllers.Main.errorAutoFilterChange": "The operation is not allowed, as it is attempting to shift cells in a table on your worksheet.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of the table.
    Select another data range so that the whole table was shifted and try again.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range different from the existing one and try again.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please unhide the filtered elements and try again.", - "SSE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect", - "SSE.Controllers.Main.errorCannotUngroup": "Cannot ungroup. To start an outline, select the detail rows or columns and group them.", - "SSE.Controllers.Main.errorChangeArray": "You cannot change part of an array.", - "SSE.Controllers.Main.errorChangeFilteredRange": "This will change a filtered range on your worksheet.
    To complete this task, please remove AutoFilters.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.", - "SSE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
    When you click the 'OK' button, you will be prompted to download the document.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", - "SSE.Controllers.Main.errorCountArg": "An error in the entered formula.
    Incorrect number of arguments is used.", - "SSE.Controllers.Main.errorCountArgExceed": "An error in the entered formula.
    Number of arguments is exceeded.", - "SSE.Controllers.Main.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", - "SSE.Controllers.Main.errorDatabaseConnection": "External error.
    Database connection error. Please contact support in case the error persists.", - "SSE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "SSE.Controllers.Main.errorDataRange": "Incorrect data range.", - "SSE.Controllers.Main.errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", - "SSE.Controllers.Main.errorDefaultMessage": "Error code: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download as...' option to save the file backup copy to your computer hard drive.", - "SSE.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.
    Use the 'Save as...' option to save the file backup copy to your computer hard drive.", - "SSE.Controllers.Main.errorEditView": "The existing sheet view cannot be edited and the new ones cannot be created at the moment as some of them are being edited.", - "SSE.Controllers.Main.errorEmailClient": "No email client could be found.", - "SSE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.", - "SSE.Controllers.Main.errorFileRequest": "External error.
    File request error. Please contact support in case the error persists.", - "SSE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.", - "SSE.Controllers.Main.errorFileVKey": "External error.
    Incorrect security key. Please contact support in case the error persists.", - "SSE.Controllers.Main.errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", - "SSE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", - "SSE.Controllers.Main.errorFormulaName": "An error in the entered formula.
    Incorrect formula name is used.", - "SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.", - "SSE.Controllers.Main.errorFrmlMaxLength": "The length of your formula exceeds the limit of 8192 characters.
    Please edit it and try again.", - "SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please check the data and try again.", - "SSE.Controllers.Main.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.
    Select a range so that the first table row was on the same row
    and the resulting table overlapped the current one.", - "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.
    Select a range which does not include other tables.", - "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", - "SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired", - "SSE.Controllers.Main.errorLabledColumnsPivot": "To create a pivot table, use data that is organized as a list with labeled columns.", - "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "SSE.Controllers.Main.errorLockedCellPivot": "You cannot change data inside a pivot table.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "SSE.Controllers.Main.errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell", - "SSE.Controllers.Main.errorMoveSlicerError": "Table slicers cannot be copied from one workbook to another.
    Try again by selecting the entire table and the slicers.", - "SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "SSE.Controllers.Main.errorNoDataToParse": "No data was selected to parse.", - "SSE.Controllers.Main.errorOpenWarning": "One of the file formulas exceeds the limit of 8192 characters.
    The formula was removed.", - "SSE.Controllers.Main.errorOperandExpected": "The entered function syntax is not correct. Please check if you are missing one of the parentheses - '(' or ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "The copy and paste area do not match.
    Please select an area with the same size or click the first cell in a row to paste the copied cells.", - "SSE.Controllers.Main.errorPasteMultiSelect": "This action cannot be done on a multiple range selection.
    Select a single range and try again.", - "SSE.Controllers.Main.errorPasteSlicerError": "Table slicers cannot be copied from one workbook to another.", - "SSE.Controllers.Main.errorPivotGroup": "Cannot group that selection.", - "SSE.Controllers.Main.errorPivotOverlap": "A pivot table report cannot overlap a table.", - "SSE.Controllers.Main.errorPivotWithoutUnderlying": "The Pivot Table report was saved without the underlying data.
    Use the 'Refresh' button to update the report.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Unfortunately, it is not possible to print more than 1500 pages at once in the current program version.
    This restriction will be removed in the upcoming releases.", - "SSE.Controllers.Main.errorProcessSaveResult": "Saving failed", - "SSE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "SSE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", - "SSE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.", - "SSE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.", - "SSE.Controllers.Main.errorSetPassword": "Password could not be set.", - "SSE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "SSE.Controllers.Main.errorToken": "The document security token is not correctly formed.
    Please contact your Document Server administrator.", - "SSE.Controllers.Main.errorTokenExpire": "The document security token has expired.
    Please contact your Document Server administrator.", - "SSE.Controllers.Main.errorUnexpectedGuid": "External error.
    Unexpected GUID. Please contact support in case the error persists.", - "SSE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", - "SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
    but will not be able to download or print it until the connection is restored and page is reloaded.", - "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
    Wrong number of brackets is used.", - "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
    Please correct the error.", - "SSE.Controllers.Main.errRemDuplicates": "Duplicate values found and deleted: {0}, unique values left: {1}.", - "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.", - "SSE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this spreadsheet will be lost.
    Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", - "SSE.Controllers.Main.loadFontsTextText": "Loading data...", - "SSE.Controllers.Main.loadFontsTitleText": "Loading Data", - "SSE.Controllers.Main.loadFontTextText": "Loading data...", - "SSE.Controllers.Main.loadFontTitleText": "Loading Data", - "SSE.Controllers.Main.loadImagesTextText": "Loading images...", - "SSE.Controllers.Main.loadImagesTitleText": "Loading Images", - "SSE.Controllers.Main.loadImageTextText": "Loading image...", - "SSE.Controllers.Main.loadImageTitleText": "Loading Image", - "SSE.Controllers.Main.loadingDocumentTitleText": "Loading spreadsheet", - "SSE.Controllers.Main.notcriticalErrorTitle": "Warning", - "SSE.Controllers.Main.openErrorText": "An error has occurred while opening the file.", - "SSE.Controllers.Main.openTextText": "Opening spreadsheet...", - "SSE.Controllers.Main.openTitleText": "Opening Spreadsheet", - "SSE.Controllers.Main.pastInMergeAreaError": "Cannot change part of a merged cell", - "SSE.Controllers.Main.printTextText": "Printing spreadsheet...", - "SSE.Controllers.Main.printTitleText": "Printing Spreadsheet", - "SSE.Controllers.Main.reloadButtonText": "Reload Page", - "SSE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this document right now. Please try again later.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Access denied", - "SSE.Controllers.Main.saveErrorText": "An error has occurred while saving the file.", - "SSE.Controllers.Main.saveErrorTextDesktop": "This file cannot be saved or created.
    Possible reasons are:
    1. The file is read-only.
    2. The file is being edited by other users.
    3. The disk is full or corrupted.", - "SSE.Controllers.Main.savePreparingText": "Preparing to save", - "SSE.Controllers.Main.savePreparingTitle": "Preparing to save. Please wait...", - "SSE.Controllers.Main.saveTextText": "Saving spreadsheet...", - "SSE.Controllers.Main.saveTitleText": "Saving Spreadsheet", - "SSE.Controllers.Main.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", - "SSE.Controllers.Main.textAnonymous": "Anonymous", - "SSE.Controllers.Main.textBuyNow": "Visit website", - "SSE.Controllers.Main.textClose": "Close", - "SSE.Controllers.Main.textCloseTip": "Click to close the tip", - "SSE.Controllers.Main.textConfirm": "Confirmation", - "SSE.Controllers.Main.textContactUs": "Contact sales", - "SSE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.
    Please contact our Sales Department to get a quote.", - "SSE.Controllers.Main.textDisconnect": "Connection is lost", - "SSE.Controllers.Main.textGuest": "Guest", - "SSE.Controllers.Main.textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", - "SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet", - "SSE.Controllers.Main.textLongName": "Enter a name that is less than 128 characters.", - "SSE.Controllers.Main.textNo": "No", - "SSE.Controllers.Main.textNoLicenseTitle": "License limit reached", - "SSE.Controllers.Main.textPaidFeature": "Paid feature", - "SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...", - "SSE.Controllers.Main.textRecalcFormulas": "Calculating formulas...", - "SSE.Controllers.Main.textRemember": "Remember my choice for all files", - "SSE.Controllers.Main.textRenameError": "User name must not be empty.", - "SSE.Controllers.Main.textRenameLabel": "Enter a name to be used for collaboration", - "SSE.Controllers.Main.textShape": "Shape", - "SSE.Controllers.Main.textStrict": "Strict mode", - "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
    Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", - "SSE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "SSE.Controllers.Main.textYes": "Yes", - "SSE.Controllers.Main.titleLicenseExp": "License expired", - "SSE.Controllers.Main.titleRecalcFormulas": "Calculating...", - "SSE.Controllers.Main.titleServerVersion": "Editor updated", - "SSE.Controllers.Main.txtAccent": "Accent", - "SSE.Controllers.Main.txtAll": "(All)", - "SSE.Controllers.Main.txtArt": "Your text here", - "SSE.Controllers.Main.txtBasicShapes": "Basic Shapes", - "SSE.Controllers.Main.txtBlank": "(blank)", - "SSE.Controllers.Main.txtButtons": "Buttons", - "SSE.Controllers.Main.txtByField": "%1 of %2", - "SSE.Controllers.Main.txtCallouts": "Callouts", - "SSE.Controllers.Main.txtCharts": "Charts", - "SSE.Controllers.Main.txtClearFilter": "Clear Filter (Alt+C)", - "SSE.Controllers.Main.txtColLbls": "Column Labels", - "SSE.Controllers.Main.txtColumn": "Column", - "SSE.Controllers.Main.txtConfidential": "Confidential", - "SSE.Controllers.Main.txtDate": "Date", - "SSE.Controllers.Main.txtDays": "Days", - "SSE.Controllers.Main.txtDiagramTitle": "Chart Title", - "SSE.Controllers.Main.txtEditingMode": "Set editing mode...", - "SSE.Controllers.Main.txtFiguredArrows": "Figured Arrows", - "SSE.Controllers.Main.txtFile": "File", - "SSE.Controllers.Main.txtGrandTotal": "Grand Total", - "SSE.Controllers.Main.txtGroup": "Group", - "SSE.Controllers.Main.txtHours": "Hours", - "SSE.Controllers.Main.txtLines": "Lines", - "SSE.Controllers.Main.txtMath": "Math", - "SSE.Controllers.Main.txtMinutes": "Minutes", - "SSE.Controllers.Main.txtMonths": "Months", - "SSE.Controllers.Main.txtMultiSelect": "Multi-Select (Alt+S)", - "SSE.Controllers.Main.txtOr": "%1 or %2", - "SSE.Controllers.Main.txtPage": "Page", - "SSE.Controllers.Main.txtPageOf": "Page %1 of %2", - "SSE.Controllers.Main.txtPages": "Pages", - "SSE.Controllers.Main.txtPreparedBy": "Prepared by", - "SSE.Controllers.Main.txtPrintArea": "Print_Area", - "SSE.Controllers.Main.txtQuarter": "Qtr", - "SSE.Controllers.Main.txtQuarters": "Quarters", - "SSE.Controllers.Main.txtRectangles": "Rectangles", - "SSE.Controllers.Main.txtRow": "Row", - "SSE.Controllers.Main.txtRowLbls": "Row Labels", - "SSE.Controllers.Main.txtSeconds": "Seconds", - "SSE.Controllers.Main.txtSeries": "Series", - "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)", - "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)", - "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)", - "SSE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)", - "SSE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)", - "SSE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)", - "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Back or Previous Button", - "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Beginning Button", - "SSE.Controllers.Main.txtShape_actionButtonBlank": "Blank Button", - "SSE.Controllers.Main.txtShape_actionButtonDocument": "Document Button", - "SSE.Controllers.Main.txtShape_actionButtonEnd": "End Button", - "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Forward or Next Button", - "SSE.Controllers.Main.txtShape_actionButtonHelp": "Help Button", - "SSE.Controllers.Main.txtShape_actionButtonHome": "Home Button", - "SSE.Controllers.Main.txtShape_actionButtonInformation": "Information Button", - "SSE.Controllers.Main.txtShape_actionButtonMovie": "Movie Button", - "SSE.Controllers.Main.txtShape_actionButtonReturn": "Return Button", - "SSE.Controllers.Main.txtShape_actionButtonSound": "Sound Button", - "SSE.Controllers.Main.txtShape_arc": "Arc", - "SSE.Controllers.Main.txtShape_bentArrow": "Bent Arrow", - "SSE.Controllers.Main.txtShape_bentConnector5": "Elbow Connector", - "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow Arrow Connector", - "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow Double-Arrow Connector", - "SSE.Controllers.Main.txtShape_bentUpArrow": "Bent Up Arrow", - "SSE.Controllers.Main.txtShape_bevel": "Bevel", - "SSE.Controllers.Main.txtShape_blockArc": "Block Arc", - "SSE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1", - "SSE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2", - "SSE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3", - "SSE.Controllers.Main.txtShape_bracePair": "Double Brace", - "SSE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)", - "SSE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)", - "SSE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)", - "SSE.Controllers.Main.txtShape_can": "Can", - "SSE.Controllers.Main.txtShape_chevron": "Chevron", - "SSE.Controllers.Main.txtShape_chord": "Chord", - "SSE.Controllers.Main.txtShape_circularArrow": "Circular Arrow", - "SSE.Controllers.Main.txtShape_cloud": "Cloud", - "SSE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout", - "SSE.Controllers.Main.txtShape_corner": "Corner", - "SSE.Controllers.Main.txtShape_cube": "Cube", - "SSE.Controllers.Main.txtShape_curvedConnector3": "Curved Connector", - "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Curved Arrow Connector", - "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Curved Double-Arrow Connector", - "SSE.Controllers.Main.txtShape_curvedDownArrow": "Curved Down Arrow", - "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Curved Left Arrow", - "SSE.Controllers.Main.txtShape_curvedRightArrow": "Curved Right Arrow", - "SSE.Controllers.Main.txtShape_curvedUpArrow": "Curved Up Arrow", - "SSE.Controllers.Main.txtShape_decagon": "Decagon", - "SSE.Controllers.Main.txtShape_diagStripe": "Diagonal Stripe", - "SSE.Controllers.Main.txtShape_diamond": "Diamond", - "SSE.Controllers.Main.txtShape_dodecagon": "Dodecagon", - "SSE.Controllers.Main.txtShape_donut": "Donut", - "SSE.Controllers.Main.txtShape_doubleWave": "Double Wave", - "SSE.Controllers.Main.txtShape_downArrow": "Down Arrow", - "SSE.Controllers.Main.txtShape_downArrowCallout": "Down Arrow Callout", - "SSE.Controllers.Main.txtShape_ellipse": "Ellipse", - "SSE.Controllers.Main.txtShape_ellipseRibbon": "Curved Down Ribbon", - "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Curved Up Ribbon", - "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowchart: Alternate Process", - "SSE.Controllers.Main.txtShape_flowChartCollate": "Flowchart: Collate", - "SSE.Controllers.Main.txtShape_flowChartConnector": "Flowchart: Connector", - "SSE.Controllers.Main.txtShape_flowChartDecision": "Flowchart: Decision", - "SSE.Controllers.Main.txtShape_flowChartDelay": "Flowchart: Delay", - "SSE.Controllers.Main.txtShape_flowChartDisplay": "Flowchart: Display", - "SSE.Controllers.Main.txtShape_flowChartDocument": "Flowchart: Document", - "SSE.Controllers.Main.txtShape_flowChartExtract": "Flowchart: Extract", - "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Flowchart: Data", - "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowchart: Internal Storage", - "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowchart: Magnetic Disk", - "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowchart: Direct Access Storage", - "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowchart: Sequential Access Storage", - "SSE.Controllers.Main.txtShape_flowChartManualInput": "Flowchart: Manual Input", - "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Flowchart: Manual Operation", - "SSE.Controllers.Main.txtShape_flowChartMerge": "Flowchart: Merge", - "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Flowchart: Multidocument ", - "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowchart: Off-page Connector", - "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowchart: Stored Data", - "SSE.Controllers.Main.txtShape_flowChartOr": "Flowchart: Or", - "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowchart: Predefined Process", - "SSE.Controllers.Main.txtShape_flowChartPreparation": "Flowchart: Preparation", - "SSE.Controllers.Main.txtShape_flowChartProcess": "Flowchart: Process", - "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Flowchart: Card", - "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowchart: Punched Tape", - "SSE.Controllers.Main.txtShape_flowChartSort": "Flowchart: Sort", - "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowchart: Summing Junction", - "SSE.Controllers.Main.txtShape_flowChartTerminator": "Flowchart: Terminator", - "SSE.Controllers.Main.txtShape_foldedCorner": "Folded Corner", - "SSE.Controllers.Main.txtShape_frame": "Frame", - "SSE.Controllers.Main.txtShape_halfFrame": "Half Frame", - "SSE.Controllers.Main.txtShape_heart": "Heart", - "SSE.Controllers.Main.txtShape_heptagon": "Heptagon", - "SSE.Controllers.Main.txtShape_hexagon": "Hexagon", - "SSE.Controllers.Main.txtShape_homePlate": "Pentagon", - "SSE.Controllers.Main.txtShape_horizontalScroll": "Horizontal Scroll", - "SSE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1", - "SSE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2", - "SSE.Controllers.Main.txtShape_leftArrow": "Left Arrow", - "SSE.Controllers.Main.txtShape_leftArrowCallout": "Left Arrow Callout", - "SSE.Controllers.Main.txtShape_leftBrace": "Left Brace", - "SSE.Controllers.Main.txtShape_leftBracket": "Left Bracket", - "SSE.Controllers.Main.txtShape_leftRightArrow": "Left Right Arrow", - "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Left Right Arrow Callout", - "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Left Right Up Arrow", - "SSE.Controllers.Main.txtShape_leftUpArrow": "Left Up Arrow", - "SSE.Controllers.Main.txtShape_lightningBolt": "Lightning Bolt", - "SSE.Controllers.Main.txtShape_line": "Line", - "SSE.Controllers.Main.txtShape_lineWithArrow": "Arrow", - "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Double Arrow", - "SSE.Controllers.Main.txtShape_mathDivide": "Division", - "SSE.Controllers.Main.txtShape_mathEqual": "Equal", - "SSE.Controllers.Main.txtShape_mathMinus": "Minus", - "SSE.Controllers.Main.txtShape_mathMultiply": "Multiply", - "SSE.Controllers.Main.txtShape_mathNotEqual": "Not Equal", - "SSE.Controllers.Main.txtShape_mathPlus": "Plus", - "SSE.Controllers.Main.txtShape_moon": "Moon", - "SSE.Controllers.Main.txtShape_noSmoking": "\"No\" Symbol", - "SSE.Controllers.Main.txtShape_notchedRightArrow": "Notched Right Arrow", - "SSE.Controllers.Main.txtShape_octagon": "Octagon", - "SSE.Controllers.Main.txtShape_parallelogram": "Parallelogram", - "SSE.Controllers.Main.txtShape_pentagon": "Pentagon", - "SSE.Controllers.Main.txtShape_pie": "Pie", - "SSE.Controllers.Main.txtShape_plaque": "Sign", - "SSE.Controllers.Main.txtShape_plus": "Plus", - "SSE.Controllers.Main.txtShape_polyline1": "Scribble", - "SSE.Controllers.Main.txtShape_polyline2": "Freeform", - "SSE.Controllers.Main.txtShape_quadArrow": "Quad Arrow", - "SSE.Controllers.Main.txtShape_quadArrowCallout": "Quad Arrow Callout", - "SSE.Controllers.Main.txtShape_rect": "Rectangle", - "SSE.Controllers.Main.txtShape_ribbon": "Down Ribbon", - "SSE.Controllers.Main.txtShape_ribbon2": "Up Ribbon", - "SSE.Controllers.Main.txtShape_rightArrow": "Right Arrow", - "SSE.Controllers.Main.txtShape_rightArrowCallout": "Right Arrow Callout", - "SSE.Controllers.Main.txtShape_rightBrace": "Right Brace", - "SSE.Controllers.Main.txtShape_rightBracket": "Right Bracket", - "SSE.Controllers.Main.txtShape_round1Rect": "Round Single Corner Rectangle", - "SSE.Controllers.Main.txtShape_round2DiagRect": "Round Diagonal Corner Rectangle", - "SSE.Controllers.Main.txtShape_round2SameRect": "Round Same Side Corner Rectangle", - "SSE.Controllers.Main.txtShape_roundRect": "Round Corner Rectangle", - "SSE.Controllers.Main.txtShape_rtTriangle": "Right Triangle", - "SSE.Controllers.Main.txtShape_smileyFace": "Smiley Face", - "SSE.Controllers.Main.txtShape_snip1Rect": "Snip Single Corner Rectangle", - "SSE.Controllers.Main.txtShape_snip2DiagRect": "Snip Diagonal Corner Rectangle", - "SSE.Controllers.Main.txtShape_snip2SameRect": "Snip Same Side Corner Rectangle", - "SSE.Controllers.Main.txtShape_snipRoundRect": "Snip and Round Single Corner Rectangle", - "SSE.Controllers.Main.txtShape_spline": "Curve", - "SSE.Controllers.Main.txtShape_star10": "10-Point Star", - "SSE.Controllers.Main.txtShape_star12": "12-Point Star", - "SSE.Controllers.Main.txtShape_star16": "16-Point Star", - "SSE.Controllers.Main.txtShape_star24": "24-Point Star", - "SSE.Controllers.Main.txtShape_star32": "32-Point Star", - "SSE.Controllers.Main.txtShape_star4": "4-Point Star", - "SSE.Controllers.Main.txtShape_star5": "5-Point Star", - "SSE.Controllers.Main.txtShape_star6": "6-Point Star", - "SSE.Controllers.Main.txtShape_star7": "7-Point Star", - "SSE.Controllers.Main.txtShape_star8": "8-Point Star", - "SSE.Controllers.Main.txtShape_stripedRightArrow": "Striped Right Arrow", - "SSE.Controllers.Main.txtShape_sun": "Sun", - "SSE.Controllers.Main.txtShape_teardrop": "Teardrop", - "SSE.Controllers.Main.txtShape_textRect": "Text Box", - "SSE.Controllers.Main.txtShape_trapezoid": "Trapezoid", - "SSE.Controllers.Main.txtShape_triangle": "Triangle", - "SSE.Controllers.Main.txtShape_upArrow": "Up Arrow", - "SSE.Controllers.Main.txtShape_upArrowCallout": "Up Arrow Callout", - "SSE.Controllers.Main.txtShape_upDownArrow": "Up Down Arrow", - "SSE.Controllers.Main.txtShape_uturnArrow": "U-Turn Arrow", - "SSE.Controllers.Main.txtShape_verticalScroll": "Vertical Scroll", - "SSE.Controllers.Main.txtShape_wave": "Wave", - "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout", - "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular Callout", - "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout", - "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", - "SSE.Controllers.Main.txtStyle_Bad": "Bad", - "SSE.Controllers.Main.txtStyle_Calculation": "Calculation", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell", - "SSE.Controllers.Main.txtStyle_Comma": "Comma", - "SSE.Controllers.Main.txtStyle_Currency": "Currency", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text", - "SSE.Controllers.Main.txtStyle_Good": "Good", - "SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4", - "SSE.Controllers.Main.txtStyle_Input": "Input", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Note", - "SSE.Controllers.Main.txtStyle_Output": "Output", - "SSE.Controllers.Main.txtStyle_Percent": "Percent", - "SSE.Controllers.Main.txtStyle_Title": "Title", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text", - "SSE.Controllers.Main.txtTab": "Tab", - "SSE.Controllers.Main.txtTable": "Table", - "SSE.Controllers.Main.txtTime": "Time", - "SSE.Controllers.Main.txtValues": "Values", - "SSE.Controllers.Main.txtXAxis": "X Axis", - "SSE.Controllers.Main.txtYAxis": "Y Axis", - "SSE.Controllers.Main.txtYears": "Years", - "SSE.Controllers.Main.unknownErrorText": "Unknown error.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", - "SSE.Controllers.Main.uploadImageExtMessage": "Unknown image format.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.", - "SSE.Controllers.Main.uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", - "SSE.Controllers.Main.uploadImageTextText": "Uploading image...", - "SSE.Controllers.Main.uploadImageTitleText": "Uploading Image", - "SSE.Controllers.Main.waitText": "Please, wait...", - "SSE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", - "SSE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", - "SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
    Contact your administrator to learn more.", - "SSE.Controllers.Main.warnLicenseExp": "Your license has expired.
    Please update your license and refresh the page.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired.
    You have no access to document editing functionality.
    Please contact your administrator.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "License needs to be renewed.
    You have a limited access to document editing functionality.
    Please contact your administrator to get full access", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
    Contact %1 sales team for personal upgrade terms.", - "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", - "SSE.Controllers.Main.textNeedSynchronize": "You have an updates", - "SSE.Controllers.Main.textChangesSaved": "All changes saved", - "SSE.Controllers.Print.strAllSheets": "All Sheets", - "SSE.Controllers.Print.textFirstCol": "First column", - "SSE.Controllers.Print.textFirstRow": "First row", - "SSE.Controllers.Print.textFrozenCols": "Frozen columns", - "SSE.Controllers.Print.textFrozenRows": "Frozen rows", - "SSE.Controllers.Print.textInvalidRange": "ERROR! Invalid cells range", - "SSE.Controllers.Print.textNoRepeat": "Don't repeat", - "SSE.Controllers.Print.textRepeat": "Repeat...", - "SSE.Controllers.Print.textSelectRange": "Select range", - "SSE.Controllers.Print.textWarning": "Warning", - "SSE.Controllers.Print.txtCustom": "Custom", - "SSE.Controllers.Print.warnCheckMargings": "Margins are incorrect", - "SSE.Controllers.Statusbar.errorLastSheet": "Workbook must have at least one visible worksheet.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Cannot delete the worksheet.", - "SSE.Controllers.Statusbar.strSheet": "Sheet", - "SSE.Controllers.Statusbar.textSheetViewTip": "You are in Sheet View mode. Filters and sorting are visible only to you and those who are still in this view.", - "SSE.Controllers.Statusbar.textSheetViewTipFilters": "You are in Sheet View mode. Filters are visible only to you and those who are still in this view.", - "SSE.Controllers.Statusbar.warnDeleteSheet": "The selected worksheets might contain data. Are you sure you want to proceed?", - "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "SSE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
    The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
    Do you want to continue?", - "SSE.Controllers.Toolbar.errorComboSeries": "To create a combination chart, select at least two series of data.", - "SSE.Controllers.Toolbar.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", - "SSE.Controllers.Toolbar.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "SSE.Controllers.Toolbar.textAccent": "Accents", - "SSE.Controllers.Toolbar.textBracket": "Brackets", - "SSE.Controllers.Toolbar.textDirectional": "Directional", - "SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
    Please enter a numeric value between 1 and 409", - "SSE.Controllers.Toolbar.textFraction": "Fractions", - "SSE.Controllers.Toolbar.textFunction": "Functions", - "SSE.Controllers.Toolbar.textIndicator": "Indicators", - "SSE.Controllers.Toolbar.textInsert": "Insert", - "SSE.Controllers.Toolbar.textIntegral": "Integrals", - "SSE.Controllers.Toolbar.textLargeOperator": "Large Operators", - "SSE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", - "SSE.Controllers.Toolbar.textLongOperation": "Long operation", - "SSE.Controllers.Toolbar.textMatrix": "Matrices", - "SSE.Controllers.Toolbar.textOperator": "Operators", - "SSE.Controllers.Toolbar.textPivot": "Pivot Table", - "SSE.Controllers.Toolbar.textRadical": "Radicals", - "SSE.Controllers.Toolbar.textRating": "Ratings", - "SSE.Controllers.Toolbar.textScript": "Scripts", - "SSE.Controllers.Toolbar.textShapes": "Shapes", - "SSE.Controllers.Toolbar.textSymbols": "Symbols", - "SSE.Controllers.Toolbar.textWarning": "Warning", - "SSE.Controllers.Toolbar.txtAccent_Accent": "Acute", - "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Right-left arrow above", - "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards arrow above", - "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Rightwards arrow above", - "SSE.Controllers.Toolbar.txtAccent_Bar": "Bar", - "SSE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", - "SSE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", - "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Boxed formula (with placeholder)", - "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxed formula (example)", - "SSE.Controllers.Toolbar.txtAccent_Check": "Check", - "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", - "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", - "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", - "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC with overbar", - "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y with overbar", - "SSE.Controllers.Toolbar.txtAccent_DDDot": "Triple dot", - "SSE.Controllers.Toolbar.txtAccent_DDot": "Double dot", - "SSE.Controllers.Toolbar.txtAccent_Dot": "Dot", - "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Double overbar", - "SSE.Controllers.Toolbar.txtAccent_Grave": "Grave", - "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Grouping character below", - "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Grouping character above", - "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Leftwards harpoon above", - "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards harpoon above", - "SSE.Controllers.Toolbar.txtAccent_Hat": "Hat", - "SSE.Controllers.Toolbar.txtAccent_Smile": "Breve", - "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", - "SSE.Controllers.Toolbar.txtBracket_Angle": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with separators", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with separators", - "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Curve": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with separators", - "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", - "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)", - "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object", - "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object", - "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example", - "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient", - "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient", - "SSE.Controllers.Toolbar.txtBracket_Line": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Round": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with separators", - "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Square": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", - "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket", - "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket", - "SSE.Controllers.Toolbar.txtDeleteCells": "Delete Cells", - "SSE.Controllers.Toolbar.txtExpand": "Expand and sort", - "SSE.Controllers.Toolbar.txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", - "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction", - "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", - "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", - "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", - "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", - "SSE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction", - "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2", - "SSE.Controllers.Toolbar.txtFractionSmall": "Small fraction", - "SSE.Controllers.Toolbar.txtFractionVertical": "Stacked fraction", - "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Inverse cosine function", - "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Hyperbolic inverse cosine function", - "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Inverse cotangent function", - "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Hyperbolic inverse cotangent function", - "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Inverse cosecant function", - "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Hyperbolic inverse cosecant function", - "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Inverse secant function", - "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Hyperbolic inverse secant function", - "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Inverse sine function", - "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperbolic inverse sine function", - "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Inverse tangent function", - "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperbolic inverse tangent function", - "SSE.Controllers.Toolbar.txtFunction_Cos": "Cosine function", - "SSE.Controllers.Toolbar.txtFunction_Cosh": "Hyperbolic cosine function", - "SSE.Controllers.Toolbar.txtFunction_Cot": "Cotangent function", - "SSE.Controllers.Toolbar.txtFunction_Coth": "Hyperbolic cotangent function", - "SSE.Controllers.Toolbar.txtFunction_Csc": "Cosecant function", - "SSE.Controllers.Toolbar.txtFunction_Csch": "Hyperbolic cosecant function", - "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", - "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", - "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula", - "SSE.Controllers.Toolbar.txtFunction_Sec": "Secant function", - "SSE.Controllers.Toolbar.txtFunction_Sech": "Hyperbolic secant function", - "SSE.Controllers.Toolbar.txtFunction_Sin": "Sine function", - "SSE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolic sine function", - "SSE.Controllers.Toolbar.txtFunction_Tan": "Tangent function", - "SSE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic tangent function", - "SSE.Controllers.Toolbar.txtInsertCells": "Insert Cells", - "SSE.Controllers.Toolbar.txtIntegral": "Integral", - "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", - "SSE.Controllers.Toolbar.txtIntegral_dx": "Differential x", - "SSE.Controllers.Toolbar.txtIntegral_dy": "Differential y", - "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", - "SSE.Controllers.Toolbar.txtIntegralDouble": "Double integral", - "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral", - "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral", - "SSE.Controllers.Toolbar.txtIntegralOriented": "Contour integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", - "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integral", - "SSE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", - "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", - "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", - "SSE.Controllers.Toolbar.txtInvalidRange": "ERROR! Invalid cell range", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", - "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", - "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", - "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example", - "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example", - "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", - "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Natural logarithm", - "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logarithm", - "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithm", - "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", - "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", - "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty matrix with brackets", - "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty matrix with brackets", - "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty matrix with brackets", - "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty matrix with brackets", - "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 empty matrix", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline dots", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix", - "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix", - "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identity matrix", - "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix", - "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix", - "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below", - "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above", - "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below", - "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Leftwards arrow above", - "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Rightwards arrow below", - "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Rightwards arrow above", - "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Colon equal", - "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Yields", - "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields", - "SSE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition", - "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left arrow below", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left arrow above", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Rightwards arrow above", - "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Equal equal", - "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", - "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", - "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", - "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", - "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", - "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", - "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", - "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree", - "SSE.Controllers.Toolbar.txtRadicalSqrt": "Square root", - "SSE.Controllers.Toolbar.txtScriptCustom_1": "Script", - "SSE.Controllers.Toolbar.txtScriptCustom_2": "Script", - "SSE.Controllers.Toolbar.txtScriptCustom_3": "Script", - "SSE.Controllers.Toolbar.txtScriptCustom_4": "Script", - "SSE.Controllers.Toolbar.txtScriptSub": "Subscript", - "SSE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript", - "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript", - "SSE.Controllers.Toolbar.txtScriptSup": "Superscript", - "SSE.Controllers.Toolbar.txtSorting": "Sorting", - "SSE.Controllers.Toolbar.txtSortSelected": "Sort selected", - "SSE.Controllers.Toolbar.txtSymbol_about": "Approximately", - "SSE.Controllers.Toolbar.txtSymbol_additional": "Complement", - "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", - "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", - "SSE.Controllers.Toolbar.txtSymbol_approx": "Almost equal to", - "SSE.Controllers.Toolbar.txtSymbol_ast": "Asterisk operator", - "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", - "SSE.Controllers.Toolbar.txtSymbol_beth": "Bet", - "SSE.Controllers.Toolbar.txtSymbol_bullet": "Bullet operator", - "SSE.Controllers.Toolbar.txtSymbol_cap": "Intersection", - "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Cube root", - "SSE.Controllers.Toolbar.txtSymbol_cdots": "Midline horizontal ellipsis", - "SSE.Controllers.Toolbar.txtSymbol_celsius": "Degrees Celsius", - "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", - "SSE.Controllers.Toolbar.txtSymbol_cong": "Approximately equal to", - "SSE.Controllers.Toolbar.txtSymbol_cup": "Union", - "SSE.Controllers.Toolbar.txtSymbol_ddots": "Down right diagonal ellipsis", - "SSE.Controllers.Toolbar.txtSymbol_degree": "Degrees", - "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", - "SSE.Controllers.Toolbar.txtSymbol_div": "Division sign", - "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Down arrow", - "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Empty set", - "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", - "SSE.Controllers.Toolbar.txtSymbol_equals": "Equal", - "SSE.Controllers.Toolbar.txtSymbol_equiv": "Identical to", - "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", - "SSE.Controllers.Toolbar.txtSymbol_exists": "There exist", - "SSE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", - "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Degrees Fahrenheit", - "SSE.Controllers.Toolbar.txtSymbol_forall": "For all", - "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", - "SSE.Controllers.Toolbar.txtSymbol_geq": "Greater than or equal to", - "SSE.Controllers.Toolbar.txtSymbol_gg": "Much greater than", - "SSE.Controllers.Toolbar.txtSymbol_greater": "Greater than", - "SSE.Controllers.Toolbar.txtSymbol_in": "Element of", - "SSE.Controllers.Toolbar.txtSymbol_inc": "Increment", - "SSE.Controllers.Toolbar.txtSymbol_infinity": "Infinity", - "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", - "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", - "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", - "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Left arrow", - "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-right arrow", - "SSE.Controllers.Toolbar.txtSymbol_leq": "Less than or equal to", - "SSE.Controllers.Toolbar.txtSymbol_less": "Less than", - "SSE.Controllers.Toolbar.txtSymbol_ll": "Much less than", - "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", - "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus plus", - "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", - "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", - "SSE.Controllers.Toolbar.txtSymbol_neq": "Not equal to", - "SSE.Controllers.Toolbar.txtSymbol_ni": "Contains as member", - "SSE.Controllers.Toolbar.txtSymbol_not": "Not sign", - "SSE.Controllers.Toolbar.txtSymbol_notexists": "There does not exist", - "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", - "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", - "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", - "SSE.Controllers.Toolbar.txtSymbol_partial": "Partial differential", - "SSE.Controllers.Toolbar.txtSymbol_percent": "Percentage", - "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", - "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", - "SSE.Controllers.Toolbar.txtSymbol_plus": "Plus", - "SSE.Controllers.Toolbar.txtSymbol_pm": "Plus minus", - "SSE.Controllers.Toolbar.txtSymbol_propto": "Proportional to", - "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", - "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Fourth root", - "SSE.Controllers.Toolbar.txtSymbol_qed": "End of proof", - "SSE.Controllers.Toolbar.txtSymbol_rddots": "Up right diagonal ellipsis", - "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", - "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Right arrow", - "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", - "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Radical sign", - "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", - "SSE.Controllers.Toolbar.txtSymbol_therefore": "Therefore", - "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", - "SSE.Controllers.Toolbar.txtSymbol_times": "Multiplication sign", - "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Up arrow", - "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", - "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon variant", - "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi variant", - "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant", - "SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant", - "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", - "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Theta variant", - "SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis", - "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", - "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", - "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Table Style Dark", - "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Table Style Light", - "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Table Style Medium", - "SSE.Controllers.Toolbar.warnLongOperation": "The operation you are about to perform might take rather much time to complete.
    Are you sure you want to continue?", - "SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
    Are you sure you want to continue?", - "SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes", - "SSE.Controllers.Viewport.textFreezePanesShadow": "Show Frozen Panes Shadow", - "SSE.Controllers.Viewport.textHideFBar": "Hide Formula Bar", - "SSE.Controllers.Viewport.textHideGridlines": "Hide Gridlines", - "SSE.Controllers.Viewport.textHideHeadings": "Hide Headings", - "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Decimal separator", - "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Thousands separator", - "SSE.Views.AdvancedSeparatorDialog.textLabel": "Settings used to recognize numeric data", - "SSE.Views.AdvancedSeparatorDialog.textTitle": "Advanced Settings", - "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter", - "SSE.Views.AutoFilterDialog.textAddSelection": "Add current selection to filter", - "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", - "SSE.Views.AutoFilterDialog.textSelectAll": "Select All", - "SSE.Views.AutoFilterDialog.textSelectAllResults": "Select All Search Results", - "SSE.Views.AutoFilterDialog.textWarning": "Warning", - "SSE.Views.AutoFilterDialog.txtAboveAve": "Above average", - "SSE.Views.AutoFilterDialog.txtBegins": "Begins with...", - "SSE.Views.AutoFilterDialog.txtBelowAve": "Below average", - "SSE.Views.AutoFilterDialog.txtBetween": "Between...", - "SSE.Views.AutoFilterDialog.txtClear": "Clear", - "SSE.Views.AutoFilterDialog.txtContains": "Contains...", - "SSE.Views.AutoFilterDialog.txtEmpty": "Enter cell filter", - "SSE.Views.AutoFilterDialog.txtEnds": "Ends with...", - "SSE.Views.AutoFilterDialog.txtEquals": "Equals...", - "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filter by cells color", - "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filter by font color", - "SSE.Views.AutoFilterDialog.txtGreater": "Greater than...", - "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Greater than or equal to...", - "SSE.Views.AutoFilterDialog.txtLabelFilter": "Label filter", - "SSE.Views.AutoFilterDialog.txtLess": "Less than...", - "SSE.Views.AutoFilterDialog.txtLessEquals": "Less than or equal to...", - "SSE.Views.AutoFilterDialog.txtNotBegins": "Does not begin with...", - "SSE.Views.AutoFilterDialog.txtNotBetween": "Not between...", - "SSE.Views.AutoFilterDialog.txtNotContains": "Does not contain...", - "SSE.Views.AutoFilterDialog.txtNotEnds": "Does not end with...", - "SSE.Views.AutoFilterDialog.txtNotEquals": "Does not equal...", - "SSE.Views.AutoFilterDialog.txtNumFilter": "Number filter", - "SSE.Views.AutoFilterDialog.txtReapply": "Reapply", - "SSE.Views.AutoFilterDialog.txtSortCellColor": "Sort by cells color", - "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sort by font color", - "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sort Highest to Lowest", - "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sort Lowest to Highest", - "SSE.Views.AutoFilterDialog.txtSortOption": "More sort options...", - "SSE.Views.AutoFilterDialog.txtTextFilter": "Text filter", - "SSE.Views.AutoFilterDialog.txtTitle": "Filter", - "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", - "SSE.Views.AutoFilterDialog.txtValueFilter": "Value filter", - "SSE.Views.AutoFilterDialog.warnFilterError": "You need at least one field in the Values area in order to apply a value filter.", - "SSE.Views.AutoFilterDialog.warnNoSelected": "You must choose at least one value", - "SSE.Views.CellEditor.textManager": "Name Manager", - "SSE.Views.CellEditor.tipFormula": "Insert function", - "SSE.Views.CellRangeDialog.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", - "SSE.Views.CellRangeDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "SSE.Views.CellRangeDialog.txtEmpty": "This field is required", - "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.CellRangeDialog.txtTitle": "Select Data Range", - "SSE.Views.CellSettings.strShrink": "Shrink to fit", - "SSE.Views.CellSettings.strWrap": "Wrap text", - "SSE.Views.CellSettings.textAngle": "Angle", - "SSE.Views.CellSettings.textBackColor": "Background Color", - "SSE.Views.CellSettings.textBackground": "Background color", - "SSE.Views.CellSettings.textBorderColor": "Color", - "SSE.Views.CellSettings.textBorders": "Borders Style", - "SSE.Views.CellSettings.textClearRule": "Clear Rules", - "SSE.Views.CellSettings.textColor": "Color Fill", - "SSE.Views.CellSettings.textColorScales": "Color Scales", - "SSE.Views.CellSettings.textCondFormat": "Conditional formatting", - "SSE.Views.CellSettings.textControl": "Text Control", - "SSE.Views.CellSettings.textDataBars": "Data Bars", - "SSE.Views.CellSettings.textDirection": "Direction", - "SSE.Views.CellSettings.textFill": "Fill", - "SSE.Views.CellSettings.textForeground": "Foreground color", - "SSE.Views.CellSettings.textGradient": "Gradient points", - "SSE.Views.CellSettings.textGradientColor": "Color", - "SSE.Views.CellSettings.textGradientFill": "Gradient Fill", - "SSE.Views.CellSettings.textIndent": "Indent", - "SSE.Views.CellSettings.textItems": "Items", - "SSE.Views.CellSettings.textLinear": "Linear", - "SSE.Views.CellSettings.textManageRule": "Manage Rules", - "SSE.Views.CellSettings.textNewRule": "New Rule", - "SSE.Views.CellSettings.textNoFill": "No Fill", - "SSE.Views.CellSettings.textOrientation": "Text Orientation", - "SSE.Views.CellSettings.textPattern": "Pattern", - "SSE.Views.CellSettings.textPatternFill": "Pattern", - "SSE.Views.CellSettings.textPosition": "Position", - "SSE.Views.CellSettings.textRadial": "Radial", - "SSE.Views.CellSettings.textSelectBorders": "Select borders you want to change applying style chosen above", - "SSE.Views.CellSettings.textSelection": "From current selection", - "SSE.Views.CellSettings.textThisPivot": "From this pivot", - "SSE.Views.CellSettings.textThisSheet": "From this worksheet", - "SSE.Views.CellSettings.textThisTable": "From this table", - "SSE.Views.CellSettings.tipAddGradientPoint": "Add gradient point", - "SSE.Views.CellSettings.tipAll": "Set outer border and all inner lines", - "SSE.Views.CellSettings.tipBottom": "Set outer bottom border only", - "SSE.Views.CellSettings.tipDiagD": "Set Diagonal Down Border", - "SSE.Views.CellSettings.tipDiagU": "Set Diagonal Up Border", - "SSE.Views.CellSettings.tipInner": "Set inner lines only", - "SSE.Views.CellSettings.tipInnerHor": "Set horizontal inner lines only", - "SSE.Views.CellSettings.tipInnerVert": "Set vertical inner lines only", - "SSE.Views.CellSettings.tipLeft": "Set outer left border only", - "SSE.Views.CellSettings.tipNone": "Set no borders", - "SSE.Views.CellSettings.tipOuter": "Set outer border only", - "SSE.Views.CellSettings.tipRemoveGradientPoint": "Remove gradient point", - "SSE.Views.CellSettings.tipRight": "Set outer right border only", - "SSE.Views.CellSettings.tipTop": "Set outer top border only", - "SSE.Views.ChartDataDialog.errorInFormula": "There's an error in formula you entered.", - "SSE.Views.ChartDataDialog.errorInvalidReference": "The reference is not valid. Reference must be to an open worksheet.", - "SSE.Views.ChartDataDialog.errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "SSE.Views.ChartDataDialog.errorMaxRows": "The maximum number of data series per chart is 255.", - "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "The reference is not valid. References for titles, values, sizes, or data labels must be a single cell, row, or column.", - "SSE.Views.ChartDataDialog.errorNoValues": "To create a chart, the series must contain at least one value.", - "SSE.Views.ChartDataDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "SSE.Views.ChartDataDialog.textAdd": "Add", - "SSE.Views.ChartDataDialog.textCategory": "Horizontal (Category) Axis Labels", - "SSE.Views.ChartDataDialog.textData": "Chart data range", - "SSE.Views.ChartDataDialog.textDelete": "Remove", - "SSE.Views.ChartDataDialog.textDown": "Down", - "SSE.Views.ChartDataDialog.textEdit": "Edit", - "SSE.Views.ChartDataDialog.textInvalidRange": "Invalid cells range", - "SSE.Views.ChartDataDialog.textSelectData": "Select data", - "SSE.Views.ChartDataDialog.textSeries": "Legend Entries (Series)", - "SSE.Views.ChartDataDialog.textSwitch": "Switch Row/Column", - "SSE.Views.ChartDataDialog.textTitle": "Chart Data", - "SSE.Views.ChartDataDialog.textUp": "Up", - "SSE.Views.ChartDataRangeDialog.errorInFormula": "There's an error in formula you entered.", - "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "The reference is not valid. Reference must be to an open worksheet.", - "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "SSE.Views.ChartDataRangeDialog.errorMaxRows": "The maximum number of data series per chart is 255.", - "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "The reference is not valid. References for titles, values, sizes, or data labels must be a single cell, row, or column.", - "SSE.Views.ChartDataRangeDialog.errorNoValues": "To create a chart, the series must contain at least one value.", - "SSE.Views.ChartDataRangeDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Invalid cells range", - "SSE.Views.ChartDataRangeDialog.textSelectData": "Select data", - "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Axis label range", - "SSE.Views.ChartDataRangeDialog.txtChoose": "Choose range", - "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Series name", - "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Axis Labels", - "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Edit Series", - "SSE.Views.ChartDataRangeDialog.txtValues": "Values", - "SSE.Views.ChartDataRangeDialog.txtXValues": "X Values", - "SSE.Views.ChartDataRangeDialog.txtYValues": "Y Values", - "SSE.Views.ChartSettings.strLineWeight": "Line Weight", - "SSE.Views.ChartSettings.strSparkColor": "Color", - "SSE.Views.ChartSettings.strTemplate": "Template", - "SSE.Views.ChartSettings.textAdvanced": "Show advanced settings", - "SSE.Views.ChartSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", - "SSE.Views.ChartSettings.textChangeType": "Change type", - "SSE.Views.ChartSettings.textChartType": "Change Chart Type", - "SSE.Views.ChartSettings.textEditData": "Edit Data and Location", - "SSE.Views.ChartSettings.textFirstPoint": "First Point", - "SSE.Views.ChartSettings.textHeight": "Height", - "SSE.Views.ChartSettings.textHighPoint": "High Point", - "SSE.Views.ChartSettings.textKeepRatio": "Constant proportions", - "SSE.Views.ChartSettings.textLastPoint": "Last Point", - "SSE.Views.ChartSettings.textLowPoint": "Low Point", - "SSE.Views.ChartSettings.textMarkers": "Markers", - "SSE.Views.ChartSettings.textNegativePoint": "Negative Point", - "SSE.Views.ChartSettings.textRanges": "Data Range", - "SSE.Views.ChartSettings.textSelectData": "Select Data", - "SSE.Views.ChartSettings.textShow": "Show", - "SSE.Views.ChartSettings.textSize": "Size", - "SSE.Views.ChartSettings.textStyle": "Style", - "SSE.Views.ChartSettings.textType": "Type", - "SSE.Views.ChartSettings.textWidth": "Width", - "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERROR! The maximum number of points in series per chart is 4096.", - "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", - "SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "SSE.Views.ChartSettingsDlg.textAbsolute": "Don't move or size with cells", - "SSE.Views.ChartSettingsDlg.textAlt": "Alternative Text", - "SSE.Views.ChartSettingsDlg.textAltDescription": "Description", - "SSE.Views.ChartSettingsDlg.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", - "SSE.Views.ChartSettingsDlg.textAltTitle": "Title", - "SSE.Views.ChartSettingsDlg.textAuto": "Auto", - "SSE.Views.ChartSettingsDlg.textAutoEach": "Auto for Each", - "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses", - "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options", - "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position", - "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings", - "SSE.Views.ChartSettingsDlg.textAxisTitle": "Title", - "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks", - "SSE.Views.ChartSettingsDlg.textBillions": "Billions", - "SSE.Views.ChartSettingsDlg.textBottom": "Bottom", - "SSE.Views.ChartSettingsDlg.textCategoryName": "Category Name", - "SSE.Views.ChartSettingsDlg.textCenter": "Center", - "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &
    Chart Legend", - "SSE.Views.ChartSettingsDlg.textChartTitle": "Chart Title", - "SSE.Views.ChartSettingsDlg.textCross": "Cross", - "SSE.Views.ChartSettingsDlg.textCustom": "Custom", - "SSE.Views.ChartSettingsDlg.textDataColumns": "in columns", - "SSE.Views.ChartSettingsDlg.textDataLabels": "Data Labels", - "SSE.Views.ChartSettingsDlg.textDataRows": "in rows", - "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Display Legend", - "SSE.Views.ChartSettingsDlg.textEmptyCells": "Hidden and Empty cells", - "SSE.Views.ChartSettingsDlg.textEmptyLine": "Connect data points with line", - "SSE.Views.ChartSettingsDlg.textFit": "Fit to Width", - "SSE.Views.ChartSettingsDlg.textFixed": "Fixed", - "SSE.Views.ChartSettingsDlg.textFormat": "Label format", - "SSE.Views.ChartSettingsDlg.textGaps": "Gaps", - "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", - "SSE.Views.ChartSettingsDlg.textGroup": "Group Sparkline", - "SSE.Views.ChartSettingsDlg.textHide": "Hide", - "SSE.Views.ChartSettingsDlg.textHideAxis": "Hide axis", - "SSE.Views.ChartSettingsDlg.textHigh": "High", - "SSE.Views.ChartSettingsDlg.textHorAxis": "Horizontal Axis", - "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Secondary Horizontal Axis", - "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", - "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", - "SSE.Views.ChartSettingsDlg.textHundreds": "Hundreds", - "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", - "SSE.Views.ChartSettingsDlg.textIn": "In", - "SSE.Views.ChartSettingsDlg.textInnerBottom": "Inner Bottom", - "SSE.Views.ChartSettingsDlg.textInnerTop": "Inner Top", - "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.ChartSettingsDlg.textLabelDist": "Axis Label Distance", - "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval between Labels ", - "SSE.Views.ChartSettingsDlg.textLabelOptions": "Label Options", - "SSE.Views.ChartSettingsDlg.textLabelPos": "Label Position", - "SSE.Views.ChartSettingsDlg.textLayout": "Layout", - "SSE.Views.ChartSettingsDlg.textLeft": "Left", - "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left Overlay", - "SSE.Views.ChartSettingsDlg.textLegendBottom": "Bottom", - "SSE.Views.ChartSettingsDlg.textLegendLeft": "Left", - "SSE.Views.ChartSettingsDlg.textLegendPos": "Legend", - "SSE.Views.ChartSettingsDlg.textLegendRight": "Right", - "SSE.Views.ChartSettingsDlg.textLegendTop": "Top", - "SSE.Views.ChartSettingsDlg.textLines": "Lines ", - "SSE.Views.ChartSettingsDlg.textLocationRange": "Location Range", - "SSE.Views.ChartSettingsDlg.textLow": "Low", - "SSE.Views.ChartSettingsDlg.textMajor": "Major", - "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major and Minor", - "SSE.Views.ChartSettingsDlg.textMajorType": "Major Type", - "SSE.Views.ChartSettingsDlg.textManual": "Manual", - "SSE.Views.ChartSettingsDlg.textMarkers": "Markers", - "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval between Marks", - "SSE.Views.ChartSettingsDlg.textMaxValue": "Maximum Value", - "SSE.Views.ChartSettingsDlg.textMillions": "Millions", - "SSE.Views.ChartSettingsDlg.textMinor": "Minor", - "SSE.Views.ChartSettingsDlg.textMinorType": "Minor Type", - "SSE.Views.ChartSettingsDlg.textMinValue": "Minimum Value", - "SSE.Views.ChartSettingsDlg.textNextToAxis": "Next to axis", - "SSE.Views.ChartSettingsDlg.textNone": "None", - "SSE.Views.ChartSettingsDlg.textNoOverlay": "No Overlay", - "SSE.Views.ChartSettingsDlg.textOneCell": "Move but don't size with cells", - "SSE.Views.ChartSettingsDlg.textOnTickMarks": "On Tick Marks", - "SSE.Views.ChartSettingsDlg.textOut": "Out", - "SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top", - "SSE.Views.ChartSettingsDlg.textOverlay": "Overlay", - "SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order", - "SSE.Views.ChartSettingsDlg.textReverseOrder": "Reverse order", - "SSE.Views.ChartSettingsDlg.textRight": "Right", - "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay", - "SSE.Views.ChartSettingsDlg.textRotated": "Rotated", - "SSE.Views.ChartSettingsDlg.textSameAll": "Same for All", - "SSE.Views.ChartSettingsDlg.textSelectData": "Select Data", - "SSE.Views.ChartSettingsDlg.textSeparator": "Data Labels Separator", - "SSE.Views.ChartSettingsDlg.textSeriesName": "Series Name", - "SSE.Views.ChartSettingsDlg.textShow": "Show", - "SSE.Views.ChartSettingsDlg.textShowBorders": "Display chart borders", - "SSE.Views.ChartSettingsDlg.textShowData": "Show data in hidden rows and columns", - "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Show empty cells as", - "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Show Axis", - "SSE.Views.ChartSettingsDlg.textShowValues": "Display chart values", - "SSE.Views.ChartSettingsDlg.textSingle": "Single Sparkline", - "SSE.Views.ChartSettingsDlg.textSmooth": "Smooth", - "SSE.Views.ChartSettingsDlg.textSnap": "Cell Snapping", - "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges", - "SSE.Views.ChartSettingsDlg.textStraight": "Straight", - "SSE.Views.ChartSettingsDlg.textStyle": "Style", - "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", - "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", - "SSE.Views.ChartSettingsDlg.textThousands": "Thousands", - "SSE.Views.ChartSettingsDlg.textTickOptions": "Tick Options", - "SSE.Views.ChartSettingsDlg.textTitle": "Chart - Advanced Settings", - "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Advanced Settings", - "SSE.Views.ChartSettingsDlg.textTop": "Top", - "SSE.Views.ChartSettingsDlg.textTrillions": "Trillions", - "SSE.Views.ChartSettingsDlg.textTwoCell": "Move and size with cells", - "SSE.Views.ChartSettingsDlg.textType": "Type", - "SSE.Views.ChartSettingsDlg.textTypeData": "Type & Data", - "SSE.Views.ChartSettingsDlg.textUnits": "Display Units", - "SSE.Views.ChartSettingsDlg.textValue": "Value", - "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis", - "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Secondary Vertical Axis", - "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title", - "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title", - "SSE.Views.ChartSettingsDlg.textZero": "Zero", - "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", - "SSE.Views.ChartTypeDialog.errorComboSeries": "To create a combination chart, select at least two series of data.", - "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "The selected chart type requires the secondary axis that an existing chart is using. Select another chart type.", - "SSE.Views.ChartTypeDialog.textSecondary": "Secondary Axis", - "SSE.Views.ChartTypeDialog.textSeries": "Series", - "SSE.Views.ChartTypeDialog.textStyle": "Style", - "SSE.Views.ChartTypeDialog.textTitle": "Chart Type", - "SSE.Views.ChartTypeDialog.textType": "Type", - "SSE.Views.CreatePivotDialog.textDataRange": "Source data range", - "SSE.Views.CreatePivotDialog.textDestination": "Choose where to place the table", - "SSE.Views.CreatePivotDialog.textExist": "Existing worksheet", - "SSE.Views.CreatePivotDialog.textInvalidRange": "Invalid cells range", - "SSE.Views.CreatePivotDialog.textNew": "New worksheet", - "SSE.Views.CreatePivotDialog.textSelectData": "Select data", - "SSE.Views.CreatePivotDialog.textTitle": "Create Pivot Table", - "SSE.Views.CreatePivotDialog.txtEmpty": "This field is required", - "SSE.Views.CreateSparklineDialog.textDataRange": "Source data range", - "SSE.Views.CreateSparklineDialog.textDestination": "Choose, where to place the sparklines", - "SSE.Views.CreateSparklineDialog.textInvalidRange": "Invalid cells range", - "SSE.Views.CreateSparklineDialog.textSelectData": "Select data", - "SSE.Views.CreateSparklineDialog.textTitle": "Create Sparklines", - "SSE.Views.CreateSparklineDialog.txtEmpty": "This field is required", - "SSE.Views.DataTab.capBtnGroup": "Group", - "SSE.Views.DataTab.capBtnTextCustomSort": "Custom Sort", - "SSE.Views.DataTab.capBtnTextDataValidation": "Data Validation", - "SSE.Views.DataTab.capBtnTextRemDuplicates": "Remove Duplicates", - "SSE.Views.DataTab.capBtnTextToCol": "Text to Columns", - "SSE.Views.DataTab.capBtnUngroup": "Ungroup", - "SSE.Views.DataTab.capDataFromText": "From Text/CSV", - "SSE.Views.DataTab.mniFromFile": "Get Data from File", - "SSE.Views.DataTab.mniFromUrl": "Get Data from URL", - "SSE.Views.DataTab.textBelow": "Summary rows below detail", - "SSE.Views.DataTab.textClear": "Clear outline", - "SSE.Views.DataTab.textColumns": "Ungroup columns", - "SSE.Views.DataTab.textGroupColumns": "Group columns", - "SSE.Views.DataTab.textGroupRows": "Group rows", - "SSE.Views.DataTab.textRightOf": "Summary columns to right of detail", - "SSE.Views.DataTab.textRows": "Ungroup rows", - "SSE.Views.DataTab.tipCustomSort": "Custom sort", - "SSE.Views.DataTab.tipDataFromText": "Get data from Text/CSV file", - "SSE.Views.DataTab.tipDataValidation": "Data validation", - "SSE.Views.DataTab.tipGroup": "Group range of cells", - "SSE.Views.DataTab.tipRemDuplicates": "Remove duplicate rows from a sheet", - "SSE.Views.DataTab.tipToColumns": "Separate cell text into columns", - "SSE.Views.DataTab.tipUngroup": "Ungroup range of cells", - "SSE.Views.DataValidationDialog.errorFormula": "The value currently evaluates to an error. Do you want to continue?", - "SSE.Views.DataValidationDialog.errorInvalid": "The value you entered for the field \"{0}\" is invalid.", - "SSE.Views.DataValidationDialog.errorInvalidDate": "The date you entered for the field \"{0}\" is invalid.", - "SSE.Views.DataValidationDialog.errorInvalidList": "The list source must be a delimited list, or a reference to single row or column.", - "SSE.Views.DataValidationDialog.errorInvalidTime": "The time you entered for the field \"{0}\" is invalid.", - "SSE.Views.DataValidationDialog.errorMinGreaterMax": "The \"{1}\" field must be greater than or equal to the \"{0}\" field.", - "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "You must enter a value in both field \"{0}\" and field \"{1}\".", - "SSE.Views.DataValidationDialog.errorMustEnterValue": "You must enter a value in field \"{0}\".", - "SSE.Views.DataValidationDialog.errorNamedRange": "A named range you specified cannot be found.", - "SSE.Views.DataValidationDialog.errorNegativeTextLength": "Negative values cannot be used in conditions \"{0}\".", - "SSE.Views.DataValidationDialog.errorNotNumeric": "The field \"{0}\" must be a numeric value, numeric expression, or refer to a cell containing a numeric value.", - "SSE.Views.DataValidationDialog.strError": "Error Alert", - "SSE.Views.DataValidationDialog.strInput": "Input Message", - "SSE.Views.DataValidationDialog.strSettings": "Settings", - "SSE.Views.DataValidationDialog.textAlert": "Alert", - "SSE.Views.DataValidationDialog.textAllow": "Allow", - "SSE.Views.DataValidationDialog.textApply": "Apply these changes to all other cells with the same settings", - "SSE.Views.DataValidationDialog.textCellSelected": "When cell is selected, show this input message", - "SSE.Views.DataValidationDialog.textCompare": "Compare to", - "SSE.Views.DataValidationDialog.textData": "Data", - "SSE.Views.DataValidationDialog.textEndDate": "End Date", - "SSE.Views.DataValidationDialog.textEndTime": "End Time", - "SSE.Views.DataValidationDialog.textError": "Error Message", - "SSE.Views.DataValidationDialog.textFormula": "Formula", - "SSE.Views.DataValidationDialog.textIgnore": "Ignore blank", - "SSE.Views.DataValidationDialog.textInput": "Input Message", - "SSE.Views.DataValidationDialog.textMax": "Maximum", - "SSE.Views.DataValidationDialog.textMessage": "Message", - "SSE.Views.DataValidationDialog.textMin": "Minimum", - "SSE.Views.DataValidationDialog.textSelectData": "Select data", - "SSE.Views.DataValidationDialog.textShowDropDown": "Show drop-down list in cell", - "SSE.Views.DataValidationDialog.textShowError": "Show error alert after invalid data is entered", - "SSE.Views.DataValidationDialog.textShowInput": "Show input message when cell is selected", - "SSE.Views.DataValidationDialog.textSource": "Source", - "SSE.Views.DataValidationDialog.textStartDate": "Start Date", - "SSE.Views.DataValidationDialog.textStartTime": "Start Time", - "SSE.Views.DataValidationDialog.textStop": "Stop", - "SSE.Views.DataValidationDialog.textStyle": "Style", - "SSE.Views.DataValidationDialog.textTitle": "Title", - "SSE.Views.DataValidationDialog.textUserEnters": "When user enters invalid data, show this error alert", - "SSE.Views.DataValidationDialog.txtAny": "Any value", - "SSE.Views.DataValidationDialog.txtBetween": "between", - "SSE.Views.DataValidationDialog.txtDate": "Date", - "SSE.Views.DataValidationDialog.txtDecimal": "Decimal", - "SSE.Views.DataValidationDialog.txtElTime": "Elapsed time", - "SSE.Views.DataValidationDialog.txtEndDate": "End date", - "SSE.Views.DataValidationDialog.txtEndTime": "End time", - "SSE.Views.DataValidationDialog.txtEqual": "equals", - "SSE.Views.DataValidationDialog.txtGreaterThan": "greater than", - "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "greater than or equal to", - "SSE.Views.DataValidationDialog.txtLength": "Length", - "SSE.Views.DataValidationDialog.txtLessThan": "less than", - "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "less than or equal to", - "SSE.Views.DataValidationDialog.txtList": "List", - "SSE.Views.DataValidationDialog.txtNotBetween": "not between", - "SSE.Views.DataValidationDialog.txtNotEqual": "does not equal", - "SSE.Views.DataValidationDialog.txtOther": "Other", - "SSE.Views.DataValidationDialog.txtStartDate": "Start date", - "SSE.Views.DataValidationDialog.txtStartTime": "Start time", - "SSE.Views.DataValidationDialog.txtTextLength": "Text length", - "SSE.Views.DataValidationDialog.txtTime": "Time", - "SSE.Views.DataValidationDialog.txtWhole": "Whole number", - "SSE.Views.DigitalFilterDialog.capAnd": "And", - "SSE.Views.DigitalFilterDialog.capCondition1": "equals", - "SSE.Views.DigitalFilterDialog.capCondition10": "does not end with", - "SSE.Views.DigitalFilterDialog.capCondition11": "contains", - "SSE.Views.DigitalFilterDialog.capCondition12": "does not contain", - "SSE.Views.DigitalFilterDialog.capCondition2": "does not equal", - "SSE.Views.DigitalFilterDialog.capCondition3": "is greater than", - "SSE.Views.DigitalFilterDialog.capCondition4": "is greater than or equal to", - "SSE.Views.DigitalFilterDialog.capCondition5": "is less than", - "SSE.Views.DigitalFilterDialog.capCondition6": "is less than or equal to", - "SSE.Views.DigitalFilterDialog.capCondition7": "begins with", - "SSE.Views.DigitalFilterDialog.capCondition8": "does not begin with", - "SSE.Views.DigitalFilterDialog.capCondition9": "ends with", - "SSE.Views.DigitalFilterDialog.capOr": "Or", - "SSE.Views.DigitalFilterDialog.textNoFilter": "no filter", - "SSE.Views.DigitalFilterDialog.textShowRows": "Show rows where", - "SSE.Views.DigitalFilterDialog.textUse1": "Use ? to present any single character", - "SSE.Views.DigitalFilterDialog.textUse2": "Use * to present any series of character", - "SSE.Views.DigitalFilterDialog.txtTitle": "Custom Filter", - "SSE.Views.DocumentHolder.advancedImgText": "Image Advanced Settings", - "SSE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", - "SSE.Views.DocumentHolder.advancedSlicerText": "Slicer Advanced Settings", - "SSE.Views.DocumentHolder.bottomCellText": "Align Bottom", - "SSE.Views.DocumentHolder.bulletsText": "Bullets and Numbering", - "SSE.Views.DocumentHolder.centerCellText": "Align Middle", - "SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings", - "SSE.Views.DocumentHolder.deleteColumnText": "Column", - "SSE.Views.DocumentHolder.deleteRowText": "Row", - "SSE.Views.DocumentHolder.deleteTableText": "Table", - "SSE.Views.DocumentHolder.direct270Text": "Rotate Text Up", - "SSE.Views.DocumentHolder.direct90Text": "Rotate Text Down", - "SSE.Views.DocumentHolder.directHText": "Horizontal", - "SSE.Views.DocumentHolder.directionText": "Text Direction", - "SSE.Views.DocumentHolder.editChartText": "Edit Data", - "SSE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", - "SSE.Views.DocumentHolder.insertColumnLeftText": "Column Left", - "SSE.Views.DocumentHolder.insertColumnRightText": "Column Right", - "SSE.Views.DocumentHolder.insertRowAboveText": "Row Above", - "SSE.Views.DocumentHolder.insertRowBelowText": "Row Below", - "SSE.Views.DocumentHolder.originalSizeText": "Actual Size", - "SSE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", - "SSE.Views.DocumentHolder.selectColumnText": "Entire Column", - "SSE.Views.DocumentHolder.selectDataText": "Column Data", - "SSE.Views.DocumentHolder.selectRowText": "Row", - "SSE.Views.DocumentHolder.selectTableText": "Table", - "SSE.Views.DocumentHolder.strDelete": "Remove Signature", - "SSE.Views.DocumentHolder.strDetails": "Signature Details", - "SSE.Views.DocumentHolder.strSetup": "Signature Setup", - "SSE.Views.DocumentHolder.strSign": "Sign", - "SSE.Views.DocumentHolder.textAlign": "Align", - "SSE.Views.DocumentHolder.textArrange": "Arrange", - "SSE.Views.DocumentHolder.textArrangeBack": "Send to Background", - "SSE.Views.DocumentHolder.textArrangeBackward": "Send Backward", - "SSE.Views.DocumentHolder.textArrangeForward": "Bring Forward", - "SSE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground", - "SSE.Views.DocumentHolder.textAverage": "Average", - "SSE.Views.DocumentHolder.textBullets": "Bullets", - "SSE.Views.DocumentHolder.textCount": "Count", - "SSE.Views.DocumentHolder.textCrop": "Crop", - "SSE.Views.DocumentHolder.textCropFill": "Fill", - "SSE.Views.DocumentHolder.textCropFit": "Fit", - "SSE.Views.DocumentHolder.textEntriesList": "Select from drop-down list", - "SSE.Views.DocumentHolder.textFlipH": "Flip Horizontally", - "SSE.Views.DocumentHolder.textFlipV": "Flip Vertically", - "SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes", - "SSE.Views.DocumentHolder.textFromFile": "From File", - "SSE.Views.DocumentHolder.textFromStorage": "From Storage", - "SSE.Views.DocumentHolder.textFromUrl": "From URL", - "SSE.Views.DocumentHolder.textListSettings": "List Settings", - "SSE.Views.DocumentHolder.textMacro": "Assign Macro", - "SSE.Views.DocumentHolder.textMax": "Max", - "SSE.Views.DocumentHolder.textMin": "Min", - "SSE.Views.DocumentHolder.textMore": "More functions", - "SSE.Views.DocumentHolder.textMoreFormats": "More formats", - "SSE.Views.DocumentHolder.textNone": "None", - "SSE.Views.DocumentHolder.textNumbering": "Numbering", - "SSE.Views.DocumentHolder.textReplace": "Replace image", - "SSE.Views.DocumentHolder.textRotate": "Rotate", - "SSE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise", - "SSE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise", - "SSE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom", - "SSE.Views.DocumentHolder.textShapeAlignCenter": "Align Center", - "SSE.Views.DocumentHolder.textShapeAlignLeft": "Align Left", - "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Align Middle", - "SSE.Views.DocumentHolder.textShapeAlignRight": "Align Right", - "SSE.Views.DocumentHolder.textShapeAlignTop": "Align Top", - "SSE.Views.DocumentHolder.textStdDev": "StdDev", - "SSE.Views.DocumentHolder.textSum": "Sum", - "SSE.Views.DocumentHolder.textUndo": "Undo", - "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", - "SSE.Views.DocumentHolder.textVar": "Var", - "SSE.Views.DocumentHolder.topCellText": "Align Top", - "SSE.Views.DocumentHolder.txtAccounting": "Accounting", - "SSE.Views.DocumentHolder.txtAddComment": "Add Comment", - "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name", - "SSE.Views.DocumentHolder.txtArrange": "Arrange", - "SSE.Views.DocumentHolder.txtAscending": "Ascending", - "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Auto Fit Column Width", - "SSE.Views.DocumentHolder.txtAutoRowHeight": "Auto Fit Row Height", - "SSE.Views.DocumentHolder.txtClear": "Clear", - "SSE.Views.DocumentHolder.txtClearAll": "All", - "SSE.Views.DocumentHolder.txtClearComments": "Comments", - "SSE.Views.DocumentHolder.txtClearFormat": "Format", - "SSE.Views.DocumentHolder.txtClearHyper": "Hyperlinks", - "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Clear Selected Sparkline Groups", - "SSE.Views.DocumentHolder.txtClearSparklines": "Clear Selected Sparklines", - "SSE.Views.DocumentHolder.txtClearText": "Text", - "SSE.Views.DocumentHolder.txtColumn": "Entire column", - "SSE.Views.DocumentHolder.txtColumnWidth": "Set Column Width", - "SSE.Views.DocumentHolder.txtCopy": "Copy", - "SSE.Views.DocumentHolder.txtCurrency": "Currency", - "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Custom Column Width", - "SSE.Views.DocumentHolder.txtCustomRowHeight": "Custom Row Height", - "SSE.Views.DocumentHolder.txtCustomSort": "Custom sort", - "SSE.Views.DocumentHolder.txtCut": "Cut", - "SSE.Views.DocumentHolder.txtDate": "Date", - "SSE.Views.DocumentHolder.txtDelete": "Delete", - "SSE.Views.DocumentHolder.txtDescending": "Descending", - "SSE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally", - "SSE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically", - "SSE.Views.DocumentHolder.txtEditComment": "Edit Comment", - "SSE.Views.DocumentHolder.txtFilter": "Filter", - "SSE.Views.DocumentHolder.txtFilterCellColor": "Filter by cell's color", - "SSE.Views.DocumentHolder.txtFilterFontColor": "Filter by font color", - "SSE.Views.DocumentHolder.txtFilterValue": "Filter by Selected cell's value", - "SSE.Views.DocumentHolder.txtFormula": "Insert Function", - "SSE.Views.DocumentHolder.txtFraction": "Fraction", - "SSE.Views.DocumentHolder.txtGeneral": "General", - "SSE.Views.DocumentHolder.txtGroup": "Group", - "SSE.Views.DocumentHolder.txtHide": "Hide", - "SSE.Views.DocumentHolder.txtInsert": "Insert", - "SSE.Views.DocumentHolder.txtInsHyperlink": "Hyperlink", - "SSE.Views.DocumentHolder.txtNumber": "Number", - "SSE.Views.DocumentHolder.txtNumFormat": "Number Format", - "SSE.Views.DocumentHolder.txtPaste": "Paste", - "SSE.Views.DocumentHolder.txtPercentage": "Percentage", - "SSE.Views.DocumentHolder.txtReapply": "Reapply", - "SSE.Views.DocumentHolder.txtRow": "Entire row", - "SSE.Views.DocumentHolder.txtRowHeight": "Set Row Height", - "SSE.Views.DocumentHolder.txtScientific": "Scientific", - "SSE.Views.DocumentHolder.txtSelect": "Select", - "SSE.Views.DocumentHolder.txtShiftDown": "Shift cells down", - "SSE.Views.DocumentHolder.txtShiftLeft": "Shift cells left", - "SSE.Views.DocumentHolder.txtShiftRight": "Shift cells right", - "SSE.Views.DocumentHolder.txtShiftUp": "Shift cells up", - "SSE.Views.DocumentHolder.txtShow": "Show", - "SSE.Views.DocumentHolder.txtShowComment": "Show Comment", - "SSE.Views.DocumentHolder.txtSort": "Sort", - "SSE.Views.DocumentHolder.txtSortCellColor": "Selected Cell Color on top", - "SSE.Views.DocumentHolder.txtSortFontColor": "Selected Font Color on top", - "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", - "SSE.Views.DocumentHolder.txtText": "Text", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Paragraph Advanced Settings", - "SSE.Views.DocumentHolder.txtTime": "Time", - "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", - "SSE.Views.DocumentHolder.txtWidth": "Width", - "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", - "SSE.Views.FieldSettingsDialog.strLayout": "Layout", - "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", - "SSE.Views.FieldSettingsDialog.textReport": "Report Form", - "SSE.Views.FieldSettingsDialog.textTitle": "Field Settings", - "SSE.Views.FieldSettingsDialog.txtAverage": "Average", - "SSE.Views.FieldSettingsDialog.txtBlank": "Insert blank rows after each item", - "SSE.Views.FieldSettingsDialog.txtBottom": "Show at bottom of group", - "SSE.Views.FieldSettingsDialog.txtCompact": "Compact", - "SSE.Views.FieldSettingsDialog.txtCount": "Count", - "SSE.Views.FieldSettingsDialog.txtCountNums": "Count Numbers", - "SSE.Views.FieldSettingsDialog.txtCustomName": "Custom name", - "SSE.Views.FieldSettingsDialog.txtEmpty": "Show items with no data", - "SSE.Views.FieldSettingsDialog.txtMax": "Max", - "SSE.Views.FieldSettingsDialog.txtMin": "Min", - "SSE.Views.FieldSettingsDialog.txtOutline": "Outline", - "SSE.Views.FieldSettingsDialog.txtProduct": "Product", - "SSE.Views.FieldSettingsDialog.txtRepeat": "Repeat items labels at each row", - "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Show subtotals", - "SSE.Views.FieldSettingsDialog.txtSourceName": "Source name:", - "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", - "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", - "SSE.Views.FieldSettingsDialog.txtSum": "Sum", - "SSE.Views.FieldSettingsDialog.txtSummarize": "Functions for Subtotals", - "SSE.Views.FieldSettingsDialog.txtTabular": "Tabular", - "SSE.Views.FieldSettingsDialog.txtTop": "Show at top of group", - "SSE.Views.FieldSettingsDialog.txtVar": "Var", - "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", - "SSE.Views.FileMenu.btnBackCaption": "Open file location", - "SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", - "SSE.Views.FileMenu.btnCreateNewCaption": "Create New", - "SSE.Views.FileMenu.btnDownloadCaption": "Download as...", - "SSE.Views.FileMenu.btnHelpCaption": "Help...", - "SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Info...", - "SSE.Views.FileMenu.btnPrintCaption": "Print", - "SSE.Views.FileMenu.btnProtectCaption": "Protect", - "SSE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", - "SSE.Views.FileMenu.btnRenameCaption": "Rename...", - "SSE.Views.FileMenu.btnReturnCaption": "Back to Spreadsheet", - "SSE.Views.FileMenu.btnRightsCaption": "Access Rights...", - "SSE.Views.FileMenu.btnSaveAsCaption": "Save as", - "SSE.Views.FileMenu.btnSaveCaption": "Save", - "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Save Copy as...", - "SSE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", - "SSE.Views.FileMenu.btnToEditCaption": "Edit Spreadsheet", - "SSE.Views.FileMenuPanels.CreateNew.fromBlankText": "From Blank", - "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "From Template", - "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Create a new blank spreadsheet which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a spreadsheet of a certain type or purpose where some styles have already been pre-applied.", - "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "New Spreadsheet", - "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", - "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", - "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment", - "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created", - "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By", - "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified", - "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner", - "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", - "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", - "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject", - "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title", - "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded", - "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", - "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Apply", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Turn on autorecover", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Turn on autosave", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing Mode", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimal separator", - "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", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Turn on display of the comments", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Macros Settings", - "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.strR1C1": "Turn on R1C1 style", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Turn on display of the resolved comments", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separator", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Interface theme", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Thousands separator", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unit of Measurement", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Use separators based on regional settings", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Default Zoom Value", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Every 10 Minutes", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Every 30 Minutes", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Every 5 Minutes", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Every Hour", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Autorecover", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Autosave", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Disabled", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Saving intermediate versions", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Every Minute", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Reference Style", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Belarusian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgarian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalan", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Default cache mode", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Czech", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danish", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "German", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Greek", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanish", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finnish", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "French", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hungarian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inch", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japanese", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Korean", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commenting Display", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Latvian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "as OS X", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norwegian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Dutch", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polish", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portuguese (Brazil)", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguese (Portugal)", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Enable All", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Enable all macros without a notification", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovak", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Slovenian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Disable All", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Disable all macros without a notification", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Swedish", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turkish", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukrainian", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamese", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Show Notification", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Disable all macros with a notification", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinese", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Apply", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Dictionary language", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignore words with numbers", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "AutoCorrect options...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Proofing", - "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning", - "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "With password", - "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protect Spreadsheet", - "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "With signature", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit spreadsheet", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing will remove signatures from the spreadsheet.
    Continue?", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "This spreadsheet has been protected by password", - "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "This spreadsheet needs to be signed.", - "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Valid signatures have been added to the spreadsheet. The spreadsheet is protected from editing.", - "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Some of the digital signatures in spreadsheet are invalid or could not be verified. The spreadsheet is protected from editing.", - "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures", - "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", - "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Page Settings", - "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Spell checking", - "SSE.Views.FormatRulesEditDlg.fillColor": "Fill color", - "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Warning", - "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Color scale", - "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Color scale", - "SSE.Views.FormatRulesEditDlg.textAllBorders": "All Borders", - "SSE.Views.FormatRulesEditDlg.textAppearance": "Bar Appearance", - "SSE.Views.FormatRulesEditDlg.textApply": "Apply to Range", - "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatic", - "SSE.Views.FormatRulesEditDlg.textAxis": "Axis", - "SSE.Views.FormatRulesEditDlg.textBarDirection": "Bar Direction", - "SSE.Views.FormatRulesEditDlg.textBold": "Bold", - "SSE.Views.FormatRulesEditDlg.textBorder": "Border", - "SSE.Views.FormatRulesEditDlg.textBordersColor": "Borders Color", - "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Border Style", - "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bottom Borders", - "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Cannot add the conditional formatting.", - "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Cell midpoint", - "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Inside Vertical Borders", - "SSE.Views.FormatRulesEditDlg.textClear": "Clear", - "SSE.Views.FormatRulesEditDlg.textColor": "Text color", - "SSE.Views.FormatRulesEditDlg.textContext": "Context", - "SSE.Views.FormatRulesEditDlg.textCustom": "Custom", - "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonal Down Border", - "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonal Up Border", - "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Enter a valid formula.", - "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "The formula you entered does not evaluate to a number, date, time or string.", - "SSE.Views.FormatRulesEditDlg.textEmptyText": "Enter a value.", - "SSE.Views.FormatRulesEditDlg.textEmptyValue": "The value you entered is not a valid number, date, time or string.", - "SSE.Views.FormatRulesEditDlg.textErrorGreater": "The value for the {0} must be greater than the value for the {1}.", - "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Enter a number between {0} and {1}.", - "SSE.Views.FormatRulesEditDlg.textFill": "Fill", - "SSE.Views.FormatRulesEditDlg.textFormat": "Format", - "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", - "SSE.Views.FormatRulesEditDlg.textGradient": "Gradient", - "SSE.Views.FormatRulesEditDlg.textIconLabel": "when {0} {1} and", - "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "when {0} {1}", - "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "when value is", - "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "One or more icon data ranges overlap.
    Adjust icon data range values so that the ranges do not overlap.", - "SSE.Views.FormatRulesEditDlg.textIconStyle": "Icon Style", - "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Inside Borders", - "SSE.Views.FormatRulesEditDlg.textInvalid": "Invalid data range.", - "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.FormatRulesEditDlg.textItalic": "Italic", - "SSE.Views.FormatRulesEditDlg.textItem": "Item", - "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Left to right", - "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Left Borders", - "SSE.Views.FormatRulesEditDlg.textLongBar": "longest bar", - "SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum", - "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maxpoint", - "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Inside Horizontal Borders", - "SSE.Views.FormatRulesEditDlg.textMidpoint": "Midpoint", - "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", - "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minpoint", - "SSE.Views.FormatRulesEditDlg.textNegative": "Negative", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Add New Custom Color", - "SSE.Views.FormatRulesEditDlg.textNoBorders": "No Borders", - "SSE.Views.FormatRulesEditDlg.textNone": "None", - "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "One or more of the specified values is not a valid percentage.", - "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "The specified {0} value is not a valid percentage.", - "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "One or more of the specified values is not a valid percentile.", - "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "The specified {0} value is not a valid percentile.", - "SSE.Views.FormatRulesEditDlg.textOutBorders": "Outside Borders", - "SSE.Views.FormatRulesEditDlg.textPercent": "Percent", - "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentile", - "SSE.Views.FormatRulesEditDlg.textPosition": "Position", - "SSE.Views.FormatRulesEditDlg.textPositive": "Positive", - "SSE.Views.FormatRulesEditDlg.textPresets": "Presets", - "SSE.Views.FormatRulesEditDlg.textPreview": "Preview", - "SSE.Views.FormatRulesEditDlg.textRelativeRef": "You cannot use relative references in conditional formatting criteria for color scales, data bars, and icon sets.", - "SSE.Views.FormatRulesEditDlg.textReverse": "Reverse Icons Order", - "SSE.Views.FormatRulesEditDlg.textRight2Left": "Right to left", - "SSE.Views.FormatRulesEditDlg.textRightBorders": "Right Borders", - "SSE.Views.FormatRulesEditDlg.textRule": "Rule", - "SSE.Views.FormatRulesEditDlg.textSameAs": "Same as positive", - "SSE.Views.FormatRulesEditDlg.textSelectData": "Select Data", - "SSE.Views.FormatRulesEditDlg.textShortBar": "shortest bar", - "SSE.Views.FormatRulesEditDlg.textShowBar": "Show bar only", - "SSE.Views.FormatRulesEditDlg.textShowIcon": "Show icon only", - "SSE.Views.FormatRulesEditDlg.textSingleRef": "This type of reference cannot be used in a conditional formatting formula.
    Change the reference to a single cell, or use the reference with a worksheet function, such as =SUM(A1:B5).", - "SSE.Views.FormatRulesEditDlg.textSolid": "Solid", - "SSE.Views.FormatRulesEditDlg.textStrikeout": "Strikeout", - "SSE.Views.FormatRulesEditDlg.textSubscript": "Subscript", - "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superscript", - "SSE.Views.FormatRulesEditDlg.textTopBorders": "Top Borders", - "SSE.Views.FormatRulesEditDlg.textUnderline": "Underline", - "SSE.Views.FormatRulesEditDlg.tipBorders": "Borders", - "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Number Format", - "SSE.Views.FormatRulesEditDlg.txtAccounting": "Accounting", - "SSE.Views.FormatRulesEditDlg.txtCurrency": "Currency", - "SSE.Views.FormatRulesEditDlg.txtDate": "Date", - "SSE.Views.FormatRulesEditDlg.txtEmpty": "This field is required", - "SSE.Views.FormatRulesEditDlg.txtFraction": "Fraction", - "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", - "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "No Icon", - "SSE.Views.FormatRulesEditDlg.txtNumber": "Number", - "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentage", - "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientific", - "SSE.Views.FormatRulesEditDlg.txtText": "Text", - "SSE.Views.FormatRulesEditDlg.txtTime": "Time", - "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edit Formatting Rule", - "SSE.Views.FormatRulesEditDlg.txtTitleNew": "New Formatting Rule", - "SSE.Views.FormatRulesManagerDlg.guestText": "Guest", - "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std dev above average", - "SSE.Views.FormatRulesManagerDlg.text1Below": "1 std dev below average", - "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std dev above average", - "SSE.Views.FormatRulesManagerDlg.text2Below": "2 std dev below average", - "SSE.Views.FormatRulesManagerDlg.text3Above": "3 std dev above average", - "SSE.Views.FormatRulesManagerDlg.text3Below": "3 std dev below average", - "SSE.Views.FormatRulesManagerDlg.textAbove": "Above average", - "SSE.Views.FormatRulesManagerDlg.textApply": "Apply to", - "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Cell value begins with", - "SSE.Views.FormatRulesManagerDlg.textBelow": "Below average", - "SSE.Views.FormatRulesManagerDlg.textBetween": "is between {0} and {1}", - "SSE.Views.FormatRulesManagerDlg.textCellValue": "Cell value", - "SSE.Views.FormatRulesManagerDlg.textColorScale": "Graded color scale", - "SSE.Views.FormatRulesManagerDlg.textContains": "Cell value contains", - "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Cell contains a blank value", - "SSE.Views.FormatRulesManagerDlg.textContainsError": "Cell contains an error", - "SSE.Views.FormatRulesManagerDlg.textDelete": "Delete", - "SSE.Views.FormatRulesManagerDlg.textDown": "Move rule down", - "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplicate values", - "SSE.Views.FormatRulesManagerDlg.textEdit": "Edit", - "SSE.Views.FormatRulesManagerDlg.textEnds": "Cell value ends with", - "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Equal to or above average", - "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Equal to or below average", - "SSE.Views.FormatRulesManagerDlg.textFormat": "Format", - "SSE.Views.FormatRulesManagerDlg.textIconSet": "Icon set", - "SSE.Views.FormatRulesManagerDlg.textNew": "New", - "SSE.Views.FormatRulesManagerDlg.textNotBetween": "is not between {0} and {1}", - "SSE.Views.FormatRulesManagerDlg.textNotContains": "Cell value does not contain", - "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Cell does not contain a blank value", - "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Cell does not contain an error", - "SSE.Views.FormatRulesManagerDlg.textRules": "Rules", - "SSE.Views.FormatRulesManagerDlg.textScope": "Show formatting rules for", - "SSE.Views.FormatRulesManagerDlg.textSelectData": "Select data", - "SSE.Views.FormatRulesManagerDlg.textSelection": "Current selection", - "SSE.Views.FormatRulesManagerDlg.textThisPivot": "This pivot", - "SSE.Views.FormatRulesManagerDlg.textThisSheet": "This worksheet", - "SSE.Views.FormatRulesManagerDlg.textThisTable": "This table", - "SSE.Views.FormatRulesManagerDlg.textUnique": "Unique values", - "SSE.Views.FormatRulesManagerDlg.textUp": "Move rule up", - "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "This element is being edited by another user.", - "SSE.Views.FormatRulesManagerDlg.txtTitle": "Conditional Formatting", - "SSE.Views.FormatSettingsDialog.textCategory": "Category", - "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", - "SSE.Views.FormatSettingsDialog.textFormat": "Format", - "SSE.Views.FormatSettingsDialog.textLinked": "Linked to source", - "SSE.Views.FormatSettingsDialog.textSeparator": "Use 1000 separator", - "SSE.Views.FormatSettingsDialog.textSymbols": "Symbols", - "SSE.Views.FormatSettingsDialog.textTitle": "Number Format", - "SSE.Views.FormatSettingsDialog.txtAccounting": "Accounting", - "SSE.Views.FormatSettingsDialog.txtAs10": "As tenths (5/10)", - "SSE.Views.FormatSettingsDialog.txtAs100": "As hundredths (50/100)", - "SSE.Views.FormatSettingsDialog.txtAs16": "As sixteenths (8/16)", - "SSE.Views.FormatSettingsDialog.txtAs2": "As halves (1/2)", - "SSE.Views.FormatSettingsDialog.txtAs4": "As fourths (2/4)", - "SSE.Views.FormatSettingsDialog.txtAs8": "As eighths (4/8)", - "SSE.Views.FormatSettingsDialog.txtCurrency": "Currency", - "SSE.Views.FormatSettingsDialog.txtCustom": "Custom", - "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Please enter the custom number format carefully. Spreadsheet Editor does not check custom formats for errors that may affect the xlsx file.", - "SSE.Views.FormatSettingsDialog.txtDate": "Date", - "SSE.Views.FormatSettingsDialog.txtFraction": "Fraction", - "SSE.Views.FormatSettingsDialog.txtGeneral": "General", - "SSE.Views.FormatSettingsDialog.txtNone": "None", - "SSE.Views.FormatSettingsDialog.txtNumber": "Number", - "SSE.Views.FormatSettingsDialog.txtPercentage": "Percentage", - "SSE.Views.FormatSettingsDialog.txtSample": "Sample:", - "SSE.Views.FormatSettingsDialog.txtScientific": "Scientific", - "SSE.Views.FormatSettingsDialog.txtText": "Text", - "SSE.Views.FormatSettingsDialog.txtTime": "Time", - "SSE.Views.FormatSettingsDialog.txtUpto1": "Up to one digit (1/3)", - "SSE.Views.FormatSettingsDialog.txtUpto2": "Up to two digits (12/25)", - "SSE.Views.FormatSettingsDialog.txtUpto3": "Up to three digits (131/135)", - "SSE.Views.FormulaDialog.sDescription": "Description", - "SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group", - "SSE.Views.FormulaDialog.textListDescription": "Select Function", - "SSE.Views.FormulaDialog.txtRecommended": "Recommended", - "SSE.Views.FormulaDialog.txtSearch": "Search", - "SSE.Views.FormulaDialog.txtTitle": "Insert Function", - "SSE.Views.FormulaTab.textAutomatic": "Automatic", - "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calculate current sheet", - "SSE.Views.FormulaTab.textCalculateWorkbook": "Calculate workbook", - "SSE.Views.FormulaTab.textManual": "Manual", - "SSE.Views.FormulaTab.tipCalculate": "Calculate", - "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calculate the entire workbook", - "SSE.Views.FormulaTab.txtAdditional": "Additional", - "SSE.Views.FormulaTab.txtAutosum": "Autosum", - "SSE.Views.FormulaTab.txtAutosumTip": "Summation", - "SSE.Views.FormulaTab.txtCalculation": "Calculation", - "SSE.Views.FormulaTab.txtFormula": "Function", - "SSE.Views.FormulaTab.txtFormulaTip": "Insert function", - "SSE.Views.FormulaTab.txtMore": "More functions", - "SSE.Views.FormulaTab.txtRecent": "Recently used", - "SSE.Views.FormulaWizard.textAny": "any", - "SSE.Views.FormulaWizard.textArgument": "Argument", - "SSE.Views.FormulaWizard.textFunction": "Function", - "SSE.Views.FormulaWizard.textFunctionRes": "Function result", - "SSE.Views.FormulaWizard.textHelp": "Help on this function", - "SSE.Views.FormulaWizard.textLogical": "logical", - "SSE.Views.FormulaWizard.textNoArgs": "This function has no arguments", - "SSE.Views.FormulaWizard.textNumber": "number", - "SSE.Views.FormulaWizard.textRef": "reference", - "SSE.Views.FormulaWizard.textText": "text", - "SSE.Views.FormulaWizard.textTitle": "Function Arguments", - "SSE.Views.FormulaWizard.textValue": "Formula result", - "SSE.Views.HeaderFooterDialog.textAlign": "Align with page margins", - "SSE.Views.HeaderFooterDialog.textAll": "All pages", - "SSE.Views.HeaderFooterDialog.textBold": "Bold", - "SSE.Views.HeaderFooterDialog.textCenter": "Center", - "SSE.Views.HeaderFooterDialog.textColor": "Text color", - "SSE.Views.HeaderFooterDialog.textDate": "Date", - "SSE.Views.HeaderFooterDialog.textDiffFirst": "Different first page", - "SSE.Views.HeaderFooterDialog.textDiffOdd": "Different odd and even pages", - "SSE.Views.HeaderFooterDialog.textEven": "Even page", - "SSE.Views.HeaderFooterDialog.textFileName": "File name", - "SSE.Views.HeaderFooterDialog.textFirst": "First page", - "SSE.Views.HeaderFooterDialog.textFooter": "Footer", - "SSE.Views.HeaderFooterDialog.textHeader": "Header", - "SSE.Views.HeaderFooterDialog.textInsert": "Insert", - "SSE.Views.HeaderFooterDialog.textItalic": "Italic", - "SSE.Views.HeaderFooterDialog.textLeft": "Left", - "SSE.Views.HeaderFooterDialog.textMaxError": "The text string you entered is too long. Reduce the number of characters used.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Add New Custom Color", - "SSE.Views.HeaderFooterDialog.textOdd": "Odd page", - "SSE.Views.HeaderFooterDialog.textPageCount": "Page count", - "SSE.Views.HeaderFooterDialog.textPageNum": "Page number", - "SSE.Views.HeaderFooterDialog.textPresets": "Presets", - "SSE.Views.HeaderFooterDialog.textRight": "Right", - "SSE.Views.HeaderFooterDialog.textScale": "Scale with document", - "SSE.Views.HeaderFooterDialog.textSheet": "Sheet name", - "SSE.Views.HeaderFooterDialog.textStrikeout": "Strikethrough", - "SSE.Views.HeaderFooterDialog.textSubscript": "Subscript", - "SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript", - "SSE.Views.HeaderFooterDialog.textTime": "Time", - "SSE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings", - "SSE.Views.HeaderFooterDialog.textUnderline": "Underline", - "SSE.Views.HeaderFooterDialog.tipFontName": "Font", - "SSE.Views.HeaderFooterDialog.tipFontSize": "Font size", - "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Display", - "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to", - "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", - "SSE.Views.HyperlinkSettingsDialog.strSheet": "Sheet", - "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copy", - "SSE.Views.HyperlinkSettingsDialog.textDefault": "Selected range", - "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here", - "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here", - "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here", - "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link", - "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Get Link", - "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Internal Data Range", - "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.HyperlinkSettingsDialog.textNames": "Defined names", - "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Select data", - "SSE.Views.HyperlinkSettingsDialog.textSheets": "Sheets", - "SSE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text", - "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", - "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required", - "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", - "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "This field is limited to 2083 characters", - "SSE.Views.ImageSettings.textAdvanced": "Show advanced settings", - "SSE.Views.ImageSettings.textCrop": "Crop", - "SSE.Views.ImageSettings.textCropFill": "Fill", - "SSE.Views.ImageSettings.textCropFit": "Fit", - "SSE.Views.ImageSettings.textEdit": "Edit", - "SSE.Views.ImageSettings.textEditObject": "Edit Object", - "SSE.Views.ImageSettings.textFlip": "Flip", - "SSE.Views.ImageSettings.textFromFile": "From File", - "SSE.Views.ImageSettings.textFromStorage": "From Storage", - "SSE.Views.ImageSettings.textFromUrl": "From URL", - "SSE.Views.ImageSettings.textHeight": "Height", - "SSE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise", - "SSE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise", - "SSE.Views.ImageSettings.textHintFlipH": "Flip Horizontally", - "SSE.Views.ImageSettings.textHintFlipV": "Flip Vertically", - "SSE.Views.ImageSettings.textInsert": "Replace Image", - "SSE.Views.ImageSettings.textKeepRatio": "Constant proportions", - "SSE.Views.ImageSettings.textOriginalSize": "Actual Size", - "SSE.Views.ImageSettings.textRotate90": "Rotate 90°", - "SSE.Views.ImageSettings.textRotation": "Rotation", - "SSE.Views.ImageSettings.textSize": "Size", - "SSE.Views.ImageSettings.textWidth": "Width", - "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Don't move or size with cells", - "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text", - "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Description", - "SSE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", - "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Title", - "SSE.Views.ImageSettingsAdvanced.textAngle": "Angle", - "SSE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", - "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally", - "SSE.Views.ImageSettingsAdvanced.textOneCell": "Move but don't size with cells", - "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotation", - "SSE.Views.ImageSettingsAdvanced.textSnap": "Cell Snapping", - "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", - "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Move and size with cells", - "SSE.Views.ImageSettingsAdvanced.textVertically": "Vertically", - "SSE.Views.LeftMenu.tipAbout": "About", - "SSE.Views.LeftMenu.tipChat": "Chat", - "SSE.Views.LeftMenu.tipComments": "Comments", - "SSE.Views.LeftMenu.tipFile": "File", - "SSE.Views.LeftMenu.tipPlugins": "Plugins", - "SSE.Views.LeftMenu.tipSearch": "Search", - "SSE.Views.LeftMenu.tipSpellcheck": "Spell checking", - "SSE.Views.LeftMenu.tipSupport": "Feedback & Support", - "SSE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE", - "SSE.Views.LeftMenu.txtLimit": "Limit Access", - "SSE.Views.LeftMenu.txtTrial": "TRIAL MODE", - "SSE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode", - "SSE.Views.MacroDialog.textMacro": "Macro name", - "SSE.Views.MacroDialog.textTitle": "Assign Macro", - "SSE.Views.MainSettingsPrint.okButtonText": "Save", - "SSE.Views.MainSettingsPrint.strBottom": "Bottom", - "SSE.Views.MainSettingsPrint.strLandscape": "Landscape", - "SSE.Views.MainSettingsPrint.strLeft": "Left", - "SSE.Views.MainSettingsPrint.strMargins": "Margins", - "SSE.Views.MainSettingsPrint.strPortrait": "Portrait", - "SSE.Views.MainSettingsPrint.strPrint": "Print", - "SSE.Views.MainSettingsPrint.strPrintTitles": "Print Titles", - "SSE.Views.MainSettingsPrint.strRight": "Right", - "SSE.Views.MainSettingsPrint.strTop": "Top", - "SSE.Views.MainSettingsPrint.textActualSize": "Actual Size", - "SSE.Views.MainSettingsPrint.textCustom": "Custom", - "SSE.Views.MainSettingsPrint.textCustomOptions": "Custom Options", - "SSE.Views.MainSettingsPrint.textFitCols": "Fit All Columns on One Page", - "SSE.Views.MainSettingsPrint.textFitPage": "Fit Sheet on One Page", - "SSE.Views.MainSettingsPrint.textFitRows": "Fit All Rows on One Page", - "SSE.Views.MainSettingsPrint.textPageOrientation": "Page Orientation", - "SSE.Views.MainSettingsPrint.textPageScaling": "Scaling", - "SSE.Views.MainSettingsPrint.textPageSize": "Page Size", - "SSE.Views.MainSettingsPrint.textPrintGrid": "Print Gridlines", - "SSE.Views.MainSettingsPrint.textPrintHeadings": "Print Row and Column Headings", - "SSE.Views.MainSettingsPrint.textRepeat": "Repeat...", - "SSE.Views.MainSettingsPrint.textRepeatLeft": "Repeat columns at left", - "SSE.Views.MainSettingsPrint.textRepeatTop": "Repeat rows at top", - "SSE.Views.MainSettingsPrint.textSettings": "Settings for", - "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", - "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Defined name", - "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Warning", - "SSE.Views.NamedRangeEditDlg.strWorkbook": "Workbook", - "SSE.Views.NamedRangeEditDlg.textDataRange": "Data Range", - "SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Range with such a name already exists", - "SSE.Views.NamedRangeEditDlg.textInvalidName": "The name must begin with a letter or an underscore and must not contain invalid characters.", - "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! Invalid cell range", - "SSE.Views.NamedRangeEditDlg.textIsLocked": "ERROR! This element is being edited by another user.", - "SSE.Views.NamedRangeEditDlg.textName": "Name", - "SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", - "SSE.Views.NamedRangeEditDlg.textScope": "Scope", - "SSE.Views.NamedRangeEditDlg.textSelectData": "Select Data", - "SSE.Views.NamedRangeEditDlg.txtEmpty": "This field is required", - "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name", - "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name", - "SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges", - "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", - "SSE.Views.NameManagerDlg.closeButtonText": "Close", - "SSE.Views.NameManagerDlg.guestText": "Guest", - "SSE.Views.NameManagerDlg.textDataRange": "Data Range", - "SSE.Views.NameManagerDlg.textDelete": "Delete", - "SSE.Views.NameManagerDlg.textEdit": "Edit", - "SSE.Views.NameManagerDlg.textEmpty": "No named ranges have been created yet.
    Create at least one named range and it will appear in this field.", - "SSE.Views.NameManagerDlg.textFilter": "Filter", - "SSE.Views.NameManagerDlg.textFilterAll": "All", - "SSE.Views.NameManagerDlg.textFilterDefNames": "Defined names", - "SSE.Views.NameManagerDlg.textFilterSheet": "Names Scoped to Sheet", - "SSE.Views.NameManagerDlg.textFilterTableNames": "Table names", - "SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook", - "SSE.Views.NameManagerDlg.textNew": "New", - "SSE.Views.NameManagerDlg.textnoNames": "No named ranges matching your filter could be found.", - "SSE.Views.NameManagerDlg.textRanges": "Named Ranges", - "SSE.Views.NameManagerDlg.textScope": "Scope", - "SSE.Views.NameManagerDlg.textWorkbook": "Workbook", - "SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.", - "SSE.Views.NameManagerDlg.txtTitle": "Name Manager", - "SSE.Views.NameManagerDlg.warnDelete": "Are you sure you want to delete the name {0}?", - "SSE.Views.PageMarginsDialog.textBottom": "Bottom", - "SSE.Views.PageMarginsDialog.textLeft": "Left", - "SSE.Views.PageMarginsDialog.textRight": "Right", - "SSE.Views.PageMarginsDialog.textTitle": "Margins", - "SSE.Views.PageMarginsDialog.textTop": "Top", - "SSE.Views.ParagraphSettings.strLineHeight": "Line Spacing", - "SSE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing", - "SSE.Views.ParagraphSettings.strSpacingAfter": "After", - "SSE.Views.ParagraphSettings.strSpacingBefore": "Before", - "SSE.Views.ParagraphSettings.textAdvanced": "Show advanced settings", - "SSE.Views.ParagraphSettings.textAt": "At", - "SSE.Views.ParagraphSettings.textAtLeast": "At least", - "SSE.Views.ParagraphSettings.textAuto": "Multiple", - "SSE.Views.ParagraphSettings.textExact": "Exactly", - "SSE.Views.ParagraphSettings.txtAutoText": "Auto", - "SSE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", - "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", - "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", - "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Indents", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Before", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Special", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "By", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Spacing", - "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", - "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Spacing", - "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", - "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", - "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", - "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs", - "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", - "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple", - "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", - "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", - "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", - "SSE.Views.ParagraphSettingsAdvanced.textExact": "Exactly", - "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line", - "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging", - "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Justified", - "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)", - "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", - "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", - "SSE.Views.ParagraphSettingsAdvanced.textSet": "Specify", - "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", - "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", - "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", - "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", - "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", - "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", - "SSE.Views.PivotDigitalFilterDialog.capCondition1": "equals", - "SSE.Views.PivotDigitalFilterDialog.capCondition10": "does not end with", - "SSE.Views.PivotDigitalFilterDialog.capCondition11": "contains", - "SSE.Views.PivotDigitalFilterDialog.capCondition12": "does not contain", - "SSE.Views.PivotDigitalFilterDialog.capCondition13": "between", - "SSE.Views.PivotDigitalFilterDialog.capCondition14": "not between", - "SSE.Views.PivotDigitalFilterDialog.capCondition2": "does not equal", - "SSE.Views.PivotDigitalFilterDialog.capCondition3": "is greater than", - "SSE.Views.PivotDigitalFilterDialog.capCondition4": "is greater than or equal to", - "SSE.Views.PivotDigitalFilterDialog.capCondition5": "is less than", - "SSE.Views.PivotDigitalFilterDialog.capCondition6": "is less than or equal to", - "SSE.Views.PivotDigitalFilterDialog.capCondition7": "begins with", - "SSE.Views.PivotDigitalFilterDialog.capCondition8": "does not begin with", - "SSE.Views.PivotDigitalFilterDialog.capCondition9": "ends with", - "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Show items for which the label:", - "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Show items for which:", - "SSE.Views.PivotDigitalFilterDialog.textUse1": "Use ? to present any single character", - "SSE.Views.PivotDigitalFilterDialog.textUse2": "Use * to present any series of character", - "SSE.Views.PivotDigitalFilterDialog.txtAnd": "and", - "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Label Filter", - "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Value Filter", - "SSE.Views.PivotGroupDialog.textAuto": "Auto", - "SSE.Views.PivotGroupDialog.textBy": "By", - "SSE.Views.PivotGroupDialog.textDays": "Days", - "SSE.Views.PivotGroupDialog.textEnd": "Ending at", - "SSE.Views.PivotGroupDialog.textError": "This field must be a numeric value", - "SSE.Views.PivotGroupDialog.textGreaterError": "The end number must be greater than the start number", - "SSE.Views.PivotGroupDialog.textHour": "Hours", - "SSE.Views.PivotGroupDialog.textMin": "Minutes", - "SSE.Views.PivotGroupDialog.textMonth": "Months", - "SSE.Views.PivotGroupDialog.textNumDays": "Number of days", - "SSE.Views.PivotGroupDialog.textQuart": "Quarters", - "SSE.Views.PivotGroupDialog.textSec": "Seconds", - "SSE.Views.PivotGroupDialog.textStart": "Starting at", - "SSE.Views.PivotGroupDialog.textYear": "Years", - "SSE.Views.PivotGroupDialog.txtTitle": "Grouping", - "SSE.Views.PivotSettings.textAdvanced": "Show advanced settings", - "SSE.Views.PivotSettings.textColumns": "Columns", - "SSE.Views.PivotSettings.textFields": "Select Fields", - "SSE.Views.PivotSettings.textFilters": "Filters", - "SSE.Views.PivotSettings.textRows": "Rows", - "SSE.Views.PivotSettings.textValues": "Values", - "SSE.Views.PivotSettings.txtAddColumn": "Add to Columns", - "SSE.Views.PivotSettings.txtAddFilter": "Add to Filters", - "SSE.Views.PivotSettings.txtAddRow": "Add to Rows", - "SSE.Views.PivotSettings.txtAddValues": "Add to Values", - "SSE.Views.PivotSettings.txtFieldSettings": "Field Settings", - "SSE.Views.PivotSettings.txtMoveBegin": "Move to Beginning", - "SSE.Views.PivotSettings.txtMoveColumn": "Move to Columns", - "SSE.Views.PivotSettings.txtMoveDown": "Move Down", - "SSE.Views.PivotSettings.txtMoveEnd": "Move to End", - "SSE.Views.PivotSettings.txtMoveFilter": "Move to Filters", - "SSE.Views.PivotSettings.txtMoveRow": "Move to Rows", - "SSE.Views.PivotSettings.txtMoveUp": "Move Up", - "SSE.Views.PivotSettings.txtMoveValues": "Move to Values", - "SSE.Views.PivotSettings.txtRemove": "Remove Field", - "SSE.Views.PivotSettingsAdvanced.strLayout": "Name and Layout", - "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternative Text", - "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Description", - "SSE.Views.PivotSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", - "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Title", - "SSE.Views.PivotSettingsAdvanced.textDataRange": "Data Range", - "SSE.Views.PivotSettingsAdvanced.textDataSource": "Data Source", - "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Display fields in report filter area", - "SSE.Views.PivotSettingsAdvanced.textDown": "Down, then over", - "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grand Totals", - "SSE.Views.PivotSettingsAdvanced.textHeaders": "Field Headers", - "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.PivotSettingsAdvanced.textOver": "Over, then down", - "SSE.Views.PivotSettingsAdvanced.textSelectData": "Select data", - "SSE.Views.PivotSettingsAdvanced.textShowCols": "Show for columns", - "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Show field headers for rows and columns", - "SSE.Views.PivotSettingsAdvanced.textShowRows": "Show for rows", - "SSE.Views.PivotSettingsAdvanced.textTitle": "Pivot Table - Advanced Settings", - "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Report filter fields per column", - "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Report filter fields per row", - "SSE.Views.PivotSettingsAdvanced.txtEmpty": "This field is required", - "SSE.Views.PivotSettingsAdvanced.txtName": "Name", - "SSE.Views.PivotTable.capBlankRows": "Blank Rows", - "SSE.Views.PivotTable.capGrandTotals": "Grand Totals", - "SSE.Views.PivotTable.capLayout": "Report Layout", - "SSE.Views.PivotTable.capSubtotals": "Subtotals", - "SSE.Views.PivotTable.mniBottomSubtotals": "Show all Subtotals at Bottom of Group", - "SSE.Views.PivotTable.mniInsertBlankLine": "Insert Blank Line after Each Item", - "SSE.Views.PivotTable.mniLayoutCompact": "Show in Compact Form", - "SSE.Views.PivotTable.mniLayoutNoRepeat": "Don't Repeat All Item Labels", - "SSE.Views.PivotTable.mniLayoutOutline": "Show in Outline Form", - "SSE.Views.PivotTable.mniLayoutRepeat": "Repeat All Item Labels", - "SSE.Views.PivotTable.mniLayoutTabular": "Show in Tabular Form", - "SSE.Views.PivotTable.mniNoSubtotals": "Don't Show Subtotals", - "SSE.Views.PivotTable.mniOffTotals": "Off for Rows and Columns", - "SSE.Views.PivotTable.mniOnColumnsTotals": "On for Columns Only", - "SSE.Views.PivotTable.mniOnRowsTotals": "On for Rows Only", - "SSE.Views.PivotTable.mniOnTotals": "On for Rows and Columns", - "SSE.Views.PivotTable.mniRemoveBlankLine": "Remove Blank Line after Each Item", - "SSE.Views.PivotTable.mniTopSubtotals": "Show all Subtotals at Top of Group", - "SSE.Views.PivotTable.textColBanded": "Banded Columns", - "SSE.Views.PivotTable.textColHeader": "Column Headers", - "SSE.Views.PivotTable.textRowBanded": "Banded Rows", - "SSE.Views.PivotTable.textRowHeader": "Row Headers", - "SSE.Views.PivotTable.tipCreatePivot": "Insert Pivot Table", - "SSE.Views.PivotTable.tipGrandTotals": "Show or hide grand totals", - "SSE.Views.PivotTable.tipRefresh": "Update the information from data source", - "SSE.Views.PivotTable.tipSelect": "Select entire pivot table", - "SSE.Views.PivotTable.tipSubtotals": "Show or hide subtotals", - "SSE.Views.PivotTable.txtCreate": "Insert Table", - "SSE.Views.PivotTable.txtPivotTable": "Pivot Table", - "SSE.Views.PivotTable.txtRefresh": "Refresh", - "SSE.Views.PivotTable.txtSelect": "Select", - "SSE.Views.PrintSettings.btnDownload": "Save & Download", - "SSE.Views.PrintSettings.btnPrint": "Save & Print", - "SSE.Views.PrintSettings.strBottom": "Bottom", - "SSE.Views.PrintSettings.strLandscape": "Landscape", - "SSE.Views.PrintSettings.strLeft": "Left", - "SSE.Views.PrintSettings.strMargins": "Margins", - "SSE.Views.PrintSettings.strPortrait": "Portrait", - "SSE.Views.PrintSettings.strPrint": "Print", - "SSE.Views.PrintSettings.strPrintTitles": "Print Titles", - "SSE.Views.PrintSettings.strRight": "Right", - "SSE.Views.PrintSettings.strShow": "Show", - "SSE.Views.PrintSettings.strTop": "Top", - "SSE.Views.PrintSettings.textActualSize": "Actual Size", - "SSE.Views.PrintSettings.textAllSheets": "All Sheets", - "SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet", - "SSE.Views.PrintSettings.textCustom": "Custom", - "SSE.Views.PrintSettings.textCustomOptions": "Custom Options", - "SSE.Views.PrintSettings.textFitCols": "Fit All Columns on One Page", - "SSE.Views.PrintSettings.textFitPage": "Fit Sheet on One Page", - "SSE.Views.PrintSettings.textFitRows": "Fit All Rows on One Page", - "SSE.Views.PrintSettings.textHideDetails": "Hide Details", - "SSE.Views.PrintSettings.textIgnore": "Ignore Print Area", - "SSE.Views.PrintSettings.textLayout": "Layout", - "SSE.Views.PrintSettings.textPageOrientation": "Page Orientation", - "SSE.Views.PrintSettings.textPageScaling": "Scaling", - "SSE.Views.PrintSettings.textPageSize": "Page Size", - "SSE.Views.PrintSettings.textPrintGrid": "Print Gridlines", - "SSE.Views.PrintSettings.textPrintHeadings": "Print Row and Column Headings", - "SSE.Views.PrintSettings.textPrintRange": "Print Range", - "SSE.Views.PrintSettings.textRange": "Range", - "SSE.Views.PrintSettings.textRepeat": "Repeat...", - "SSE.Views.PrintSettings.textRepeatLeft": "Repeat columns at left", - "SSE.Views.PrintSettings.textRepeatTop": "Repeat rows at top", - "SSE.Views.PrintSettings.textSelection": "Selection", - "SSE.Views.PrintSettings.textSettings": "Sheet Settings", - "SSE.Views.PrintSettings.textShowDetails": "Show Details", - "SSE.Views.PrintSettings.textShowGrid": "Show Gridlines", - "SSE.Views.PrintSettings.textShowHeadings": "Show Rows and Columns Headings", - "SSE.Views.PrintSettings.textTitle": "Print Settings", - "SSE.Views.PrintSettings.textTitlePDF": "PDF Settings", - "SSE.Views.PrintTitlesDialog.textFirstCol": "First column", - "SSE.Views.PrintTitlesDialog.textFirstRow": "First row", - "SSE.Views.PrintTitlesDialog.textFrozenCols": "Frozen columns", - "SSE.Views.PrintTitlesDialog.textFrozenRows": "Frozen rows", - "SSE.Views.PrintTitlesDialog.textInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.PrintTitlesDialog.textLeft": "Repeat columns at left", - "SSE.Views.PrintTitlesDialog.textNoRepeat": "Don't repeat", - "SSE.Views.PrintTitlesDialog.textRepeat": "Repeat...", - "SSE.Views.PrintTitlesDialog.textSelectRange": "Select range", - "SSE.Views.PrintTitlesDialog.textTitle": "Print Titles", - "SSE.Views.PrintTitlesDialog.textTop": "Repeat rows at top", - "SSE.Views.RemoveDuplicatesDialog.textColumns": "Columns", - "SSE.Views.RemoveDuplicatesDialog.textDescription": "To delete duplicate values, select one or more columns that contain duplicates.", - "SSE.Views.RemoveDuplicatesDialog.textHeaders": "My data has headers", - "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Select All", - "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Remove Duplicates", - "SSE.Views.RightMenu.txtCellSettings": "Cell settings", - "SSE.Views.RightMenu.txtChartSettings": "Chart settings", - "SSE.Views.RightMenu.txtImageSettings": "Image settings", - "SSE.Views.RightMenu.txtParagraphSettings": "Paragraph settings", - "SSE.Views.RightMenu.txtPivotSettings": "Pivot Table settings", - "SSE.Views.RightMenu.txtSettings": "Common Settings", - "SSE.Views.RightMenu.txtShapeSettings": "Shape settings", - "SSE.Views.RightMenu.txtSignatureSettings": "Signature settings", - "SSE.Views.RightMenu.txtSlicerSettings": "Slicer settings", - "SSE.Views.RightMenu.txtSparklineSettings": "Sparkline settings", - "SSE.Views.RightMenu.txtTableSettings": "Table settings", - "SSE.Views.RightMenu.txtTextArtSettings": "Text Art settings", - "SSE.Views.ScaleDialog.textAuto": "Auto", - "SSE.Views.ScaleDialog.textError": "The entered value is incorrect.", - "SSE.Views.ScaleDialog.textFewPages": "pages", - "SSE.Views.ScaleDialog.textFitTo": "Fit To", - "SSE.Views.ScaleDialog.textHeight": "Height", - "SSE.Views.ScaleDialog.textManyPages": "pages", - "SSE.Views.ScaleDialog.textOnePage": "page", - "SSE.Views.ScaleDialog.textScaleTo": "Scale To", - "SSE.Views.ScaleDialog.textTitle": "Scale Settings", - "SSE.Views.ScaleDialog.textWidth": "Width", - "SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}", - "SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}", - "SSE.Views.ShapeSettings.strBackground": "Background color", - "SSE.Views.ShapeSettings.strChange": "Change Autoshape", - "SSE.Views.ShapeSettings.strColor": "Color", - "SSE.Views.ShapeSettings.strFill": "Fill", - "SSE.Views.ShapeSettings.strForeground": "Foreground color", - "SSE.Views.ShapeSettings.strPattern": "Pattern", - "SSE.Views.ShapeSettings.strShadow": "Show shadow", - "SSE.Views.ShapeSettings.strSize": "Size", - "SSE.Views.ShapeSettings.strStroke": "Line", - "SSE.Views.ShapeSettings.strTransparency": "Opacity", - "SSE.Views.ShapeSettings.strType": "Type", - "SSE.Views.ShapeSettings.textAdvanced": "Show advanced settings", - "SSE.Views.ShapeSettings.textAngle": "Angle", - "SSE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", - "SSE.Views.ShapeSettings.textColor": "Color Fill", - "SSE.Views.ShapeSettings.textDirection": "Direction", - "SSE.Views.ShapeSettings.textEmptyPattern": "No Pattern", - "SSE.Views.ShapeSettings.textFlip": "Flip", - "SSE.Views.ShapeSettings.textFromFile": "From File", - "SSE.Views.ShapeSettings.textFromStorage": "From Storage", - "SSE.Views.ShapeSettings.textFromUrl": "From URL", - "SSE.Views.ShapeSettings.textGradient": "Gradient points", - "SSE.Views.ShapeSettings.textGradientFill": "Gradient Fill", - "SSE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise", - "SSE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise", - "SSE.Views.ShapeSettings.textHintFlipH": "Flip Horizontally", - "SSE.Views.ShapeSettings.textHintFlipV": "Flip Vertically", - "SSE.Views.ShapeSettings.textImageTexture": "Picture or Texture", - "SSE.Views.ShapeSettings.textLinear": "Linear", - "SSE.Views.ShapeSettings.textNoFill": "No Fill", - "SSE.Views.ShapeSettings.textOriginalSize": "Original Size", - "SSE.Views.ShapeSettings.textPatternFill": "Pattern", - "SSE.Views.ShapeSettings.textPosition": "Position", - "SSE.Views.ShapeSettings.textRadial": "Radial", - "SSE.Views.ShapeSettings.textRotate90": "Rotate 90°", - "SSE.Views.ShapeSettings.textRotation": "Rotation", - "SSE.Views.ShapeSettings.textSelectImage": "Select Picture", - "SSE.Views.ShapeSettings.textSelectTexture": "Select", - "SSE.Views.ShapeSettings.textStretch": "Stretch", - "SSE.Views.ShapeSettings.textStyle": "Style", - "SSE.Views.ShapeSettings.textTexture": "From Texture", - "SSE.Views.ShapeSettings.textTile": "Tile", - "SSE.Views.ShapeSettings.tipAddGradientPoint": "Add gradient point", - "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Remove gradient point", - "SSE.Views.ShapeSettings.txtBrownPaper": "Brown Paper", - "SSE.Views.ShapeSettings.txtCanvas": "Canvas", - "SSE.Views.ShapeSettings.txtCarton": "Carton", - "SSE.Views.ShapeSettings.txtDarkFabric": "Dark Fabric", - "SSE.Views.ShapeSettings.txtGrain": "Grain", - "SSE.Views.ShapeSettings.txtGranite": "Granite", - "SSE.Views.ShapeSettings.txtGreyPaper": "Gray Paper", - "SSE.Views.ShapeSettings.txtKnit": "Knit", - "SSE.Views.ShapeSettings.txtLeather": "Leather", - "SSE.Views.ShapeSettings.txtNoBorders": "No Line", - "SSE.Views.ShapeSettings.txtPapyrus": "Papyrus", - "SSE.Views.ShapeSettings.txtWood": "Wood", - "SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns", - "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", - "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Don't move or size with cells", - "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text", - "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Description", - "SSE.Views.ShapeSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", - "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Title", - "SSE.Views.ShapeSettingsAdvanced.textAngle": "Angle", - "SSE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", - "SSE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit", - "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", - "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", - "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", - "SSE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", - "SSE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", - "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Number of columns", - "SSE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", - "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", - "SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat", - "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped", - "SSE.Views.ShapeSettingsAdvanced.textHeight": "Height", - "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontally", - "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type", - "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constant proportions", - "SSE.Views.ShapeSettingsAdvanced.textLeft": "Left", - "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Line Style", - "SSE.Views.ShapeSettingsAdvanced.textMiter": "Miter", - "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Move but don't size with cells", - "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Allow text to overflow shape", - "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Resize shape to fit text", - "SSE.Views.ShapeSettingsAdvanced.textRight": "Right", - "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotation", - "SSE.Views.ShapeSettingsAdvanced.textRound": "Round", - "SSE.Views.ShapeSettingsAdvanced.textSize": "Size", - "SSE.Views.ShapeSettingsAdvanced.textSnap": "Cell Snapping", - "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing between columns", - "SSE.Views.ShapeSettingsAdvanced.textSquare": "Square", - "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Text Box", - "SSE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings", - "SSE.Views.ShapeSettingsAdvanced.textTop": "Top", - "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Move and size with cells", - "SSE.Views.ShapeSettingsAdvanced.textVertically": "Vertically", - "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", - "SSE.Views.ShapeSettingsAdvanced.textWidth": "Width", - "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Warning", - "SSE.Views.SignatureSettings.strDelete": "Remove Signature", - "SSE.Views.SignatureSettings.strDetails": "Signature Details", - "SSE.Views.SignatureSettings.strInvalid": "Invalid signatures", - "SSE.Views.SignatureSettings.strRequested": "Requested signatures", - "SSE.Views.SignatureSettings.strSetup": "Signature Setup", - "SSE.Views.SignatureSettings.strSign": "Sign", - "SSE.Views.SignatureSettings.strSignature": "Signature", - "SSE.Views.SignatureSettings.strSigner": "Signer", - "SSE.Views.SignatureSettings.strValid": "Valid signatures", - "SSE.Views.SignatureSettings.txtContinueEditing": "Edit anyway", - "SSE.Views.SignatureSettings.txtEditWarning": "Editing will remove signatures from the spreadsheet.
    Continue?", - "SSE.Views.SignatureSettings.txtRemoveWarning": "Do you want to remove this signature?
    It can't be undone.", - "SSE.Views.SignatureSettings.txtRequestedSignatures": "This spreadsheet needs to be signed.", - "SSE.Views.SignatureSettings.txtSigned": "Valid signatures have been added to the spreadsheet. The spreadsheet is protected from editing.", - "SSE.Views.SignatureSettings.txtSignedInvalid": "Some of the digital signatures in spreadsheet are invalid or could not be verified. The spreadsheet is protected from editing.", - "SSE.Views.SlicerAddDialog.textColumns": "Columns", - "SSE.Views.SlicerAddDialog.txtTitle": "Insert Slicers", - "SSE.Views.SlicerSettings.strHideNoData": "Hide items with no data", - "SSE.Views.SlicerSettings.strIndNoData": "Visually indicate items with no data", - "SSE.Views.SlicerSettings.strShowDel": "Show items deleted from the data source", - "SSE.Views.SlicerSettings.strShowNoData": "Show items with no data last", - "SSE.Views.SlicerSettings.strSorting": "Sorting and filtering", - "SSE.Views.SlicerSettings.textAdvanced": "Show advanced settings", - "SSE.Views.SlicerSettings.textAsc": "Ascending", - "SSE.Views.SlicerSettings.textAZ": "A to Z", - "SSE.Views.SlicerSettings.textButtons": "Buttons", - "SSE.Views.SlicerSettings.textColumns": "Columns", - "SSE.Views.SlicerSettings.textDesc": "Descending", - "SSE.Views.SlicerSettings.textHeight": "Height", - "SSE.Views.SlicerSettings.textHor": "Horizontal", - "SSE.Views.SlicerSettings.textKeepRatio": "Constant Proportions", - "SSE.Views.SlicerSettings.textLargeSmall": "largest to smallest", - "SSE.Views.SlicerSettings.textLock": "Disable resizing or moving", - "SSE.Views.SlicerSettings.textNewOld": "newest to oldest", - "SSE.Views.SlicerSettings.textOldNew": "oldest to newest", - "SSE.Views.SlicerSettings.textPosition": "Position", - "SSE.Views.SlicerSettings.textSize": "Size", - "SSE.Views.SlicerSettings.textSmallLarge": "smallest to largest", - "SSE.Views.SlicerSettings.textStyle": "Style", - "SSE.Views.SlicerSettings.textVert": "Vertical", - "SSE.Views.SlicerSettings.textWidth": "Width", - "SSE.Views.SlicerSettings.textZA": "Z to A", - "SSE.Views.SlicerSettingsAdvanced.strButtons": "Buttons", - "SSE.Views.SlicerSettingsAdvanced.strColumns": "Columns", - "SSE.Views.SlicerSettingsAdvanced.strHeight": "Height", - "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Hide items with no data", - "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Visually indicate items with no data", - "SSE.Views.SlicerSettingsAdvanced.strReferences": "References", - "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Show items deleted from the data source", - "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Display header", - "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Show items with no data last", - "SSE.Views.SlicerSettingsAdvanced.strSize": "Size", - "SSE.Views.SlicerSettingsAdvanced.strSorting": "Sorting & Filtering", - "SSE.Views.SlicerSettingsAdvanced.strStyle": "Style", - "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Style & Size", - "SSE.Views.SlicerSettingsAdvanced.strWidth": "Width", - "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Don't move or size with cells", - "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternative Text", - "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Description", - "SSE.Views.SlicerSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", - "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Title", - "SSE.Views.SlicerSettingsAdvanced.textAsc": "Ascending", - "SSE.Views.SlicerSettingsAdvanced.textAZ": "A to Z", - "SSE.Views.SlicerSettingsAdvanced.textDesc": "Descending", - "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Name to use in formulas", - "SSE.Views.SlicerSettingsAdvanced.textHeader": "Header", - "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Constant Proportions", - "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "largest to smallest", - "SSE.Views.SlicerSettingsAdvanced.textName": "Name", - "SSE.Views.SlicerSettingsAdvanced.textNewOld": "newest to oldest", - "SSE.Views.SlicerSettingsAdvanced.textOldNew": "oldest to newest", - "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Move but don't size with cells", - "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "smallest to largest", - "SSE.Views.SlicerSettingsAdvanced.textSnap": "Cell Snapping", - "SSE.Views.SlicerSettingsAdvanced.textSort": "Sort", - "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Source name", - "SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer - Advanced Settings", - "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Move and size with cells", - "SSE.Views.SlicerSettingsAdvanced.textZA": "Z to A", - "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "This field is required", - "SSE.Views.SortDialog.errorEmpty": "All sort criteria must have a column or row specified.", - "SSE.Views.SortDialog.errorMoreOneCol": "More than one column is selected.", - "SSE.Views.SortDialog.errorMoreOneRow": "More than one row is selected.", - "SSE.Views.SortDialog.errorNotOriginalCol": "The column you selected is not in the original selected range.", - "SSE.Views.SortDialog.errorNotOriginalRow": "The row you selected is not in the original selected range.", - "SSE.Views.SortDialog.errorSameColumnColor": "%1 is being sorted by the same color more than once.
    Delete the duplicate sort criteria and try again.", - "SSE.Views.SortDialog.errorSameColumnValue": "%1 is being sorted by values more than once.
    Delete the duplicate sort criteria and try again.", - "SSE.Views.SortDialog.textAdd": "Add level", - "SSE.Views.SortDialog.textAsc": "Ascending", - "SSE.Views.SortDialog.textAuto": "Automatic", - "SSE.Views.SortDialog.textAZ": "A to Z", - "SSE.Views.SortDialog.textBelow": "Below", - "SSE.Views.SortDialog.textCellColor": "Cell color", - "SSE.Views.SortDialog.textColumn": "Column", - "SSE.Views.SortDialog.textCopy": "Copy level", - "SSE.Views.SortDialog.textDelete": "Delete level", - "SSE.Views.SortDialog.textDesc": "Descending", - "SSE.Views.SortDialog.textDown": "Move level down", - "SSE.Views.SortDialog.textFontColor": "Font color", - "SSE.Views.SortDialog.textLeft": "Left", - "SSE.Views.SortDialog.textMoreCols": "(More columns...)", - "SSE.Views.SortDialog.textMoreRows": "(More rows...)", - "SSE.Views.SortDialog.textNone": "None", - "SSE.Views.SortDialog.textOptions": "Options", - "SSE.Views.SortDialog.textOrder": "Order", - "SSE.Views.SortDialog.textRight": "Right", - "SSE.Views.SortDialog.textRow": "Row", - "SSE.Views.SortDialog.textSort": "Sort on", - "SSE.Views.SortDialog.textSortBy": "Sort by", - "SSE.Views.SortDialog.textThenBy": "Then by", - "SSE.Views.SortDialog.textTop": "Top", - "SSE.Views.SortDialog.textUp": "Move level up", - "SSE.Views.SortDialog.textValues": "Values", - "SSE.Views.SortDialog.textZA": "Z to A", - "SSE.Views.SortDialog.txtInvalidRange": "Invalid cells range.", - "SSE.Views.SortDialog.txtTitle": "Sort", - "SSE.Views.SortFilterDialog.textAsc": "Ascending (A to Z) by", - "SSE.Views.SortFilterDialog.textDesc": "Descending (Z to A) by", - "SSE.Views.SortFilterDialog.txtTitle": "Sort", - "SSE.Views.SortOptionsDialog.textCase": "Case sensitive", - "SSE.Views.SortOptionsDialog.textHeaders": "My data has headers", - "SSE.Views.SortOptionsDialog.textLeftRight": "Sort left to right", - "SSE.Views.SortOptionsDialog.textOrientation": "Orientation", - "SSE.Views.SortOptionsDialog.textTitle": "Sort Options", - "SSE.Views.SortOptionsDialog.textTopBottom": "Sort top to bottom", - "SSE.Views.SpecialPasteDialog.textAdd": "Add", - "SSE.Views.SpecialPasteDialog.textAll": "All", - "SSE.Views.SpecialPasteDialog.textBlanks": "Skip blanks", - "SSE.Views.SpecialPasteDialog.textColWidth": "Column widths", - "SSE.Views.SpecialPasteDialog.textComments": "Comments", - "SSE.Views.SpecialPasteDialog.textDiv": "Divide", - "SSE.Views.SpecialPasteDialog.textFFormat": "Formulas & formatting", - "SSE.Views.SpecialPasteDialog.textFNFormat": "Formulas & number formats", - "SSE.Views.SpecialPasteDialog.textFormats": "Formats", - "SSE.Views.SpecialPasteDialog.textFormulas": "Formulas", - "SSE.Views.SpecialPasteDialog.textFWidth": "Formulas & column widths", - "SSE.Views.SpecialPasteDialog.textMult": "Multiply", - "SSE.Views.SpecialPasteDialog.textNone": "None", - "SSE.Views.SpecialPasteDialog.textOperation": "Operation", - "SSE.Views.SpecialPasteDialog.textPaste": "Paste", - "SSE.Views.SpecialPasteDialog.textSub": "Subtract", - "SSE.Views.SpecialPasteDialog.textTitle": "Paste Special", - "SSE.Views.SpecialPasteDialog.textTranspose": "Transpose", - "SSE.Views.SpecialPasteDialog.textValues": "Values", - "SSE.Views.SpecialPasteDialog.textVFormat": "Values & formatting", - "SSE.Views.SpecialPasteDialog.textVNFormat": "Values & number formats", - "SSE.Views.SpecialPasteDialog.textWBorders": "All except borders", - "SSE.Views.Spellcheck.noSuggestions": "No spelling suggestions", - "SSE.Views.Spellcheck.textChange": "Change", - "SSE.Views.Spellcheck.textChangeAll": "Change All", - "SSE.Views.Spellcheck.textIgnore": "Ignore", - "SSE.Views.Spellcheck.textIgnoreAll": "Ignore All", - "SSE.Views.Spellcheck.txtAddToDictionary": "Add To Dictionary", - "SSE.Views.Spellcheck.txtComplete": "Spellcheck has been completed", - "SSE.Views.Spellcheck.txtDictionaryLanguage": "Dictionary Language", - "SSE.Views.Spellcheck.txtNextTip": "Go to the next word", - "SSE.Views.Spellcheck.txtSpelling": "Spelling", - "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copy to end)", - "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Move to end)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Paste before sheet", - "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Move before sheet", - "SSE.Views.Statusbar.filteredRecordsText": "{0} of {1} records filtered", - "SSE.Views.Statusbar.filteredText": "Filter mode", - "SSE.Views.Statusbar.itemAverage": "Average", - "SSE.Views.Statusbar.itemCopy": "Copy", - "SSE.Views.Statusbar.itemCount": "Count", - "SSE.Views.Statusbar.itemDelete": "Delete", - "SSE.Views.Statusbar.itemHidden": "Hidden", - "SSE.Views.Statusbar.itemHide": "Hide", - "SSE.Views.Statusbar.itemInsert": "Insert", - "SSE.Views.Statusbar.itemMaximum": "Maximum", - "SSE.Views.Statusbar.itemMinimum": "Minimum", - "SSE.Views.Statusbar.itemMove": "Move", - "SSE.Views.Statusbar.itemRename": "Rename", - "SSE.Views.Statusbar.itemSum": "Sum", - "SSE.Views.Statusbar.itemTabColor": "Tab Color", - "SSE.Views.Statusbar.itemStatus": "Saving status", - "SSE.Views.Statusbar.RenameDialog.errNameExists": "Worksheet with such a name already exists.", - "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "A sheet name cannot contain the following characters: \\/*?[]:", - "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Sheet Name", - "SSE.Views.Statusbar.selectAllSheets": "Select All Sheets", - "SSE.Views.Statusbar.textAverage": "Average", - "SSE.Views.Statusbar.textCount": "Count", - "SSE.Views.Statusbar.textMax": "Max", - "SSE.Views.Statusbar.textMin": "Min", - "SSE.Views.Statusbar.textNewColor": "Add New Custom Color", - "SSE.Views.Statusbar.textNoColor": "No Color", - "SSE.Views.Statusbar.textSum": "Sum", - "SSE.Views.Statusbar.tipAddTab": "Add worksheet", - "SSE.Views.Statusbar.tipFirst": "Scroll to first sheet", - "SSE.Views.Statusbar.tipLast": "Scroll to last sheet", - "SSE.Views.Statusbar.tipNext": "Scroll sheet list right", - "SSE.Views.Statusbar.tipPrev": "Scroll sheet list left", - "SSE.Views.Statusbar.tipZoomFactor": "Zoom", - "SSE.Views.Statusbar.tipZoomIn": "Zoom in", - "SSE.Views.Statusbar.tipZoomOut": "Zoom out", - "SSE.Views.Statusbar.ungroupSheets": "Ungroup Sheets", - "SSE.Views.Statusbar.zoomText": "Zoom {0}%", - "SSE.Views.Statusbar.sheetIndexText": "Sheet {0} of {1}", - "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range different from the existing one and try again.", - "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.
    Select a range so that the first table row was on the same row
    and the resulting table overlapped the current one.", - "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.
    Select a range which does not include other tables.", - "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "SSE.Views.TableOptionsDialog.txtEmpty": "This field is required", - "SSE.Views.TableOptionsDialog.txtFormat": "Create Table", - "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range", - "SSE.Views.TableOptionsDialog.txtNote": "The headers must remain in the same row, and the resulting table range must overlap the original table range.", - "SSE.Views.TableOptionsDialog.txtTitle": "Title", - "SSE.Views.TableSettings.deleteColumnText": "Delete Column", - "SSE.Views.TableSettings.deleteRowText": "Delete Row", - "SSE.Views.TableSettings.deleteTableText": "Delete Table", - "SSE.Views.TableSettings.insertColumnLeftText": "Insert Column Left", - "SSE.Views.TableSettings.insertColumnRightText": "Insert Column Right", - "SSE.Views.TableSettings.insertRowAboveText": "Insert Row Above", - "SSE.Views.TableSettings.insertRowBelowText": "Insert Row Below", - "SSE.Views.TableSettings.notcriticalErrorTitle": "Warning", - "SSE.Views.TableSettings.selectColumnText": "Select Entire Column", - "SSE.Views.TableSettings.selectDataText": "Select Column Data", - "SSE.Views.TableSettings.selectRowText": "Select Row", - "SSE.Views.TableSettings.selectTableText": "Select Table", - "SSE.Views.TableSettings.textActions": "Table actions", - "SSE.Views.TableSettings.textAdvanced": "Show advanced settings", - "SSE.Views.TableSettings.textBanded": "Banded", - "SSE.Views.TableSettings.textColumns": "Columns", - "SSE.Views.TableSettings.textConvertRange": "Convert to range", - "SSE.Views.TableSettings.textEdit": "Rows & Columns", - "SSE.Views.TableSettings.textEmptyTemplate": "No templates", - "SSE.Views.TableSettings.textExistName": "ERROR! A range with such a name already exists", - "SSE.Views.TableSettings.textFilter": "Filter button", - "SSE.Views.TableSettings.textFirst": "First", - "SSE.Views.TableSettings.textHeader": "Header", - "SSE.Views.TableSettings.textInvalidName": "ERROR! Invalid table name", - "SSE.Views.TableSettings.textIsLocked": "This element is being edited by another user.", - "SSE.Views.TableSettings.textLast": "Last", - "SSE.Views.TableSettings.textLongOperation": "Long operation", - "SSE.Views.TableSettings.textPivot": "Insert pivot table", - "SSE.Views.TableSettings.textRemDuplicates": "Remove duplicates", - "SSE.Views.TableSettings.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", - "SSE.Views.TableSettings.textResize": "Resize table", - "SSE.Views.TableSettings.textRows": "Rows", - "SSE.Views.TableSettings.textSelectData": "Select Data", - "SSE.Views.TableSettings.textSlicer": "Insert slicer", - "SSE.Views.TableSettings.textTableName": "Table Name", - "SSE.Views.TableSettings.textTemplate": "Select From Template", - "SSE.Views.TableSettings.textTotal": "Total", - "SSE.Views.TableSettings.warnLongOperation": "The operation you are about to perform might take rather much time to complete.
    Are you sure you want to continue?", - "SSE.Views.TableSettingsAdvanced.textAlt": "Alternative Text", - "SSE.Views.TableSettingsAdvanced.textAltDescription": "Description", - "SSE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", - "SSE.Views.TableSettingsAdvanced.textAltTitle": "Title", - "SSE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings", - "SSE.Views.TextArtSettings.strBackground": "Background color", - "SSE.Views.TextArtSettings.strColor": "Color", - "SSE.Views.TextArtSettings.strFill": "Fill", - "SSE.Views.TextArtSettings.strForeground": "Foreground color", - "SSE.Views.TextArtSettings.strPattern": "Pattern", - "SSE.Views.TextArtSettings.strSize": "Size", - "SSE.Views.TextArtSettings.strStroke": "Line", - "SSE.Views.TextArtSettings.strTransparency": "Opacity", - "SSE.Views.TextArtSettings.strType": "Type", - "SSE.Views.TextArtSettings.textAngle": "Angle", - "SSE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", - "SSE.Views.TextArtSettings.textColor": "Color Fill", - "SSE.Views.TextArtSettings.textDirection": "Direction", - "SSE.Views.TextArtSettings.textEmptyPattern": "No Pattern", - "SSE.Views.TextArtSettings.textFromFile": "From File", - "SSE.Views.TextArtSettings.textFromUrl": "From URL", - "SSE.Views.TextArtSettings.textGradient": "Gradient points", - "SSE.Views.TextArtSettings.textGradientFill": "Gradient Fill", - "SSE.Views.TextArtSettings.textImageTexture": "Picture or Texture", - "SSE.Views.TextArtSettings.textLinear": "Linear", - "SSE.Views.TextArtSettings.textNoFill": "No Fill", - "SSE.Views.TextArtSettings.textPatternFill": "Pattern", - "SSE.Views.TextArtSettings.textPosition": "Position", - "SSE.Views.TextArtSettings.textRadial": "Radial", - "SSE.Views.TextArtSettings.textSelectTexture": "Select", - "SSE.Views.TextArtSettings.textStretch": "Stretch", - "SSE.Views.TextArtSettings.textStyle": "Style", - "SSE.Views.TextArtSettings.textTemplate": "Template", - "SSE.Views.TextArtSettings.textTexture": "From Texture", - "SSE.Views.TextArtSettings.textTile": "Tile", - "SSE.Views.TextArtSettings.textTransform": "Transform", - "SSE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point", - "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point", - "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", - "SSE.Views.TextArtSettings.txtCanvas": "Canvas", - "SSE.Views.TextArtSettings.txtCarton": "Carton", - "SSE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", - "SSE.Views.TextArtSettings.txtGrain": "Grain", - "SSE.Views.TextArtSettings.txtGranite": "Granite", - "SSE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", - "SSE.Views.TextArtSettings.txtKnit": "Knit", - "SSE.Views.TextArtSettings.txtLeather": "Leather", - "SSE.Views.TextArtSettings.txtNoBorders": "No Line", - "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", - "SSE.Views.TextArtSettings.txtWood": "Wood", - "SSE.Views.Toolbar.capBtnAddComment": "Add Comment", - "SSE.Views.Toolbar.capBtnColorSchemas": "Color Scheme", - "SSE.Views.Toolbar.capBtnComment": "Comment", - "SSE.Views.Toolbar.capBtnInsHeader": "Header/Footer", - "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", - "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", - "SSE.Views.Toolbar.capBtnMargins": "Margins", - "SSE.Views.Toolbar.capBtnPageOrient": "Orientation", - "SSE.Views.Toolbar.capBtnPageSize": "Size", - "SSE.Views.Toolbar.capBtnPrintArea": "Print Area", - "SSE.Views.Toolbar.capBtnPrintTitles": "Print Titles", - "SSE.Views.Toolbar.capBtnScale": "Scale to Fit", - "SSE.Views.Toolbar.capImgAlign": "Align", - "SSE.Views.Toolbar.capImgBackward": "Send Backward", - "SSE.Views.Toolbar.capImgForward": "Bring Forward", - "SSE.Views.Toolbar.capImgGroup": "Group", - "SSE.Views.Toolbar.capInsertChart": "Chart", - "SSE.Views.Toolbar.capInsertEquation": "Equation", - "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", - "SSE.Views.Toolbar.capInsertImage": "Image", - "SSE.Views.Toolbar.capInsertShape": "Shape", - "SSE.Views.Toolbar.capInsertSpark": "Sparklines", - "SSE.Views.Toolbar.capInsertTable": "Table", - "SSE.Views.Toolbar.capInsertText": "Text Box", - "SSE.Views.Toolbar.mniImageFromFile": "Image from File", - "SSE.Views.Toolbar.mniImageFromStorage": "Image from Storage", - "SSE.Views.Toolbar.mniImageFromUrl": "Image from URL", - "SSE.Views.Toolbar.textAddPrintArea": "Add to Print Area", - "SSE.Views.Toolbar.textAlignBottom": "Align Bottom", - "SSE.Views.Toolbar.textAlignCenter": "Align Center", - "SSE.Views.Toolbar.textAlignJust": "Justified", - "SSE.Views.Toolbar.textAlignLeft": "Align Left", - "SSE.Views.Toolbar.textAlignMiddle": "Align Middle", - "SSE.Views.Toolbar.textAlignRight": "Align Right", - "SSE.Views.Toolbar.textAlignTop": "Align Top", - "SSE.Views.Toolbar.textAllBorders": "All Borders", - "SSE.Views.Toolbar.textAuto": "Auto", - "SSE.Views.Toolbar.textAutoColor": "Automatic", - "SSE.Views.Toolbar.textBold": "Bold", - "SSE.Views.Toolbar.textBordersColor": "Border Color", - "SSE.Views.Toolbar.textBordersStyle": "Border Style", - "SSE.Views.Toolbar.textBottom": "Bottom: ", - "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", - "SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders", - "SSE.Views.Toolbar.textClearPrintArea": "Clear Print Area", - "SSE.Views.Toolbar.textClearRule": "Clear Rules", - "SSE.Views.Toolbar.textClockwise": "Angle Clockwise", - "SSE.Views.Toolbar.textColorScales": "Color Scales", - "SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise", - "SSE.Views.Toolbar.textDataBars": "Data Bars", - "SSE.Views.Toolbar.textDelLeft": "Shift Cells Left", - "SSE.Views.Toolbar.textDelUp": "Shift Cells Up", - "SSE.Views.Toolbar.textDiagDownBorder": "Diagonal Down Border", - "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", - "SSE.Views.Toolbar.textEntireCol": "Entire Column", - "SSE.Views.Toolbar.textEntireRow": "Entire Row", - "SSE.Views.Toolbar.textFewPages": "pages", - "SSE.Views.Toolbar.textHeight": "Height", - "SSE.Views.Toolbar.textHorizontal": "Horizontal Text", - "SSE.Views.Toolbar.textInsDown": "Shift Cells Down", - "SSE.Views.Toolbar.textInsideBorders": "Inside Borders", - "SSE.Views.Toolbar.textInsRight": "Shift Cells Right", - "SSE.Views.Toolbar.textItalic": "Italic", - "SSE.Views.Toolbar.textItems": "Items", - "SSE.Views.Toolbar.textLandscape": "Landscape", - "SSE.Views.Toolbar.textLeft": "Left: ", - "SSE.Views.Toolbar.textLeftBorders": "Left Borders", - "SSE.Views.Toolbar.textManageRule": "Manage Rules", - "SSE.Views.Toolbar.textManyPages": "pages", - "SSE.Views.Toolbar.textMarginsLast": "Last Custom", - "SSE.Views.Toolbar.textMarginsNarrow": "Narrow", - "SSE.Views.Toolbar.textMarginsNormal": "Normal", - "SSE.Views.Toolbar.textMarginsWide": "Wide", - "SSE.Views.Toolbar.textMiddleBorders": "Inside Horizontal Borders", - "SSE.Views.Toolbar.textMoreFormats": "More formats", - "SSE.Views.Toolbar.textMorePages": "More pages", - "SSE.Views.Toolbar.textNewColor": "Add New Custom Color", - "SSE.Views.Toolbar.textNewRule": "New Rule", - "SSE.Views.Toolbar.textNoBorders": "No Borders", - "SSE.Views.Toolbar.textOnePage": "page", - "SSE.Views.Toolbar.textOutBorders": "Outside Borders", - "SSE.Views.Toolbar.textPageMarginsCustom": "Custom margins", - "SSE.Views.Toolbar.textPortrait": "Portrait", - "SSE.Views.Toolbar.textPrint": "Print", - "SSE.Views.Toolbar.textPrintOptions": "Print Settings", - "SSE.Views.Toolbar.textRight": "Right: ", - "SSE.Views.Toolbar.textRightBorders": "Right Borders", - "SSE.Views.Toolbar.textRotateDown": "Rotate Text Down", - "SSE.Views.Toolbar.textRotateUp": "Rotate Text Up", - "SSE.Views.Toolbar.textScale": "Scale", - "SSE.Views.Toolbar.textScaleCustom": "Custom", - "SSE.Views.Toolbar.textSelection": "From current selection", - "SSE.Views.Toolbar.textSetPrintArea": "Set Print Area", - "SSE.Views.Toolbar.textStrikeout": "Strikethrough", - "SSE.Views.Toolbar.textSubscript": "Subscript", - "SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript", - "SSE.Views.Toolbar.textSuperscript": "Superscript", - "SSE.Views.Toolbar.textTabCollaboration": "Collaboration", - "SSE.Views.Toolbar.textTabData": "Data", - "SSE.Views.Toolbar.textTabFile": "File", - "SSE.Views.Toolbar.textTabFormula": "Formula", - "SSE.Views.Toolbar.textTabHome": "Home", - "SSE.Views.Toolbar.textTabInsert": "Insert", - "SSE.Views.Toolbar.textTabLayout": "Layout", - "SSE.Views.Toolbar.textTabProtect": "Protection", - "SSE.Views.Toolbar.textTabView": "View", - "SSE.Views.Toolbar.textThisPivot": "From this pivot", - "SSE.Views.Toolbar.textThisSheet": "From this worksheet", - "SSE.Views.Toolbar.textThisTable": "From this table", - "SSE.Views.Toolbar.textTop": "Top: ", - "SSE.Views.Toolbar.textTopBorders": "Top Borders", - "SSE.Views.Toolbar.textUnderline": "Underline", - "SSE.Views.Toolbar.textVertical": "Vertical Text", - "SSE.Views.Toolbar.textWidth": "Width", - "SSE.Views.Toolbar.textZoom": "Zoom", - "SSE.Views.Toolbar.tipAlignBottom": "Align bottom", - "SSE.Views.Toolbar.tipAlignCenter": "Align center", - "SSE.Views.Toolbar.tipAlignJust": "Justified", - "SSE.Views.Toolbar.tipAlignLeft": "Align left", - "SSE.Views.Toolbar.tipAlignMiddle": "Align middle", - "SSE.Views.Toolbar.tipAlignRight": "Align right", - "SSE.Views.Toolbar.tipAlignTop": "Align top", - "SSE.Views.Toolbar.tipAutofilter": "Sort and Filter", - "SSE.Views.Toolbar.tipBack": "Back", - "SSE.Views.Toolbar.tipBorders": "Borders", - "SSE.Views.Toolbar.tipCellStyle": "Cell Style", - "SSE.Views.Toolbar.tipChangeChart": "Change chart type", - "SSE.Views.Toolbar.tipClearStyle": "Clear", - "SSE.Views.Toolbar.tipColorSchemas": "Change color scheme", - "SSE.Views.Toolbar.tipCondFormat": "Conditional formatting", - "SSE.Views.Toolbar.tipCopy": "Copy", - "SSE.Views.Toolbar.tipCopyStyle": "Copy style", - "SSE.Views.Toolbar.tipDecDecimal": "Decrease decimal", - "SSE.Views.Toolbar.tipDecFont": "Decrement font size", - "SSE.Views.Toolbar.tipDeleteOpt": "Delete cells", - "SSE.Views.Toolbar.tipDigStyleAccounting": "Accounting style", - "SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style", - "SSE.Views.Toolbar.tipDigStylePercent": "Percent style", - "SSE.Views.Toolbar.tipEditChart": "Edit Chart", - "SSE.Views.Toolbar.tipEditChartData": "Select Data", - "SSE.Views.Toolbar.tipEditChartType": "Change Chart Type", - "SSE.Views.Toolbar.tipEditHeader": "Edit header or footer", - "SSE.Views.Toolbar.tipFontColor": "Font color", - "SSE.Views.Toolbar.tipFontName": "Font", - "SSE.Views.Toolbar.tipFontSize": "Font size", - "SSE.Views.Toolbar.tipImgAlign": "Align objects", - "SSE.Views.Toolbar.tipImgGroup": "Group objects", - "SSE.Views.Toolbar.tipIncDecimal": "Increase decimal", - "SSE.Views.Toolbar.tipIncFont": "Increment font size", - "SSE.Views.Toolbar.tipInsertChart": "Insert chart", - "SSE.Views.Toolbar.tipInsertChartSpark": "Insert chart", - "SSE.Views.Toolbar.tipInsertEquation": "Insert equation", - "SSE.Views.Toolbar.tipInsertHyperlink": "Add hyperlink", - "SSE.Views.Toolbar.tipInsertImage": "Insert image", - "SSE.Views.Toolbar.tipInsertOpt": "Insert cells", - "SSE.Views.Toolbar.tipInsertShape": "Insert autoshape", - "SSE.Views.Toolbar.tipInsertSlicer": "Insert slicer", - "SSE.Views.Toolbar.tipInsertSpark": "Insert sparkline", - "SSE.Views.Toolbar.tipInsertSymbol": "Insert symbol", - "SSE.Views.Toolbar.tipInsertTable": "Insert table", - "SSE.Views.Toolbar.tipInsertText": "Insert text box", - "SSE.Views.Toolbar.tipInsertTextart": "Insert Text Art", - "SSE.Views.Toolbar.tipMerge": "Merge and center", - "SSE.Views.Toolbar.tipNumFormat": "Number format", - "SSE.Views.Toolbar.tipPageMargins": "Page margins", - "SSE.Views.Toolbar.tipPageOrient": "Page orientation", - "SSE.Views.Toolbar.tipPageSize": "Page size", - "SSE.Views.Toolbar.tipPaste": "Paste", - "SSE.Views.Toolbar.tipPrColor": "Fill color", - "SSE.Views.Toolbar.tipPrint": "Print", - "SSE.Views.Toolbar.tipPrintArea": "Print area", - "SSE.Views.Toolbar.tipPrintTitles": "Print titles", - "SSE.Views.Toolbar.tipRedo": "Redo", - "SSE.Views.Toolbar.tipSave": "Save", - "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", - "SSE.Views.Toolbar.tipScale": "Scale to Fit", - "SSE.Views.Toolbar.tipSendBackward": "Send backward", - "SSE.Views.Toolbar.tipSendForward": "Bring forward", - "SSE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.", - "SSE.Views.Toolbar.tipTextOrientation": "Orientation", - "SSE.Views.Toolbar.tipUndo": "Undo", - "SSE.Views.Toolbar.tipWrap": "Wrap text", - "SSE.Views.Toolbar.txtAccounting": "Accounting", - "SSE.Views.Toolbar.txtAdditional": "Additional", - "SSE.Views.Toolbar.txtAscending": "Ascending", - "SSE.Views.Toolbar.txtAutosumTip": "Summation", - "SSE.Views.Toolbar.txtClearAll": "All", - "SSE.Views.Toolbar.txtClearComments": "Comments", - "SSE.Views.Toolbar.txtClearFilter": "Clear filter", - "SSE.Views.Toolbar.txtClearFormat": "Format", - "SSE.Views.Toolbar.txtClearFormula": "Function", - "SSE.Views.Toolbar.txtClearHyper": "Hyperlinks", - "SSE.Views.Toolbar.txtClearText": "Text", - "SSE.Views.Toolbar.txtCurrency": "Currency", - "SSE.Views.Toolbar.txtCustom": "Custom", - "SSE.Views.Toolbar.txtDate": "Date", - "SSE.Views.Toolbar.txtDateTime": "Date & Time", - "SSE.Views.Toolbar.txtDescending": "Descending", - "SSE.Views.Toolbar.txtDollar": "$ Dollar", - "SSE.Views.Toolbar.txtEuro": "€ Euro", - "SSE.Views.Toolbar.txtExp": "Exponential", - "SSE.Views.Toolbar.txtFilter": "Filter", - "SSE.Views.Toolbar.txtFormula": "Insert function", - "SSE.Views.Toolbar.txtFraction": "Fraction", - "SSE.Views.Toolbar.txtFranc": "CHF Swiss franc", - "SSE.Views.Toolbar.txtGeneral": "General", - "SSE.Views.Toolbar.txtInteger": "Integer", - "SSE.Views.Toolbar.txtManageRange": "Name Manager", - "SSE.Views.Toolbar.txtMergeAcross": "Merge Across", - "SSE.Views.Toolbar.txtMergeCells": "Merge Cells", - "SSE.Views.Toolbar.txtMergeCenter": "Merge & Center", - "SSE.Views.Toolbar.txtNamedRange": "Named ranges", - "SSE.Views.Toolbar.txtNewRange": "Define Name", - "SSE.Views.Toolbar.txtNoBorders": "No borders", - "SSE.Views.Toolbar.txtNumber": "Number", - "SSE.Views.Toolbar.txtPasteRange": "Paste Name", - "SSE.Views.Toolbar.txtPercentage": "Percentage", - "SSE.Views.Toolbar.txtPound": "£ Pound", - "SSE.Views.Toolbar.txtRouble": "₽ Rouble", - "SSE.Views.Toolbar.txtScheme1": "Office", - "SSE.Views.Toolbar.txtScheme10": "Median", - "SSE.Views.Toolbar.txtScheme11": "Metro", - "SSE.Views.Toolbar.txtScheme12": "Module", - "SSE.Views.Toolbar.txtScheme13": "Opulent", - "SSE.Views.Toolbar.txtScheme14": "Oriel", - "SSE.Views.Toolbar.txtScheme15": "Origin", - "SSE.Views.Toolbar.txtScheme16": "Paper", - "SSE.Views.Toolbar.txtScheme17": "Solstice", - "SSE.Views.Toolbar.txtScheme18": "Technic", - "SSE.Views.Toolbar.txtScheme19": "Trek", - "SSE.Views.Toolbar.txtScheme2": "Grayscale", - "SSE.Views.Toolbar.txtScheme20": "Urban", - "SSE.Views.Toolbar.txtScheme21": "Verve", - "SSE.Views.Toolbar.txtScheme22": "New Office", - "SSE.Views.Toolbar.txtScheme3": "Apex", - "SSE.Views.Toolbar.txtScheme4": "Aspect", - "SSE.Views.Toolbar.txtScheme5": "Civic", - "SSE.Views.Toolbar.txtScheme6": "Concourse", - "SSE.Views.Toolbar.txtScheme7": "Equity", - "SSE.Views.Toolbar.txtScheme8": "Flow", - "SSE.Views.Toolbar.txtScheme9": "Foundry", - "SSE.Views.Toolbar.txtScientific": "Scientific", - "SSE.Views.Toolbar.txtSearch": "Search", - "SSE.Views.Toolbar.txtSort": "Sort", - "SSE.Views.Toolbar.txtSortAZ": "Sort ascending", - "SSE.Views.Toolbar.txtSortZA": "Sort descending", - "SSE.Views.Toolbar.txtSpecial": "Special", - "SSE.Views.Toolbar.txtTableTemplate": "Format as table template", - "SSE.Views.Toolbar.txtText": "Text", - "SSE.Views.Toolbar.txtTime": "Time", - "SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells", - "SSE.Views.Toolbar.txtYen": "¥ Yen", - "SSE.Views.Top10FilterDialog.textType": "Show", - "SSE.Views.Top10FilterDialog.txtBottom": "Bottom", - "SSE.Views.Top10FilterDialog.txtBy": "by", - "SSE.Views.Top10FilterDialog.txtItems": "Item", - "SSE.Views.Top10FilterDialog.txtPercent": "Percent", - "SSE.Views.Top10FilterDialog.txtSum": "Sum", - "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 AutoFilter", - "SSE.Views.Top10FilterDialog.txtTop": "Top", - "SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 Filter", - "SSE.Views.ValueFieldSettingsDialog.textTitle": "Value Field Settings", - "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Average", - "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Base field", - "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Base item", - "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 of %2", - "SSE.Views.ValueFieldSettingsDialog.txtCount": "Count", - "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Count Numbers", - "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Custom name", - "SSE.Views.ValueFieldSettingsDialog.txtDifference": "The Difference From", - "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index", - "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", - "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", - "SSE.Views.ValueFieldSettingsDialog.txtNormal": "No Calculation", - "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percent of", - "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percent Difference From", - "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percent of Column", - "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percent of Total", - "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percent of Row", - "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Product", - "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Running Total In", - "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Show values as", - "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Source name:", - "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", - "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", - "SSE.Views.ValueFieldSettingsDialog.txtSum": "Sum", - "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Summarize value field by", - "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", - "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", - "SSE.Views.ViewManagerDlg.closeButtonText": "Close", - "SSE.Views.ViewManagerDlg.guestText": "Guest", - "SSE.Views.ViewManagerDlg.textDelete": "Delete", - "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicate", - "SSE.Views.ViewManagerDlg.textEmpty": "No views have been created yet.", - "SSE.Views.ViewManagerDlg.textGoTo": "Go to view", - "SSE.Views.ViewManagerDlg.textLongName": "Enter a name that is less than 128 characters.", - "SSE.Views.ViewManagerDlg.textNew": "New", - "SSE.Views.ViewManagerDlg.textRename": "Rename", - "SSE.Views.ViewManagerDlg.textRenameError": "View name must not be empty.", - "SSE.Views.ViewManagerDlg.textRenameLabel": "Rename view", - "SSE.Views.ViewManagerDlg.textViews": "Sheet views", - "SSE.Views.ViewManagerDlg.tipIsLocked": "This element is being edited by another user.", - "SSE.Views.ViewManagerDlg.txtTitle": "Sheet View Manager", - "SSE.Views.ViewManagerDlg.warnDeleteView": "You are trying to delete the currently enabled view '%1'.
    Close this view and delete it?", - "SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes", - "SSE.Views.ViewTab.capBtnSheetView": "Sheet View", - "SSE.Views.ViewTab.textClose": "Close", - "SSE.Views.ViewTab.textCreate": "New", - "SSE.Views.ViewTab.textDefault": "Default", - "SSE.Views.ViewTab.textFormula": "Formula bar", - "SSE.Views.ViewTab.textFreezeCol": "Freeze First Column", - "SSE.Views.ViewTab.textFreezeRow": "Freeze Top Row", - "SSE.Views.ViewTab.textGridlines": "Gridlines", - "SSE.Views.ViewTab.textHeadings": "Headings", - "SSE.Views.ViewTab.textManager": "View manager", - "SSE.Views.ViewTab.textUnFreeze": "Unfreeze Panes", - "SSE.Views.ViewTab.textZeros": "Show zeros", - "SSE.Views.ViewTab.textZoom": "Zoom", - "SSE.Views.ViewTab.tipClose": "Close sheet view", - "SSE.Views.ViewTab.tipCreate": "Create sheet view", - "SSE.Views.ViewTab.tipFreeze": "Freeze panes", - "SSE.Views.ViewTab.tipSheetView": "Sheet view" +{ + "cancelButtonText": "Cancel", + "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", + "Common.Controllers.Chat.textEnterMessage": "Enter your message here", + "Common.Controllers.History.notcriticalErrorTitle": "Warning", + "Common.define.chartData.textArea": "Area", + "Common.define.chartData.textAreaStacked": "Stacked area", + "Common.define.chartData.textAreaStackedPer": "100% Stacked area", + "Common.define.chartData.textBar": "Bar", + "Common.define.chartData.textBarNormal": "Clustered column", + "Common.define.chartData.textBarNormal3d": "3-D Clustered column", + "Common.define.chartData.textBarNormal3dPerspective": "3-D column", + "Common.define.chartData.textBarStacked": "Stacked column", + "Common.define.chartData.textBarStacked3d": "3-D Stacked column", + "Common.define.chartData.textBarStackedPer": "100% Stacked column", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% Stacked column", + "Common.define.chartData.textCharts": "Charts", + "Common.define.chartData.textColumn": "Column", + "Common.define.chartData.textColumnSpark": "Column", + "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textComboAreaBar": "Stacked area - clustered column", + "Common.define.chartData.textComboBarLine": "Clustered column - line", + "Common.define.chartData.textComboBarLineSecondary": "Clustered column - line on secondary axis", + "Common.define.chartData.textComboCustom": "Custom combination", + "Common.define.chartData.textDoughnut": "Doughnut", + "Common.define.chartData.textHBarNormal": "Clustered bar", + "Common.define.chartData.textHBarNormal3d": "3-D Clustered bar", + "Common.define.chartData.textHBarStacked": "Stacked bar", + "Common.define.chartData.textHBarStacked3d": "3-D Stacked bar", + "Common.define.chartData.textHBarStackedPer": "100% Stacked bar", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% Stacked bar", + "Common.define.chartData.textLine": "Line", + "Common.define.chartData.textLine3d": "3-D line", + "Common.define.chartData.textLineMarker": "Line with markers", + "Common.define.chartData.textLineSpark": "Line", + "Common.define.chartData.textLineStacked": "Stacked line", + "Common.define.chartData.textLineStackedMarker": "Stacked line with markers", + "Common.define.chartData.textLineStackedPer": "100% Stacked line", + "Common.define.chartData.textLineStackedPerMarker": "100% Stacked line with markers", + "Common.define.chartData.textPie": "Pie", + "Common.define.chartData.textPie3d": "3-D pie", + "Common.define.chartData.textPoint": "XY (Scatter)", + "Common.define.chartData.textScatter": "Scatter", + "Common.define.chartData.textScatterLine": "Scatter with straight lines", + "Common.define.chartData.textScatterLineMarker": "Scatter with straight lines and markers", + "Common.define.chartData.textScatterSmooth": "Scatter with smooth lines", + "Common.define.chartData.textScatterSmoothMarker": "Scatter with smooth lines and markers", + "Common.define.chartData.textSparks": "Sparklines", + "Common.define.chartData.textStock": "Stock", + "Common.define.chartData.textSurface": "Surface", + "Common.define.chartData.textWinLossSpark": "Win/Loss", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "No format set", + "Common.define.conditionalData.text1Above": "1 std dev above", + "Common.define.conditionalData.text1Below": "1 std dev below", + "Common.define.conditionalData.text2Above": "2 std dev above", + "Common.define.conditionalData.text2Below": "2 std dev below", + "Common.define.conditionalData.text3Above": "3 std dev above", + "Common.define.conditionalData.text3Below": "3 std dev below", + "Common.define.conditionalData.textAbove": "Above", + "Common.define.conditionalData.textAverage": "Average", + "Common.define.conditionalData.textBegins": "Begins with", + "Common.define.conditionalData.textBelow": "Below", + "Common.define.conditionalData.textBetween": "Between", + "Common.define.conditionalData.textBlank": "Blank", + "Common.define.conditionalData.textBlanks": "Contains blanks", + "Common.define.conditionalData.textBottom": "Bottom", + "Common.define.conditionalData.textContains": "Contains", + "Common.define.conditionalData.textDataBar": "Data bar", + "Common.define.conditionalData.textDate": "Date", + "Common.define.conditionalData.textDuplicate": "Duplicate", + "Common.define.conditionalData.textEnds": "Ends with", + "Common.define.conditionalData.textEqAbove": "Equal to or above", + "Common.define.conditionalData.textEqBelow": "Equal to or below", + "Common.define.conditionalData.textEqual": "Equal to", + "Common.define.conditionalData.textError": "Error", + "Common.define.conditionalData.textErrors": "Contains errors", + "Common.define.conditionalData.textFormula": "Formula", + "Common.define.conditionalData.textGreater": "Greater than", + "Common.define.conditionalData.textGreaterEq": "Greater than or equal to", + "Common.define.conditionalData.textIconSets": "Icon sets", + "Common.define.conditionalData.textLast7days": "In the last 7 days", + "Common.define.conditionalData.textLastMonth": "Last month", + "Common.define.conditionalData.textLastWeek": "Last week", + "Common.define.conditionalData.textLess": "Less than", + "Common.define.conditionalData.textLessEq": "Less than or equal to", + "Common.define.conditionalData.textNextMonth": "Next month", + "Common.define.conditionalData.textNextWeek": "Next week", + "Common.define.conditionalData.textNotBetween": "Not between", + "Common.define.conditionalData.textNotBlanks": "Does not contain blanks", + "Common.define.conditionalData.textNotContains": "Does not contain", + "Common.define.conditionalData.textNotEqual": "Not equal to", + "Common.define.conditionalData.textNotErrors": "Does not contain errors", + "Common.define.conditionalData.textText": "Text", + "Common.define.conditionalData.textThisMonth": "This month", + "Common.define.conditionalData.textThisWeek": "This week", + "Common.define.conditionalData.textToday": "Today", + "Common.define.conditionalData.textTomorrow": "Tomorrow", + "Common.define.conditionalData.textTop": "Top", + "Common.define.conditionalData.textUnique": "Unique", + "Common.define.conditionalData.textValue": "Value is", + "Common.define.conditionalData.textYesterday": "Yesterday", + "Common.Translation.warnFileLocked": "The file is being edited in another app. You can continue editing and save it as a copy.", + "Common.Translation.warnFileLockedBtnEdit": "Create a copy", + "Common.Translation.warnFileLockedBtnView": "Open for viewing", + "Common.UI.ButtonColored.textAutoColor": "Automatic", + "Common.UI.ButtonColored.textNewColor": "Add New Custom Color", + "del_Common.UI.ColorButton.textAutoColor": "Automatic", + "del_Common.UI.ColorButton.textNewColor": "Add New Custom Color", + "Common.UI.ComboBorderSize.txtNoBorders": "No borders", + "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", + "Common.UI.ComboDataView.emptyComboText": "No styles", + "Common.UI.ExtendedColorDialog.addButtonText": "Add", + "Common.UI.ExtendedColorDialog.textCurrent": "Current", + "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
    Please enter a value between 000000 and FFFFFF.", + "Common.UI.ExtendedColorDialog.textNew": "New", + "Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.
    Please enter a numeric value between 0 and 255.", + "Common.UI.HSBColorPicker.textNoColor": "No Color", + "Common.UI.SearchDialog.textHighlight": "Highlight results", + "Common.UI.SearchDialog.textMatchCase": "Case sensitive", + "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", + "Common.UI.SearchDialog.textSearchStart": "Enter your text here", + "Common.UI.SearchDialog.textTitle": "Find and Replace", + "Common.UI.SearchDialog.textTitle2": "Find", + "Common.UI.SearchDialog.textWholeWords": "Whole words only", + "Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace", + "Common.UI.SearchDialog.txtBtnReplace": "Replace", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", + "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", + "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
    Please click to save your changes and reload the updates.", + "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", + "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", + "Common.UI.Themes.txtThemeClassicLight": "Classic Light", + "Common.UI.Themes.txtThemeDark": "Dark", + "Common.UI.Themes.txtThemeLight": "Light", + "Common.UI.Window.cancelButtonText": "Cancel", + "Common.UI.Window.closeButtonText": "Close", + "Common.UI.Window.noButtonText": "No", + "Common.UI.Window.okButtonText": "OK", + "Common.UI.Window.textConfirmation": "Confirmation", + "Common.UI.Window.textDontShow": "Don't show this message again", + "Common.UI.Window.textError": "Error", + "Common.UI.Window.textInformation": "Information", + "Common.UI.Window.textWarning": "Warning", + "Common.UI.Window.yesButtonText": "Yes", + "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", + "Common.Views.About.txtAddress": "address: ", + "Common.Views.About.txtLicensee": "LICENSEE", + "Common.Views.About.txtLicensor": "LICENSOR", + "Common.Views.About.txtMail": "email: ", + "Common.Views.About.txtPoweredBy": "Powered by", + "Common.Views.About.txtTel": "tel.: ", + "Common.Views.About.txtVersion": "Version ", + "Common.Views.AutoCorrectDialog.textAdd": "Add", + "Common.Views.AutoCorrectDialog.textApplyAsWork": "Apply as you work", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect", + "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type", + "Common.Views.AutoCorrectDialog.textBy": "By", + "Common.Views.AutoCorrectDialog.textDelete": "Delete", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect", + "Common.Views.AutoCorrectDialog.textNewRowCol": "Include new rows and columns in table", + "Common.Views.AutoCorrectDialog.textRecognized": "Recognized Functions", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.", + "Common.Views.AutoCorrectDialog.textReplace": "Replace", + "Common.Views.AutoCorrectDialog.textReplaceText": "Replace As You Type", + "Common.Views.AutoCorrectDialog.textReplaceType": "Replace text as you type", + "Common.Views.AutoCorrectDialog.textReset": "Reset", + "Common.Views.AutoCorrectDialog.textResetAll": "Reset to default", + "Common.Views.AutoCorrectDialog.textRestore": "Restore", + "Common.Views.AutoCorrectDialog.textTitle": "AutoCorrect", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Recognized functions must contain only the letters A through Z, uppercase or lowercase.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Any expression you added will be removed and the removed ones will be restored. Do you want to continue?", + "Common.Views.AutoCorrectDialog.warnReplace": "The autocorrect entry for %1 already exists. Do you want to replace it?", + "Common.Views.AutoCorrectDialog.warnReset": "Any autocorrect you added will be removed and the changed ones will be restored to their original values. Do you want to continue?", + "Common.Views.AutoCorrectDialog.warnRestore": "The autocorrect entry for %1 will be reset to its original value. Do you want to continue?", + "Common.Views.Chat.textSend": "Send", + "Common.Views.Comments.mniAuthorAsc": "Author A to Z", + "Common.Views.Comments.mniAuthorDesc": "Author Z to A", + "Common.Views.Comments.mniDateAsc": "Oldest", + "Common.Views.Comments.mniDateDesc": "Newest", + "Common.Views.Comments.mniPositionAsc": "From top", + "Common.Views.Comments.mniPositionDesc": "From bottom", + "Common.Views.Comments.textAdd": "Add", + "Common.Views.Comments.textAddComment": "Add Comment", + "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", + "Common.Views.Comments.textAddReply": "Add Reply", + "Common.Views.Comments.textAnonym": "Guest", + "Common.Views.Comments.textCancel": "Cancel", + "Common.Views.Comments.textClose": "Close", + "Common.Views.Comments.textClosePanel": "Close comments", + "Common.Views.Comments.textComments": "Comments", + "Common.Views.Comments.textEdit": "OK", + "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", + "Common.Views.Comments.textHintAddComment": "Add comment", + "Common.Views.Comments.textOpenAgain": "Open Again", + "Common.Views.Comments.textReply": "Reply", + "Common.Views.Comments.textResolve": "Resolve", + "Common.Views.Comments.textResolved": "Resolved", + "Common.Views.Comments.textSort": "Sort comments", + "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", + "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

    To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", + "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", + "Common.Views.CopyWarningDialog.textToCopy": "for Copy", + "Common.Views.CopyWarningDialog.textToCut": "for Cut", + "Common.Views.CopyWarningDialog.textToPaste": "for Paste", + "Common.Views.DocumentAccessDialog.textLoading": "Loading...", + "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings", + "Common.Views.EditNameDialog.textLabel": "Label:", + "Common.Views.EditNameDialog.textLabelError": "Label must not be empty.", + "Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:", + "Common.Views.Header.textAddFavorite": "Mark as favorite", + "Common.Views.Header.textAdvSettings": "Advanced settings", + "Common.Views.Header.textBack": "Open file location", + "Common.Views.Header.textCompactView": "Hide Toolbar", + "Common.Views.Header.textHideLines": "Hide Rulers", + "Common.Views.Header.textHideStatusBar": "Combine sheet and status bars", + "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", + "Common.Views.Header.textSaveBegin": "Saving...", + "Common.Views.Header.textSaveChanged": "Modified", + "Common.Views.Header.textSaveEnd": "All changes saved", + "Common.Views.Header.textSaveExpander": "All changes saved", + "Common.Views.Header.textZoom": "Zoom", + "Common.Views.Header.tipAccessRights": "Manage document access rights", + "Common.Views.Header.tipDownload": "Download file", + "Common.Views.Header.tipGoEdit": "Edit current file", + "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipRedo": "Redo", + "Common.Views.Header.tipSave": "Save", + "Common.Views.Header.tipUndo": "Undo", + "Common.Views.Header.tipUndock": "Undock into separate window", + "Common.Views.Header.tipViewSettings": "View settings", + "Common.Views.Header.tipViewUsers": "View users and manage document access rights", + "Common.Views.Header.txtAccessRights": "Change access rights", + "Common.Views.Header.txtRename": "Rename", + "Common.Views.History.textCloseHistory": "Close History", + "Common.Views.History.textHide": "Collapse", + "Common.Views.History.textHideAll": "Hide detailed changes", + "Common.Views.History.textRestore": "Restore", + "Common.Views.History.textShow": "Expand", + "Common.Views.History.textShowAll": "Show detailed changes", + "Common.Views.History.textVer": "ver.", + "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "Common.Views.ListSettingsDialog.textBulleted": "Bulleted", + "Common.Views.ListSettingsDialog.textNumbering": "Numbered", + "Common.Views.ListSettingsDialog.tipChange": "Change bullet", + "Common.Views.ListSettingsDialog.txtBullet": "Bullet", + "Common.Views.ListSettingsDialog.txtColor": "Color", + "Common.Views.ListSettingsDialog.txtNewBullet": "New bullet", + "Common.Views.ListSettingsDialog.txtNone": "None", + "Common.Views.ListSettingsDialog.txtOfText": "% of text", + "Common.Views.ListSettingsDialog.txtSize": "Size", + "Common.Views.ListSettingsDialog.txtStart": "Start at", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", + "Common.Views.ListSettingsDialog.txtTitle": "List Settings", + "Common.Views.ListSettingsDialog.txtType": "Type", + "Common.Views.OpenDialog.closeButtonText": "Close File", + "Common.Views.OpenDialog.textInvalidRange": "Invalid cells range", + "Common.Views.OpenDialog.textSelectData": "Select data", + "Common.Views.OpenDialog.txtAdvanced": "Advanced", + "Common.Views.OpenDialog.txtColon": "Colon", + "Common.Views.OpenDialog.txtComma": "Comma", + "Common.Views.OpenDialog.txtDelimiter": "Delimiter", + "Common.Views.OpenDialog.txtDestData": "Choose where to put the data", + "Common.Views.OpenDialog.txtEmpty": "This field is required", + "Common.Views.OpenDialog.txtEncoding": "Encoding ", + "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", + "Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file", + "Common.Views.OpenDialog.txtOther": "Other", + "Common.Views.OpenDialog.txtPassword": "Password", + "Common.Views.OpenDialog.txtPreview": "Preview", + "Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.", + "Common.Views.OpenDialog.txtSemicolon": "Semicolon", + "Common.Views.OpenDialog.txtSpace": "Space", + "Common.Views.OpenDialog.txtTab": "Tab", + "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.OpenDialog.txtTitleProtected": "Protected File", + "Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical", + "Common.Views.PasswordDialog.txtPassword": "Password", + "Common.Views.PasswordDialog.txtRepeat": "Repeat password", + "Common.Views.PasswordDialog.txtTitle": "Set Password", + "Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", + "Common.Views.PluginDlg.textLoading": "Loading", + "Common.Views.Plugins.groupCaption": "Plugins", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Loading", + "Common.Views.Plugins.textStart": "Start", + "Common.Views.Plugins.textStop": "Stop", + "Common.Views.Protection.hintAddPwd": "Encrypt with password", + "Common.Views.Protection.hintPwd": "Change or delete password", + "Common.Views.Protection.hintSignature": "Add digital signature or signature line", + "Common.Views.Protection.txtAddPwd": "Add password", + "Common.Views.Protection.txtChangePwd": "Change password", + "Common.Views.Protection.txtDeletePwd": "Delete password", + "Common.Views.Protection.txtEncrypt": "Encrypt", + "Common.Views.Protection.txtInvisibleSignature": "Add digital signature", + "Common.Views.Protection.txtSignature": "Signature", + "Common.Views.Protection.txtSignatureLine": "Add signature line", + "Common.Views.RenameDialog.textName": "File name", + "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", + "Common.Views.ReviewChanges.hintNext": "To next change", + "Common.Views.ReviewChanges.hintPrev": "To previous change", + "Common.Views.ReviewChanges.strFast": "Fast", + "Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.", + "Common.Views.ReviewChanges.strStrict": "Strict", + "Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change", + "Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode", + "Common.Views.ReviewChanges.tipCommentRem": "Remove comments", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments", + "Common.Views.ReviewChanges.tipCommentResolve": "Resolve comments", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolve current comments", + "Common.Views.ReviewChanges.tipHistory": "Show version history", + "Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change", + "Common.Views.ReviewChanges.tipReview": "Track changes", + "Common.Views.ReviewChanges.tipReviewView": "Select the mode you want the changes to be displayed", + "Common.Views.ReviewChanges.tipSetDocLang": "Set document language", + "Common.Views.ReviewChanges.tipSetSpelling": "Spell checking", + "Common.Views.ReviewChanges.tipSharing": "Manage document access rights", + "Common.Views.ReviewChanges.txtAccept": "Accept", + "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", + "Common.Views.ReviewChanges.txtAcceptChanges": "Accept changes", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Change", + "Common.Views.ReviewChanges.txtChat": "Chat", + "Common.Views.ReviewChanges.txtClose": "Close", + "Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments", + "Common.Views.ReviewChanges.txtCommentRemove": "Remove", + "Common.Views.ReviewChanges.txtCommentResolve": "Resolve", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve Current Comments", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments", + "Common.Views.ReviewChanges.txtDocLang": "Language", + "Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)", + "Common.Views.ReviewChanges.txtFinalCap": "Final", + "Common.Views.ReviewChanges.txtHistory": "Version History", + "Common.Views.ReviewChanges.txtMarkup": "All changes (Editing)", + "Common.Views.ReviewChanges.txtMarkupCap": "Markup", + "Common.Views.ReviewChanges.txtNext": "Next", + "Common.Views.ReviewChanges.txtOriginal": "All changes rejected (Preview)", + "Common.Views.ReviewChanges.txtOriginalCap": "Original", + "Common.Views.ReviewChanges.txtPrev": "Previous", + "Common.Views.ReviewChanges.txtReject": "Reject", + "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", + "Common.Views.ReviewChanges.txtRejectChanges": "Reject changes", + "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Change", + "Common.Views.ReviewChanges.txtSharing": "Sharing", + "Common.Views.ReviewChanges.txtSpelling": "Spell Checking", + "Common.Views.ReviewChanges.txtTurnon": "Track Changes", + "Common.Views.ReviewChanges.txtView": "Display Mode", + "Common.Views.ReviewPopover.textAdd": "Add", + "Common.Views.ReviewPopover.textAddReply": "Add Reply", + "Common.Views.ReviewPopover.textCancel": "Cancel", + "Common.Views.ReviewPopover.textClose": "Close", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email", + "Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email", + "Common.Views.ReviewPopover.textOpenAgain": "Open Again", + "Common.Views.ReviewPopover.textReply": "Reply", + "Common.Views.ReviewPopover.textResolve": "Resolve", + "Common.Views.SaveAsDlg.textLoading": "Loading", + "Common.Views.SaveAsDlg.textTitle": "Folder for save", + "Common.Views.SelectFileDlg.textLoading": "Loading", + "Common.Views.SelectFileDlg.textTitle": "Select Data Source", + "Common.Views.SignDialog.textBold": "Bold", + "Common.Views.SignDialog.textCertificate": "Certificate", + "Common.Views.SignDialog.textChange": "Change", + "Common.Views.SignDialog.textInputName": "Input signer name", + "Common.Views.SignDialog.textItalic": "Italic", + "Common.Views.SignDialog.textNameError": "Signer name must not be empty.", + "Common.Views.SignDialog.textPurpose": "Purpose for signing this document", + "Common.Views.SignDialog.textSelect": "Select", + "Common.Views.SignDialog.textSelectImage": "Select Image", + "Common.Views.SignDialog.textSignature": "Signature looks as", + "Common.Views.SignDialog.textTitle": "Sign Document", + "Common.Views.SignDialog.textUseImage": "or click 'Select Image' to use a picture as signature", + "Common.Views.SignDialog.textValid": "Valid from %1 to %2", + "Common.Views.SignDialog.tipFontName": "Font Name", + "Common.Views.SignDialog.tipFontSize": "Font Size", + "Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog", + "Common.Views.SignSettingsDialog.textInfo": "Signer Info", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", + "Common.Views.SignSettingsDialog.textInfoName": "Name", + "Common.Views.SignSettingsDialog.textInfoTitle": "Signer Title", + "Common.Views.SignSettingsDialog.textInstructions": "Instructions for Signer", + "Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line", + "Common.Views.SignSettingsDialog.textTitle": "Signature Setup", + "Common.Views.SignSettingsDialog.txtEmpty": "This field is required", + "Common.Views.SymbolTableDialog.textCharacter": "Character", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX value", + "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign", + "Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote", + "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis", + "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", + "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", + "Common.Views.SymbolTableDialog.textEnDash": "En Dash", + "Common.Views.SymbolTableDialog.textEnSpace": "En Space", + "Common.Views.SymbolTableDialog.textFont": "Font", + "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen", + "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space", + "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", + "Common.Views.SymbolTableDialog.textRange": "Range", + "Common.Views.SymbolTableDialog.textRecent": "Recently used symbols", + "Common.Views.SymbolTableDialog.textRegistered": "Registered Sign", + "Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote", + "Common.Views.SymbolTableDialog.textSection": "Section Sign", + "Common.Views.SymbolTableDialog.textShortcut": "Shortcut key", + "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen", + "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote", + "Common.Views.SymbolTableDialog.textSpecial": "Special characters", + "Common.Views.SymbolTableDialog.textSymbols": "Symbols", + "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Trademark Symbol", + "Common.Views.UserNameDialog.textDontShow": "Don't ask me again", + "Common.Views.UserNameDialog.textLabel": "Label:", + "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", + "SSE.Controllers.DataTab.textColumns": "Columns", + "SSE.Controllers.DataTab.textEmptyUrl": "You need to specify URL.", + "SSE.Controllers.DataTab.textRows": "Rows", + "SSE.Controllers.DataTab.textWizard": "Text to Columns", + "SSE.Controllers.DataTab.txtDataValidation": "Data Validation", + "SSE.Controllers.DataTab.txtExpand": "Expand", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "The data next to the selection will not be removed. Do you want to expand the selection to include the adjacent data or continue with the currently selected cells only?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "The selection contains some cells without Data Validation settings.
    Do you want to extend Data Validation to these cells?", + "SSE.Controllers.DataTab.txtImportWizard": "Text Import Wizard", + "SSE.Controllers.DataTab.txtRemDuplicates": "Remove Duplicates", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "The selection contains more than one type of validation.
    Erase current settings and continue?", + "SSE.Controllers.DataTab.txtRemSelected": "Remove in selected", + "SSE.Controllers.DataTab.txtUrlTitle": "Paste a data URL", + "SSE.Controllers.DocumentHolder.alignmentText": "Alignment", + "SSE.Controllers.DocumentHolder.centerText": "Center", + "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column", + "SSE.Controllers.DocumentHolder.deleteRowText": "Delete Row", + "SSE.Controllers.DocumentHolder.deleteText": "Delete", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "The link reference does not exist. Please correct the link or delete it.", + "SSE.Controllers.DocumentHolder.guestText": "Guest", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Column Left", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Column Right", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Row Above", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Row Below", + "SSE.Controllers.DocumentHolder.insertText": "Insert", + "SSE.Controllers.DocumentHolder.leftText": "Left", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Warning", + "SSE.Controllers.DocumentHolder.rightText": "Right", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "AutoCorrect options", + "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Column Width {0} symbols ({1} pixels)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Row Height {0} points ({1} pixels)", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Click the link to open it or click and hold the mouse button to select the cell.", + "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", + "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Paste special", + "SSE.Controllers.DocumentHolder.textStopExpand": "Stop automatically expanding tables", + "SSE.Controllers.DocumentHolder.textSym": "sym", + "SSE.Controllers.DocumentHolder.tipIsLocked": "This element is being edited by another user.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "Above average", + "SSE.Controllers.DocumentHolder.txtAddBottom": "Add bottom border", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Add fraction bar", + "SSE.Controllers.DocumentHolder.txtAddHor": "Add horizontal line", + "SSE.Controllers.DocumentHolder.txtAddLB": "Add left bottom line", + "SSE.Controllers.DocumentHolder.txtAddLeft": "Add left border", + "SSE.Controllers.DocumentHolder.txtAddLT": "Add left top line", + "SSE.Controllers.DocumentHolder.txtAddRight": "Add right border", + "SSE.Controllers.DocumentHolder.txtAddTop": "Add top border", + "SSE.Controllers.DocumentHolder.txtAddVer": "Add vertical line", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "Align to character", + "SSE.Controllers.DocumentHolder.txtAll": "(All)", + "SSE.Controllers.DocumentHolder.txtAnd": "and", + "SSE.Controllers.DocumentHolder.txtBegins": "Begins with", + "SSE.Controllers.DocumentHolder.txtBelowAve": "Below average", + "SSE.Controllers.DocumentHolder.txtBlanks": "(Blanks)", + "SSE.Controllers.DocumentHolder.txtBorderProps": "Border properties", + "SSE.Controllers.DocumentHolder.txtBottom": "Bottom", + "SSE.Controllers.DocumentHolder.txtColumn": "Column", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "Column alignment", + "SSE.Controllers.DocumentHolder.txtContains": "Contains", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Decrease argument size", + "SSE.Controllers.DocumentHolder.txtDeleteArg": "Delete argument", + "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Delete manual break", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "Delete enclosing characters", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "Delete equation", + "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Delete char", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Delete radical", + "SSE.Controllers.DocumentHolder.txtEnds": "Ends with", + "SSE.Controllers.DocumentHolder.txtEquals": "Equals", + "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Equal to cell color", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Equal to font color", + "SSE.Controllers.DocumentHolder.txtExpand": "Expand and sort", + "SSE.Controllers.DocumentHolder.txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Bottom", + "SSE.Controllers.DocumentHolder.txtFilterTop": "Top", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "Change to linear fraction", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Change to skewed fraction", + "SSE.Controllers.DocumentHolder.txtFractionStacked": "Change to stacked fraction", + "SSE.Controllers.DocumentHolder.txtGreater": "Greater than", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Greater than or equal to", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Char over text", + "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Char under text", + "SSE.Controllers.DocumentHolder.txtHeight": "Height", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Hide bottom border", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Hide bottom limit", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Hide closing bracket", + "SSE.Controllers.DocumentHolder.txtHideDegree": "Hide degree", + "SSE.Controllers.DocumentHolder.txtHideHor": "Hide horizontal line", + "SSE.Controllers.DocumentHolder.txtHideLB": "Hide left bottom line", + "SSE.Controllers.DocumentHolder.txtHideLeft": "Hide left border", + "SSE.Controllers.DocumentHolder.txtHideLT": "Hide left top line", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Hide opening bracket", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Hide placeholder", + "SSE.Controllers.DocumentHolder.txtHideRight": "Hide right border", + "SSE.Controllers.DocumentHolder.txtHideTop": "Hide top border", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Hide top limit", + "SSE.Controllers.DocumentHolder.txtHideVer": "Hide vertical line", + "SSE.Controllers.DocumentHolder.txtImportWizard": "Text Import Wizard", + "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Increase argument size", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Insert argument after", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Insert argument before", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "Insert manual break", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Insert equation after", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Insert equation before", + "SSE.Controllers.DocumentHolder.txtItems": "items", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Keep text only", + "SSE.Controllers.DocumentHolder.txtLess": "Less than", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Less than or equal to", + "SSE.Controllers.DocumentHolder.txtLimitChange": "Change limits location", + "SSE.Controllers.DocumentHolder.txtLimitOver": "Limit over text", + "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limit under text", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Match brackets to argument height", + "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Matrix alignment", + "SSE.Controllers.DocumentHolder.txtNoChoices": "There are no choices for filling the cell.
    Only text values from the column can be selected for replacement.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "Does not begin with", + "SSE.Controllers.DocumentHolder.txtNotContains": "Does not contain", + "SSE.Controllers.DocumentHolder.txtNotEnds": "Does not end with", + "SSE.Controllers.DocumentHolder.txtNotEquals": "Does not equal", + "SSE.Controllers.DocumentHolder.txtOr": "or", + "SSE.Controllers.DocumentHolder.txtOverbar": "Bar over text", + "SSE.Controllers.DocumentHolder.txtPaste": "Paste", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Formula without borders", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Formula + column width", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Destination formatting", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "Paste only formatting", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Formula + number format", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Paste only formula", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Formula + all formatting", + "SSE.Controllers.DocumentHolder.txtPasteLink": "Paste link", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Linked picture", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "Merge conditional formatting", + "SSE.Controllers.DocumentHolder.txtPastePicture": "Picture", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Source formatting", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpose", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Value + all formatting", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Value + number format", + "SSE.Controllers.DocumentHolder.txtPasteValues": "Paste only value", + "SSE.Controllers.DocumentHolder.txtPercent": "percent", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Redo table autoexpansion", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Remove fraction bar", + "SSE.Controllers.DocumentHolder.txtRemLimit": "Remove limit", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Remove accent character", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "Remove bar", + "SSE.Controllers.DocumentHolder.txtRemScripts": "Remove scripts", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "Remove subscript", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Remove superscript", + "SSE.Controllers.DocumentHolder.txtRowHeight": "Row Height", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Scripts after text", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Scripts before text", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Show bottom limit", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Show closing bracket", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Show degree", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Show opening bracket", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Show placeholder", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Show top limit", + "SSE.Controllers.DocumentHolder.txtSorting": "Sorting", + "SSE.Controllers.DocumentHolder.txtSortSelected": "Sort selected", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Stretch brackets", + "SSE.Controllers.DocumentHolder.txtTop": "Top", + "SSE.Controllers.DocumentHolder.txtUnderbar": "Bar under text", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Undo table autoexpansion", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Use text import wizard", + "SSE.Controllers.DocumentHolder.txtWidth": "Width", + "SSE.Controllers.DocumentHolder.txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", + "SSE.Controllers.FormulaDialog.sCategoryAll": "All", + "SSE.Controllers.FormulaDialog.sCategoryCube": "Cube", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Date and time", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Engineering", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financial", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Information", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 last used", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logical", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Lookup and reference", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Math and trigonometry", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistical", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Text and data", + "SSE.Controllers.LeftMenu.newDocumentTitle": "Unnamed spreadsheet", + "SSE.Controllers.LeftMenu.textByColumns": "By columns", + "SSE.Controllers.LeftMenu.textByRows": "By rows", + "SSE.Controllers.LeftMenu.textFormulas": "Formulas", + "SSE.Controllers.LeftMenu.textItemEntireCell": "Entire cell contents", + "SSE.Controllers.LeftMenu.textLookin": "Look in", + "SSE.Controllers.LeftMenu.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "SSE.Controllers.LeftMenu.textSearch": "Search", + "SSE.Controllers.LeftMenu.textSheet": "Sheet", + "SSE.Controllers.LeftMenu.textValues": "Values", + "SSE.Controllers.LeftMenu.textWarning": "Warning", + "SSE.Controllers.LeftMenu.textWithin": "Within", + "SSE.Controllers.LeftMenu.textWorkbook": "Workbook", + "SSE.Controllers.LeftMenu.txtUntitled": "Untitled", + "SSE.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?", + "SSE.Controllers.LeftMenu.textLoadHistory": "Loading version history...", + "SSE.Controllers.Main.confirmMoveCellRange": "The destination cell range can contain data. Continue the operation?", + "SSE.Controllers.Main.confirmPutMergeRange": "The source data contained merged cells.
    They had been unmerged before they were pasted into the table.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "SSE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", + "SSE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.", + "SSE.Controllers.Main.criticalErrorTitle": "Error", + "SSE.Controllers.Main.downloadErrorText": "Download failed.", + "SSE.Controllers.Main.downloadTextText": "Downloading spreadsheet...", + "SSE.Controllers.Main.downloadTitleText": "Downloading Spreadsheet", + "SSE.Controllers.Main.errNoDuplicates": "No duplicate values found.", + "SSE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.", + "SSE.Controllers.Main.errorArgsRange": "An error in the entered formula.
    Incorrect argument range is used.", + "SSE.Controllers.Main.errorAutoFilterChange": "The operation is not allowed, as it is attempting to shift cells in a table on your worksheet.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of the table.
    Select another data range so that the whole table was shifted and try again.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range different from the existing one and try again.", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please unhide the filtered elements and try again.", + "SSE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect", + "SSE.Controllers.Main.errorCannotUngroup": "Cannot ungroup. To start an outline, select the detail rows or columns and group them.", + "SSE.Controllers.Main.errorChangeArray": "You cannot change part of an array.", + "SSE.Controllers.Main.errorChangeFilteredRange": "This will change a filtered range on your worksheet.
    To complete this task, please remove AutoFilters.", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.", + "SSE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
    When you click the 'OK' button, you will be prompted to download the document.", + "SSE.Controllers.Main.errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "SSE.Controllers.Main.errorCountArg": "An error in the entered formula.
    Incorrect number of arguments is used.", + "SSE.Controllers.Main.errorCountArgExceed": "An error in the entered formula.
    Number of arguments is exceeded.", + "SSE.Controllers.Main.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "SSE.Controllers.Main.errorDatabaseConnection": "External error.
    Database connection error. Please contact support in case the error persists.", + "SSE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "SSE.Controllers.Main.errorDataRange": "Incorrect data range.", + "SSE.Controllers.Main.errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "SSE.Controllers.Main.errorDefaultMessage": "Error code: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download as...' option to save the file backup copy to your computer hard drive.", + "SSE.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.
    Use the 'Save as...' option to save the file backup copy to your computer hard drive.", + "SSE.Controllers.Main.errorEditView": "The existing sheet view cannot be edited and the new ones cannot be created at the moment as some of them are being edited.", + "SSE.Controllers.Main.errorEmailClient": "No email client could be found.", + "SSE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.", + "SSE.Controllers.Main.errorFileRequest": "External error.
    File request error. Please contact support in case the error persists.", + "SSE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
    Please contact your Document Server administrator for details.", + "SSE.Controllers.Main.errorFileVKey": "External error.
    Incorrect security key. Please contact support in case the error persists.", + "SSE.Controllers.Main.errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "SSE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "SSE.Controllers.Main.errorFormulaName": "An error in the entered formula.
    Incorrect formula name is used.", + "SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.", + "SSE.Controllers.Main.errorFrmlMaxLength": "The length of your formula exceeds the limit of 8192 characters.
    Please edit it and try again.", + "SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&).", + "SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please check the data and try again.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.
    Select a range so that the first table row was on the same row
    and the resulting table overlapped the current one.", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.
    Select a range which does not include other tables.", + "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", + "SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired", + "SSE.Controllers.Main.errorLabledColumnsPivot": "To create a pivot table, use data that is organized as a list with labeled columns.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "The reference for the location or data range is not valid.", + "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "SSE.Controllers.Main.errorLockedCellPivot": "You cannot change data inside a pivot table.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "SSE.Controllers.Main.errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell", + "SSE.Controllers.Main.errorMoveSlicerError": "Table slicers cannot be copied from one workbook to another.
    Try again by selecting the entire table and the slicers.", + "SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "SSE.Controllers.Main.errorNoDataToParse": "No data was selected to parse.", + "SSE.Controllers.Main.errorOpenWarning": "One of the file formulas exceeds the limit of 8192 characters.
    The formula was removed.", + "SSE.Controllers.Main.errorOperandExpected": "The entered function syntax is not correct. Please check if you are missing one of the parentheses - '(' or ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "The copy and paste area do not match.
    Please select an area with the same size or click the first cell in a row to paste the copied cells.", + "SSE.Controllers.Main.errorPasteMultiSelect": "This action cannot be done on a multiple range selection.
    Select a single range and try again.", + "SSE.Controllers.Main.errorPasteSlicerError": "Table slicers cannot be copied from one workbook to another.", + "SSE.Controllers.Main.errorPivotGroup": "Cannot group that selection.", + "SSE.Controllers.Main.errorPivotOverlap": "A pivot table report cannot overlap a table.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "The Pivot Table report was saved without the underlying data.
    Use the 'Refresh' button to update the report.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Unfortunately, it is not possible to print more than 1500 pages at once in the current program version.
    This restriction will be removed in the upcoming releases.", + "SSE.Controllers.Main.errorProcessSaveResult": "Saving failed", + "SSE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "SSE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", + "SSE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.", + "SSE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.", + "SSE.Controllers.Main.errorSetPassword": "Password could not be set.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Location reference is not valid because the cells are not all in the same column or row.
    Select cells that are all in a single column or row.", + "SSE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "SSE.Controllers.Main.errorToken": "The document security token is not correctly formed.
    Please contact your Document Server administrator.", + "SSE.Controllers.Main.errorTokenExpire": "The document security token has expired.
    Please contact your Document Server administrator.", + "SSE.Controllers.Main.errorUnexpectedGuid": "External error.
    Unexpected GUID. Please contact support in case the error persists.", + "SSE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", + "SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
    but will not be able to download or print it until the connection is restored and page is reloaded.", + "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
    Wrong number of brackets is used.", + "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
    Please correct the error.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "The password you supplied is not correct.
    Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "You are trying to delete a column that contains a locked cell. Locked cells cannot be deleted while the worksheet is protected.
    To delete a locked cell, unprotect the sheet. You might be requested to enter a password.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "You are trying to delete a row that contains a locked cell. Locked cells cannot be deleted while the worksheet is protected.
    To delete a locked cell, unprotect the sheet. You might be requested to enter a password.", + "SSE.Controllers.Main.errRemDuplicates": "Duplicate values found and deleted: {0}, unique values left: {1}.", + "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.", + "SSE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this spreadsheet will be lost.
    Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", + "SSE.Controllers.Main.loadFontsTextText": "Loading data...", + "SSE.Controllers.Main.loadFontsTitleText": "Loading Data", + "SSE.Controllers.Main.loadFontTextText": "Loading data...", + "SSE.Controllers.Main.loadFontTitleText": "Loading Data", + "SSE.Controllers.Main.loadImagesTextText": "Loading images...", + "SSE.Controllers.Main.loadImagesTitleText": "Loading Images", + "SSE.Controllers.Main.loadImageTextText": "Loading image...", + "SSE.Controllers.Main.loadImageTitleText": "Loading Image", + "SSE.Controllers.Main.loadingDocumentTitleText": "Loading spreadsheet", + "SSE.Controllers.Main.notcriticalErrorTitle": "Warning", + "SSE.Controllers.Main.openErrorText": "An error has occurred while opening the file.", + "SSE.Controllers.Main.openTextText": "Opening spreadsheet...", + "SSE.Controllers.Main.openTitleText": "Opening Spreadsheet", + "SSE.Controllers.Main.pastInMergeAreaError": "Cannot change part of a merged cell", + "SSE.Controllers.Main.printTextText": "Printing spreadsheet...", + "SSE.Controllers.Main.printTitleText": "Printing Spreadsheet", + "SSE.Controllers.Main.reloadButtonText": "Reload Page", + "SSE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this document right now. Please try again later.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Access denied", + "SSE.Controllers.Main.saveErrorText": "An error has occurred while saving the file.", + "SSE.Controllers.Main.saveErrorTextDesktop": "This file cannot be saved or created.
    Possible reasons are:
    1. The file is read-only.
    2. The file is being edited by other users.
    3. The disk is full or corrupted.", + "SSE.Controllers.Main.savePreparingText": "Preparing to save", + "SSE.Controllers.Main.savePreparingTitle": "Preparing to save. Please wait...", + "SSE.Controllers.Main.saveTextText": "Saving spreadsheet...", + "SSE.Controllers.Main.saveTitleText": "Saving Spreadsheet", + "SSE.Controllers.Main.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", + "SSE.Controllers.Main.textAnonymous": "Anonymous", + "SSE.Controllers.Main.textBuyNow": "Visit website", + "SSE.Controllers.Main.textClose": "Close", + "SSE.Controllers.Main.textCloseTip": "Click to close the tip", + "SSE.Controllers.Main.textConfirm": "Confirmation", + "SSE.Controllers.Main.textContactUs": "Contact sales", + "SSE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.
    Please contact our Sales Department to get a quote.", + "SSE.Controllers.Main.textDisconnect": "Connection is lost", + "SSE.Controllers.Main.textGuest": "Guest", + "SSE.Controllers.Main.textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet", + "SSE.Controllers.Main.textLongName": "Enter a name that is less than 128 characters.", + "SSE.Controllers.Main.textNo": "No", + "SSE.Controllers.Main.textNoLicenseTitle": "License limit reached", + "SSE.Controllers.Main.textPaidFeature": "Paid feature", + "SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...", + "SSE.Controllers.Main.textRecalcFormulas": "Calculating formulas...", + "SSE.Controllers.Main.textRemember": "Remember my choice for all files", + "SSE.Controllers.Main.textRenameError": "User name must not be empty.", + "SSE.Controllers.Main.textRenameLabel": "Enter a name to be used for collaboration", + "SSE.Controllers.Main.textShape": "Shape", + "SSE.Controllers.Main.textStrict": "Strict mode", + "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
    Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "SSE.Controllers.Main.textYes": "Yes", + "SSE.Controllers.Main.titleLicenseExp": "License expired", + "SSE.Controllers.Main.titleRecalcFormulas": "Calculating...", + "SSE.Controllers.Main.titleServerVersion": "Editor updated", + "SSE.Controllers.Main.txtAccent": "Accent", + "SSE.Controllers.Main.txtAll": "(All)", + "SSE.Controllers.Main.txtArt": "Your text here", + "SSE.Controllers.Main.txtBasicShapes": "Basic Shapes", + "SSE.Controllers.Main.txtBlank": "(blank)", + "SSE.Controllers.Main.txtButtons": "Buttons", + "SSE.Controllers.Main.txtByField": "%1 of %2", + "SSE.Controllers.Main.txtCallouts": "Callouts", + "SSE.Controllers.Main.txtCharts": "Charts", + "SSE.Controllers.Main.txtClearFilter": "Clear Filter (Alt+C)", + "SSE.Controllers.Main.txtColLbls": "Column Labels", + "SSE.Controllers.Main.txtColumn": "Column", + "SSE.Controllers.Main.txtConfidential": "Confidential", + "SSE.Controllers.Main.txtDate": "Date", + "SSE.Controllers.Main.txtDays": "Days", + "SSE.Controllers.Main.txtDiagramTitle": "Chart Title", + "SSE.Controllers.Main.txtEditingMode": "Set editing mode...", + "SSE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "SSE.Controllers.Main.txtFile": "File", + "SSE.Controllers.Main.txtGrandTotal": "Grand Total", + "SSE.Controllers.Main.txtGroup": "Group", + "SSE.Controllers.Main.txtHours": "Hours", + "SSE.Controllers.Main.txtLines": "Lines", + "SSE.Controllers.Main.txtMath": "Math", + "SSE.Controllers.Main.txtMinutes": "Minutes", + "SSE.Controllers.Main.txtMonths": "Months", + "SSE.Controllers.Main.txtMultiSelect": "Multi-Select (Alt+S)", + "SSE.Controllers.Main.txtOr": "%1 or %2", + "SSE.Controllers.Main.txtPage": "Page", + "SSE.Controllers.Main.txtPageOf": "Page %1 of %2", + "SSE.Controllers.Main.txtPages": "Pages", + "SSE.Controllers.Main.txtPreparedBy": "Prepared by", + "SSE.Controllers.Main.txtPrintArea": "Print_Area", + "SSE.Controllers.Main.txtQuarter": "Qtr", + "SSE.Controllers.Main.txtQuarters": "Quarters", + "SSE.Controllers.Main.txtRectangles": "Rectangles", + "SSE.Controllers.Main.txtRow": "Row", + "SSE.Controllers.Main.txtRowLbls": "Row Labels", + "SSE.Controllers.Main.txtSeconds": "Seconds", + "SSE.Controllers.Main.txtSeries": "Series", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Back or Previous Button", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Beginning Button", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "Blank Button", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "Document Button", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "End Button", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Forward or Next Button", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Help Button", + "SSE.Controllers.Main.txtShape_actionButtonHome": "Home Button", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Information Button", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Movie Button", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Return Button", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Sound Button", + "SSE.Controllers.Main.txtShape_arc": "Arc", + "SSE.Controllers.Main.txtShape_bentArrow": "Bent Arrow", + "SSE.Controllers.Main.txtShape_bentConnector5": "Elbow Connector", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow Arrow Connector", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow Double-Arrow Connector", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Bent Up Arrow", + "SSE.Controllers.Main.txtShape_bevel": "Bevel", + "SSE.Controllers.Main.txtShape_blockArc": "Block Arc", + "SSE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3", + "SSE.Controllers.Main.txtShape_bracePair": "Double Brace", + "SSE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)", + "SSE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)", + "SSE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)", + "SSE.Controllers.Main.txtShape_can": "Can", + "SSE.Controllers.Main.txtShape_chevron": "Chevron", + "SSE.Controllers.Main.txtShape_chord": "Chord", + "SSE.Controllers.Main.txtShape_circularArrow": "Circular Arrow", + "SSE.Controllers.Main.txtShape_cloud": "Cloud", + "SSE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout", + "SSE.Controllers.Main.txtShape_corner": "Corner", + "SSE.Controllers.Main.txtShape_cube": "Cube", + "SSE.Controllers.Main.txtShape_curvedConnector3": "Curved Connector", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Curved Arrow Connector", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Curved Double-Arrow Connector", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "Curved Down Arrow", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Curved Left Arrow", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Curved Right Arrow", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "Curved Up Arrow", + "SSE.Controllers.Main.txtShape_decagon": "Decagon", + "SSE.Controllers.Main.txtShape_diagStripe": "Diagonal Stripe", + "SSE.Controllers.Main.txtShape_diamond": "Diamond", + "SSE.Controllers.Main.txtShape_dodecagon": "Dodecagon", + "SSE.Controllers.Main.txtShape_donut": "Donut", + "SSE.Controllers.Main.txtShape_doubleWave": "Double Wave", + "SSE.Controllers.Main.txtShape_downArrow": "Down Arrow", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Down Arrow Callout", + "SSE.Controllers.Main.txtShape_ellipse": "Ellipse", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "Curved Down Ribbon", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Curved Up Ribbon", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowchart: Alternate Process", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Flowchart: Collate", + "SSE.Controllers.Main.txtShape_flowChartConnector": "Flowchart: Connector", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Flowchart: Decision", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Flowchart: Delay", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Flowchart: Display", + "SSE.Controllers.Main.txtShape_flowChartDocument": "Flowchart: Document", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Flowchart: Extract", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Flowchart: Data", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowchart: Internal Storage", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowchart: Magnetic Disk", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowchart: Direct Access Storage", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowchart: Sequential Access Storage", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Flowchart: Manual Input", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Flowchart: Manual Operation", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Flowchart: Merge", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Flowchart: Multidocument ", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowchart: Off-page Connector", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowchart: Stored Data", + "SSE.Controllers.Main.txtShape_flowChartOr": "Flowchart: Or", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowchart: Predefined Process", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Flowchart: Preparation", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Flowchart: Process", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Flowchart: Card", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowchart: Punched Tape", + "SSE.Controllers.Main.txtShape_flowChartSort": "Flowchart: Sort", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowchart: Summing Junction", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Flowchart: Terminator", + "SSE.Controllers.Main.txtShape_foldedCorner": "Folded Corner", + "SSE.Controllers.Main.txtShape_frame": "Frame", + "SSE.Controllers.Main.txtShape_halfFrame": "Half Frame", + "SSE.Controllers.Main.txtShape_heart": "Heart", + "SSE.Controllers.Main.txtShape_heptagon": "Heptagon", + "SSE.Controllers.Main.txtShape_hexagon": "Hexagon", + "SSE.Controllers.Main.txtShape_homePlate": "Pentagon", + "SSE.Controllers.Main.txtShape_horizontalScroll": "Horizontal Scroll", + "SSE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1", + "SSE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2", + "SSE.Controllers.Main.txtShape_leftArrow": "Left Arrow", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Left Arrow Callout", + "SSE.Controllers.Main.txtShape_leftBrace": "Left Brace", + "SSE.Controllers.Main.txtShape_leftBracket": "Left Bracket", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Left Right Arrow", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Left Right Arrow Callout", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Left Right Up Arrow", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Left Up Arrow", + "SSE.Controllers.Main.txtShape_lightningBolt": "Lightning Bolt", + "SSE.Controllers.Main.txtShape_line": "Line", + "SSE.Controllers.Main.txtShape_lineWithArrow": "Arrow", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Double Arrow", + "SSE.Controllers.Main.txtShape_mathDivide": "Division", + "SSE.Controllers.Main.txtShape_mathEqual": "Equal", + "SSE.Controllers.Main.txtShape_mathMinus": "Minus", + "SSE.Controllers.Main.txtShape_mathMultiply": "Multiply", + "SSE.Controllers.Main.txtShape_mathNotEqual": "Not Equal", + "SSE.Controllers.Main.txtShape_mathPlus": "Plus", + "SSE.Controllers.Main.txtShape_moon": "Moon", + "SSE.Controllers.Main.txtShape_noSmoking": "\"No\" Symbol", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Notched Right Arrow", + "SSE.Controllers.Main.txtShape_octagon": "Octagon", + "SSE.Controllers.Main.txtShape_parallelogram": "Parallelogram", + "SSE.Controllers.Main.txtShape_pentagon": "Pentagon", + "SSE.Controllers.Main.txtShape_pie": "Pie", + "SSE.Controllers.Main.txtShape_plaque": "Sign", + "SSE.Controllers.Main.txtShape_plus": "Plus", + "SSE.Controllers.Main.txtShape_polyline1": "Scribble", + "SSE.Controllers.Main.txtShape_polyline2": "Freeform", + "SSE.Controllers.Main.txtShape_quadArrow": "Quad Arrow", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Quad Arrow Callout", + "SSE.Controllers.Main.txtShape_rect": "Rectangle", + "SSE.Controllers.Main.txtShape_ribbon": "Down Ribbon", + "SSE.Controllers.Main.txtShape_ribbon2": "Up Ribbon", + "SSE.Controllers.Main.txtShape_rightArrow": "Right Arrow", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Right Arrow Callout", + "SSE.Controllers.Main.txtShape_rightBrace": "Right Brace", + "SSE.Controllers.Main.txtShape_rightBracket": "Right Bracket", + "SSE.Controllers.Main.txtShape_round1Rect": "Round Single Corner Rectangle", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Round Diagonal Corner Rectangle", + "SSE.Controllers.Main.txtShape_round2SameRect": "Round Same Side Corner Rectangle", + "SSE.Controllers.Main.txtShape_roundRect": "Round Corner Rectangle", + "SSE.Controllers.Main.txtShape_rtTriangle": "Right Triangle", + "SSE.Controllers.Main.txtShape_smileyFace": "Smiley Face", + "SSE.Controllers.Main.txtShape_snip1Rect": "Snip Single Corner Rectangle", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Snip Diagonal Corner Rectangle", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Snip Same Side Corner Rectangle", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Snip and Round Single Corner Rectangle", + "SSE.Controllers.Main.txtShape_spline": "Curve", + "SSE.Controllers.Main.txtShape_star10": "10-Point Star", + "SSE.Controllers.Main.txtShape_star12": "12-Point Star", + "SSE.Controllers.Main.txtShape_star16": "16-Point Star", + "SSE.Controllers.Main.txtShape_star24": "24-Point Star", + "SSE.Controllers.Main.txtShape_star32": "32-Point Star", + "SSE.Controllers.Main.txtShape_star4": "4-Point Star", + "SSE.Controllers.Main.txtShape_star5": "5-Point Star", + "SSE.Controllers.Main.txtShape_star6": "6-Point Star", + "SSE.Controllers.Main.txtShape_star7": "7-Point Star", + "SSE.Controllers.Main.txtShape_star8": "8-Point Star", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "Striped Right Arrow", + "SSE.Controllers.Main.txtShape_sun": "Sun", + "SSE.Controllers.Main.txtShape_teardrop": "Teardrop", + "SSE.Controllers.Main.txtShape_textRect": "Text Box", + "SSE.Controllers.Main.txtShape_trapezoid": "Trapezoid", + "SSE.Controllers.Main.txtShape_triangle": "Triangle", + "SSE.Controllers.Main.txtShape_upArrow": "Up Arrow", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Up Arrow Callout", + "SSE.Controllers.Main.txtShape_upDownArrow": "Up Down Arrow", + "SSE.Controllers.Main.txtShape_uturnArrow": "U-Turn Arrow", + "SSE.Controllers.Main.txtShape_verticalScroll": "Vertical Scroll", + "SSE.Controllers.Main.txtShape_wave": "Wave", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular Callout", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout", + "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "SSE.Controllers.Main.txtStyle_Bad": "Bad", + "SSE.Controllers.Main.txtStyle_Calculation": "Calculation", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell", + "SSE.Controllers.Main.txtStyle_Comma": "Comma", + "SSE.Controllers.Main.txtStyle_Currency": "Currency", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text", + "SSE.Controllers.Main.txtStyle_Good": "Good", + "SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4", + "SSE.Controllers.Main.txtStyle_Input": "Input", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell", + "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", + "SSE.Controllers.Main.txtStyle_Normal": "Normal", + "SSE.Controllers.Main.txtStyle_Note": "Note", + "SSE.Controllers.Main.txtStyle_Output": "Output", + "SSE.Controllers.Main.txtStyle_Percent": "Percent", + "SSE.Controllers.Main.txtStyle_Title": "Title", + "SSE.Controllers.Main.txtStyle_Total": "Total", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text", + "SSE.Controllers.Main.txtTab": "Tab", + "SSE.Controllers.Main.txtTable": "Table", + "SSE.Controllers.Main.txtTime": "Time", + "SSE.Controllers.Main.txtValues": "Values", + "SSE.Controllers.Main.txtXAxis": "X Axis", + "SSE.Controllers.Main.txtYAxis": "Y Axis", + "SSE.Controllers.Main.txtYears": "Years", + "SSE.Controllers.Main.unknownErrorText": "Unknown error.", + "SSE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", + "SSE.Controllers.Main.uploadImageExtMessage": "Unknown image format.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.", + "SSE.Controllers.Main.uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "SSE.Controllers.Main.uploadImageTextText": "Uploading image...", + "SSE.Controllers.Main.uploadImageTitleText": "Uploading Image", + "SSE.Controllers.Main.waitText": "Please, wait...", + "SSE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", + "SSE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", + "SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
    Contact your administrator to learn more.", + "SSE.Controllers.Main.warnLicenseExp": "Your license has expired.
    Please update your license and refresh the page.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired.
    You have no access to document editing functionality.
    Please contact your administrator.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "License needs to be renewed.
    You have a limited access to document editing functionality.
    Please contact your administrator to get full access", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
    Contact %1 sales team for personal upgrade terms.", + "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", + "SSE.Controllers.Main.textNeedSynchronize": "You have an updates", + "SSE.Controllers.Main.textChangesSaved": "All changes saved", + "SSE.Controllers.Main.textConvertEquation": "This equation was created with an old version of the equation editor which is no longer supported. To edit it, convert the equation to the Office Math ML format.
    Convert now?", + "SSE.Controllers.Main.textLearnMore": "Learn More", + "SSE.Controllers.Main.textApplyAll": "Apply to all equations", + "SSE.Controllers.Main.txtErrorLoadHistory": "History loading failed", + "SSE.Controllers.Print.strAllSheets": "All Sheets", + "SSE.Controllers.Print.textFirstCol": "First column", + "SSE.Controllers.Print.textFirstRow": "First row", + "SSE.Controllers.Print.textFrozenCols": "Frozen columns", + "SSE.Controllers.Print.textFrozenRows": "Frozen rows", + "SSE.Controllers.Print.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Controllers.Print.textNoRepeat": "Don't repeat", + "SSE.Controllers.Print.textRepeat": "Repeat...", + "SSE.Controllers.Print.textSelectRange": "Select range", + "SSE.Controllers.Print.textWarning": "Warning", + "SSE.Controllers.Print.txtCustom": "Custom", + "SSE.Controllers.Print.warnCheckMargings": "Margins are incorrect", + "SSE.Controllers.Statusbar.errorLastSheet": "Workbook must have at least one visible worksheet.", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Cannot delete the worksheet.", + "SSE.Controllers.Statusbar.strSheet": "Sheet", + "SSE.Controllers.Statusbar.textSheetViewTip": "You are in Sheet View mode. Filters and sorting are visible only to you and those who are still in this view.", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "You are in Sheet View mode. Filters are visible only to you and those who are still in this view.", + "SSE.Controllers.Statusbar.warnDeleteSheet": "The selected worksheets might contain data. Are you sure you want to proceed?", + "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", + "SSE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
    The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
    Do you want to continue?", + "SSE.Controllers.Toolbar.errorComboSeries": "To create a combination chart, select at least two series of data.", + "SSE.Controllers.Toolbar.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Controllers.Toolbar.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "SSE.Controllers.Toolbar.textAccent": "Accents", + "SSE.Controllers.Toolbar.textBracket": "Brackets", + "SSE.Controllers.Toolbar.textDirectional": "Directional", + "SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
    Please enter a numeric value between 1 and 409", + "SSE.Controllers.Toolbar.textFraction": "Fractions", + "SSE.Controllers.Toolbar.textFunction": "Functions", + "SSE.Controllers.Toolbar.textIndicator": "Indicators", + "SSE.Controllers.Toolbar.textInsert": "Insert", + "SSE.Controllers.Toolbar.textIntegral": "Integrals", + "SSE.Controllers.Toolbar.textLargeOperator": "Large Operators", + "SSE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", + "SSE.Controllers.Toolbar.textLongOperation": "Long operation", + "SSE.Controllers.Toolbar.textMatrix": "Matrices", + "SSE.Controllers.Toolbar.textOperator": "Operators", + "SSE.Controllers.Toolbar.textPivot": "Pivot Table", + "SSE.Controllers.Toolbar.textRadical": "Radicals", + "SSE.Controllers.Toolbar.textRating": "Ratings", + "SSE.Controllers.Toolbar.textScript": "Scripts", + "SSE.Controllers.Toolbar.textShapes": "Shapes", + "SSE.Controllers.Toolbar.textSymbols": "Symbols", + "SSE.Controllers.Toolbar.textWarning": "Warning", + "SSE.Controllers.Toolbar.txtAccent_Accent": "Acute", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Right-left arrow above", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards arrow above", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Rightwards arrow above", + "SSE.Controllers.Toolbar.txtAccent_Bar": "Bar", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Boxed formula (with placeholder)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxed formula (example)", + "SSE.Controllers.Toolbar.txtAccent_Check": "Check", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC with overbar", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y with overbar", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "Triple dot", + "SSE.Controllers.Toolbar.txtAccent_DDot": "Double dot", + "SSE.Controllers.Toolbar.txtAccent_Dot": "Dot", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Double overbar", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Grave", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Grouping character below", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Grouping character above", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Leftwards harpoon above", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards harpoon above", + "SSE.Controllers.Toolbar.txtAccent_Hat": "Hat", + "SSE.Controllers.Toolbar.txtAccent_Smile": "Breve", + "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", + "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)", + "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient", + "SSE.Controllers.Toolbar.txtBracket_Line": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Round": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Square": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtDeleteCells": "Delete Cells", + "SSE.Controllers.Toolbar.txtExpand": "Expand and sort", + "SSE.Controllers.Toolbar.txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", + "SSE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2", + "SSE.Controllers.Toolbar.txtFractionSmall": "Small fraction", + "SSE.Controllers.Toolbar.txtFractionVertical": "Stacked fraction", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Inverse cosine function", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Hyperbolic inverse cosine function", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Inverse cotangent function", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Hyperbolic inverse cotangent function", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Inverse cosecant function", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Hyperbolic inverse cosecant function", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Inverse secant function", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Hyperbolic inverse secant function", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Inverse sine function", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperbolic inverse sine function", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Inverse tangent function", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperbolic inverse tangent function", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Cosine function", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Hyperbolic cosine function", + "SSE.Controllers.Toolbar.txtFunction_Cot": "Cotangent function", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Hyperbolic cotangent function", + "SSE.Controllers.Toolbar.txtFunction_Csc": "Cosecant function", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Hyperbolic cosecant function", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", + "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Secant function", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Hyperbolic secant function", + "SSE.Controllers.Toolbar.txtFunction_Sin": "Sine function", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolic sine function", + "SSE.Controllers.Toolbar.txtFunction_Tan": "Tangent function", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic tangent function", + "SSE.Controllers.Toolbar.txtInsertCells": "Insert Cells", + "SSE.Controllers.Toolbar.txtIntegral": "Integral", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", + "SSE.Controllers.Toolbar.txtIntegral_dx": "Differential x", + "SSE.Controllers.Toolbar.txtIntegral_dy": "Differential y", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "SSE.Controllers.Toolbar.txtIntegralDouble": "Double integral", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral", + "SSE.Controllers.Toolbar.txtIntegralOriented": "Contour integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "SSE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", + "SSE.Controllers.Toolbar.txtInvalidRange": "ERROR! Invalid cell range", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example", + "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Natural logarithm", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logarithm", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithm", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline dots", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identity matrix", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Leftwards arrow above", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Rightwards arrow below", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Rightwards arrow above", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Colon equal", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Yields", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields", + "SSE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition", + "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left arrow below", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left arrow above", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Rightwards arrow above", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Equal equal", + "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", + "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree", + "SSE.Controllers.Toolbar.txtRadicalSqrt": "Square root", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "SSE.Controllers.Toolbar.txtScriptSub": "Subscript", + "SSE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript", + "SSE.Controllers.Toolbar.txtScriptSup": "Superscript", + "SSE.Controllers.Toolbar.txtSorting": "Sorting", + "SSE.Controllers.Toolbar.txtSortSelected": "Sort selected", + "SSE.Controllers.Toolbar.txtSymbol_about": "Approximately", + "SSE.Controllers.Toolbar.txtSymbol_additional": "Complement", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", + "SSE.Controllers.Toolbar.txtSymbol_approx": "Almost equal to", + "SSE.Controllers.Toolbar.txtSymbol_ast": "Asterisk operator", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Bullet operator", + "SSE.Controllers.Toolbar.txtSymbol_cap": "Intersection", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Cube root", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Midline horizontal ellipsis", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "Degrees Celsius", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "SSE.Controllers.Toolbar.txtSymbol_cong": "Approximately equal to", + "SSE.Controllers.Toolbar.txtSymbol_cup": "Union", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Down right diagonal ellipsis", + "SSE.Controllers.Toolbar.txtSymbol_degree": "Degrees", + "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "SSE.Controllers.Toolbar.txtSymbol_div": "Division sign", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Down arrow", + "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Empty set", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_equals": "Equal", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Identical to", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_exists": "There exist", + "SSE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Degrees Fahrenheit", + "SSE.Controllers.Toolbar.txtSymbol_forall": "For all", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Greater than or equal to", + "SSE.Controllers.Toolbar.txtSymbol_gg": "Much greater than", + "SSE.Controllers.Toolbar.txtSymbol_greater": "Greater than", + "SSE.Controllers.Toolbar.txtSymbol_in": "Element of", + "SSE.Controllers.Toolbar.txtSymbol_inc": "Increment", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "Infinity", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Left arrow", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-right arrow", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Less than or equal to", + "SSE.Controllers.Toolbar.txtSymbol_less": "Less than", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Much less than", + "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus plus", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "SSE.Controllers.Toolbar.txtSymbol_neq": "Not equal to", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Contains as member", + "SSE.Controllers.Toolbar.txtSymbol_not": "Not sign", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "There does not exist", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Partial differential", + "SSE.Controllers.Toolbar.txtSymbol_percent": "Percentage", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Plus minus", + "SSE.Controllers.Toolbar.txtSymbol_propto": "Proportional to", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Fourth root", + "SSE.Controllers.Toolbar.txtSymbol_qed": "End of proof", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Up right diagonal ellipsis", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Right arrow", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Radical sign", + "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "SSE.Controllers.Toolbar.txtSymbol_therefore": "Therefore", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "SSE.Controllers.Toolbar.txtSymbol_times": "Multiplication sign", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Up arrow", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon variant", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi variant", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Theta variant", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Table Style Dark", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Table Style Light", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Table Style Medium", + "SSE.Controllers.Toolbar.warnLongOperation": "The operation you are about to perform might take rather much time to complete.
    Are you sure you want to continue?", + "SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
    Are you sure you want to continue?", + "SSE.Controllers.Toolbar.txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", + "SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Show Frozen Panes Shadow", + "SSE.Controllers.Viewport.textHideFBar": "Hide Formula Bar", + "SSE.Controllers.Viewport.textHideGridlines": "Hide Gridlines", + "SSE.Controllers.Viewport.textHideHeadings": "Hide Headings", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Decimal separator", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Thousands separator", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Settings used to recognize numeric data", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Advanced Settings", + "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter", + "SSE.Views.AutoFilterDialog.textAddSelection": "Add current selection to filter", + "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", + "SSE.Views.AutoFilterDialog.textSelectAll": "Select All", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "Select All Search Results", + "SSE.Views.AutoFilterDialog.textWarning": "Warning", + "SSE.Views.AutoFilterDialog.txtAboveAve": "Above average", + "SSE.Views.AutoFilterDialog.txtBegins": "Begins with...", + "SSE.Views.AutoFilterDialog.txtBelowAve": "Below average", + "SSE.Views.AutoFilterDialog.txtBetween": "Between...", + "SSE.Views.AutoFilterDialog.txtClear": "Clear", + "SSE.Views.AutoFilterDialog.txtContains": "Contains...", + "SSE.Views.AutoFilterDialog.txtEmpty": "Enter cell filter", + "SSE.Views.AutoFilterDialog.txtEnds": "Ends with...", + "SSE.Views.AutoFilterDialog.txtEquals": "Equals...", + "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filter by cells color", + "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filter by font color", + "SSE.Views.AutoFilterDialog.txtGreater": "Greater than...", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Greater than or equal to...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Label filter", + "SSE.Views.AutoFilterDialog.txtLess": "Less than...", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Less than or equal to...", + "SSE.Views.AutoFilterDialog.txtNotBegins": "Does not begin with...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Not between...", + "SSE.Views.AutoFilterDialog.txtNotContains": "Does not contain...", + "SSE.Views.AutoFilterDialog.txtNotEnds": "Does not end with...", + "SSE.Views.AutoFilterDialog.txtNotEquals": "Does not equal...", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Number filter", + "SSE.Views.AutoFilterDialog.txtReapply": "Reapply", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "Sort by cells color", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sort by font color", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sort Highest to Lowest", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sort Lowest to Highest", + "SSE.Views.AutoFilterDialog.txtSortOption": "More sort options...", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Text filter", + "SSE.Views.AutoFilterDialog.txtTitle": "Filter", + "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Value filter", + "SSE.Views.AutoFilterDialog.warnFilterError": "You need at least one field in the Values area in order to apply a value filter.", + "SSE.Views.AutoFilterDialog.warnNoSelected": "You must choose at least one value", + "SSE.Views.CellEditor.textManager": "Name Manager", + "SSE.Views.CellEditor.tipFormula": "Insert function", + "SSE.Views.CellRangeDialog.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Views.CellRangeDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "SSE.Views.CellRangeDialog.txtEmpty": "This field is required", + "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.CellRangeDialog.txtTitle": "Select Data Range", + "SSE.Views.CellSettings.strShrink": "Shrink to fit", + "SSE.Views.CellSettings.strWrap": "Wrap text", + "SSE.Views.CellSettings.textAngle": "Angle", + "SSE.Views.CellSettings.textBackColor": "Background Color", + "SSE.Views.CellSettings.textBackground": "Background color", + "SSE.Views.CellSettings.textBorderColor": "Color", + "SSE.Views.CellSettings.textBorders": "Borders Style", + "SSE.Views.CellSettings.textClearRule": "Clear Rules", + "SSE.Views.CellSettings.textColor": "Color Fill", + "SSE.Views.CellSettings.textColorScales": "Color Scales", + "SSE.Views.CellSettings.textCondFormat": "Conditional formatting", + "SSE.Views.CellSettings.textControl": "Text Control", + "SSE.Views.CellSettings.textDataBars": "Data Bars", + "SSE.Views.CellSettings.textDirection": "Direction", + "SSE.Views.CellSettings.textFill": "Fill", + "SSE.Views.CellSettings.textForeground": "Foreground color", + "SSE.Views.CellSettings.textGradient": "Gradient points", + "SSE.Views.CellSettings.textGradientColor": "Color", + "SSE.Views.CellSettings.textGradientFill": "Gradient Fill", + "SSE.Views.CellSettings.textIndent": "Indent", + "SSE.Views.CellSettings.textItems": "Items", + "SSE.Views.CellSettings.textLinear": "Linear", + "SSE.Views.CellSettings.textManageRule": "Manage Rules", + "SSE.Views.CellSettings.textNewRule": "New Rule", + "SSE.Views.CellSettings.textNoFill": "No Fill", + "SSE.Views.CellSettings.textOrientation": "Text Orientation", + "SSE.Views.CellSettings.textPattern": "Pattern", + "SSE.Views.CellSettings.textPatternFill": "Pattern", + "SSE.Views.CellSettings.textPosition": "Position", + "SSE.Views.CellSettings.textRadial": "Radial", + "SSE.Views.CellSettings.textSelectBorders": "Select borders you want to change applying style chosen above", + "SSE.Views.CellSettings.textSelection": "From current selection", + "SSE.Views.CellSettings.textThisPivot": "From this pivot", + "SSE.Views.CellSettings.textThisSheet": "From this worksheet", + "SSE.Views.CellSettings.textThisTable": "From this table", + "SSE.Views.CellSettings.tipAddGradientPoint": "Add gradient point", + "SSE.Views.CellSettings.tipAll": "Set outer border and all inner lines", + "SSE.Views.CellSettings.tipBottom": "Set outer bottom border only", + "SSE.Views.CellSettings.tipDiagD": "Set Diagonal Down Border", + "SSE.Views.CellSettings.tipDiagU": "Set Diagonal Up Border", + "SSE.Views.CellSettings.tipInner": "Set inner lines only", + "SSE.Views.CellSettings.tipInnerHor": "Set horizontal inner lines only", + "SSE.Views.CellSettings.tipInnerVert": "Set vertical inner lines only", + "SSE.Views.CellSettings.tipLeft": "Set outer left border only", + "SSE.Views.CellSettings.tipNone": "Set no borders", + "SSE.Views.CellSettings.tipOuter": "Set outer border only", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Remove gradient point", + "SSE.Views.CellSettings.tipRight": "Set outer right border only", + "SSE.Views.CellSettings.tipTop": "Set outer top border only", + "SSE.Views.ChartDataDialog.errorInFormula": "There's an error in formula you entered.", + "SSE.Views.ChartDataDialog.errorInvalidReference": "The reference is not valid. Reference must be to an open worksheet.", + "SSE.Views.ChartDataDialog.errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "SSE.Views.ChartDataDialog.errorMaxRows": "The maximum number of data series per chart is 255.", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "The reference is not valid. References for titles, values, sizes, or data labels must be a single cell, row, or column.", + "SSE.Views.ChartDataDialog.errorNoValues": "To create a chart, the series must contain at least one value.", + "SSE.Views.ChartDataDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "SSE.Views.ChartDataDialog.textAdd": "Add", + "SSE.Views.ChartDataDialog.textCategory": "Horizontal (Category) Axis Labels", + "SSE.Views.ChartDataDialog.textData": "Chart data range", + "SSE.Views.ChartDataDialog.textDelete": "Remove", + "SSE.Views.ChartDataDialog.textDown": "Down", + "SSE.Views.ChartDataDialog.textEdit": "Edit", + "SSE.Views.ChartDataDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.ChartDataDialog.textSelectData": "Select data", + "SSE.Views.ChartDataDialog.textSeries": "Legend Entries (Series)", + "SSE.Views.ChartDataDialog.textSwitch": "Switch Row/Column", + "SSE.Views.ChartDataDialog.textTitle": "Chart Data", + "SSE.Views.ChartDataDialog.textUp": "Up", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "There's an error in formula you entered.", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "The reference is not valid. Reference must be to an open worksheet.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "The maximum number of data series per chart is 255.", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "The reference is not valid. References for titles, values, sizes, or data labels must be a single cell, row, or column.", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "To create a chart, the series must contain at least one value.", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Select data", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Axis label range", + "SSE.Views.ChartDataRangeDialog.txtChoose": "Choose range", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Series name", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Axis Labels", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Edit Series", + "SSE.Views.ChartDataRangeDialog.txtValues": "Values", + "SSE.Views.ChartDataRangeDialog.txtXValues": "X Values", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Y Values", + "SSE.Views.ChartSettings.strLineWeight": "Line Weight", + "SSE.Views.ChartSettings.strSparkColor": "Color", + "SSE.Views.ChartSettings.strTemplate": "Template", + "SSE.Views.ChartSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ChartSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", + "SSE.Views.ChartSettings.textChangeType": "Change type", + "SSE.Views.ChartSettings.textChartType": "Change Chart Type", + "SSE.Views.ChartSettings.textEditData": "Edit Data and Location", + "SSE.Views.ChartSettings.textFirstPoint": "First Point", + "SSE.Views.ChartSettings.textHeight": "Height", + "SSE.Views.ChartSettings.textHighPoint": "High Point", + "SSE.Views.ChartSettings.textKeepRatio": "Constant proportions", + "SSE.Views.ChartSettings.textLastPoint": "Last Point", + "SSE.Views.ChartSettings.textLowPoint": "Low Point", + "SSE.Views.ChartSettings.textMarkers": "Markers", + "SSE.Views.ChartSettings.textNegativePoint": "Negative Point", + "SSE.Views.ChartSettings.textRanges": "Data Range", + "SSE.Views.ChartSettings.textSelectData": "Select Data", + "SSE.Views.ChartSettings.textShow": "Show", + "SSE.Views.ChartSettings.textSize": "Size", + "SSE.Views.ChartSettings.textStyle": "Style", + "SSE.Views.ChartSettings.textType": "Type", + "SSE.Views.ChartSettings.textWidth": "Width", + "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERROR! The maximum number of points in series per chart is 4096.", + "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "Don't move or size with cells", + "SSE.Views.ChartSettingsDlg.textAlt": "Alternative Text", + "SSE.Views.ChartSettingsDlg.textAltDescription": "Description", + "SSE.Views.ChartSettingsDlg.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", + "SSE.Views.ChartSettingsDlg.textAltTitle": "Title", + "SSE.Views.ChartSettingsDlg.textAuto": "Auto", + "SSE.Views.ChartSettingsDlg.textAutoEach": "Auto for Each", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options", + "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Title", + "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks", + "SSE.Views.ChartSettingsDlg.textBillions": "Billions", + "SSE.Views.ChartSettingsDlg.textBottom": "Bottom", + "SSE.Views.ChartSettingsDlg.textCategoryName": "Category Name", + "SSE.Views.ChartSettingsDlg.textCenter": "Center", + "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &
    Chart Legend", + "SSE.Views.ChartSettingsDlg.textChartTitle": "Chart Title", + "SSE.Views.ChartSettingsDlg.textCross": "Cross", + "SSE.Views.ChartSettingsDlg.textCustom": "Custom", + "SSE.Views.ChartSettingsDlg.textDataColumns": "in columns", + "SSE.Views.ChartSettingsDlg.textDataLabels": "Data Labels", + "SSE.Views.ChartSettingsDlg.textDataRows": "in rows", + "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Display Legend", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "Hidden and Empty cells", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "Connect data points with line", + "SSE.Views.ChartSettingsDlg.textFit": "Fit to Width", + "SSE.Views.ChartSettingsDlg.textFixed": "Fixed", + "SSE.Views.ChartSettingsDlg.textFormat": "Label format", + "SSE.Views.ChartSettingsDlg.textGaps": "Gaps", + "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", + "SSE.Views.ChartSettingsDlg.textGroup": "Group Sparkline", + "SSE.Views.ChartSettingsDlg.textHide": "Hide", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Hide axis", + "SSE.Views.ChartSettingsDlg.textHigh": "High", + "SSE.Views.ChartSettingsDlg.textHorAxis": "Horizontal Axis", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Secondary Horizontal Axis", + "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", + "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", + "SSE.Views.ChartSettingsDlg.textHundreds": "Hundreds", + "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", + "SSE.Views.ChartSettingsDlg.textIn": "In", + "SSE.Views.ChartSettingsDlg.textInnerBottom": "Inner Bottom", + "SSE.Views.ChartSettingsDlg.textInnerTop": "Inner Top", + "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.ChartSettingsDlg.textLabelDist": "Axis Label Distance", + "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval between Labels ", + "SSE.Views.ChartSettingsDlg.textLabelOptions": "Label Options", + "SSE.Views.ChartSettingsDlg.textLabelPos": "Label Position", + "SSE.Views.ChartSettingsDlg.textLayout": "Layout", + "SSE.Views.ChartSettingsDlg.textLeft": "Left", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left Overlay", + "SSE.Views.ChartSettingsDlg.textLegendBottom": "Bottom", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "Left", + "SSE.Views.ChartSettingsDlg.textLegendPos": "Legend", + "SSE.Views.ChartSettingsDlg.textLegendRight": "Right", + "SSE.Views.ChartSettingsDlg.textLegendTop": "Top", + "SSE.Views.ChartSettingsDlg.textLines": "Lines ", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Location Range", + "SSE.Views.ChartSettingsDlg.textLow": "Low", + "SSE.Views.ChartSettingsDlg.textMajor": "Major", + "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major and Minor", + "SSE.Views.ChartSettingsDlg.textMajorType": "Major Type", + "SSE.Views.ChartSettingsDlg.textManual": "Manual", + "SSE.Views.ChartSettingsDlg.textMarkers": "Markers", + "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval between Marks", + "SSE.Views.ChartSettingsDlg.textMaxValue": "Maximum Value", + "SSE.Views.ChartSettingsDlg.textMillions": "Millions", + "SSE.Views.ChartSettingsDlg.textMinor": "Minor", + "SSE.Views.ChartSettingsDlg.textMinorType": "Minor Type", + "SSE.Views.ChartSettingsDlg.textMinValue": "Minimum Value", + "SSE.Views.ChartSettingsDlg.textNextToAxis": "Next to axis", + "SSE.Views.ChartSettingsDlg.textNone": "None", + "SSE.Views.ChartSettingsDlg.textNoOverlay": "No Overlay", + "SSE.Views.ChartSettingsDlg.textOneCell": "Move but don't size with cells", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "On Tick Marks", + "SSE.Views.ChartSettingsDlg.textOut": "Out", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top", + "SSE.Views.ChartSettingsDlg.textOverlay": "Overlay", + "SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Reverse order", + "SSE.Views.ChartSettingsDlg.textRight": "Right", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay", + "SSE.Views.ChartSettingsDlg.textRotated": "Rotated", + "SSE.Views.ChartSettingsDlg.textSameAll": "Same for All", + "SSE.Views.ChartSettingsDlg.textSelectData": "Select Data", + "SSE.Views.ChartSettingsDlg.textSeparator": "Data Labels Separator", + "SSE.Views.ChartSettingsDlg.textSeriesName": "Series Name", + "SSE.Views.ChartSettingsDlg.textShow": "Show", + "SSE.Views.ChartSettingsDlg.textShowBorders": "Display chart borders", + "SSE.Views.ChartSettingsDlg.textShowData": "Show data in hidden rows and columns", + "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Show empty cells as", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Show Axis", + "SSE.Views.ChartSettingsDlg.textShowValues": "Display chart values", + "SSE.Views.ChartSettingsDlg.textSingle": "Single Sparkline", + "SSE.Views.ChartSettingsDlg.textSmooth": "Smooth", + "SSE.Views.ChartSettingsDlg.textSnap": "Cell Snapping", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges", + "SSE.Views.ChartSettingsDlg.textStraight": "Straight", + "SSE.Views.ChartSettingsDlg.textStyle": "Style", + "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", + "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", + "SSE.Views.ChartSettingsDlg.textThousands": "Thousands", + "SSE.Views.ChartSettingsDlg.textTickOptions": "Tick Options", + "SSE.Views.ChartSettingsDlg.textTitle": "Chart - Advanced Settings", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Advanced Settings", + "SSE.Views.ChartSettingsDlg.textTop": "Top", + "SSE.Views.ChartSettingsDlg.textTrillions": "Trillions", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Move and size with cells", + "SSE.Views.ChartSettingsDlg.textType": "Type", + "SSE.Views.ChartSettingsDlg.textTypeData": "Type & Data", + "SSE.Views.ChartSettingsDlg.textUnits": "Display Units", + "SSE.Views.ChartSettingsDlg.textValue": "Value", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Secondary Vertical Axis", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title", + "SSE.Views.ChartSettingsDlg.textZero": "Zero", + "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", + "SSE.Views.ChartTypeDialog.errorComboSeries": "To create a combination chart, select at least two series of data.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "The selected chart type requires the secondary axis that an existing chart is using. Select another chart type.", + "SSE.Views.ChartTypeDialog.textSecondary": "Secondary Axis", + "SSE.Views.ChartTypeDialog.textSeries": "Series", + "SSE.Views.ChartTypeDialog.textStyle": "Style", + "SSE.Views.ChartTypeDialog.textTitle": "Chart Type", + "SSE.Views.ChartTypeDialog.textType": "Type", + "SSE.Views.CreatePivotDialog.textDataRange": "Source data range", + "SSE.Views.CreatePivotDialog.textDestination": "Choose where to place the table", + "SSE.Views.CreatePivotDialog.textExist": "Existing worksheet", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.CreatePivotDialog.textNew": "New worksheet", + "SSE.Views.CreatePivotDialog.textSelectData": "Select data", + "SSE.Views.CreatePivotDialog.textTitle": "Create Pivot Table", + "SSE.Views.CreatePivotDialog.txtEmpty": "This field is required", + "SSE.Views.CreateSparklineDialog.textDataRange": "Source data range", + "SSE.Views.CreateSparklineDialog.textDestination": "Choose, where to place the sparklines", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.CreateSparklineDialog.textSelectData": "Select data", + "SSE.Views.CreateSparklineDialog.textTitle": "Create Sparklines", + "SSE.Views.CreateSparklineDialog.txtEmpty": "This field is required", + "SSE.Views.DataTab.capBtnGroup": "Group", + "SSE.Views.DataTab.capBtnTextCustomSort": "Custom Sort", + "SSE.Views.DataTab.capBtnTextDataValidation": "Data Validation", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Remove Duplicates", + "SSE.Views.DataTab.capBtnTextToCol": "Text to Columns", + "SSE.Views.DataTab.capBtnUngroup": "Ungroup", + "SSE.Views.DataTab.capDataFromText": "From Text/CSV", + "SSE.Views.DataTab.mniFromFile": "Get Data from File", + "SSE.Views.DataTab.mniFromUrl": "Get Data from URL", + "SSE.Views.DataTab.textBelow": "Summary rows below detail", + "SSE.Views.DataTab.textClear": "Clear outline", + "SSE.Views.DataTab.textColumns": "Ungroup columns", + "SSE.Views.DataTab.textGroupColumns": "Group columns", + "SSE.Views.DataTab.textGroupRows": "Group rows", + "SSE.Views.DataTab.textRightOf": "Summary columns to right of detail", + "SSE.Views.DataTab.textRows": "Ungroup rows", + "SSE.Views.DataTab.tipCustomSort": "Custom sort", + "SSE.Views.DataTab.tipDataFromText": "Get data from Text/CSV file", + "SSE.Views.DataTab.tipDataValidation": "Data validation", + "SSE.Views.DataTab.tipGroup": "Group range of cells", + "SSE.Views.DataTab.tipRemDuplicates": "Remove duplicate rows from a sheet", + "SSE.Views.DataTab.tipToColumns": "Separate cell text into columns", + "SSE.Views.DataTab.tipUngroup": "Ungroup range of cells", + "SSE.Views.DataValidationDialog.errorFormula": "The value currently evaluates to an error. Do you want to continue?", + "SSE.Views.DataValidationDialog.errorInvalid": "The value you entered for the field \"{0}\" is invalid.", + "SSE.Views.DataValidationDialog.errorInvalidDate": "The date you entered for the field \"{0}\" is invalid.", + "SSE.Views.DataValidationDialog.errorInvalidList": "The list source must be a delimited list, or a reference to single row or column.", + "SSE.Views.DataValidationDialog.errorInvalidTime": "The time you entered for the field \"{0}\" is invalid.", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "The \"{1}\" field must be greater than or equal to the \"{0}\" field.", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "You must enter a value in both field \"{0}\" and field \"{1}\".", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "You must enter a value in field \"{0}\".", + "SSE.Views.DataValidationDialog.errorNamedRange": "A named range you specified cannot be found.", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "Negative values cannot be used in conditions \"{0}\".", + "SSE.Views.DataValidationDialog.errorNotNumeric": "The field \"{0}\" must be a numeric value, numeric expression, or refer to a cell containing a numeric value.", + "SSE.Views.DataValidationDialog.strError": "Error Alert", + "SSE.Views.DataValidationDialog.strInput": "Input Message", + "SSE.Views.DataValidationDialog.strSettings": "Settings", + "SSE.Views.DataValidationDialog.textAlert": "Alert", + "SSE.Views.DataValidationDialog.textAllow": "Allow", + "SSE.Views.DataValidationDialog.textApply": "Apply these changes to all other cells with the same settings", + "SSE.Views.DataValidationDialog.textCellSelected": "When cell is selected, show this input message", + "SSE.Views.DataValidationDialog.textCompare": "Compare to", + "SSE.Views.DataValidationDialog.textData": "Data", + "SSE.Views.DataValidationDialog.textEndDate": "End Date", + "SSE.Views.DataValidationDialog.textEndTime": "End Time", + "SSE.Views.DataValidationDialog.textError": "Error Message", + "SSE.Views.DataValidationDialog.textFormula": "Formula", + "SSE.Views.DataValidationDialog.textIgnore": "Ignore blank", + "SSE.Views.DataValidationDialog.textInput": "Input Message", + "SSE.Views.DataValidationDialog.textMax": "Maximum", + "SSE.Views.DataValidationDialog.textMessage": "Message", + "SSE.Views.DataValidationDialog.textMin": "Minimum", + "SSE.Views.DataValidationDialog.textSelectData": "Select data", + "SSE.Views.DataValidationDialog.textShowDropDown": "Show drop-down list in cell", + "SSE.Views.DataValidationDialog.textShowError": "Show error alert after invalid data is entered", + "SSE.Views.DataValidationDialog.textShowInput": "Show input message when cell is selected", + "SSE.Views.DataValidationDialog.textSource": "Source", + "SSE.Views.DataValidationDialog.textStartDate": "Start Date", + "SSE.Views.DataValidationDialog.textStartTime": "Start Time", + "SSE.Views.DataValidationDialog.textStop": "Stop", + "SSE.Views.DataValidationDialog.textStyle": "Style", + "SSE.Views.DataValidationDialog.textTitle": "Title", + "SSE.Views.DataValidationDialog.textUserEnters": "When user enters invalid data, show this error alert", + "SSE.Views.DataValidationDialog.txtAny": "Any value", + "SSE.Views.DataValidationDialog.txtBetween": "between", + "SSE.Views.DataValidationDialog.txtDate": "Date", + "SSE.Views.DataValidationDialog.txtDecimal": "Decimal", + "SSE.Views.DataValidationDialog.txtElTime": "Elapsed time", + "SSE.Views.DataValidationDialog.txtEndDate": "End date", + "SSE.Views.DataValidationDialog.txtEndTime": "End time", + "SSE.Views.DataValidationDialog.txtEqual": "equals", + "SSE.Views.DataValidationDialog.txtGreaterThan": "greater than", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "greater than or equal to", + "SSE.Views.DataValidationDialog.txtLength": "Length", + "SSE.Views.DataValidationDialog.txtLessThan": "less than", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "less than or equal to", + "SSE.Views.DataValidationDialog.txtList": "List", + "SSE.Views.DataValidationDialog.txtNotBetween": "not between", + "SSE.Views.DataValidationDialog.txtNotEqual": "does not equal", + "SSE.Views.DataValidationDialog.txtOther": "Other", + "SSE.Views.DataValidationDialog.txtStartDate": "Start date", + "SSE.Views.DataValidationDialog.txtStartTime": "Start time", + "SSE.Views.DataValidationDialog.txtTextLength": "Text length", + "SSE.Views.DataValidationDialog.txtTime": "Time", + "SSE.Views.DataValidationDialog.txtWhole": "Whole number", + "SSE.Views.DigitalFilterDialog.capAnd": "And", + "SSE.Views.DigitalFilterDialog.capCondition1": "equals", + "SSE.Views.DigitalFilterDialog.capCondition10": "does not end with", + "SSE.Views.DigitalFilterDialog.capCondition11": "contains", + "SSE.Views.DigitalFilterDialog.capCondition12": "does not contain", + "SSE.Views.DigitalFilterDialog.capCondition2": "does not equal", + "SSE.Views.DigitalFilterDialog.capCondition3": "is greater than", + "SSE.Views.DigitalFilterDialog.capCondition4": "is greater than or equal to", + "SSE.Views.DigitalFilterDialog.capCondition5": "is less than", + "SSE.Views.DigitalFilterDialog.capCondition6": "is less than or equal to", + "SSE.Views.DigitalFilterDialog.capCondition7": "begins with", + "SSE.Views.DigitalFilterDialog.capCondition8": "does not begin with", + "SSE.Views.DigitalFilterDialog.capCondition9": "ends with", + "SSE.Views.DigitalFilterDialog.capOr": "Or", + "SSE.Views.DigitalFilterDialog.textNoFilter": "no filter", + "SSE.Views.DigitalFilterDialog.textShowRows": "Show rows where", + "SSE.Views.DigitalFilterDialog.textUse1": "Use ? to present any single character", + "SSE.Views.DigitalFilterDialog.textUse2": "Use * to present any series of character", + "SSE.Views.DigitalFilterDialog.txtTitle": "Custom Filter", + "SSE.Views.DocumentHolder.advancedImgText": "Image Advanced Settings", + "SSE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", + "SSE.Views.DocumentHolder.advancedSlicerText": "Slicer Advanced Settings", + "SSE.Views.DocumentHolder.bottomCellText": "Align Bottom", + "SSE.Views.DocumentHolder.bulletsText": "Bullets and Numbering", + "SSE.Views.DocumentHolder.centerCellText": "Align Middle", + "SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings", + "SSE.Views.DocumentHolder.deleteColumnText": "Column", + "SSE.Views.DocumentHolder.deleteRowText": "Row", + "SSE.Views.DocumentHolder.deleteTableText": "Table", + "SSE.Views.DocumentHolder.direct270Text": "Rotate Text Up", + "SSE.Views.DocumentHolder.direct90Text": "Rotate Text Down", + "SSE.Views.DocumentHolder.directHText": "Horizontal", + "SSE.Views.DocumentHolder.directionText": "Text Direction", + "SSE.Views.DocumentHolder.editChartText": "Edit Data", + "SSE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Column Left", + "SSE.Views.DocumentHolder.insertColumnRightText": "Column Right", + "SSE.Views.DocumentHolder.insertRowAboveText": "Row Above", + "SSE.Views.DocumentHolder.insertRowBelowText": "Row Below", + "SSE.Views.DocumentHolder.originalSizeText": "Actual Size", + "SSE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "SSE.Views.DocumentHolder.selectColumnText": "Entire Column", + "SSE.Views.DocumentHolder.selectDataText": "Column Data", + "SSE.Views.DocumentHolder.selectRowText": "Row", + "SSE.Views.DocumentHolder.selectTableText": "Table", + "SSE.Views.DocumentHolder.strDelete": "Remove Signature", + "SSE.Views.DocumentHolder.strDetails": "Signature Details", + "SSE.Views.DocumentHolder.strSetup": "Signature Setup", + "SSE.Views.DocumentHolder.strSign": "Sign", + "SSE.Views.DocumentHolder.textAlign": "Align", + "SSE.Views.DocumentHolder.textArrange": "Arrange", + "SSE.Views.DocumentHolder.textArrangeBack": "Send to Background", + "SSE.Views.DocumentHolder.textArrangeBackward": "Send Backward", + "SSE.Views.DocumentHolder.textArrangeForward": "Bring Forward", + "SSE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground", + "SSE.Views.DocumentHolder.textAverage": "Average", + "SSE.Views.DocumentHolder.textBullets": "Bullets", + "SSE.Views.DocumentHolder.textCount": "Count", + "SSE.Views.DocumentHolder.textCrop": "Crop", + "SSE.Views.DocumentHolder.textCropFill": "Fill", + "SSE.Views.DocumentHolder.textCropFit": "Fit", + "SSE.Views.DocumentHolder.textEntriesList": "Select from drop-down list", + "SSE.Views.DocumentHolder.textFlipH": "Flip Horizontally", + "SSE.Views.DocumentHolder.textFlipV": "Flip Vertically", + "SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes", + "SSE.Views.DocumentHolder.textFromFile": "From File", + "SSE.Views.DocumentHolder.textFromStorage": "From Storage", + "SSE.Views.DocumentHolder.textFromUrl": "From URL", + "SSE.Views.DocumentHolder.textListSettings": "List Settings", + "SSE.Views.DocumentHolder.textMacro": "Assign Macro", + "SSE.Views.DocumentHolder.textMax": "Max", + "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMore": "More functions", + "SSE.Views.DocumentHolder.textMoreFormats": "More formats", + "SSE.Views.DocumentHolder.textNone": "None", + "SSE.Views.DocumentHolder.textNumbering": "Numbering", + "SSE.Views.DocumentHolder.textReplace": "Replace image", + "SSE.Views.DocumentHolder.textRotate": "Rotate", + "SSE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise", + "SSE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Align Center", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Align Left", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Align Middle", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Align Right", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Align Top", + "SSE.Views.DocumentHolder.textStdDev": "StdDev", + "SSE.Views.DocumentHolder.textSum": "Sum", + "SSE.Views.DocumentHolder.textUndo": "Undo", + "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", + "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.topCellText": "Align Top", + "SSE.Views.DocumentHolder.txtAccounting": "Accounting", + "SSE.Views.DocumentHolder.txtAddComment": "Add Comment", + "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name", + "SSE.Views.DocumentHolder.txtArrange": "Arrange", + "SSE.Views.DocumentHolder.txtAscending": "Ascending", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Auto Fit Column Width", + "SSE.Views.DocumentHolder.txtAutoRowHeight": "Auto Fit Row Height", + "SSE.Views.DocumentHolder.txtClear": "Clear", + "SSE.Views.DocumentHolder.txtClearAll": "All", + "SSE.Views.DocumentHolder.txtClearComments": "Comments", + "SSE.Views.DocumentHolder.txtClearFormat": "Format", + "SSE.Views.DocumentHolder.txtClearHyper": "Hyperlinks", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Clear Selected Sparkline Groups", + "SSE.Views.DocumentHolder.txtClearSparklines": "Clear Selected Sparklines", + "SSE.Views.DocumentHolder.txtClearText": "Text", + "SSE.Views.DocumentHolder.txtColumn": "Entire column", + "SSE.Views.DocumentHolder.txtColumnWidth": "Set Column Width", + "SSE.Views.DocumentHolder.txtCondFormat": "Conditional Formatting", + "SSE.Views.DocumentHolder.txtCopy": "Copy", + "SSE.Views.DocumentHolder.txtCurrency": "Currency", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Custom Column Width", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "Custom Row Height", + "SSE.Views.DocumentHolder.txtCustomSort": "Custom sort", + "SSE.Views.DocumentHolder.txtCut": "Cut", + "SSE.Views.DocumentHolder.txtDate": "Date", + "SSE.Views.DocumentHolder.txtDelete": "Delete", + "SSE.Views.DocumentHolder.txtDescending": "Descending", + "SSE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally", + "SSE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically", + "SSE.Views.DocumentHolder.txtEditComment": "Edit Comment", + "SSE.Views.DocumentHolder.txtFilter": "Filter", + "SSE.Views.DocumentHolder.txtFilterCellColor": "Filter by cell's color", + "SSE.Views.DocumentHolder.txtFilterFontColor": "Filter by font color", + "SSE.Views.DocumentHolder.txtFilterValue": "Filter by Selected cell's value", + "SSE.Views.DocumentHolder.txtFormula": "Insert Function", + "SSE.Views.DocumentHolder.txtFraction": "Fraction", + "SSE.Views.DocumentHolder.txtGeneral": "General", + "SSE.Views.DocumentHolder.txtGroup": "Group", + "SSE.Views.DocumentHolder.txtHide": "Hide", + "SSE.Views.DocumentHolder.txtInsert": "Insert", + "SSE.Views.DocumentHolder.txtInsHyperlink": "Hyperlink", + "SSE.Views.DocumentHolder.txtNumber": "Number", + "SSE.Views.DocumentHolder.txtNumFormat": "Number Format", + "SSE.Views.DocumentHolder.txtPaste": "Paste", + "SSE.Views.DocumentHolder.txtPercentage": "Percentage", + "SSE.Views.DocumentHolder.txtReapply": "Reapply", + "SSE.Views.DocumentHolder.txtRow": "Entire row", + "SSE.Views.DocumentHolder.txtRowHeight": "Set Row Height", + "SSE.Views.DocumentHolder.txtScientific": "Scientific", + "SSE.Views.DocumentHolder.txtSelect": "Select", + "SSE.Views.DocumentHolder.txtShiftDown": "Shift cells down", + "SSE.Views.DocumentHolder.txtShiftLeft": "Shift cells left", + "SSE.Views.DocumentHolder.txtShiftRight": "Shift cells right", + "SSE.Views.DocumentHolder.txtShiftUp": "Shift cells up", + "SSE.Views.DocumentHolder.txtShow": "Show", + "SSE.Views.DocumentHolder.txtShowComment": "Show Comment", + "SSE.Views.DocumentHolder.txtSort": "Sort", + "SSE.Views.DocumentHolder.txtSortCellColor": "Selected Cell Color on top", + "SSE.Views.DocumentHolder.txtSortFontColor": "Selected Font Color on top", + "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", + "SSE.Views.DocumentHolder.txtText": "Text", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Paragraph Advanced Settings", + "SSE.Views.DocumentHolder.txtTime": "Time", + "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", + "SSE.Views.DocumentHolder.txtWidth": "Width", + "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "SSE.Views.FieldSettingsDialog.strLayout": "Layout", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", + "SSE.Views.FieldSettingsDialog.textReport": "Report Form", + "SSE.Views.FieldSettingsDialog.textTitle": "Field Settings", + "SSE.Views.FieldSettingsDialog.txtAverage": "Average", + "SSE.Views.FieldSettingsDialog.txtBlank": "Insert blank rows after each item", + "SSE.Views.FieldSettingsDialog.txtBottom": "Show at bottom of group", + "SSE.Views.FieldSettingsDialog.txtCompact": "Compact", + "SSE.Views.FieldSettingsDialog.txtCount": "Count", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Count Numbers", + "SSE.Views.FieldSettingsDialog.txtCustomName": "Custom name", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Show items with no data", + "SSE.Views.FieldSettingsDialog.txtMax": "Max", + "SSE.Views.FieldSettingsDialog.txtMin": "Min", + "SSE.Views.FieldSettingsDialog.txtOutline": "Outline", + "SSE.Views.FieldSettingsDialog.txtProduct": "Product", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Repeat items labels at each row", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Show subtotals", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Source name:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.FieldSettingsDialog.txtSum": "Sum", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Functions for Subtotals", + "SSE.Views.FieldSettingsDialog.txtTabular": "Tabular", + "SSE.Views.FieldSettingsDialog.txtTop": "Show at top of group", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.FileMenu.btnBackCaption": "Open file location", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", + "SSE.Views.FileMenu.btnCreateNewCaption": "Create New", + "SSE.Views.FileMenu.btnDownloadCaption": "Download as...", + "SSE.Views.FileMenu.btnHelpCaption": "Help...", + "SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Info...", + "SSE.Views.FileMenu.btnPrintCaption": "Print", + "SSE.Views.FileMenu.btnProtectCaption": "Protect", + "SSE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", + "SSE.Views.FileMenu.btnRenameCaption": "Rename...", + "SSE.Views.FileMenu.btnReturnCaption": "Back to Spreadsheet", + "SSE.Views.FileMenu.btnRightsCaption": "Access Rights...", + "SSE.Views.FileMenu.btnSaveAsCaption": "Save as", + "SSE.Views.FileMenu.btnSaveCaption": "Save", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Save Copy as...", + "SSE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", + "SSE.Views.FileMenu.btnToEditCaption": "Edit Spreadsheet", + "SSE.Views.FileMenu.btnHistoryCaption": "Version History", + "SSE.Views.FileMenuPanels.CreateNew.fromBlankText": "From Blank", + "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "From Template", + "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Create a new blank spreadsheet which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a spreadsheet of a certain type or purpose where some styles have already been pre-applied.", + "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "New Spreadsheet", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", + "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner", + "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", + "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded", + "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", + "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Apply", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Turn on autorecover", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Turn on autosave", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing Mode", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimal separator", + "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", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Turn on display of the comments", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Macros Settings", + "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.strR1C1": "Turn on R1C1 style", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Turn on display of the resolved comments", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separator", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Interface theme", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Thousands separator", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unit of Measurement", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Use separators based on regional settings", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Default Zoom Value", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Every 10 Minutes", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Every 30 Minutes", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Every 5 Minutes", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Every Hour", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Autorecover", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Autosave", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Disabled", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Saving intermediate versions", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Every Minute", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Reference Style", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Belarusian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgarian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalan", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Default cache mode", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Czech", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "German", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Greek", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finnish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "French", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hungarian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japanese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Korean", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commenting Display", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Latvian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "as OS X", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norwegian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Dutch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portuguese (Brazil)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguese (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Enable All", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Enable all macros without a notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovak", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Slovenian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Disable All", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Disable all macros without a notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Swedish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turkish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukrainian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Show Notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Disable all macros with a notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinese", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Apply", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Dictionary language", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignore words with numbers", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "AutoCorrect options...", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Proofing", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "With password", + "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protect Spreadsheet", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "With signature", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit spreadsheet", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing will remove signatures from the spreadsheet.
    Continue?", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "This spreadsheet has been protected by password", + "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "This spreadsheet needs to be signed.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Valid signatures have been added to the spreadsheet. The spreadsheet is protected from editing.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Some of the digital signatures in spreadsheet are invalid or could not be verified. The spreadsheet is protected from editing.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures", + "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", + "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Page Settings", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Spell checking", + "SSE.Views.FormatRulesEditDlg.fillColor": "Fill color", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Warning", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Color scale", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Color scale", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "All Borders", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Bar Appearance", + "SSE.Views.FormatRulesEditDlg.textApply": "Apply to Range", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatic", + "SSE.Views.FormatRulesEditDlg.textAxis": "Axis", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Bar Direction", + "SSE.Views.FormatRulesEditDlg.textBold": "Bold", + "SSE.Views.FormatRulesEditDlg.textBorder": "Border", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Borders Color", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Border Style", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bottom Borders", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Cannot add the conditional formatting.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Cell midpoint", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Inside Vertical Borders", + "SSE.Views.FormatRulesEditDlg.textClear": "Clear", + "SSE.Views.FormatRulesEditDlg.textColor": "Text color", + "SSE.Views.FormatRulesEditDlg.textContext": "Context", + "SSE.Views.FormatRulesEditDlg.textCustom": "Custom", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonal Down Border", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonal Up Border", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Enter a valid formula.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "The formula you entered does not evaluate to a number, date, time or string.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Enter a value.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "The value you entered is not a valid number, date, time or string.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "The value for the {0} must be greater than the value for the {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Enter a number between {0} and {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Fill", + "SSE.Views.FormatRulesEditDlg.textFormat": "Format", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", + "SSE.Views.FormatRulesEditDlg.textGradient": "Gradient", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "when {0} {1} and", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "when {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "when value is", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "One or more icon data ranges overlap.
    Adjust icon data range values so that the ranges do not overlap.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Icon Style", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Inside Borders", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Invalid data range.", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.FormatRulesEditDlg.textItalic": "Italic", + "SSE.Views.FormatRulesEditDlg.textItem": "Item", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Left to right", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Left Borders", + "SSE.Views.FormatRulesEditDlg.textLongBar": "longest bar", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maxpoint", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Inside Horizontal Borders", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Midpoint", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minpoint", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negative", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Add New Custom Color", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "No Borders", + "SSE.Views.FormatRulesEditDlg.textNone": "None", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "One or more of the specified values is not a valid percentage.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "The specified {0} value is not a valid percentage.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "One or more of the specified values is not a valid percentile.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "The specified {0} value is not a valid percentile.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Outside Borders", + "SSE.Views.FormatRulesEditDlg.textPercent": "Percent", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentile", + "SSE.Views.FormatRulesEditDlg.textPosition": "Position", + "SSE.Views.FormatRulesEditDlg.textPositive": "Positive", + "SSE.Views.FormatRulesEditDlg.textPresets": "Presets", + "SSE.Views.FormatRulesEditDlg.textPreview": "Preview", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "You cannot use relative references in conditional formatting criteria for color scales, data bars, and icon sets.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Reverse Icons Order", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Right to left", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Right Borders", + "SSE.Views.FormatRulesEditDlg.textRule": "Rule", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Same as positive", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Select Data", + "SSE.Views.FormatRulesEditDlg.textShortBar": "shortest bar", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Show bar only", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Show icon only", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "This type of reference cannot be used in a conditional formatting formula.
    Change the reference to a single cell, or use the reference with a worksheet function, such as =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Solid", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Strikeout", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Subscript", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superscript", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Top Borders", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Underline", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Borders", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Number Format", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Accounting", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Currency", + "SSE.Views.FormatRulesEditDlg.txtDate": "Date", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "This field is required", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Fraction", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "No Icon", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Number", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentage", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientific", + "SSE.Views.FormatRulesEditDlg.txtText": "Text", + "SSE.Views.FormatRulesEditDlg.txtTime": "Time", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edit Formatting Rule", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "New Formatting Rule", + "SSE.Views.FormatRulesManagerDlg.guestText": "Guest", + "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std dev above average", + "SSE.Views.FormatRulesManagerDlg.text1Below": "1 std dev below average", + "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std dev above average", + "SSE.Views.FormatRulesManagerDlg.text2Below": "2 std dev below average", + "SSE.Views.FormatRulesManagerDlg.text3Above": "3 std dev above average", + "SSE.Views.FormatRulesManagerDlg.text3Below": "3 std dev below average", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Above average", + "SSE.Views.FormatRulesManagerDlg.textApply": "Apply to", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Cell value begins with", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Below average", + "SSE.Views.FormatRulesManagerDlg.textBetween": "is between {0} and {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Cell value", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Graded color scale", + "SSE.Views.FormatRulesManagerDlg.textContains": "Cell value contains", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Cell contains a blank value", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "Cell contains an error", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Delete", + "SSE.Views.FormatRulesManagerDlg.textDown": "Move rule down", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplicate values", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Edit", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Cell value ends with", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Equal to or above average", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Equal to or below average", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Format", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Icon set", + "SSE.Views.FormatRulesManagerDlg.textNew": "New", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "is not between {0} and {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Cell value does not contain", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Cell does not contain a blank value", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Cell does not contain an error", + "SSE.Views.FormatRulesManagerDlg.textRules": "Rules", + "SSE.Views.FormatRulesManagerDlg.textScope": "Show formatting rules for", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Select data", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Current selection", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "This pivot", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "This worksheet", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "This table", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Unique values", + "SSE.Views.FormatRulesManagerDlg.textUp": "Move rule up", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "This element is being edited by another user.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Conditional Formatting", + "SSE.Views.FormatSettingsDialog.textCategory": "Category", + "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", + "SSE.Views.FormatSettingsDialog.textFormat": "Format", + "SSE.Views.FormatSettingsDialog.textLinked": "Linked to source", + "SSE.Views.FormatSettingsDialog.textSeparator": "Use 1000 separator", + "SSE.Views.FormatSettingsDialog.textSymbols": "Symbols", + "SSE.Views.FormatSettingsDialog.textTitle": "Number Format", + "SSE.Views.FormatSettingsDialog.txtAccounting": "Accounting", + "SSE.Views.FormatSettingsDialog.txtAs10": "As tenths (5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "As hundredths (50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "As sixteenths (8/16)", + "SSE.Views.FormatSettingsDialog.txtAs2": "As halves (1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "As fourths (2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "As eighths (4/8)", + "SSE.Views.FormatSettingsDialog.txtCurrency": "Currency", + "SSE.Views.FormatSettingsDialog.txtCustom": "Custom", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Please enter the custom number format carefully. Spreadsheet Editor does not check custom formats for errors that may affect the xlsx file.", + "SSE.Views.FormatSettingsDialog.txtDate": "Date", + "SSE.Views.FormatSettingsDialog.txtFraction": "Fraction", + "SSE.Views.FormatSettingsDialog.txtGeneral": "General", + "SSE.Views.FormatSettingsDialog.txtNone": "None", + "SSE.Views.FormatSettingsDialog.txtNumber": "Number", + "SSE.Views.FormatSettingsDialog.txtPercentage": "Percentage", + "SSE.Views.FormatSettingsDialog.txtSample": "Sample:", + "SSE.Views.FormatSettingsDialog.txtScientific": "Scientific", + "SSE.Views.FormatSettingsDialog.txtText": "Text", + "SSE.Views.FormatSettingsDialog.txtTime": "Time", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Up to one digit (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "Up to two digits (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Up to three digits (131/135)", + "SSE.Views.FormulaDialog.sDescription": "Description", + "SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group", + "SSE.Views.FormulaDialog.textListDescription": "Select Function", + "SSE.Views.FormulaDialog.txtRecommended": "Recommended", + "SSE.Views.FormulaDialog.txtSearch": "Search", + "SSE.Views.FormulaDialog.txtTitle": "Insert Function", + "SSE.Views.FormulaTab.textAutomatic": "Automatic", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calculate current sheet", + "SSE.Views.FormulaTab.textCalculateWorkbook": "Calculate workbook", + "SSE.Views.FormulaTab.textManual": "Manual", + "SSE.Views.FormulaTab.tipCalculate": "Calculate", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calculate the entire workbook", + "SSE.Views.FormulaTab.txtAdditional": "Additional", + "SSE.Views.FormulaTab.txtAutosum": "Autosum", + "SSE.Views.FormulaTab.txtAutosumTip": "Summation", + "SSE.Views.FormulaTab.txtCalculation": "Calculation", + "SSE.Views.FormulaTab.txtFormula": "Function", + "SSE.Views.FormulaTab.txtFormulaTip": "Insert function", + "SSE.Views.FormulaTab.txtMore": "More functions", + "SSE.Views.FormulaTab.txtRecent": "Recently used", + "SSE.Views.FormulaWizard.textAny": "any", + "SSE.Views.FormulaWizard.textArgument": "Argument", + "SSE.Views.FormulaWizard.textFunction": "Function", + "SSE.Views.FormulaWizard.textFunctionRes": "Function result", + "SSE.Views.FormulaWizard.textHelp": "Help on this function", + "SSE.Views.FormulaWizard.textLogical": "logical", + "SSE.Views.FormulaWizard.textNoArgs": "This function has no arguments", + "SSE.Views.FormulaWizard.textNumber": "number", + "SSE.Views.FormulaWizard.textRef": "reference", + "SSE.Views.FormulaWizard.textText": "text", + "SSE.Views.FormulaWizard.textTitle": "Function Arguments", + "SSE.Views.FormulaWizard.textValue": "Formula result", + "SSE.Views.HeaderFooterDialog.textAlign": "Align with page margins", + "SSE.Views.HeaderFooterDialog.textAll": "All pages", + "SSE.Views.HeaderFooterDialog.textBold": "Bold", + "SSE.Views.HeaderFooterDialog.textCenter": "Center", + "SSE.Views.HeaderFooterDialog.textColor": "Text color", + "SSE.Views.HeaderFooterDialog.textDate": "Date", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "Different first page", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Different odd and even pages", + "SSE.Views.HeaderFooterDialog.textEven": "Even page", + "SSE.Views.HeaderFooterDialog.textFileName": "File name", + "SSE.Views.HeaderFooterDialog.textFirst": "First page", + "SSE.Views.HeaderFooterDialog.textFooter": "Footer", + "SSE.Views.HeaderFooterDialog.textHeader": "Header", + "SSE.Views.HeaderFooterDialog.textInsert": "Insert", + "SSE.Views.HeaderFooterDialog.textItalic": "Italic", + "SSE.Views.HeaderFooterDialog.textLeft": "Left", + "SSE.Views.HeaderFooterDialog.textMaxError": "The text string you entered is too long. Reduce the number of characters used.", + "SSE.Views.HeaderFooterDialog.textNewColor": "Add New Custom Color", + "SSE.Views.HeaderFooterDialog.textOdd": "Odd page", + "SSE.Views.HeaderFooterDialog.textPageCount": "Page count", + "SSE.Views.HeaderFooterDialog.textPageNum": "Page number", + "SSE.Views.HeaderFooterDialog.textPresets": "Presets", + "SSE.Views.HeaderFooterDialog.textRight": "Right", + "SSE.Views.HeaderFooterDialog.textScale": "Scale with document", + "SSE.Views.HeaderFooterDialog.textSheet": "Sheet name", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Strikethrough", + "SSE.Views.HeaderFooterDialog.textSubscript": "Subscript", + "SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript", + "SSE.Views.HeaderFooterDialog.textTime": "Time", + "SSE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings", + "SSE.Views.HeaderFooterDialog.textUnderline": "Underline", + "SSE.Views.HeaderFooterDialog.tipFontName": "Font", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Font size", + "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Display", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to", + "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", + "SSE.Views.HyperlinkSettingsDialog.strSheet": "Sheet", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copy", + "SSE.Views.HyperlinkSettingsDialog.textDefault": "Selected range", + "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here", + "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here", + "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here", + "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Get Link", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Internal Data Range", + "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Defined names", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Select data", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Sheets", + "SSE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required", + "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "This field is limited to 2083 characters", + "SSE.Views.ImageSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ImageSettings.textCrop": "Crop", + "SSE.Views.ImageSettings.textCropFill": "Fill", + "SSE.Views.ImageSettings.textCropFit": "Fit", + "SSE.Views.ImageSettings.textEdit": "Edit", + "SSE.Views.ImageSettings.textEditObject": "Edit Object", + "SSE.Views.ImageSettings.textFlip": "Flip", + "SSE.Views.ImageSettings.textFromFile": "From File", + "SSE.Views.ImageSettings.textFromStorage": "From Storage", + "SSE.Views.ImageSettings.textFromUrl": "From URL", + "SSE.Views.ImageSettings.textHeight": "Height", + "SSE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise", + "SSE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise", + "SSE.Views.ImageSettings.textHintFlipH": "Flip Horizontally", + "SSE.Views.ImageSettings.textHintFlipV": "Flip Vertically", + "SSE.Views.ImageSettings.textInsert": "Replace Image", + "SSE.Views.ImageSettings.textKeepRatio": "Constant proportions", + "SSE.Views.ImageSettings.textOriginalSize": "Actual Size", + "SSE.Views.ImageSettings.textRotate90": "Rotate 90°", + "SSE.Views.ImageSettings.textRotation": "Rotation", + "SSE.Views.ImageSettings.textSize": "Size", + "SSE.Views.ImageSettings.textWidth": "Width", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Don't move or size with cells", + "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.ImageSettingsAdvanced.textAngle": "Angle", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Move but don't size with cells", + "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotation", + "SSE.Views.ImageSettingsAdvanced.textSnap": "Cell Snapping", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Move and size with cells", + "SSE.Views.ImageSettingsAdvanced.textVertically": "Vertically", + "SSE.Views.LeftMenu.tipAbout": "About", + "SSE.Views.LeftMenu.tipChat": "Chat", + "SSE.Views.LeftMenu.tipComments": "Comments", + "SSE.Views.LeftMenu.tipFile": "File", + "SSE.Views.LeftMenu.tipPlugins": "Plugins", + "SSE.Views.LeftMenu.tipSearch": "Search", + "SSE.Views.LeftMenu.tipSpellcheck": "Spell checking", + "SSE.Views.LeftMenu.tipSupport": "Feedback & Support", + "SSE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE", + "SSE.Views.LeftMenu.txtLimit": "Limit Access", + "SSE.Views.LeftMenu.txtTrial": "TRIAL MODE", + "SSE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode", + "SSE.Views.MacroDialog.textMacro": "Macro name", + "SSE.Views.MacroDialog.textTitle": "Assign Macro", + "SSE.Views.MainSettingsPrint.okButtonText": "Save", + "SSE.Views.MainSettingsPrint.strBottom": "Bottom", + "SSE.Views.MainSettingsPrint.strLandscape": "Landscape", + "SSE.Views.MainSettingsPrint.strLeft": "Left", + "SSE.Views.MainSettingsPrint.strMargins": "Margins", + "SSE.Views.MainSettingsPrint.strPortrait": "Portrait", + "SSE.Views.MainSettingsPrint.strPrint": "Print", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Print Titles", + "SSE.Views.MainSettingsPrint.strRight": "Right", + "SSE.Views.MainSettingsPrint.strTop": "Top", + "SSE.Views.MainSettingsPrint.textActualSize": "Actual Size", + "SSE.Views.MainSettingsPrint.textCustom": "Custom", + "SSE.Views.MainSettingsPrint.textCustomOptions": "Custom Options", + "SSE.Views.MainSettingsPrint.textFitCols": "Fit All Columns on One Page", + "SSE.Views.MainSettingsPrint.textFitPage": "Fit Sheet on One Page", + "SSE.Views.MainSettingsPrint.textFitRows": "Fit All Rows on One Page", + "SSE.Views.MainSettingsPrint.textPageOrientation": "Page Orientation", + "SSE.Views.MainSettingsPrint.textPageScaling": "Scaling", + "SSE.Views.MainSettingsPrint.textPageSize": "Page Size", + "SSE.Views.MainSettingsPrint.textPrintGrid": "Print Gridlines", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "Print Row and Column Headings", + "SSE.Views.MainSettingsPrint.textRepeat": "Repeat...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Repeat columns at left", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Repeat rows at top", + "SSE.Views.MainSettingsPrint.textSettings": "Settings for", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Defined name", + "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Warning", + "SSE.Views.NamedRangeEditDlg.strWorkbook": "Workbook", + "SSE.Views.NamedRangeEditDlg.textDataRange": "Data Range", + "SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Range with such a name already exists", + "SSE.Views.NamedRangeEditDlg.textInvalidName": "The name must begin with a letter or an underscore and must not contain invalid characters.", + "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! Invalid cell range", + "SSE.Views.NamedRangeEditDlg.textIsLocked": "ERROR! This element is being edited by another user.", + "SSE.Views.NamedRangeEditDlg.textName": "Name", + "SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", + "SSE.Views.NamedRangeEditDlg.textScope": "Scope", + "SSE.Views.NamedRangeEditDlg.textSelectData": "Select Data", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "This field is required", + "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name", + "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name", + "SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges", + "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", + "SSE.Views.NameManagerDlg.closeButtonText": "Close", + "SSE.Views.NameManagerDlg.guestText": "Guest", + "SSE.Views.NameManagerDlg.textDataRange": "Data Range", + "SSE.Views.NameManagerDlg.textDelete": "Delete", + "SSE.Views.NameManagerDlg.textEdit": "Edit", + "SSE.Views.NameManagerDlg.textEmpty": "No named ranges have been created yet.
    Create at least one named range and it will appear in this field.", + "SSE.Views.NameManagerDlg.textFilter": "Filter", + "SSE.Views.NameManagerDlg.textFilterAll": "All", + "SSE.Views.NameManagerDlg.textFilterDefNames": "Defined names", + "SSE.Views.NameManagerDlg.textFilterSheet": "Names Scoped to Sheet", + "SSE.Views.NameManagerDlg.textFilterTableNames": "Table names", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook", + "SSE.Views.NameManagerDlg.textNew": "New", + "SSE.Views.NameManagerDlg.textnoNames": "No named ranges matching your filter could be found.", + "SSE.Views.NameManagerDlg.textRanges": "Named Ranges", + "SSE.Views.NameManagerDlg.textScope": "Scope", + "SSE.Views.NameManagerDlg.textWorkbook": "Workbook", + "SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.", + "SSE.Views.NameManagerDlg.txtTitle": "Name Manager", + "SSE.Views.NameManagerDlg.warnDelete": "Are you sure you want to delete the name {0}?", + "SSE.Views.PageMarginsDialog.textBottom": "Bottom", + "SSE.Views.PageMarginsDialog.textLeft": "Left", + "SSE.Views.PageMarginsDialog.textRight": "Right", + "SSE.Views.PageMarginsDialog.textTitle": "Margins", + "SSE.Views.PageMarginsDialog.textTop": "Top", + "SSE.Views.ParagraphSettings.strLineHeight": "Line Spacing", + "SSE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing", + "SSE.Views.ParagraphSettings.strSpacingAfter": "After", + "SSE.Views.ParagraphSettings.strSpacingBefore": "Before", + "SSE.Views.ParagraphSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ParagraphSettings.textAt": "At", + "SSE.Views.ParagraphSettings.textAtLeast": "At least", + "SSE.Views.ParagraphSettings.textAuto": "Multiple", + "SSE.Views.ParagraphSettings.textExact": "Exactly", + "SSE.Views.ParagraphSettings.txtAutoText": "Auto", + "SSE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", + "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Indents", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Before", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Special", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "By", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Spacing", + "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Spacing", + "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", + "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", + "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", + "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs", + "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple", + "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", + "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", + "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "Exactly", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Justified", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)", + "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", + "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", + "SSE.Views.ParagraphSettingsAdvanced.textSet": "Specify", + "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", + "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", + "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", + "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "equals", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "does not end with", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "contains", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "does not contain", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "between", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "not between", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "does not equal", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "is greater than", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "is greater than or equal to", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "is less than", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "is less than or equal to", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "begins with", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "does not begin with", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "ends with", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Show items for which the label:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Show items for which:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Use ? to present any single character", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Use * to present any series of character", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "and", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Label Filter", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Value Filter", + "SSE.Views.PivotGroupDialog.textAuto": "Auto", + "SSE.Views.PivotGroupDialog.textBy": "By", + "SSE.Views.PivotGroupDialog.textDays": "Days", + "SSE.Views.PivotGroupDialog.textEnd": "Ending at", + "SSE.Views.PivotGroupDialog.textError": "This field must be a numeric value", + "SSE.Views.PivotGroupDialog.textGreaterError": "The end number must be greater than the start number", + "SSE.Views.PivotGroupDialog.textHour": "Hours", + "SSE.Views.PivotGroupDialog.textMin": "Minutes", + "SSE.Views.PivotGroupDialog.textMonth": "Months", + "SSE.Views.PivotGroupDialog.textNumDays": "Number of days", + "SSE.Views.PivotGroupDialog.textQuart": "Quarters", + "SSE.Views.PivotGroupDialog.textSec": "Seconds", + "SSE.Views.PivotGroupDialog.textStart": "Starting at", + "SSE.Views.PivotGroupDialog.textYear": "Years", + "SSE.Views.PivotGroupDialog.txtTitle": "Grouping", + "SSE.Views.PivotSettings.textAdvanced": "Show advanced settings", + "SSE.Views.PivotSettings.textColumns": "Columns", + "SSE.Views.PivotSettings.textFields": "Select Fields", + "SSE.Views.PivotSettings.textFilters": "Filters", + "SSE.Views.PivotSettings.textRows": "Rows", + "SSE.Views.PivotSettings.textValues": "Values", + "SSE.Views.PivotSettings.txtAddColumn": "Add to Columns", + "SSE.Views.PivotSettings.txtAddFilter": "Add to Filters", + "SSE.Views.PivotSettings.txtAddRow": "Add to Rows", + "SSE.Views.PivotSettings.txtAddValues": "Add to Values", + "SSE.Views.PivotSettings.txtFieldSettings": "Field Settings", + "SSE.Views.PivotSettings.txtMoveBegin": "Move to Beginning", + "SSE.Views.PivotSettings.txtMoveColumn": "Move to Columns", + "SSE.Views.PivotSettings.txtMoveDown": "Move Down", + "SSE.Views.PivotSettings.txtMoveEnd": "Move to End", + "SSE.Views.PivotSettings.txtMoveFilter": "Move to Filters", + "SSE.Views.PivotSettings.txtMoveRow": "Move to Rows", + "SSE.Views.PivotSettings.txtMoveUp": "Move Up", + "SSE.Views.PivotSettings.txtMoveValues": "Move to Values", + "SSE.Views.PivotSettings.txtRemove": "Remove Field", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Name and Layout", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Data Range", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Data Source", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Display fields in report filter area", + "SSE.Views.PivotSettingsAdvanced.textDown": "Down, then over", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grand Totals", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Field Headers", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.PivotSettingsAdvanced.textOver": "Over, then down", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Select data", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Show for columns", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Show field headers for rows and columns", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Show for rows", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Pivot Table - Advanced Settings", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Report filter fields per column", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Report filter fields per row", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "This field is required", + "SSE.Views.PivotSettingsAdvanced.txtName": "Name", + "SSE.Views.PivotTable.capBlankRows": "Blank Rows", + "SSE.Views.PivotTable.capGrandTotals": "Grand Totals", + "SSE.Views.PivotTable.capLayout": "Report Layout", + "SSE.Views.PivotTable.capSubtotals": "Subtotals", + "SSE.Views.PivotTable.mniBottomSubtotals": "Show all Subtotals at Bottom of Group", + "SSE.Views.PivotTable.mniInsertBlankLine": "Insert Blank Line after Each Item", + "SSE.Views.PivotTable.mniLayoutCompact": "Show in Compact Form", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "Don't Repeat All Item Labels", + "SSE.Views.PivotTable.mniLayoutOutline": "Show in Outline Form", + "SSE.Views.PivotTable.mniLayoutRepeat": "Repeat All Item Labels", + "SSE.Views.PivotTable.mniLayoutTabular": "Show in Tabular Form", + "SSE.Views.PivotTable.mniNoSubtotals": "Don't Show Subtotals", + "SSE.Views.PivotTable.mniOffTotals": "Off for Rows and Columns", + "SSE.Views.PivotTable.mniOnColumnsTotals": "On for Columns Only", + "SSE.Views.PivotTable.mniOnRowsTotals": "On for Rows Only", + "SSE.Views.PivotTable.mniOnTotals": "On for Rows and Columns", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Remove Blank Line after Each Item", + "SSE.Views.PivotTable.mniTopSubtotals": "Show all Subtotals at Top of Group", + "SSE.Views.PivotTable.textColBanded": "Banded Columns", + "SSE.Views.PivotTable.textColHeader": "Column Headers", + "SSE.Views.PivotTable.textRowBanded": "Banded Rows", + "SSE.Views.PivotTable.textRowHeader": "Row Headers", + "SSE.Views.PivotTable.tipCreatePivot": "Insert Pivot Table", + "SSE.Views.PivotTable.tipGrandTotals": "Show or hide grand totals", + "SSE.Views.PivotTable.tipRefresh": "Update the information from data source", + "SSE.Views.PivotTable.tipSelect": "Select entire pivot table", + "SSE.Views.PivotTable.tipSubtotals": "Show or hide subtotals", + "SSE.Views.PivotTable.txtCreate": "Insert Table", + "SSE.Views.PivotTable.txtPivotTable": "Pivot Table", + "SSE.Views.PivotTable.txtRefresh": "Refresh", + "SSE.Views.PivotTable.txtSelect": "Select", + "SSE.Views.PrintSettings.btnDownload": "Save & Download", + "SSE.Views.PrintSettings.btnPrint": "Save & Print", + "SSE.Views.PrintSettings.strBottom": "Bottom", + "SSE.Views.PrintSettings.strLandscape": "Landscape", + "SSE.Views.PrintSettings.strLeft": "Left", + "SSE.Views.PrintSettings.strMargins": "Margins", + "SSE.Views.PrintSettings.strPortrait": "Portrait", + "SSE.Views.PrintSettings.strPrint": "Print", + "SSE.Views.PrintSettings.strPrintTitles": "Print Titles", + "SSE.Views.PrintSettings.strRight": "Right", + "SSE.Views.PrintSettings.strShow": "Show", + "SSE.Views.PrintSettings.strTop": "Top", + "SSE.Views.PrintSettings.textActualSize": "Actual Size", + "SSE.Views.PrintSettings.textAllSheets": "All Sheets", + "SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet", + "SSE.Views.PrintSettings.textCustom": "Custom", + "SSE.Views.PrintSettings.textCustomOptions": "Custom Options", + "SSE.Views.PrintSettings.textFitCols": "Fit All Columns on One Page", + "SSE.Views.PrintSettings.textFitPage": "Fit Sheet on One Page", + "SSE.Views.PrintSettings.textFitRows": "Fit All Rows on One Page", + "SSE.Views.PrintSettings.textHideDetails": "Hide Details", + "SSE.Views.PrintSettings.textIgnore": "Ignore Print Area", + "SSE.Views.PrintSettings.textLayout": "Layout", + "SSE.Views.PrintSettings.textPageOrientation": "Page Orientation", + "SSE.Views.PrintSettings.textPageScaling": "Scaling", + "SSE.Views.PrintSettings.textPageSize": "Page Size", + "SSE.Views.PrintSettings.textPrintGrid": "Print Gridlines", + "SSE.Views.PrintSettings.textPrintHeadings": "Print Row and Column Headings", + "SSE.Views.PrintSettings.textPrintRange": "Print Range", + "SSE.Views.PrintSettings.textRange": "Range", + "SSE.Views.PrintSettings.textRepeat": "Repeat...", + "SSE.Views.PrintSettings.textRepeatLeft": "Repeat columns at left", + "SSE.Views.PrintSettings.textRepeatTop": "Repeat rows at top", + "SSE.Views.PrintSettings.textSelection": "Selection", + "SSE.Views.PrintSettings.textSettings": "Sheet Settings", + "SSE.Views.PrintSettings.textShowDetails": "Show Details", + "SSE.Views.PrintSettings.textShowGrid": "Show Gridlines", + "SSE.Views.PrintSettings.textShowHeadings": "Show Rows and Columns Headings", + "SSE.Views.PrintSettings.textTitle": "Print Settings", + "SSE.Views.PrintSettings.textTitlePDF": "PDF Settings", + "SSE.Views.PrintTitlesDialog.textFirstCol": "First column", + "SSE.Views.PrintTitlesDialog.textFirstRow": "First row", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Frozen columns", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Frozen rows", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.PrintTitlesDialog.textLeft": "Repeat columns at left", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "Don't repeat", + "SSE.Views.PrintTitlesDialog.textRepeat": "Repeat...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Select range", + "SSE.Views.PrintTitlesDialog.textTitle": "Print Titles", + "SSE.Views.PrintTitlesDialog.textTop": "Repeat rows at top", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Columns", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "To delete duplicate values, select one or more columns that contain duplicates.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "My data has headers", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Select All", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Remove Duplicates", + "SSE.Views.RightMenu.txtCellSettings": "Cell settings", + "SSE.Views.RightMenu.txtChartSettings": "Chart settings", + "SSE.Views.RightMenu.txtImageSettings": "Image settings", + "SSE.Views.RightMenu.txtParagraphSettings": "Paragraph settings", + "SSE.Views.RightMenu.txtPivotSettings": "Pivot Table settings", + "SSE.Views.RightMenu.txtSettings": "Common Settings", + "SSE.Views.RightMenu.txtShapeSettings": "Shape settings", + "SSE.Views.RightMenu.txtSignatureSettings": "Signature settings", + "SSE.Views.RightMenu.txtSlicerSettings": "Slicer settings", + "SSE.Views.RightMenu.txtSparklineSettings": "Sparkline settings", + "SSE.Views.RightMenu.txtTableSettings": "Table settings", + "SSE.Views.RightMenu.txtTextArtSettings": "Text Art settings", + "SSE.Views.ScaleDialog.textAuto": "Auto", + "SSE.Views.ScaleDialog.textError": "The entered value is incorrect.", + "SSE.Views.ScaleDialog.textFewPages": "pages", + "SSE.Views.ScaleDialog.textFitTo": "Fit To", + "SSE.Views.ScaleDialog.textHeight": "Height", + "SSE.Views.ScaleDialog.textManyPages": "pages", + "SSE.Views.ScaleDialog.textOnePage": "page", + "SSE.Views.ScaleDialog.textScaleTo": "Scale To", + "SSE.Views.ScaleDialog.textTitle": "Scale Settings", + "SSE.Views.ScaleDialog.textWidth": "Width", + "SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}", + "SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}", + "SSE.Views.ShapeSettings.strBackground": "Background color", + "SSE.Views.ShapeSettings.strChange": "Change Autoshape", + "SSE.Views.ShapeSettings.strColor": "Color", + "SSE.Views.ShapeSettings.strFill": "Fill", + "SSE.Views.ShapeSettings.strForeground": "Foreground color", + "SSE.Views.ShapeSettings.strPattern": "Pattern", + "SSE.Views.ShapeSettings.strShadow": "Show shadow", + "SSE.Views.ShapeSettings.strSize": "Size", + "SSE.Views.ShapeSettings.strStroke": "Line", + "SSE.Views.ShapeSettings.strTransparency": "Opacity", + "SSE.Views.ShapeSettings.strType": "Type", + "SSE.Views.ShapeSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ShapeSettings.textAngle": "Angle", + "SSE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", + "SSE.Views.ShapeSettings.textColor": "Color Fill", + "SSE.Views.ShapeSettings.textDirection": "Direction", + "SSE.Views.ShapeSettings.textEmptyPattern": "No Pattern", + "SSE.Views.ShapeSettings.textFlip": "Flip", + "SSE.Views.ShapeSettings.textFromFile": "From File", + "SSE.Views.ShapeSettings.textFromStorage": "From Storage", + "SSE.Views.ShapeSettings.textFromUrl": "From URL", + "SSE.Views.ShapeSettings.textGradient": "Gradient points", + "SSE.Views.ShapeSettings.textGradientFill": "Gradient Fill", + "SSE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise", + "SSE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise", + "SSE.Views.ShapeSettings.textHintFlipH": "Flip Horizontally", + "SSE.Views.ShapeSettings.textHintFlipV": "Flip Vertically", + "SSE.Views.ShapeSettings.textImageTexture": "Picture or Texture", + "SSE.Views.ShapeSettings.textLinear": "Linear", + "SSE.Views.ShapeSettings.textNoFill": "No Fill", + "SSE.Views.ShapeSettings.textOriginalSize": "Original Size", + "SSE.Views.ShapeSettings.textPatternFill": "Pattern", + "SSE.Views.ShapeSettings.textPosition": "Position", + "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRotate90": "Rotate 90°", + "SSE.Views.ShapeSettings.textRotation": "Rotation", + "SSE.Views.ShapeSettings.textSelectImage": "Select Picture", + "SSE.Views.ShapeSettings.textSelectTexture": "Select", + "SSE.Views.ShapeSettings.textStretch": "Stretch", + "SSE.Views.ShapeSettings.textStyle": "Style", + "SSE.Views.ShapeSettings.textTexture": "From Texture", + "SSE.Views.ShapeSettings.textTile": "Tile", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Add gradient point", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Remove gradient point", + "SSE.Views.ShapeSettings.txtBrownPaper": "Brown Paper", + "SSE.Views.ShapeSettings.txtCanvas": "Canvas", + "SSE.Views.ShapeSettings.txtCarton": "Carton", + "SSE.Views.ShapeSettings.txtDarkFabric": "Dark Fabric", + "SSE.Views.ShapeSettings.txtGrain": "Grain", + "SSE.Views.ShapeSettings.txtGranite": "Granite", + "SSE.Views.ShapeSettings.txtGreyPaper": "Gray Paper", + "SSE.Views.ShapeSettings.txtKnit": "Knit", + "SSE.Views.ShapeSettings.txtLeather": "Leather", + "SSE.Views.ShapeSettings.txtNoBorders": "No Line", + "SSE.Views.ShapeSettings.txtPapyrus": "Papyrus", + "SSE.Views.ShapeSettings.txtWood": "Wood", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns", + "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Don't move or size with cells", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "Angle", + "SSE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit", + "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", + "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", + "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", + "SSE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", + "SSE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Number of columns", + "SSE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", + "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", + "SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped", + "SSE.Views.ShapeSettingsAdvanced.textHeight": "Height", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontally", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type", + "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constant proportions", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "Left", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Line Style", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "Miter", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Move but don't size with cells", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Allow text to overflow shape", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Resize shape to fit text", + "SSE.Views.ShapeSettingsAdvanced.textRight": "Right", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotation", + "SSE.Views.ShapeSettingsAdvanced.textRound": "Round", + "SSE.Views.ShapeSettingsAdvanced.textSize": "Size", + "SSE.Views.ShapeSettingsAdvanced.textSnap": "Cell Snapping", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing between columns", + "SSE.Views.ShapeSettingsAdvanced.textSquare": "Square", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Text Box", + "SSE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings", + "SSE.Views.ShapeSettingsAdvanced.textTop": "Top", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Move and size with cells", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "Vertically", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", + "SSE.Views.ShapeSettingsAdvanced.textWidth": "Width", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Warning", + "SSE.Views.SignatureSettings.strDelete": "Remove Signature", + "SSE.Views.SignatureSettings.strDetails": "Signature Details", + "SSE.Views.SignatureSettings.strInvalid": "Invalid signatures", + "SSE.Views.SignatureSettings.strRequested": "Requested signatures", + "SSE.Views.SignatureSettings.strSetup": "Signature Setup", + "SSE.Views.SignatureSettings.strSign": "Sign", + "SSE.Views.SignatureSettings.strSignature": "Signature", + "SSE.Views.SignatureSettings.strSigner": "Signer", + "SSE.Views.SignatureSettings.strValid": "Valid signatures", + "SSE.Views.SignatureSettings.txtContinueEditing": "Edit anyway", + "SSE.Views.SignatureSettings.txtEditWarning": "Editing will remove signatures from the spreadsheet.
    Continue?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "Do you want to remove this signature?
    It can't be undone.", + "SSE.Views.SignatureSettings.txtRequestedSignatures": "This spreadsheet needs to be signed.", + "SSE.Views.SignatureSettings.txtSigned": "Valid signatures have been added to the spreadsheet. The spreadsheet is protected from editing.", + "SSE.Views.SignatureSettings.txtSignedInvalid": "Some of the digital signatures in spreadsheet are invalid or could not be verified. The spreadsheet is protected from editing.", + "SSE.Views.SlicerAddDialog.textColumns": "Columns", + "SSE.Views.SlicerAddDialog.txtTitle": "Insert Slicers", + "SSE.Views.SlicerSettings.strHideNoData": "Hide items with no data", + "SSE.Views.SlicerSettings.strIndNoData": "Visually indicate items with no data", + "SSE.Views.SlicerSettings.strShowDel": "Show items deleted from the data source", + "SSE.Views.SlicerSettings.strShowNoData": "Show items with no data last", + "SSE.Views.SlicerSettings.strSorting": "Sorting and filtering", + "SSE.Views.SlicerSettings.textAdvanced": "Show advanced settings", + "SSE.Views.SlicerSettings.textAsc": "Ascending", + "SSE.Views.SlicerSettings.textAZ": "A to Z", + "SSE.Views.SlicerSettings.textButtons": "Buttons", + "SSE.Views.SlicerSettings.textColumns": "Columns", + "SSE.Views.SlicerSettings.textDesc": "Descending", + "SSE.Views.SlicerSettings.textHeight": "Height", + "SSE.Views.SlicerSettings.textHor": "Horizontal", + "SSE.Views.SlicerSettings.textKeepRatio": "Constant Proportions", + "SSE.Views.SlicerSettings.textLargeSmall": "largest to smallest", + "SSE.Views.SlicerSettings.textLock": "Disable resizing or moving", + "SSE.Views.SlicerSettings.textNewOld": "newest to oldest", + "SSE.Views.SlicerSettings.textOldNew": "oldest to newest", + "SSE.Views.SlicerSettings.textPosition": "Position", + "SSE.Views.SlicerSettings.textSize": "Size", + "SSE.Views.SlicerSettings.textSmallLarge": "smallest to largest", + "SSE.Views.SlicerSettings.textStyle": "Style", + "SSE.Views.SlicerSettings.textVert": "Vertical", + "SSE.Views.SlicerSettings.textWidth": "Width", + "SSE.Views.SlicerSettings.textZA": "Z to A", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Buttons", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Columns", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Height", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Hide items with no data", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Visually indicate items with no data", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "References", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Show items deleted from the data source", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Display header", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Show items with no data last", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Size", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Sorting & Filtering", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Style", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Style & Size", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Width", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Don't move or size with cells", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Ascending", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A to Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Descending", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Name to use in formulas", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Header", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Constant Proportions", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "largest to smallest", + "SSE.Views.SlicerSettingsAdvanced.textName": "Name", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "newest to oldest", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "oldest to newest", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Move but don't size with cells", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "smallest to largest", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "Cell Snapping", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Sort", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Source name", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer - Advanced Settings", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Move and size with cells", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Z to A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "This field is required", + "SSE.Views.SortDialog.errorEmpty": "All sort criteria must have a column or row specified.", + "SSE.Views.SortDialog.errorMoreOneCol": "More than one column is selected.", + "SSE.Views.SortDialog.errorMoreOneRow": "More than one row is selected.", + "SSE.Views.SortDialog.errorNotOriginalCol": "The column you selected is not in the original selected range.", + "SSE.Views.SortDialog.errorNotOriginalRow": "The row you selected is not in the original selected range.", + "SSE.Views.SortDialog.errorSameColumnColor": "%1 is being sorted by the same color more than once.
    Delete the duplicate sort criteria and try again.", + "SSE.Views.SortDialog.errorSameColumnValue": "%1 is being sorted by values more than once.
    Delete the duplicate sort criteria and try again.", + "SSE.Views.SortDialog.textAdd": "Add level", + "SSE.Views.SortDialog.textAsc": "Ascending", + "SSE.Views.SortDialog.textAuto": "Automatic", + "SSE.Views.SortDialog.textAZ": "A to Z", + "SSE.Views.SortDialog.textBelow": "Below", + "SSE.Views.SortDialog.textCellColor": "Cell color", + "SSE.Views.SortDialog.textColumn": "Column", + "SSE.Views.SortDialog.textCopy": "Copy level", + "SSE.Views.SortDialog.textDelete": "Delete level", + "SSE.Views.SortDialog.textDesc": "Descending", + "SSE.Views.SortDialog.textDown": "Move level down", + "SSE.Views.SortDialog.textFontColor": "Font color", + "SSE.Views.SortDialog.textLeft": "Left", + "SSE.Views.SortDialog.textMoreCols": "(More columns...)", + "SSE.Views.SortDialog.textMoreRows": "(More rows...)", + "SSE.Views.SortDialog.textNone": "None", + "SSE.Views.SortDialog.textOptions": "Options", + "SSE.Views.SortDialog.textOrder": "Order", + "SSE.Views.SortDialog.textRight": "Right", + "SSE.Views.SortDialog.textRow": "Row", + "SSE.Views.SortDialog.textSort": "Sort on", + "SSE.Views.SortDialog.textSortBy": "Sort by", + "SSE.Views.SortDialog.textThenBy": "Then by", + "SSE.Views.SortDialog.textTop": "Top", + "SSE.Views.SortDialog.textUp": "Move level up", + "SSE.Views.SortDialog.textValues": "Values", + "SSE.Views.SortDialog.textZA": "Z to A", + "SSE.Views.SortDialog.txtInvalidRange": "Invalid cells range.", + "SSE.Views.SortDialog.txtTitle": "Sort", + "SSE.Views.SortFilterDialog.textAsc": "Ascending (A to Z) by", + "SSE.Views.SortFilterDialog.textDesc": "Descending (Z to A) by", + "SSE.Views.SortFilterDialog.txtTitle": "Sort", + "SSE.Views.SortOptionsDialog.textCase": "Case sensitive", + "SSE.Views.SortOptionsDialog.textHeaders": "My data has headers", + "SSE.Views.SortOptionsDialog.textLeftRight": "Sort left to right", + "SSE.Views.SortOptionsDialog.textOrientation": "Orientation", + "SSE.Views.SortOptionsDialog.textTitle": "Sort Options", + "SSE.Views.SortOptionsDialog.textTopBottom": "Sort top to bottom", + "SSE.Views.SpecialPasteDialog.textAdd": "Add", + "SSE.Views.SpecialPasteDialog.textAll": "All", + "SSE.Views.SpecialPasteDialog.textBlanks": "Skip blanks", + "SSE.Views.SpecialPasteDialog.textColWidth": "Column widths", + "SSE.Views.SpecialPasteDialog.textComments": "Comments", + "SSE.Views.SpecialPasteDialog.textDiv": "Divide", + "SSE.Views.SpecialPasteDialog.textFFormat": "Formulas & formatting", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Formulas & number formats", + "SSE.Views.SpecialPasteDialog.textFormats": "Formats", + "SSE.Views.SpecialPasteDialog.textFormulas": "Formulas", + "SSE.Views.SpecialPasteDialog.textFWidth": "Formulas & column widths", + "SSE.Views.SpecialPasteDialog.textMult": "Multiply", + "SSE.Views.SpecialPasteDialog.textNone": "None", + "SSE.Views.SpecialPasteDialog.textOperation": "Operation", + "SSE.Views.SpecialPasteDialog.textPaste": "Paste", + "SSE.Views.SpecialPasteDialog.textSub": "Subtract", + "SSE.Views.SpecialPasteDialog.textTitle": "Paste Special", + "SSE.Views.SpecialPasteDialog.textTranspose": "Transpose", + "SSE.Views.SpecialPasteDialog.textValues": "Values", + "SSE.Views.SpecialPasteDialog.textVFormat": "Values & formatting", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Values & number formats", + "SSE.Views.SpecialPasteDialog.textWBorders": "All except borders", + "SSE.Views.Spellcheck.noSuggestions": "No spelling suggestions", + "SSE.Views.Spellcheck.textChange": "Change", + "SSE.Views.Spellcheck.textChangeAll": "Change All", + "SSE.Views.Spellcheck.textIgnore": "Ignore", + "SSE.Views.Spellcheck.textIgnoreAll": "Ignore All", + "SSE.Views.Spellcheck.txtAddToDictionary": "Add To Dictionary", + "SSE.Views.Spellcheck.txtComplete": "Spellcheck has been completed", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Dictionary Language", + "SSE.Views.Spellcheck.txtNextTip": "Go to the next word", + "SSE.Views.Spellcheck.txtSpelling": "Spelling", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copy to end)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Move to end)", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Paste before sheet", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Move before sheet", + "SSE.Views.Statusbar.filteredRecordsText": "{0} of {1} records filtered", + "SSE.Views.Statusbar.filteredText": "Filter mode", + "SSE.Views.Statusbar.itemAverage": "Average", + "SSE.Views.Statusbar.itemCopy": "Copy", + "SSE.Views.Statusbar.itemCount": "Count", + "SSE.Views.Statusbar.itemDelete": "Delete", + "SSE.Views.Statusbar.itemHidden": "Hidden", + "SSE.Views.Statusbar.itemHide": "Hide", + "SSE.Views.Statusbar.itemInsert": "Insert", + "SSE.Views.Statusbar.itemMaximum": "Maximum", + "SSE.Views.Statusbar.itemMinimum": "Minimum", + "SSE.Views.Statusbar.itemMove": "Move", + "SSE.Views.Statusbar.itemRename": "Rename", + "SSE.Views.Statusbar.itemSum": "Sum", + "SSE.Views.Statusbar.itemTabColor": "Tab Color", + "SSE.Views.Statusbar.itemStatus": "Saving status", + "SSE.Views.Statusbar.itemProtect": "Protect", + "SSE.Views.Statusbar.itemUnProtect": "Unprotect", + "SSE.Views.Statusbar.RenameDialog.errNameExists": "Worksheet with such a name already exists.", + "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "A sheet name cannot contain the following characters: \\/*?[]:", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Sheet Name", + "SSE.Views.Statusbar.selectAllSheets": "Select All Sheets", + "SSE.Views.Statusbar.textAverage": "Average", + "SSE.Views.Statusbar.textCount": "Count", + "SSE.Views.Statusbar.textMax": "Max", + "SSE.Views.Statusbar.textMin": "Min", + "SSE.Views.Statusbar.textNewColor": "Add New Custom Color", + "SSE.Views.Statusbar.textNoColor": "No Color", + "SSE.Views.Statusbar.textSum": "Sum", + "SSE.Views.Statusbar.tipAddTab": "Add worksheet", + "SSE.Views.Statusbar.tipFirst": "Scroll to first sheet", + "SSE.Views.Statusbar.tipLast": "Scroll to last sheet", + "SSE.Views.Statusbar.tipNext": "Scroll sheet list right", + "SSE.Views.Statusbar.tipPrev": "Scroll sheet list left", + "SSE.Views.Statusbar.tipZoomFactor": "Zoom", + "SSE.Views.Statusbar.tipZoomIn": "Zoom in", + "SSE.Views.Statusbar.tipZoomOut": "Zoom out", + "SSE.Views.Statusbar.ungroupSheets": "Ungroup Sheets", + "SSE.Views.Statusbar.zoomText": "Zoom {0}%", + "SSE.Views.Statusbar.sheetIndexText": "Sheet {0} of {1}", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range different from the existing one and try again.", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.
    Select a range so that the first table row was on the same row
    and the resulting table overlapped the current one.", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.
    Select a range which does not include other tables.", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "SSE.Views.TableOptionsDialog.txtEmpty": "This field is required", + "SSE.Views.TableOptionsDialog.txtFormat": "Create Table", + "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.TableOptionsDialog.txtNote": "The headers must remain in the same row, and the resulting table range must overlap the original table range.", + "SSE.Views.TableOptionsDialog.txtTitle": "Title", + "SSE.Views.TableSettings.deleteColumnText": "Delete Column", + "SSE.Views.TableSettings.deleteRowText": "Delete Row", + "SSE.Views.TableSettings.deleteTableText": "Delete Table", + "SSE.Views.TableSettings.insertColumnLeftText": "Insert Column Left", + "SSE.Views.TableSettings.insertColumnRightText": "Insert Column Right", + "SSE.Views.TableSettings.insertRowAboveText": "Insert Row Above", + "SSE.Views.TableSettings.insertRowBelowText": "Insert Row Below", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Warning", + "SSE.Views.TableSettings.selectColumnText": "Select Entire Column", + "SSE.Views.TableSettings.selectDataText": "Select Column Data", + "SSE.Views.TableSettings.selectRowText": "Select Row", + "SSE.Views.TableSettings.selectTableText": "Select Table", + "SSE.Views.TableSettings.textActions": "Table actions", + "SSE.Views.TableSettings.textAdvanced": "Show advanced settings", + "SSE.Views.TableSettings.textBanded": "Banded", + "SSE.Views.TableSettings.textColumns": "Columns", + "SSE.Views.TableSettings.textConvertRange": "Convert to range", + "SSE.Views.TableSettings.textEdit": "Rows & Columns", + "SSE.Views.TableSettings.textEmptyTemplate": "No templates", + "SSE.Views.TableSettings.textExistName": "ERROR! A range with such a name already exists", + "SSE.Views.TableSettings.textFilter": "Filter button", + "SSE.Views.TableSettings.textFirst": "First", + "SSE.Views.TableSettings.textHeader": "Header", + "SSE.Views.TableSettings.textInvalidName": "ERROR! Invalid table name", + "SSE.Views.TableSettings.textIsLocked": "This element is being edited by another user.", + "SSE.Views.TableSettings.textLast": "Last", + "SSE.Views.TableSettings.textLongOperation": "Long operation", + "SSE.Views.TableSettings.textPivot": "Insert pivot table", + "SSE.Views.TableSettings.textRemDuplicates": "Remove duplicates", + "SSE.Views.TableSettings.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", + "SSE.Views.TableSettings.textResize": "Resize table", + "SSE.Views.TableSettings.textRows": "Rows", + "SSE.Views.TableSettings.textSelectData": "Select Data", + "SSE.Views.TableSettings.textSlicer": "Insert slicer", + "SSE.Views.TableSettings.textTableName": "Table Name", + "SSE.Views.TableSettings.textTemplate": "Select From Template", + "SSE.Views.TableSettings.textTotal": "Total", + "SSE.Views.TableSettings.warnLongOperation": "The operation you are about to perform might take rather much time to complete.
    Are you sure you want to continue?", + "SSE.Views.TableSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.TableSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings", + "SSE.Views.TextArtSettings.strBackground": "Background color", + "SSE.Views.TextArtSettings.strColor": "Color", + "SSE.Views.TextArtSettings.strFill": "Fill", + "SSE.Views.TextArtSettings.strForeground": "Foreground color", + "SSE.Views.TextArtSettings.strPattern": "Pattern", + "SSE.Views.TextArtSettings.strSize": "Size", + "SSE.Views.TextArtSettings.strStroke": "Line", + "SSE.Views.TextArtSettings.strTransparency": "Opacity", + "SSE.Views.TextArtSettings.strType": "Type", + "SSE.Views.TextArtSettings.textAngle": "Angle", + "SSE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
    Please enter a value between 0 pt and 1584 pt.", + "SSE.Views.TextArtSettings.textColor": "Color Fill", + "SSE.Views.TextArtSettings.textDirection": "Direction", + "SSE.Views.TextArtSettings.textEmptyPattern": "No Pattern", + "SSE.Views.TextArtSettings.textFromFile": "From File", + "SSE.Views.TextArtSettings.textFromUrl": "From URL", + "SSE.Views.TextArtSettings.textGradient": "Gradient points", + "SSE.Views.TextArtSettings.textGradientFill": "Gradient Fill", + "SSE.Views.TextArtSettings.textImageTexture": "Picture or Texture", + "SSE.Views.TextArtSettings.textLinear": "Linear", + "SSE.Views.TextArtSettings.textNoFill": "No Fill", + "SSE.Views.TextArtSettings.textPatternFill": "Pattern", + "SSE.Views.TextArtSettings.textPosition": "Position", + "SSE.Views.TextArtSettings.textRadial": "Radial", + "SSE.Views.TextArtSettings.textSelectTexture": "Select", + "SSE.Views.TextArtSettings.textStretch": "Stretch", + "SSE.Views.TextArtSettings.textStyle": "Style", + "SSE.Views.TextArtSettings.textTemplate": "Template", + "SSE.Views.TextArtSettings.textTexture": "From Texture", + "SSE.Views.TextArtSettings.textTile": "Tile", + "SSE.Views.TextArtSettings.textTransform": "Transform", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point", + "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", + "SSE.Views.TextArtSettings.txtCanvas": "Canvas", + "SSE.Views.TextArtSettings.txtCarton": "Carton", + "SSE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", + "SSE.Views.TextArtSettings.txtGrain": "Grain", + "SSE.Views.TextArtSettings.txtGranite": "Granite", + "SSE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", + "SSE.Views.TextArtSettings.txtKnit": "Knit", + "SSE.Views.TextArtSettings.txtLeather": "Leather", + "SSE.Views.TextArtSettings.txtNoBorders": "No Line", + "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", + "SSE.Views.TextArtSettings.txtWood": "Wood", + "SSE.Views.Toolbar.capBtnAddComment": "Add Comment", + "SSE.Views.Toolbar.capBtnColorSchemas": "Color Scheme", + "SSE.Views.Toolbar.capBtnComment": "Comment", + "SSE.Views.Toolbar.capBtnInsHeader": "Header/Footer", + "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", + "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", + "SSE.Views.Toolbar.capBtnMargins": "Margins", + "SSE.Views.Toolbar.capBtnPageOrient": "Orientation", + "SSE.Views.Toolbar.capBtnPageSize": "Size", + "SSE.Views.Toolbar.capBtnPrintArea": "Print Area", + "SSE.Views.Toolbar.capBtnPrintTitles": "Print Titles", + "SSE.Views.Toolbar.capBtnScale": "Scale to Fit", + "SSE.Views.Toolbar.capImgAlign": "Align", + "SSE.Views.Toolbar.capImgBackward": "Send Backward", + "SSE.Views.Toolbar.capImgForward": "Bring Forward", + "SSE.Views.Toolbar.capImgGroup": "Group", + "SSE.Views.Toolbar.capInsertChart": "Chart", + "SSE.Views.Toolbar.capInsertEquation": "Equation", + "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", + "SSE.Views.Toolbar.capInsertImage": "Image", + "SSE.Views.Toolbar.capInsertShape": "Shape", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", + "SSE.Views.Toolbar.capInsertTable": "Table", + "SSE.Views.Toolbar.capInsertText": "Text Box", + "SSE.Views.Toolbar.mniImageFromFile": "Image from File", + "SSE.Views.Toolbar.mniImageFromStorage": "Image from Storage", + "SSE.Views.Toolbar.mniImageFromUrl": "Image from URL", + "SSE.Views.Toolbar.textAddPrintArea": "Add to Print Area", + "SSE.Views.Toolbar.textAlignBottom": "Align Bottom", + "SSE.Views.Toolbar.textAlignCenter": "Align Center", + "SSE.Views.Toolbar.textAlignJust": "Justified", + "SSE.Views.Toolbar.textAlignLeft": "Align Left", + "SSE.Views.Toolbar.textAlignMiddle": "Align Middle", + "SSE.Views.Toolbar.textAlignRight": "Align Right", + "SSE.Views.Toolbar.textAlignTop": "Align Top", + "SSE.Views.Toolbar.textAllBorders": "All Borders", + "SSE.Views.Toolbar.textAuto": "Auto", + "SSE.Views.Toolbar.textAutoColor": "Automatic", + "SSE.Views.Toolbar.textBold": "Bold", + "SSE.Views.Toolbar.textBordersColor": "Border Color", + "SSE.Views.Toolbar.textBordersStyle": "Border Style", + "SSE.Views.Toolbar.textBottom": "Bottom: ", + "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", + "SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders", + "SSE.Views.Toolbar.textClearPrintArea": "Clear Print Area", + "SSE.Views.Toolbar.textClearRule": "Clear Rules", + "SSE.Views.Toolbar.textClockwise": "Angle Clockwise", + "SSE.Views.Toolbar.textColorScales": "Color Scales", + "SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise", + "SSE.Views.Toolbar.textDataBars": "Data Bars", + "SSE.Views.Toolbar.textDelLeft": "Shift Cells Left", + "SSE.Views.Toolbar.textDelUp": "Shift Cells Up", + "SSE.Views.Toolbar.textDiagDownBorder": "Diagonal Down Border", + "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", + "SSE.Views.Toolbar.textEntireCol": "Entire Column", + "SSE.Views.Toolbar.textEntireRow": "Entire Row", + "SSE.Views.Toolbar.textFewPages": "pages", + "SSE.Views.Toolbar.textHeight": "Height", + "SSE.Views.Toolbar.textHorizontal": "Horizontal Text", + "SSE.Views.Toolbar.textInsDown": "Shift Cells Down", + "SSE.Views.Toolbar.textInsideBorders": "Inside Borders", + "SSE.Views.Toolbar.textInsRight": "Shift Cells Right", + "SSE.Views.Toolbar.textItalic": "Italic", + "SSE.Views.Toolbar.textItems": "Items", + "SSE.Views.Toolbar.textLandscape": "Landscape", + "SSE.Views.Toolbar.textLeft": "Left: ", + "SSE.Views.Toolbar.textLeftBorders": "Left Borders", + "SSE.Views.Toolbar.textManageRule": "Manage Rules", + "SSE.Views.Toolbar.textManyPages": "pages", + "SSE.Views.Toolbar.textMarginsLast": "Last Custom", + "SSE.Views.Toolbar.textMarginsNarrow": "Narrow", + "SSE.Views.Toolbar.textMarginsNormal": "Normal", + "SSE.Views.Toolbar.textMarginsWide": "Wide", + "SSE.Views.Toolbar.textMiddleBorders": "Inside Horizontal Borders", + "SSE.Views.Toolbar.textMoreFormats": "More formats", + "SSE.Views.Toolbar.textMorePages": "More pages", + "SSE.Views.Toolbar.textNewColor": "Add New Custom Color", + "SSE.Views.Toolbar.textNewRule": "New Rule", + "SSE.Views.Toolbar.textNoBorders": "No Borders", + "SSE.Views.Toolbar.textOnePage": "page", + "SSE.Views.Toolbar.textOutBorders": "Outside Borders", + "SSE.Views.Toolbar.textPageMarginsCustom": "Custom margins", + "SSE.Views.Toolbar.textPortrait": "Portrait", + "SSE.Views.Toolbar.textPrint": "Print", + "SSE.Views.Toolbar.textPrintOptions": "Print Settings", + "SSE.Views.Toolbar.textRight": "Right: ", + "SSE.Views.Toolbar.textRightBorders": "Right Borders", + "SSE.Views.Toolbar.textRotateDown": "Rotate Text Down", + "SSE.Views.Toolbar.textRotateUp": "Rotate Text Up", + "SSE.Views.Toolbar.textScale": "Scale", + "SSE.Views.Toolbar.textScaleCustom": "Custom", + "SSE.Views.Toolbar.textSelection": "From current selection", + "SSE.Views.Toolbar.textSetPrintArea": "Set Print Area", + "SSE.Views.Toolbar.textStrikeout": "Strikethrough", + "SSE.Views.Toolbar.textSubscript": "Subscript", + "SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript", + "SSE.Views.Toolbar.textSuperscript": "Superscript", + "SSE.Views.Toolbar.textTabCollaboration": "Collaboration", + "SSE.Views.Toolbar.textTabData": "Data", + "SSE.Views.Toolbar.textTabFile": "File", + "SSE.Views.Toolbar.textTabFormula": "Formula", + "SSE.Views.Toolbar.textTabHome": "Home", + "SSE.Views.Toolbar.textTabInsert": "Insert", + "SSE.Views.Toolbar.textTabLayout": "Layout", + "SSE.Views.Toolbar.textTabProtect": "Protection", + "SSE.Views.Toolbar.textTabView": "View", + "SSE.Views.Toolbar.textThisPivot": "From this pivot", + "SSE.Views.Toolbar.textThisSheet": "From this worksheet", + "SSE.Views.Toolbar.textThisTable": "From this table", + "SSE.Views.Toolbar.textTop": "Top: ", + "SSE.Views.Toolbar.textTopBorders": "Top Borders", + "SSE.Views.Toolbar.textUnderline": "Underline", + "SSE.Views.Toolbar.textVertical": "Vertical Text", + "SSE.Views.Toolbar.textWidth": "Width", + "SSE.Views.Toolbar.textZoom": "Zoom", + "SSE.Views.Toolbar.tipAlignBottom": "Align bottom", + "SSE.Views.Toolbar.tipAlignCenter": "Align center", + "SSE.Views.Toolbar.tipAlignJust": "Justified", + "SSE.Views.Toolbar.tipAlignLeft": "Align left", + "SSE.Views.Toolbar.tipAlignMiddle": "Align middle", + "SSE.Views.Toolbar.tipAlignRight": "Align right", + "SSE.Views.Toolbar.tipAlignTop": "Align top", + "SSE.Views.Toolbar.tipAutofilter": "Sort and Filter", + "SSE.Views.Toolbar.tipBack": "Back", + "SSE.Views.Toolbar.tipBorders": "Borders", + "SSE.Views.Toolbar.tipCellStyle": "Cell Style", + "SSE.Views.Toolbar.tipChangeChart": "Change chart type", + "SSE.Views.Toolbar.tipClearStyle": "Clear", + "SSE.Views.Toolbar.tipColorSchemas": "Change color scheme", + "SSE.Views.Toolbar.tipCondFormat": "Conditional formatting", + "SSE.Views.Toolbar.tipCopy": "Copy", + "SSE.Views.Toolbar.tipCopyStyle": "Copy style", + "SSE.Views.Toolbar.tipDecDecimal": "Decrease decimal", + "SSE.Views.Toolbar.tipDecFont": "Decrement font size", + "SSE.Views.Toolbar.tipDeleteOpt": "Delete cells", + "SSE.Views.Toolbar.tipDigStyleAccounting": "Accounting style", + "SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style", + "SSE.Views.Toolbar.tipDigStylePercent": "Percent style", + "SSE.Views.Toolbar.tipEditChart": "Edit Chart", + "SSE.Views.Toolbar.tipEditChartData": "Select Data", + "SSE.Views.Toolbar.tipEditChartType": "Change Chart Type", + "SSE.Views.Toolbar.tipEditHeader": "Edit header or footer", + "SSE.Views.Toolbar.tipFontColor": "Font color", + "SSE.Views.Toolbar.tipFontName": "Font", + "SSE.Views.Toolbar.tipFontSize": "Font size", + "SSE.Views.Toolbar.tipImgAlign": "Align objects", + "SSE.Views.Toolbar.tipImgGroup": "Group objects", + "SSE.Views.Toolbar.tipIncDecimal": "Increase decimal", + "SSE.Views.Toolbar.tipIncFont": "Increment font size", + "SSE.Views.Toolbar.tipInsertChart": "Insert chart", + "SSE.Views.Toolbar.tipInsertChartSpark": "Insert chart", + "SSE.Views.Toolbar.tipInsertEquation": "Insert equation", + "SSE.Views.Toolbar.tipInsertHyperlink": "Add hyperlink", + "SSE.Views.Toolbar.tipInsertImage": "Insert image", + "SSE.Views.Toolbar.tipInsertOpt": "Insert cells", + "SSE.Views.Toolbar.tipInsertShape": "Insert autoshape", + "SSE.Views.Toolbar.tipInsertSlicer": "Insert slicer", + "SSE.Views.Toolbar.tipInsertSpark": "Insert sparkline", + "SSE.Views.Toolbar.tipInsertSymbol": "Insert symbol", + "SSE.Views.Toolbar.tipInsertTable": "Insert table", + "SSE.Views.Toolbar.tipInsertText": "Insert text box", + "SSE.Views.Toolbar.tipInsertTextart": "Insert Text Art", + "SSE.Views.Toolbar.tipMerge": "Merge and center", + "SSE.Views.Toolbar.tipNumFormat": "Number format", + "SSE.Views.Toolbar.tipPageMargins": "Page margins", + "SSE.Views.Toolbar.tipPageOrient": "Page orientation", + "SSE.Views.Toolbar.tipPageSize": "Page size", + "SSE.Views.Toolbar.tipPaste": "Paste", + "SSE.Views.Toolbar.tipPrColor": "Fill color", + "SSE.Views.Toolbar.tipPrint": "Print", + "SSE.Views.Toolbar.tipPrintArea": "Print area", + "SSE.Views.Toolbar.tipPrintTitles": "Print titles", + "SSE.Views.Toolbar.tipRedo": "Redo", + "SSE.Views.Toolbar.tipSave": "Save", + "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", + "SSE.Views.Toolbar.tipScale": "Scale to Fit", + "SSE.Views.Toolbar.tipSendBackward": "Send backward", + "SSE.Views.Toolbar.tipSendForward": "Bring forward", + "SSE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.", + "SSE.Views.Toolbar.tipTextOrientation": "Orientation", + "SSE.Views.Toolbar.tipUndo": "Undo", + "SSE.Views.Toolbar.tipWrap": "Wrap text", + "SSE.Views.Toolbar.txtAccounting": "Accounting", + "SSE.Views.Toolbar.txtAdditional": "Additional", + "SSE.Views.Toolbar.txtAscending": "Ascending", + "SSE.Views.Toolbar.txtAutosumTip": "Summation", + "SSE.Views.Toolbar.txtClearAll": "All", + "SSE.Views.Toolbar.txtClearComments": "Comments", + "SSE.Views.Toolbar.txtClearFilter": "Clear filter", + "SSE.Views.Toolbar.txtClearFormat": "Format", + "SSE.Views.Toolbar.txtClearFormula": "Function", + "SSE.Views.Toolbar.txtClearHyper": "Hyperlinks", + "SSE.Views.Toolbar.txtClearText": "Text", + "SSE.Views.Toolbar.txtCurrency": "Currency", + "SSE.Views.Toolbar.txtCustom": "Custom", + "SSE.Views.Toolbar.txtDate": "Date", + "SSE.Views.Toolbar.txtDateTime": "Date & Time", + "SSE.Views.Toolbar.txtDescending": "Descending", + "SSE.Views.Toolbar.txtDollar": "$ Dollar", + "SSE.Views.Toolbar.txtEuro": "€ Euro", + "SSE.Views.Toolbar.txtExp": "Exponential", + "SSE.Views.Toolbar.txtFilter": "Filter", + "SSE.Views.Toolbar.txtFormula": "Insert function", + "SSE.Views.Toolbar.txtFraction": "Fraction", + "SSE.Views.Toolbar.txtFranc": "CHF Swiss franc", + "SSE.Views.Toolbar.txtGeneral": "General", + "SSE.Views.Toolbar.txtInteger": "Integer", + "SSE.Views.Toolbar.txtManageRange": "Name Manager", + "SSE.Views.Toolbar.txtMergeAcross": "Merge Across", + "SSE.Views.Toolbar.txtMergeCells": "Merge Cells", + "SSE.Views.Toolbar.txtMergeCenter": "Merge & Center", + "SSE.Views.Toolbar.txtNamedRange": "Named ranges", + "SSE.Views.Toolbar.txtNewRange": "Define Name", + "SSE.Views.Toolbar.txtNoBorders": "No borders", + "SSE.Views.Toolbar.txtNumber": "Number", + "SSE.Views.Toolbar.txtPasteRange": "Paste Name", + "SSE.Views.Toolbar.txtPercentage": "Percentage", + "SSE.Views.Toolbar.txtPound": "£ Pound", + "SSE.Views.Toolbar.txtRouble": "₽ Rouble", + "SSE.Views.Toolbar.txtScheme1": "Office", + "SSE.Views.Toolbar.txtScheme10": "Median", + "SSE.Views.Toolbar.txtScheme11": "Metro", + "SSE.Views.Toolbar.txtScheme12": "Module", + "SSE.Views.Toolbar.txtScheme13": "Opulent", + "SSE.Views.Toolbar.txtScheme14": "Oriel", + "SSE.Views.Toolbar.txtScheme15": "Origin", + "SSE.Views.Toolbar.txtScheme16": "Paper", + "SSE.Views.Toolbar.txtScheme17": "Solstice", + "SSE.Views.Toolbar.txtScheme18": "Technic", + "SSE.Views.Toolbar.txtScheme19": "Trek", + "SSE.Views.Toolbar.txtScheme2": "Grayscale", + "SSE.Views.Toolbar.txtScheme20": "Urban", + "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "New Office", + "SSE.Views.Toolbar.txtScheme3": "Apex", + "SSE.Views.Toolbar.txtScheme4": "Aspect", + "SSE.Views.Toolbar.txtScheme5": "Civic", + "SSE.Views.Toolbar.txtScheme6": "Concourse", + "SSE.Views.Toolbar.txtScheme7": "Equity", + "SSE.Views.Toolbar.txtScheme8": "Flow", + "SSE.Views.Toolbar.txtScheme9": "Foundry", + "SSE.Views.Toolbar.txtScientific": "Scientific", + "SSE.Views.Toolbar.txtSearch": "Search", + "SSE.Views.Toolbar.txtSort": "Sort", + "SSE.Views.Toolbar.txtSortAZ": "Sort ascending", + "SSE.Views.Toolbar.txtSortZA": "Sort descending", + "SSE.Views.Toolbar.txtSpecial": "Special", + "SSE.Views.Toolbar.txtTableTemplate": "Format as table template", + "SSE.Views.Toolbar.txtText": "Text", + "SSE.Views.Toolbar.txtTime": "Time", + "SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells", + "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Top10FilterDialog.textType": "Show", + "SSE.Views.Top10FilterDialog.txtBottom": "Bottom", + "SSE.Views.Top10FilterDialog.txtBy": "by", + "SSE.Views.Top10FilterDialog.txtItems": "Item", + "SSE.Views.Top10FilterDialog.txtPercent": "Percent", + "SSE.Views.Top10FilterDialog.txtSum": "Sum", + "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 AutoFilter", + "SSE.Views.Top10FilterDialog.txtTop": "Top", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 Filter", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Value Field Settings", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Average", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Base field", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Base item", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 of %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Count", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Count Numbers", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Custom name", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "The Difference From", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "No Calculation", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percent of", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percent Difference From", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percent of Column", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percent of Total", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percent of Row", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Product", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Running Total In", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Show values as", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Source name:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Sum", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Summarize value field by", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.ViewManagerDlg.closeButtonText": "Close", + "SSE.Views.ViewManagerDlg.guestText": "Guest", + "SSE.Views.ViewManagerDlg.textDelete": "Delete", + "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicate", + "SSE.Views.ViewManagerDlg.textEmpty": "No views have been created yet.", + "SSE.Views.ViewManagerDlg.textGoTo": "Go to view", + "SSE.Views.ViewManagerDlg.textLongName": "Enter a name that is less than 128 characters.", + "SSE.Views.ViewManagerDlg.textNew": "New", + "SSE.Views.ViewManagerDlg.textRename": "Rename", + "SSE.Views.ViewManagerDlg.textRenameError": "View name must not be empty.", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Rename view", + "SSE.Views.ViewManagerDlg.textViews": "Sheet views", + "SSE.Views.ViewManagerDlg.tipIsLocked": "This element is being edited by another user.", + "SSE.Views.ViewManagerDlg.txtTitle": "Sheet View Manager", + "SSE.Views.ViewManagerDlg.warnDeleteView": "You are trying to delete the currently enabled view '%1'.
    Close this view and delete it?", + "SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes", + "SSE.Views.ViewTab.capBtnSheetView": "Sheet View", + "SSE.Views.ViewTab.textClose": "Close", + "SSE.Views.ViewTab.textCreate": "New", + "SSE.Views.ViewTab.textDefault": "Default", + "SSE.Views.ViewTab.textFormula": "Formula bar", + "SSE.Views.ViewTab.textFreezeCol": "Freeze First Column", + "SSE.Views.ViewTab.textFreezeRow": "Freeze Top Row", + "SSE.Views.ViewTab.textGridlines": "Gridlines", + "SSE.Views.ViewTab.textHeadings": "Headings", + "SSE.Views.ViewTab.textManager": "View manager", + "SSE.Views.ViewTab.textUnFreeze": "Unfreeze Panes", + "SSE.Views.ViewTab.textZeros": "Show zeros", + "SSE.Views.ViewTab.textZoom": "Zoom", + "SSE.Views.ViewTab.tipClose": "Close sheet view", + "SSE.Views.ViewTab.tipCreate": "Create sheet view", + "SSE.Views.ViewTab.tipFreeze": "Freeze panes", + "SSE.Views.ViewTab.tipSheetView": "Sheet view" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index e3a42e681..ab0be8c78 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -161,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Funciones Reconocidas", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Las siguientes expresiones son expresiones matemáticas reconocidas. No se pondrán en cursiva automáticamente.", "Common.Views.AutoCorrectDialog.textReplace": "Reemplazar", + "Common.Views.AutoCorrectDialog.textReplaceText": "Reemplazar mientras escribe", "Common.Views.AutoCorrectDialog.textReplaceType": "Reemplazar texto mientras escribe", "Common.Views.AutoCorrectDialog.textReset": "Restablecer", "Common.Views.AutoCorrectDialog.textResetAll": "Restablecer ajustes predeterminados", @@ -417,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Eliminar duplicados", "SSE.Controllers.DataTab.txtRemoveDataValidation": "La selección contiene más de un tipo de validación.
    ¿Borrar los ajustes actuales y continuar?", "SSE.Controllers.DataTab.txtRemSelected": "Eliminar en seleccionado", + "SSE.Controllers.DataTab.txtUrlTitle": "Pegar una URL de datos", "SSE.Controllers.DocumentHolder.alignmentText": "Alineación", "SSE.Controllers.DocumentHolder.centerText": "Al centro", "SSE.Controllers.DocumentHolder.deleteColumnText": "Eliminar columna", @@ -599,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Si sigue guardando en este formato todas las características a excepción del texto se perderán.
    ¿Está seguro de que quiere continuar?", "SSE.Controllers.Main.confirmMoveCellRange": "El rango de celdas final puede contener los datos. ¿Quiere continuar?", "SSE.Controllers.Main.confirmPutMergeRange": "Los datos de origen contienen celdas combinadas.
    Habían estado sin combinar antes de que se pegaran en la tabla.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Las fórmulas de la fila de encabezado se eliminarán y se convertirán en texto estático.
    ¿Desea continuar?", "SSE.Controllers.Main.convertationTimeoutText": "Se superó el tiempo de espera de conversión.", "SSE.Controllers.Main.criticalErrorExtText": "Pulse \"OK\" para regresar a la lista de documentos.", "SSE.Controllers.Main.criticalErrorTitle": "Error", @@ -649,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "SSE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", "SSE.Controllers.Main.errorLabledColumnsPivot": "Para crear una tabla dinámica, utilice datos que estén organizados como una lista con columnas etiquetadas.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "La referencia a la ubicación o al rango de datos no es válida.", "SSE.Controllers.Main.errorLockedAll": "No se pudo realizar la operación porque la hoja ha sido bloqueada por otro usuario.", "SSE.Controllers.Main.errorLockedCellPivot": "No puede modificar datos dentro de una tabla dinámica.", "SSE.Controllers.Main.errorLockedWorksheetRename": "No se puede cambiar el nombre de la hoja en este momento, porque se está cambiando el nombre por otro usuario", @@ -672,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "El documento no ha sido editado durante bastante tiempo. Por favor, recargue la página.", "SSE.Controllers.Main.errorSessionToken": "Conexión al servidor ha sido interrumpido. Por favor, recargue la página.", "SSE.Controllers.Main.errorSetPassword": "No se pudo establecer la contraseña.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "La referencia de ubicación no es válida porque las celdas no están todas en la misma columna o fila.
    Seleccione las celdas que están todas en una sola columna o fila.", "SSE.Controllers.Main.errorStockChart": "Orden de las filas incorrecto. Para compilar un gráfico de cotizaciones introduzca los datos en la hoja de tal modo:
    precio de apertura, precio máximo, precio mínimo, precio de cierre.", "SSE.Controllers.Main.errorToken": "El token de seguridad de documento tiene un formato incorrecto.
    Por favor, contacte con el Administrador del Servidor de Documentos.", "SSE.Controllers.Main.errorTokenExpire": "El token de seguridad de documento ha sido expirado.
    Por favor, contacte con el Administrador del Servidor de Documentos.", @@ -1871,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Texto", "SSE.Views.DocumentHolder.txtColumn": "Toda la columna", "SSE.Views.DocumentHolder.txtColumnWidth": "Ajustar ancho de columna", + "SSE.Views.DocumentHolder.txtCondFormat": "Formato condicional", "SSE.Views.DocumentHolder.txtCopy": "Copiar", "SSE.Views.DocumentHolder.txtCurrency": "Moneda", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Ancho de columna personalizado", @@ -2180,6 +2186,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Este campo es obligatorio", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fracción", "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sin icono", "SSE.Views.FormatRulesEditDlg.txtNumber": "Número", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Porcentaje", "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientífico", @@ -3116,7 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hiperenlace", "SSE.Views.Toolbar.capInsertImage": "Imagen", "SSE.Views.Toolbar.capInsertShape": "Forma", - "SSE.Views.Toolbar.capInsertSpark": "Minigráficos", + "SSE.Views.Toolbar.capInsertSpark": "Minigráfico", "SSE.Views.Toolbar.capInsertTable": "Tabla", "SSE.Views.Toolbar.capInsertText": "Cuadro de texto", "SSE.Views.Toolbar.mniImageFromFile": "Imagen desde archivo", @@ -3328,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Escala de grises", "SSE.Views.Toolbar.txtScheme20": "Urbano", "SSE.Views.Toolbar.txtScheme21": "Brío", + "SSE.Views.Toolbar.txtScheme22": "Nueva oficina", "SSE.Views.Toolbar.txtScheme3": "Vértice", "SSE.Views.Toolbar.txtScheme4": "Aspecto", "SSE.Views.Toolbar.txtScheme5": "Civil", @@ -3404,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Nuevo", "SSE.Views.ViewTab.textDefault": "Predeterminado", "SSE.Views.ViewTab.textFormula": "Barra de fórmulas", + "SSE.Views.ViewTab.textFreezeCol": "Inmovilizar primera columna", + "SSE.Views.ViewTab.textFreezeRow": "Inmovilizar fila superior", "SSE.Views.ViewTab.textGridlines": "Líneas de cuadrícula", "SSE.Views.ViewTab.textHeadings": "Encabezados", "SSE.Views.ViewTab.textManager": "Administrador de vista", + "SSE.Views.ViewTab.textUnFreeze": "Movilizar paneles", + "SSE.Views.ViewTab.textZeros": "Mostrar ceros", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Cerrar vista de hoja", "SSE.Views.ViewTab.tipCreate": "Crear vista de hoja", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 48318d550..237a898ff 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -50,52 +50,52 @@ "Common.define.chartData.textWinLossSpark": "Gain/Perte", "Common.define.conditionalData.exampleText": "AaBbCcYyZz", "Common.define.conditionalData.noFormatText": "Aucun format défini", - "Common.define.conditionalData.text1Above": "1 écart-type au-dessus", - "Common.define.conditionalData.text1Below": "1 écart-type en dessous", - "Common.define.conditionalData.text2Above": "2 écarts-type au-dessus", + "Common.define.conditionalData.text1Above": "1 écart-type au-dessus de la moyenne", + "Common.define.conditionalData.text1Below": "1 écart-type en dessous de la moyenne", + "Common.define.conditionalData.text2Above": "2 écarts types au-dessus de la moyenne", "Common.define.conditionalData.text2Below": "2 écarts types en dessous de la moyenne", - "Common.define.conditionalData.text3Above": "2 écarts types au-dessus", - "Common.define.conditionalData.text3Below": "3 écarts types en dessous", + "Common.define.conditionalData.text3Above": "3 écarts types au-dessus de la moyenne", + "Common.define.conditionalData.text3Below": "3 écarts types en dessous de la moyenne", "Common.define.conditionalData.textAbove": "Au-dessus", - "Common.define.conditionalData.textAverage": "MOYENNE", - "Common.define.conditionalData.textBegins": "commence par", + "Common.define.conditionalData.textAverage": "Moyenne", + "Common.define.conditionalData.textBegins": "Commence par", "Common.define.conditionalData.textBelow": "En dessous", - "Common.define.conditionalData.textBetween": "entre", + "Common.define.conditionalData.textBetween": "Entre", "Common.define.conditionalData.textBlank": "Vide", - "Common.define.conditionalData.textBlanks": "contient les vides", - "Common.define.conditionalData.textBottom": "En bas", - "Common.define.conditionalData.textContains": "contient", - "Common.define.conditionalData.textDataBar": "La barre de données", + "Common.define.conditionalData.textBlanks": "Contient les vides", + "Common.define.conditionalData.textBottom": "Derniers", + "Common.define.conditionalData.textContains": "Contient", + "Common.define.conditionalData.textDataBar": "Barre de données", "Common.define.conditionalData.textDate": "Date", - "Common.define.conditionalData.textDuplicate": "Dupliquer", - "Common.define.conditionalData.textEnds": "se termine par", - "Common.define.conditionalData.textEqAbove": "si égal ou supérieur à", - "Common.define.conditionalData.textEqBelow": "si égale ou en dessous", - "Common.define.conditionalData.textEqual": "égal à", + "Common.define.conditionalData.textDuplicate": "Doublon", + "Common.define.conditionalData.textEnds": "Se termine par", + "Common.define.conditionalData.textEqAbove": "Si égale ou supérieure à", + "Common.define.conditionalData.textEqBelow": "Si égale ou en dessous", + "Common.define.conditionalData.textEqual": "Égale à", "Common.define.conditionalData.textError": "Erreur", - "Common.define.conditionalData.textErrors": "contient les erreurs", + "Common.define.conditionalData.textErrors": "Contient les erreurs", "Common.define.conditionalData.textFormula": "Formule", - "Common.define.conditionalData.textGreater": "Supérieur à", - "Common.define.conditionalData.textGreaterEq": "Est supérieur ou égal à", + "Common.define.conditionalData.textGreater": "Supérieure à", + "Common.define.conditionalData.textGreaterEq": "Supérieure ou égale à", "Common.define.conditionalData.textIconSets": "Jeux d’icônes", "Common.define.conditionalData.textLast7days": "Pendant les 7 derniers jours", "Common.define.conditionalData.textLastMonth": "Mois dernier", "Common.define.conditionalData.textLastWeek": "Semaine dernière", - "Common.define.conditionalData.textLess": "inférieur à", - "Common.define.conditionalData.textLessEq": "Est inférieur ou égal à", + "Common.define.conditionalData.textLess": "Inférieure à", + "Common.define.conditionalData.textLessEq": "Inférieure ou égale à", "Common.define.conditionalData.textNextMonth": "Mois suivant", "Common.define.conditionalData.textNextWeek": "Semaine suivante", - "Common.define.conditionalData.textNotBetween": "pas entre", - "Common.define.conditionalData.textNotBlanks": "ne contient pas de vides", - "Common.define.conditionalData.textNotContains": "ne contient pas", - "Common.define.conditionalData.textNotEqual": "N'est pas égal à", - "Common.define.conditionalData.textNotErrors": "ne contient pas d'erreurs", + "Common.define.conditionalData.textNotBetween": "Pas entre", + "Common.define.conditionalData.textNotBlanks": "Ne contient pas de vides", + "Common.define.conditionalData.textNotContains": "Ne contient pas", + "Common.define.conditionalData.textNotEqual": "N'est pas égale à", + "Common.define.conditionalData.textNotErrors": "Ne contient pas d'erreurs", "Common.define.conditionalData.textText": "Texte", "Common.define.conditionalData.textThisMonth": "Ce mois", "Common.define.conditionalData.textThisWeek": "Cette semaine", "Common.define.conditionalData.textToday": "Aujourd'hui", "Common.define.conditionalData.textTomorrow": "Demain", - "Common.define.conditionalData.textTop": "Haut", + "Common.define.conditionalData.textTop": "Premiers", "Common.define.conditionalData.textUnique": "Unique", "Common.define.conditionalData.textValue": "Valeur est ", "Common.define.conditionalData.textYesterday": "Hier", @@ -146,7 +146,7 @@ "Common.Views.About.txtLicensee": "CESSIONNAIRE", "Common.Views.About.txtLicensor": "CONCÉDANT", "Common.Views.About.txtMail": "émail: ", - "Common.Views.About.txtPoweredBy": "Powered by", + "Common.Views.About.txtPoweredBy": "Réalisation", "Common.Views.About.txtTel": "tél.: ", "Common.Views.About.txtVersion": "Version ", "Common.Views.AutoCorrectDialog.textAdd": "Ajouter", @@ -161,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Fonctions reconnues", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions suivantes sont les expressions mathématiques reconnues. Elles ne seront pas mises en italique automatiquement.", "Common.Views.AutoCorrectDialog.textReplace": "Remplacer", + "Common.Views.AutoCorrectDialog.textReplaceText": "Remplacer au cours de la frappe", "Common.Views.AutoCorrectDialog.textReplaceType": "Remplacer le texte au cours de la frappe", "Common.Views.AutoCorrectDialog.textReset": "Réinitialiser", "Common.Views.AutoCorrectDialog.textResetAll": "Rétablir paramètres par défaut", @@ -245,12 +246,12 @@ "Common.Views.OpenDialog.txtColon": "Deux-points", "Common.Views.OpenDialog.txtComma": "Virgule", "Common.Views.OpenDialog.txtDelimiter": "Délimiteur", - "Common.Views.OpenDialog.txtDestData": "Sélectionnez où placer la date", + "Common.Views.OpenDialog.txtDestData": "Sélectionnez où placer les données", "Common.Views.OpenDialog.txtEmpty": "Ce champ est obligatoire", - "Common.Views.OpenDialog.txtEncoding": "Encodage", + "Common.Views.OpenDialog.txtEncoding": "Codage ", "Common.Views.OpenDialog.txtIncorrectPwd": "Le mot de passe est incorrect.", "Common.Views.OpenDialog.txtOpenFile": "Entrer le mot de passe pour ouvrir le fichier", - "Common.Views.OpenDialog.txtOther": "Autres", + "Common.Views.OpenDialog.txtOther": "Autre", "Common.Views.OpenDialog.txtPassword": "Mot de passe", "Common.Views.OpenDialog.txtPreview": "Aperçu", "Common.Views.OpenDialog.txtProtected": "Une fois le mot de passe saisi et le fichier ouvert, le mot de passe actuel de fichier sera réinitialisé.", @@ -417,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Supprimer les valeurs dupliquées", "SSE.Controllers.DataTab.txtRemoveDataValidation": "La sélection doit contenir plus d'une type de validation.
    Annuler les paramètres actuels et continuer ?", "SSE.Controllers.DataTab.txtRemSelected": "Déplacer dans sélectionnés", + "SSE.Controllers.DataTab.txtUrlTitle": "Coller URL de données", "SSE.Controllers.DocumentHolder.alignmentText": "Alignement", "SSE.Controllers.DocumentHolder.centerText": "Au centre", "SSE.Controllers.DocumentHolder.deleteColumnText": "Supprimer la colonne", @@ -429,7 +431,7 @@ "SSE.Controllers.DocumentHolder.insertRowAboveText": "Ligne au-dessus", "SSE.Controllers.DocumentHolder.insertRowBelowText": "Ligne en dessous", "SSE.Controllers.DocumentHolder.insertText": "Insérer", - "SSE.Controllers.DocumentHolder.leftText": "A gauche", + "SSE.Controllers.DocumentHolder.leftText": "À gauche", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Avertissement", "SSE.Controllers.DocumentHolder.rightText": "A droite", "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Options d'auto-correction", @@ -462,7 +464,7 @@ "SSE.Controllers.DocumentHolder.txtBottom": "En bas", "SSE.Controllers.DocumentHolder.txtColumn": "Colonne", "SSE.Controllers.DocumentHolder.txtColumnAlign": "L'alignement de la colonne", - "SSE.Controllers.DocumentHolder.txtContains": "contient", + "SSE.Controllers.DocumentHolder.txtContains": "Contient", "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Diminuer la taille de l'argument", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Supprimer l'argument", "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Supprimer le saut manuel", @@ -483,7 +485,7 @@ "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Remplacer par une fraction oblique", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Remplacer par une fraction sur deux lignes", "SSE.Controllers.DocumentHolder.txtGreater": "Supérieur à", - "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Est supérieur ou égal à", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Supérieur ou égal à", "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Char au-dessus du texte", "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Char en-dessus du texte", "SSE.Controllers.DocumentHolder.txtHeight": "Hauteur", @@ -511,7 +513,7 @@ "SSE.Controllers.DocumentHolder.txtItems": "éléments", "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Garder le texte seulement", "SSE.Controllers.DocumentHolder.txtLess": "Inférieur à", - "SSE.Controllers.DocumentHolder.txtLessEquals": "Est inférieur ou égal à", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Inférieure ou égale à", "SSE.Controllers.DocumentHolder.txtLimitChange": "Modifier l'emplacement des limites", "SSE.Controllers.DocumentHolder.txtLimitOver": "Limite au-dessous du texte", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limite en dessous du texte", @@ -597,8 +599,9 @@ "SSE.Controllers.LeftMenu.textWorkbook": "Classeur", "SSE.Controllers.LeftMenu.txtUntitled": "Sans titre", "SSE.Controllers.LeftMenu.warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
    Êtes-vous sûr de vouloir continuer ?", - "SSE.Controllers.Main.confirmMoveCellRange": "La plage de cellules finale peut contenir des données.Voulez-vous continuer ?", + "SSE.Controllers.Main.confirmMoveCellRange": "La plage de cellules finale peut contenir des données.Voulez-vous continuer?", "SSE.Controllers.Main.confirmPutMergeRange": "Les données source contiennent des cellules fusionnées.
    La fusion a été supprimée avant le transfert des cellules dans le tableau.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Les formules de la ligne en-tête seront supprimées et transformées en texte statique.
    Voulez-vous continuer?", "SSE.Controllers.Main.convertationTimeoutText": "Délai de conversion expiré.", "SSE.Controllers.Main.criticalErrorExtText": "Cliquez sur \"OK\" pour revenir à la liste des documents.", "SSE.Controllers.Main.criticalErrorTitle": "Erreur", @@ -614,7 +617,7 @@ "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
    Veuillez supprimer les filtres et réessayez.", "SSE.Controllers.Main.errorBadImageUrl": "L'URL d'image est incorrecte", "SSE.Controllers.Main.errorCannotUngroup": "Impossible de dissocier. Pour construire un plan, sélectionnez les lignes ou les colonnes de détail et groupez-les.", - "SSE.Controllers.Main.errorChangeArray": "Vous ne pouvez pas modifier des parties d'un tableau. ", + "SSE.Controllers.Main.errorChangeArray": "Impossible de modifier une partie de matrice.", "SSE.Controllers.Main.errorChangeFilteredRange": "Cette action va modifier une plage de données filtrée sur votre feuille de calcul.
    Pour réaliser cette action, veuillez supprimer les filtres automatiques.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Connexion au serveur perdue. Le document ne peut être modifié en ce moment.", "SSE.Controllers.Main.errorConnectToServer": "Impossible d'enregistrer le document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", @@ -641,14 +644,15 @@ "SSE.Controllers.Main.errorFormulaParsing": "Une erreur interne lors de l'analyse de la formule.", "SSE.Controllers.Main.errorFrmlMaxLength": "Vous ne pouvez pas ajouter cette formule car sa longueur dépasse le nombre de caractères autorisés.
    Merci de modifier la formule et d'essayer à nouveau. ", "SSE.Controllers.Main.errorFrmlMaxReference": "Vous ne pouvez pas saisir cette formule parce qu'elle est trop longues, ou contient
    références de cellules, et/ou noms. ", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Les valeurs de texte dans les formules sont limitées à 255 caractères.
    Utilisez la fonction CONCATENER ou l’opérateur de concaténation (&).", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "Les valeurs de texte dans les formules sont limitées à 255 caractères.
    Utilisez la fonction CONCATENER ou l’opérateur de concaténation (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas.
    Veuillez vérifier les données et réessayer.", "SSE.Controllers.Main.errorFTChangeTableRangeError": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée.
    Sélectionnez une plage de telle sorte que la première ligne de la table était sur la même ligne
    et la table résultant chevauché l'actuel.", "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "L'opération n'a pas pu être achevée pour la plage de cellules sélectionnée.
    Sélectionnez une plage qui ne comprend pas d'autres tables.", - "SSE.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable pour aller à.", + "SSE.Controllers.Main.errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable à laquelle aller.", "SSE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "SSE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", "SSE.Controllers.Main.errorLabledColumnsPivot": "Pour créer un tableau croisé dynamique, utilisez les données organisées sous forme de liste avec des colonnes libellées.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "La référence de localisation ou la plage de données n'est pas valide.", "SSE.Controllers.Main.errorLockedAll": "L'opération ne peut pas être réalisée car la feuille a été verrouillée par un autre utilisateur.", "SSE.Controllers.Main.errorLockedCellPivot": "Impossible de modifier les données d'un tableau croisé dynamique.", "SSE.Controllers.Main.errorLockedWorksheetRename": "La feuille ne peut pas être renommée pour le moment car elle est en train d'être renommée par un autre utilisateur", @@ -672,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", "SSE.Controllers.Main.errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", "SSE.Controllers.Main.errorSetPassword": "Le mot de passe ne peut pas être configuré", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "La référence de localisation n'est pas valide puisque les cellules ne sont pas d'une même colonne ou ligne.
    Sélectionnez les cellules de la même colonne ou ligne.", "SSE.Controllers.Main.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Controllers.Main.errorToken": "Le jeton de sécurité du document n’était pas formé correctement.
    Veuillez contacter l'administrateur de Document Server.", "SSE.Controllers.Main.errorTokenExpire": "Le jeton de sécurité du document a expiré.
    Veuillez contactez l'administrateur de Document Server.", @@ -683,7 +688,7 @@ "SSE.Controllers.Main.errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
    mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit actualisée.", "SSE.Controllers.Main.errorWrongBracketsCount": "Une erreur dans la formule entrée.
    Nombre utilisé entre parenthèses est incorrect.", "SSE.Controllers.Main.errorWrongOperator": "Une erreur dans la formule entrée. Opérateur utilisé est incorrect.
    Veuillez corriger l'erreur.", - "SSE.Controllers.Main.errRemDuplicates": "Trouver et supprimer des valeurs duppliquées : {0}, laisser les valeurs uniques: {1}.", + "SSE.Controllers.Main.errRemDuplicates": "Les valeurs duppliquées qui ont été retrouvées et supprimées: {0}, des valeurs uniques restantes: {1}.", "SSE.Controllers.Main.leavePageText": "Vous avez des modifications non enregistrées dans cette feuille de calcul. Cliquez sur 'Rester sur cette page ' ensuite 'Enregistrer' pour les enregistrer. Cliquez sur 'Quitter cette page' pour annuler toutes les modifications non enregistrées.", "SSE.Controllers.Main.leavePageTextOnClose": "Toutes les modifications non-enregistrées seront perdues.
    Cliquez \"Annuler\" et ensuite \"Enregistrer\" pour les sauvegarder. Cliquez \"OK\" pour effacer toutes les modifications non-enregistrées.", "SSE.Controllers.Main.loadFontsTextText": "Chargement des données en cours...", @@ -755,7 +760,7 @@ "SSE.Controllers.Main.txtDate": "Date", "SSE.Controllers.Main.txtDays": "jours", "SSE.Controllers.Main.txtDiagramTitle": "Titre du graphique", - "SSE.Controllers.Main.txtEditingMode": "Définissez le mode d'édition...", + "SSE.Controllers.Main.txtEditingMode": "Réglage mode d'édition...", "SSE.Controllers.Main.txtFiguredArrows": "Flèches figurées", "SSE.Controllers.Main.txtFile": "Fichier", "SSE.Controllers.Main.txtGrandTotal": "Total général", @@ -955,7 +960,7 @@ "SSE.Controllers.Main.txtStyle_Calculation": "Calcul", "SSE.Controllers.Main.txtStyle_Check_Cell": "Vérifier la cellule", "SSE.Controllers.Main.txtStyle_Comma": "Virgule", - "SSE.Controllers.Main.txtStyle_Currency": "Devise", + "SSE.Controllers.Main.txtStyle_Currency": "Monétaire", "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texte d'explication", "SSE.Controllers.Main.txtStyle_Good": "Correct", "SSE.Controllers.Main.txtStyle_Heading_1": "Titre 1", @@ -968,7 +973,7 @@ "SSE.Controllers.Main.txtStyle_Normal": "Normal", "SSE.Controllers.Main.txtStyle_Note": "Remarque", "SSE.Controllers.Main.txtStyle_Output": "Sortie", - "SSE.Controllers.Main.txtStyle_Percent": "Pour-cent", + "SSE.Controllers.Main.txtStyle_Percent": "Pour cent", "SSE.Controllers.Main.txtStyle_Title": "Titre", "SSE.Controllers.Main.txtStyle_Total": "Total", "SSE.Controllers.Main.txtStyle_Warning_Text": "Texte d'avertissement", @@ -983,7 +988,7 @@ "SSE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "SSE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", - "SSE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image a dépassé la limite maximale.", + "SSE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", "SSE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", "SSE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", "SSE.Controllers.Main.waitText": "Veuillez patienter...", @@ -1022,7 +1027,7 @@ "SSE.Controllers.Toolbar.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez les données sur la feuille de calcul dans l'ordre suivant :
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", "SSE.Controllers.Toolbar.textAccent": "Caractères diacritiques", "SSE.Controllers.Toolbar.textBracket": "Parenthèses", - "SSE.Controllers.Toolbar.textDirectional": "directionnel", + "SSE.Controllers.Toolbar.textDirectional": "Directionnel", "SSE.Controllers.Toolbar.textFontSizeErr": "La valeur entrée est incorrecte.
    Entrez une valeur numérique entre 1 et 409", "SSE.Controllers.Toolbar.textFraction": "Fractions", "SSE.Controllers.Toolbar.textFunction": "Fonctions", @@ -1309,7 +1314,7 @@ "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Degrés Fahrenheit", "SSE.Controllers.Toolbar.txtSymbol_forall": "Pour tous", "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", - "SSE.Controllers.Toolbar.txtSymbol_geq": "Est supérieur ou égal à", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Supérieur ou égal à", "SSE.Controllers.Toolbar.txtSymbol_gg": "Beaucoup plus grande que", "SSE.Controllers.Toolbar.txtSymbol_greater": "Supérieur à", "SSE.Controllers.Toolbar.txtSymbol_in": "Élément de", @@ -1320,7 +1325,7 @@ "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Flèche gauche", "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Double flèche horizontale", - "SSE.Controllers.Toolbar.txtSymbol_leq": "Est inférieur ou égal à", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Inférieure ou égale à", "SSE.Controllers.Toolbar.txtSymbol_less": "Inférieur à", "SSE.Controllers.Toolbar.txtSymbol_ll": "Beaucoup moins que", "SSE.Controllers.Toolbar.txtSymbol_minus": "Moins", @@ -1395,8 +1400,8 @@ "SSE.Views.AutoFilterDialog.txtEquals": "Équivaut à...", "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filtrer par couleur des cellules", "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtrer par couleur de police", - "SSE.Views.AutoFilterDialog.txtGreater": "Plus grand que...", - "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Plus grand ou égal à...", + "SSE.Views.AutoFilterDialog.txtGreater": "Supérieur à...", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Supérieur ou égal à...", "SSE.Views.AutoFilterDialog.txtLabelFilter": "Filtre étiquette", "SSE.Views.AutoFilterDialog.txtLess": "Moins que...", "SSE.Views.AutoFilterDialog.txtLessEquals": "Moins que ou égal à...", @@ -1434,10 +1439,10 @@ "SSE.Views.CellSettings.textBorders": "Style des bordures", "SSE.Views.CellSettings.textClearRule": "Effacer les règles", "SSE.Views.CellSettings.textColor": "Couleur de remplissage", - "SSE.Views.CellSettings.textColorScales": "Echelle de couleurs", + "SSE.Views.CellSettings.textColorScales": "Échelle de couleurs", "SSE.Views.CellSettings.textCondFormat": "Mise en forme conditionnelle", "SSE.Views.CellSettings.textControl": "Contrôle de texte", - "SSE.Views.CellSettings.textDataBars": "Les barres de données", + "SSE.Views.CellSettings.textDataBars": "Barres de données", "SSE.Views.CellSettings.textDirection": "Direction", "SSE.Views.CellSettings.textFill": "Remplissage", "SSE.Views.CellSettings.textForeground": "Couleur de premier plan", @@ -1456,10 +1461,10 @@ "SSE.Views.CellSettings.textPosition": "Position", "SSE.Views.CellSettings.textRadial": "Radial", "SSE.Views.CellSettings.textSelectBorders": "Sélectionnez les bordures à modifier en appliquant le style choisi ci-dessus", - "SSE.Views.CellSettings.textSelection": "de la sélection actuelle", - "SSE.Views.CellSettings.textThisPivot": "A partir d'un tableau croisé dynamique", - "SSE.Views.CellSettings.textThisSheet": "A partir de cette feuille de calcul", - "SSE.Views.CellSettings.textThisTable": "A partir de ce tableau", + "SSE.Views.CellSettings.textSelection": "De la sélection actuelle", + "SSE.Views.CellSettings.textThisPivot": "À partir d'un tableau croisé dynamique", + "SSE.Views.CellSettings.textThisSheet": "À partir de cette feuille de calcul", + "SSE.Views.CellSettings.textThisTable": "À partir de ce tableau", "SSE.Views.CellSettings.tipAddGradientPoint": "Ajouter un point de dégradé", "SSE.Views.CellSettings.tipAll": "Fixer bordure extérieure et la toutes lignes intérieures", "SSE.Views.CellSettings.tipBottom": "Fixer seulement bordure extérieure inférieure", @@ -1571,7 +1576,7 @@ "SSE.Views.ChartSettingsDlg.textGroup": "Groupe de graphiques sparkline", "SSE.Views.ChartSettingsDlg.textHide": "Masquer", "SSE.Views.ChartSettingsDlg.textHideAxis": "Masquer l'axe", - "SSE.Views.ChartSettingsDlg.textHigh": "En haut", + "SSE.Views.ChartSettingsDlg.textHigh": "Haut", "SSE.Views.ChartSettingsDlg.textHorAxis": "Axe horizontal", "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Second axe horizontal", "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", @@ -1586,11 +1591,11 @@ "SSE.Views.ChartSettingsDlg.textLabelInterval": "Intervalle entre les étiquettes", "SSE.Views.ChartSettingsDlg.textLabelOptions": "Options d'étiquettes", "SSE.Views.ChartSettingsDlg.textLabelPos": "Position de l'étiquette", - "SSE.Views.ChartSettingsDlg.textLayout": "Disposition", + "SSE.Views.ChartSettingsDlg.textLayout": "Mise en page", "SSE.Views.ChartSettingsDlg.textLeft": "À gauche", "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Superposition à gauche", "SSE.Views.ChartSettingsDlg.textLegendBottom": "En bas", - "SSE.Views.ChartSettingsDlg.textLegendLeft": "A gauche", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "À gauche", "SSE.Views.ChartSettingsDlg.textLegendPos": "Légende", "SSE.Views.ChartSettingsDlg.textLegendRight": "A droite", "SSE.Views.ChartSettingsDlg.textLegendTop": "En haut", @@ -1648,7 +1653,7 @@ "SSE.Views.ChartSettingsDlg.textTwoCell": "Déplacer et dimensionner avec des cellules", "SSE.Views.ChartSettingsDlg.textType": "Type", "SSE.Views.ChartSettingsDlg.textTypeData": "Type et données", - "SSE.Views.ChartSettingsDlg.textUnits": "Unités de l'affichage", + "SSE.Views.ChartSettingsDlg.textUnits": "Unités d'affichage", "SSE.Views.ChartSettingsDlg.textValue": "Valeur", "SSE.Views.ChartSettingsDlg.textVertAxis": "Axe vertical", "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Second axe vertical", @@ -1749,10 +1754,10 @@ "SSE.Views.DataValidationDialog.txtEndTime": "Heure de fin", "SSE.Views.DataValidationDialog.txtEqual": "est égal", "SSE.Views.DataValidationDialog.txtGreaterThan": "Supérieur à", - "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Est supérieur ou égal à", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "supérieur ou égal à", "SSE.Views.DataValidationDialog.txtLength": "Longueur ", "SSE.Views.DataValidationDialog.txtLessThan": "inférieur à", - "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "Est inférieur ou égal à", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "inférieur ou égal à", "SSE.Views.DataValidationDialog.txtList": "Liste", "SSE.Views.DataValidationDialog.txtNotBetween": "pas entre", "SSE.Views.DataValidationDialog.txtNotEqual": "n'est pas égal", @@ -1760,7 +1765,7 @@ "SSE.Views.DataValidationDialog.txtStartDate": "Date de début", "SSE.Views.DataValidationDialog.txtStartTime": "Heure de début", "SSE.Views.DataValidationDialog.txtTextLength": "Longueur du texte", - "SSE.Views.DataValidationDialog.txtTime": "Temps", + "SSE.Views.DataValidationDialog.txtTime": "Heure", "SSE.Views.DataValidationDialog.txtWhole": "Nombre entier", "SSE.Views.DigitalFilterDialog.capAnd": "Et", "SSE.Views.DigitalFilterDialog.capCondition1": "est égal", @@ -1785,7 +1790,7 @@ "SSE.Views.DocumentHolder.advancedShapeText": "Paramètres avancés de la forme", "SSE.Views.DocumentHolder.advancedSlicerText": "Paramètres avancés du segment", "SSE.Views.DocumentHolder.bottomCellText": "Aligner en bas", - "SSE.Views.DocumentHolder.bulletsText": "Puces et Numérotation", + "SSE.Views.DocumentHolder.bulletsText": "Puces et Numéros", "SSE.Views.DocumentHolder.centerCellText": "Aligner au centre", "SSE.Views.DocumentHolder.chartText": "Paramètres du graphique avancés", "SSE.Views.DocumentHolder.deleteColumnText": "Colonne", @@ -1871,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Texte", "SSE.Views.DocumentHolder.txtColumn": "Colonne entière", "SSE.Views.DocumentHolder.txtColumnWidth": "Définir la largeur de colonne", + "SSE.Views.DocumentHolder.txtCondFormat": "Mise en forme conditionnelle", "SSE.Views.DocumentHolder.txtCopy": "Copier", "SSE.Views.DocumentHolder.txtCurrency": "Monétaire", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Largeur de colonne personnalisée", @@ -1919,7 +1925,7 @@ "SSE.Views.DocumentHolder.txtUngroup": "Dissocier", "SSE.Views.DocumentHolder.txtWidth": "Largeur", "SSE.Views.DocumentHolder.vertAlignText": "Alignement vertical", - "SSE.Views.FieldSettingsDialog.strLayout": "Disposition", + "SSE.Views.FieldSettingsDialog.strLayout": "Mise en page", "SSE.Views.FieldSettingsDialog.strSubtotals": "Sous-totaux", "SSE.Views.FieldSettingsDialog.textReport": "Formulaire de rapport ", "SSE.Views.FieldSettingsDialog.textTitle": "Paramètres de champ", @@ -1995,7 +2001,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rapide", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hinting de la police", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Ajouter une version dans l'espace de stockage en cliquant Enregistrer ou Ctrl+S", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "La langue de formule", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Langage de formule", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activer l'affichage des commentaires", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Réglages macros", @@ -2032,7 +2038,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Allemand", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Grec", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Anglais", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Espanol", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Espagnol", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finnois", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Français", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hongrois", @@ -2087,10 +2093,10 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Général", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Paramètres de la page", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Vérification de l'orthographe", - "SSE.Views.FormatRulesEditDlg.fillColor": "Couleur d'arrière-plan", + "SSE.Views.FormatRulesEditDlg.fillColor": "Couleur de remplissage", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avertissement", "SSE.Views.FormatRulesEditDlg.text2Scales": "Échelle à deux couleurs", - "SSE.Views.FormatRulesEditDlg.text3Scales": "Echelle de 3 couleurs", + "SSE.Views.FormatRulesEditDlg.text3Scales": "Echelle à trois couleurs", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Toutes les bordures", "SSE.Views.FormatRulesEditDlg.textAppearance": "Apparence de la barre", "SSE.Views.FormatRulesEditDlg.textApply": "Appliquer à une plage", @@ -2103,7 +2109,7 @@ "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Style de la bordure", "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bordures inférieures", "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Impossible d'ajouter la mise en forme conditionnelle", - "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Cellule du milieu", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Milieu de cellule", "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Bordures intérieures verticales", "SSE.Views.FormatRulesEditDlg.textClear": "Effacer", "SSE.Views.FormatRulesEditDlg.textColor": "Couleur du texte", @@ -2117,7 +2123,7 @@ "SSE.Views.FormatRulesEditDlg.textEmptyValue": "La valeur entrée n'est pas un nombre, une date, une heure ou une chaîne valide.", "SSE.Views.FormatRulesEditDlg.textErrorGreater": "La valeur pour {0} doit être supérieure à la valeur pour {1}.", "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Saisissez le numéro entre {0} et {1}.", - "SSE.Views.FormatRulesEditDlg.textFill": "Remplir", + "SSE.Views.FormatRulesEditDlg.textFill": "Remplissage", "SSE.Views.FormatRulesEditDlg.textFormat": "Format", "SSE.Views.FormatRulesEditDlg.textFormula": "Formule", "SSE.Views.FormatRulesEditDlg.textGradient": "Dégradé", @@ -2135,12 +2141,12 @@ "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Bordures gauches", "SSE.Views.FormatRulesEditDlg.textLongBar": "la barre la plus longue", "SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum", - "SSE.Views.FormatRulesEditDlg.textMaxpoint": "valeur maximum", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Valeur maximum", "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Bordures intérieures horizontales", "SSE.Views.FormatRulesEditDlg.textMidpoint": "valeur médiane", "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", - "SSE.Views.FormatRulesEditDlg.textMinpoint": "valeur minimum", - "SSE.Views.FormatRulesEditDlg.textNegative": "négatif", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Valeur minimum", + "SSE.Views.FormatRulesEditDlg.textNegative": "Négatif", "SSE.Views.FormatRulesEditDlg.textNewColor": "Ajouter une nouvelle couleur personnalisée", "SSE.Views.FormatRulesEditDlg.textNoBorders": "Pas de bordures", "SSE.Views.FormatRulesEditDlg.textNone": "Rien", @@ -2175,16 +2181,17 @@ "SSE.Views.FormatRulesEditDlg.tipBorders": "Bordures", "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Format de nombre", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Comptabilité", - "SSE.Views.FormatRulesEditDlg.txtCurrency": "Monnaie", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Monétaire", "SSE.Views.FormatRulesEditDlg.txtDate": "Date", "SSE.Views.FormatRulesEditDlg.txtEmpty": "Ce champ est obligatoire", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fraction", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Général", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Aucune icône", "SSE.Views.FormatRulesEditDlg.txtNumber": "Nombre", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Pourcentage", "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientifique", "SSE.Views.FormatRulesEditDlg.txtText": "Texte", - "SSE.Views.FormatRulesEditDlg.txtTime": "Temps", + "SSE.Views.FormatRulesEditDlg.txtTime": "Heure", "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Modifier les règles de la mise en forme", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nouvelle règle de mise en forme", "SSE.Views.FormatRulesManagerDlg.guestText": "Invité", @@ -2206,14 +2213,14 @@ "SSE.Views.FormatRulesManagerDlg.textContainsError": "La cellule contient une erreure", "SSE.Views.FormatRulesManagerDlg.textDelete": "Supprimer", "SSE.Views.FormatRulesManagerDlg.textDown": "déplacer la règle vers le bas", - "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Dupliquer les valeurs", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Doublons", "SSE.Views.FormatRulesManagerDlg.textEdit": "Modifier", "SSE.Views.FormatRulesManagerDlg.textEnds": "La valeur de la cellule se termine par", "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Égales ou au-dessus de la moyenne", - "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Égales ou en dessous de la moyenne", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Égale à ou en dessous de la moyenne", "SSE.Views.FormatRulesManagerDlg.textFormat": "Format", "SSE.Views.FormatRulesManagerDlg.textIconSet": "Jeu d’icônes", - "SSE.Views.FormatRulesManagerDlg.textNew": "nouveau", + "SSE.Views.FormatRulesManagerDlg.textNew": "Nouvelle", "SSE.Views.FormatRulesManagerDlg.textNotBetween": "n'est pas entre {0} et {1}", "SSE.Views.FormatRulesManagerDlg.textNotContains": "La valeur de la cellule ne contient pas", "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "La cellule ne contient pas de valeur vide", @@ -2306,7 +2313,7 @@ "SSE.Views.HeaderFooterDialog.textHeader": "En-tête", "SSE.Views.HeaderFooterDialog.textInsert": "Insérer", "SSE.Views.HeaderFooterDialog.textItalic": "Italique", - "SSE.Views.HeaderFooterDialog.textLeft": "Gauche", + "SSE.Views.HeaderFooterDialog.textLeft": "À gauche", "SSE.Views.HeaderFooterDialog.textMaxError": "La chaîne de texte que vous avez saisie est trop longue. Réduisez le nombre de caractères.", "SSE.Views.HeaderFooterDialog.textNewColor": "Couleur personnalisée", "SSE.Views.HeaderFooterDialog.textOdd": "Page impaire", @@ -2325,7 +2332,7 @@ "SSE.Views.HeaderFooterDialog.tipFontName": "Police", "SSE.Views.HeaderFooterDialog.tipFontSize": "Taille de la police", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Afficher", - "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Lier à", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Lien vers", "SSE.Views.HyperlinkSettingsDialog.strRange": "Plage", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Feuille", "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copier", @@ -2381,7 +2388,7 @@ "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Paramètres avancés", "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Déplacer et dimensionner avec des cellules", "SSE.Views.ImageSettingsAdvanced.textVertically": "Verticalement", - "SSE.Views.LeftMenu.tipAbout": "A propos", + "SSE.Views.LeftMenu.tipAbout": "À propos", "SSE.Views.LeftMenu.tipChat": "Chat", "SSE.Views.LeftMenu.tipComments": "Commentaires", "SSE.Views.LeftMenu.tipFile": "Fichier", @@ -2398,7 +2405,7 @@ "SSE.Views.MainSettingsPrint.okButtonText": "Enregistrer", "SSE.Views.MainSettingsPrint.strBottom": "En bas", "SSE.Views.MainSettingsPrint.strLandscape": "Paysage", - "SSE.Views.MainSettingsPrint.strLeft": "A gauche", + "SSE.Views.MainSettingsPrint.strLeft": "À gauche", "SSE.Views.MainSettingsPrint.strMargins": "Marges", "SSE.Views.MainSettingsPrint.strPortrait": "Portrait", "SSE.Views.MainSettingsPrint.strPrint": "Imprimer", @@ -2470,14 +2477,14 @@ "SSE.Views.ParagraphSettings.textAdvanced": "Afficher les paramètres avancés", "SSE.Views.ParagraphSettings.textAt": "à", "SSE.Views.ParagraphSettings.textAtLeast": "Au moins ", - "SSE.Views.ParagraphSettings.textAuto": "Plusieurs", + "SSE.Views.ParagraphSettings.textAuto": "Multiple ", "SSE.Views.ParagraphSettings.textExact": "Exactement", "SSE.Views.ParagraphSettings.txtAutoText": "Auto", "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Les onglets spécifiés s'affichent dans ce champ", "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tout en majuscules", - "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double barré", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Barré double", "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Retraits", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "A gauche", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "À gauche", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interligne", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "A droite", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Après", @@ -2493,7 +2500,7 @@ "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Exposant", "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabulation", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignement", - "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Plusieurs", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple ", "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espacement des caractères", "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Par défaut", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effets", @@ -2506,7 +2513,7 @@ "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Supprimer tout", "SSE.Views.ParagraphSettingsAdvanced.textSet": "Spécifier", "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Au centre", - "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "A gauche", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "À gauche", "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Position", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "A droite", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraphe - Paramètres avancés", @@ -2624,7 +2631,7 @@ "SSE.Views.PrintSettings.btnPrint": "Enregistrer et imprimer", "SSE.Views.PrintSettings.strBottom": "En bas", "SSE.Views.PrintSettings.strLandscape": "Paysage", - "SSE.Views.PrintSettings.strLeft": "A gauche", + "SSE.Views.PrintSettings.strLeft": "À gauche", "SSE.Views.PrintSettings.strMargins": "Marges", "SSE.Views.PrintSettings.strPortrait": "Portrait", "SSE.Views.PrintSettings.strPrint": "Imprimer", @@ -2642,7 +2649,7 @@ "SSE.Views.PrintSettings.textFitRows": "Ajuster toutes les lignes à une page", "SSE.Views.PrintSettings.textHideDetails": "Masquer détails", "SSE.Views.PrintSettings.textIgnore": "Ignorer la zone d'impression", - "SSE.Views.PrintSettings.textLayout": "Disposition", + "SSE.Views.PrintSettings.textLayout": "Mise en page", "SSE.Views.PrintSettings.textPageOrientation": "Orientation de la page", "SSE.Views.PrintSettings.textPageScaling": "Mise à l'échelle", "SSE.Views.PrintSettings.textPageSize": "Taille de la page", @@ -2780,7 +2787,7 @@ "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontalement", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Type de jointure", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proportions constantes", - "SSE.Views.ShapeSettingsAdvanced.textLeft": "A gauche", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "À gauche", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Style de ligne", "SSE.Views.ShapeSettingsAdvanced.textMiter": "Onglet", "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Déplacer sans dimensionner avec les cellules", @@ -2900,7 +2907,7 @@ "SSE.Views.SortDialog.textDesc": "Descendant", "SSE.Views.SortDialog.textDown": "Passer au niveau inférieur ", "SSE.Views.SortDialog.textFontColor": "Couleur de police", - "SSE.Views.SortDialog.textLeft": "A gauche", + "SSE.Views.SortDialog.textLeft": "À gauche", "SSE.Views.SortDialog.textMoreCols": "(Plus de colonnes...)", "SSE.Views.SortDialog.textMoreRows": "(Plus de lignes...)", "SSE.Views.SortDialog.textNone": "Rien", @@ -2981,7 +2988,7 @@ "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Le nom de feuille ne peut pas contenir les caractères suivants : \\/*?[]:", "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nom de feuille", "SSE.Views.Statusbar.selectAllSheets": "Sélectionner toutes les feuilles", - "SSE.Views.Statusbar.textAverage": "MOYENNE", + "SSE.Views.Statusbar.textAverage": "Moyenne", "SSE.Views.Statusbar.textCount": "Total", "SSE.Views.Statusbar.textMax": "MAX", "SSE.Views.Statusbar.textMin": "MIN", @@ -3096,7 +3103,7 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Bois", "SSE.Views.Toolbar.capBtnAddComment": "Ajouter un commentaire", - "SSE.Views.Toolbar.capBtnColorSchemas": "Schéma de couleur", + "SSE.Views.Toolbar.capBtnColorSchemas": "Jeux de couleurs", "SSE.Views.Toolbar.capBtnComment": "Commentaire", "SSE.Views.Toolbar.capBtnInsHeader": "En-tête/Pied de page", "SSE.Views.Toolbar.capBtnInsSlicer": "Segment", @@ -3116,7 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Lien hypertexte", "SSE.Views.Toolbar.capInsertImage": "Image", "SSE.Views.Toolbar.capInsertShape": "Forme", - "SSE.Views.Toolbar.capInsertSpark": "Graphiques sparkline", + "SSE.Views.Toolbar.capInsertSpark": "Graphique sparkline", "SSE.Views.Toolbar.capInsertTable": "Tableau", "SSE.Views.Toolbar.capInsertText": "Zone de texte", "SSE.Views.Toolbar.mniImageFromFile": "Image à partir d'un fichier", @@ -3142,9 +3149,9 @@ "SSE.Views.Toolbar.textClearPrintArea": "Vider la zone d'impression", "SSE.Views.Toolbar.textClearRule": "Effacer les règles", "SSE.Views.Toolbar.textClockwise": "Rotation dans le sens des aiguilles d'une montre", - "SSE.Views.Toolbar.textColorScales": "Echelle de couleurs", + "SSE.Views.Toolbar.textColorScales": "Échelle de couleurs", "SSE.Views.Toolbar.textCounterCw": "Rotation dans le sens inverse des aiguilles d'une montre", - "SSE.Views.Toolbar.textDataBars": "Les barres de données", + "SSE.Views.Toolbar.textDataBars": "Barres de données", "SSE.Views.Toolbar.textDelLeft": "Décaler les cellules vers la gauche", "SSE.Views.Toolbar.textDelUp": "Décaler les cellules vers le haut", "SSE.Views.Toolbar.textDiagDownBorder": "Bordure diagonale bas", @@ -3186,7 +3193,7 @@ "SSE.Views.Toolbar.textRotateUp": "Rotation du texte vers le haut", "SSE.Views.Toolbar.textScale": "Échelle", "SSE.Views.Toolbar.textScaleCustom": "Personnalisé", - "SSE.Views.Toolbar.textSelection": "de la sélection actuelle", + "SSE.Views.Toolbar.textSelection": "De la sélection actuelle", "SSE.Views.Toolbar.textSetPrintArea": "Selectionner la zone d'impression", "SSE.Views.Toolbar.textStrikeout": "Barré", "SSE.Views.Toolbar.textSubscript": "Indice", @@ -3201,9 +3208,9 @@ "SSE.Views.Toolbar.textTabLayout": "Mise en page", "SSE.Views.Toolbar.textTabProtect": "Protection", "SSE.Views.Toolbar.textTabView": "Affichage", - "SSE.Views.Toolbar.textThisPivot": "A partir d'un tableau croisé dynamique", - "SSE.Views.Toolbar.textThisSheet": "A partir de cette feuille de calcul", - "SSE.Views.Toolbar.textThisTable": "A partir de ce tableau", + "SSE.Views.Toolbar.textThisPivot": "À partir d'un tableau croisé dynamique", + "SSE.Views.Toolbar.textThisSheet": "À partir de cette feuille de calcul", + "SSE.Views.Toolbar.textThisTable": "À partir de ce tableau", "SSE.Views.Toolbar.textTop": "En haut: ", "SSE.Views.Toolbar.textTopBorders": "Bordures supérieures", "SSE.Views.Toolbar.textUnderline": "Souligné", @@ -3263,7 +3270,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Orientation de la page", "SSE.Views.Toolbar.tipPageSize": "Taille de la page", "SSE.Views.Toolbar.tipPaste": "Coller", - "SSE.Views.Toolbar.tipPrColor": "Couleur d'arrière-plan", + "SSE.Views.Toolbar.tipPrColor": "Couleur de remplissage", "SSE.Views.Toolbar.tipPrint": "Imprimer", "SSE.Views.Toolbar.tipPrintArea": "Zone d'impression", "SSE.Views.Toolbar.tipPrintTitles": "Titres à imprimer", @@ -3314,7 +3321,7 @@ "SSE.Views.Toolbar.txtPercentage": "Pourcentage", "SSE.Views.Toolbar.txtPound": "£ Livre", "SSE.Views.Toolbar.txtRouble": "₽ Rouble", - "SSE.Views.Toolbar.txtScheme1": "Bureau", + "SSE.Views.Toolbar.txtScheme1": "Office", "SSE.Views.Toolbar.txtScheme10": "Médian", "SSE.Views.Toolbar.txtScheme11": "Métro", "SSE.Views.Toolbar.txtScheme12": "Module", @@ -3328,9 +3335,10 @@ "SSE.Views.Toolbar.txtScheme2": "Niveaux de gris", "SSE.Views.Toolbar.txtScheme20": "Urbain", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "New Office", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Aspect", - "SSE.Views.Toolbar.txtScheme5": "Civique", + "SSE.Views.Toolbar.txtScheme5": "Civil", "SSE.Views.Toolbar.txtScheme6": "Rotonde", "SSE.Views.Toolbar.txtScheme7": "Capitaux", "SSE.Views.Toolbar.txtScheme8": "Flot", @@ -3404,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Nouveau", "SSE.Views.ViewTab.textDefault": "Par défaut", "SSE.Views.ViewTab.textFormula": "Barre de formule", + "SSE.Views.ViewTab.textFreezeCol": "Verrouiller la première colonne", + "SSE.Views.ViewTab.textFreezeRow": "Verouiller la ligne supérieure", "SSE.Views.ViewTab.textGridlines": "Quadrillage", "SSE.Views.ViewTab.textHeadings": "En-têtes", "SSE.Views.ViewTab.textManager": "Gestionnaire d'affichage", + "SSE.Views.ViewTab.textUnFreeze": "Libérer les volets", + "SSE.Views.ViewTab.textZeros": "Afficher des zéros", "SSE.Views.ViewTab.textZoom": "Changer l'échelle", "SSE.Views.ViewTab.tipClose": "Fermer l'aperçu d'une feuille", "SSE.Views.ViewTab.tipCreate": "Créer l'aperçu d'une feuille", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 9a4f362d9..0b8919b47 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -79,7 +79,6 @@ "Common.define.conditionalData.textGreaterEq": "Maggiore o uguale a", "Common.define.conditionalData.textIconSets": "Set di icone", "Common.define.conditionalData.textLast7days": "Negli ultimi 7 giorni", ->>>>>>> release/v6.4.0 "Common.define.conditionalData.textLastMonth": "ultimo mese", "Common.define.conditionalData.textLastWeek": "ultima settimana", "Common.define.conditionalData.textLess": "Meno di", @@ -162,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Funzioni riconosciute", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Le seguenti espressioni sono espressioni matematiche riconosciute. Non verranno automaticamente scritte in corsivo.", "Common.Views.AutoCorrectDialog.textReplace": "Sostituisci", + "Common.Views.AutoCorrectDialog.textReplaceText": "Sostituisci mentre digiti", "Common.Views.AutoCorrectDialog.textReplaceType": "Sostituisci testo durante la scrittura", "Common.Views.AutoCorrectDialog.textReset": "Reimposta", "Common.Views.AutoCorrectDialog.textResetAll": "Ripristina valori predefiniti", @@ -418,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Rimuovi duplicati", "SSE.Controllers.DataTab.txtRemoveDataValidation": "La selezione contiene più di un tipo di convalida.
    Cancellare le impostazioni correnti e continuare?", "SSE.Controllers.DataTab.txtRemSelected": "Rimuovi nella selezione", + "SSE.Controllers.DataTab.txtUrlTitle": "Incolla un URL dati", "SSE.Controllers.DocumentHolder.alignmentText": "Allineamento", "SSE.Controllers.DocumentHolder.centerText": "Centrato", "SSE.Controllers.DocumentHolder.deleteColumnText": "Elimina colonna", @@ -600,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Se continui a salvare in questo formato tutte le funzioni eccetto il testo andranno perse.
    Sei sicuro di voler continuare?", "SSE.Controllers.Main.confirmMoveCellRange": "La cella di destinazione può contenere i dati. Continuare l'operazione?", "SSE.Controllers.Main.confirmPutMergeRange": "I dati sorgente contenevano delle celle raggruppate
    Sono state incollate alla tabella singolarmente.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Le formule nella riga dell'intestazione verranno rimosse e convertite in testo statico.
    Vuoi continuare?", "SSE.Controllers.Main.convertationTimeoutText": "È stato superato il tempo limite della conversione.", "SSE.Controllers.Main.criticalErrorExtText": "Clicca su \"OK\" per ritornare all'elenco dei documenti", "SSE.Controllers.Main.criticalErrorTitle": "Errore", @@ -650,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "SSE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", "SSE.Controllers.Main.errorLabledColumnsPivot": "Per creare una tabella pivot, è necessario utilizzare dati organizzati come un elenco con colonne etichettate.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Il riferimento per la posizione o l'intervallo di dati non è valido.", "SSE.Controllers.Main.errorLockedAll": "L'operazione non può essere portata a termine fino a che il foglio è bloccato da un altro utente.", "SSE.Controllers.Main.errorLockedCellPivot": "Non è possibile modificare i dati all'interno di una tabella pivot.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Il foglio non può essere rinominato al momento in quanto viene rinominato da un altro utente.", @@ -673,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "È passato troppo tempo dall'ultima modifica apportata al documento. Si prega di ricaricare la pagina.", "SSE.Controllers.Main.errorSessionToken": "La connessione al server è stata interrotta. Si prega di ricaricare la pagina.", "SSE.Controllers.Main.errorSetPassword": "Impossibile impostare la password.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Il riferimento alla posizione non è valido perché le celle non sono tutte nella stessa colonna o riga.
    Seleziona celle che sono tutte in una singola colonna o riga.", "SSE.Controllers.Main.errorStockChart": "Ordine di righe scorretto. Per creare un grafico in pila posiziona i dati nel foglio nel seguente ordine:
    prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", "SSE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente.
    Si prega di contattare l'amministratore del Server dei Documenti.", "SSE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.
    Si prega di contattare l'amministratore del Server dei Documenti.", @@ -1872,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Testo", "SSE.Views.DocumentHolder.txtColumn": "Colonna intera", "SSE.Views.DocumentHolder.txtColumnWidth": "Imposta larghezza colonna", + "SSE.Views.DocumentHolder.txtCondFormat": "Formattazione condizionale", "SSE.Views.DocumentHolder.txtCopy": "Copia", "SSE.Views.DocumentHolder.txtCurrency": "Valuta", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Personalizza larghezza colonna", @@ -2181,6 +2186,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Questo campo è obbligatorio", "SSE.Views.FormatRulesEditDlg.txtFraction": "Frazione", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Generale", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Nessuna icona", "SSE.Views.FormatRulesEditDlg.txtNumber": "Numero", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentuale", "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientifico", @@ -3117,7 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Collegamento ipertestuale", "SSE.Views.Toolbar.capInsertImage": "Immagine", "SSE.Views.Toolbar.capInsertShape": "Forma", - "SSE.Views.Toolbar.capInsertSpark": "Grafici sparkline", + "SSE.Views.Toolbar.capInsertSpark": "Grafico sparkline", "SSE.Views.Toolbar.capInsertTable": "Tabella", "SSE.Views.Toolbar.capInsertText": "Casella di testo", "SSE.Views.Toolbar.mniImageFromFile": "Immagine da file", @@ -3329,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Scala di grigi", "SSE.Views.Toolbar.txtScheme20": "Tramonto", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "Nuovo ufficio", "SSE.Views.Toolbar.txtScheme3": "Apice", "SSE.Views.Toolbar.txtScheme4": "Astro", "SSE.Views.Toolbar.txtScheme5": "Città", @@ -3405,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Nuovo", "SSE.Views.ViewTab.textDefault": "Predefinito", "SSE.Views.ViewTab.textFormula": "Barra della formula", + "SSE.Views.ViewTab.textFreezeCol": "Blocca prima colonna", + "SSE.Views.ViewTab.textFreezeRow": "Blocca riga superiore", "SSE.Views.ViewTab.textGridlines": "Linee griglia", "SSE.Views.ViewTab.textHeadings": "Intestazioni", "SSE.Views.ViewTab.textManager": "Visualizza la gestione", + "SSE.Views.ViewTab.textUnFreeze": "Sblocca riquadri", + "SSE.Views.ViewTab.textZeros": "Mostra zeri", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Chiudi visualizzazione foglio", "SSE.Views.ViewTab.tipCreate": "Crea vista del foglio", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index 3377eb6ea..b9d981294 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -47,6 +47,18 @@ "Common.define.chartData.textStock": "株価チャート", "Common.define.chartData.textSurface": "表面", "Common.define.chartData.textWinLossSpark": "勝ち/負け", + "Common.define.conditionalData.textDate": "日付", + "Common.define.conditionalData.textError": "エラー", + "Common.define.conditionalData.textLastMonth": "先月", + "Common.define.conditionalData.textLastWeek": "先週", + "Common.define.conditionalData.textNextMonth": "来月", + "Common.define.conditionalData.textNextWeek": "来週", + "Common.define.conditionalData.textText": "テキスト", + "Common.define.conditionalData.textThisMonth": "今月", + "Common.define.conditionalData.textThisWeek": "今週", + "Common.define.conditionalData.textToday": "今日", + "Common.define.conditionalData.textTomorrow": "明日", + "Common.define.conditionalData.textYesterday": "昨日", "Common.Translation.warnFileLocked": "文書が別のアプリで使用されています。編集を続けて、コピーとして保存できます。", "Common.Translation.warnFileLockedBtnEdit": "コピーを作成する", "Common.UI.ColorButton.textAutoColor": "自動", @@ -184,10 +196,12 @@ "Common.Views.ListSettingsDialog.txtTitle": "リストの設定", "Common.Views.ListSettingsDialog.txtType": "タイプ", "Common.Views.OpenDialog.closeButtonText": "ファイルを閉じる", + "Common.Views.OpenDialog.textSelectData": "データの選択", "Common.Views.OpenDialog.txtAdvanced": "詳細", "Common.Views.OpenDialog.txtColon": "コロン", "Common.Views.OpenDialog.txtComma": "カンマ", "Common.Views.OpenDialog.txtDelimiter": "区切り記号", + "Common.Views.OpenDialog.txtEmpty": "このフィールドは必須項目です", "Common.Views.OpenDialog.txtEncoding": "エンコーディング", "Common.Views.OpenDialog.txtIncorrectPwd": "パスワードが正しくありません。", "Common.Views.OpenDialog.txtOpenFile": "ファイルを開くためのパスワードを入力する", @@ -233,7 +247,9 @@ "Common.Views.ReviewChanges.tipAcceptCurrent": "今の変更を反映する", "Common.Views.ReviewChanges.tipCoAuthMode": "共同編集モードを設定する", "Common.Views.ReviewChanges.tipCommentRem": "コメントを削除する", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "こののコメントを削除する", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "このコメントを削除する", + "Common.Views.ReviewChanges.tipCommentResolve": "コメントを承諾する", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "現在のコメントを承諾する", "Common.Views.ReviewChanges.tipHistory": "バージョン履歴を表示する", "Common.Views.ReviewChanges.tipRejectCurrent": "現在の変更を元に戻す", "Common.Views.ReviewChanges.tipReview": "変更履歴", @@ -249,10 +265,15 @@ "Common.Views.ReviewChanges.txtClose": "閉じる", "Common.Views.ReviewChanges.txtCoAuthMode": "共同編集モード", "Common.Views.ReviewChanges.txtCommentRemAll": "全てのコメントを削除する", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "こののコメントを削除する", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "このコメントを削除する", "Common.Views.ReviewChanges.txtCommentRemMy": "私のコメントを削除する", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "私の現在のコメントを削除する", + "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": "最終版", @@ -340,12 +361,14 @@ "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": "選択した範囲で削除する", @@ -884,14 +907,14 @@ "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_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_Neutral": "どちらでもない", "SSE.Controllers.Main.txtStyle_Normal": "標準", "SSE.Controllers.Main.txtStyle_Note": "注意", "SSE.Controllers.Main.txtStyle_Output": "出力", @@ -1583,6 +1606,8 @@ "SSE.Views.CreatePivotDialog.textSelectData": "データの選択", "SSE.Views.CreatePivotDialog.textTitle": "表の作成", "SSE.Views.CreatePivotDialog.txtEmpty": "この項目は必須です", + "SSE.Views.CreateSparklineDialog.textSelectData": "データの選択", + "SSE.Views.CreateSparklineDialog.txtEmpty": "このフィールドは必須項目です", "SSE.Views.DataTab.capBtnGroup": "グループ化", "SSE.Views.DataTab.capBtnTextCustomSort": "ユーザー設定の並べ替え", "SSE.Views.DataTab.capBtnTextDataValidation": "データの入力規則", @@ -1927,8 +1952,11 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "英吾", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "スペイン", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "フランス", + "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.txtLiveComment": "コメントの表示", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "OS Xのような", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "ネイティブ", @@ -1939,9 +1967,12 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "マクロを有効にして、通知しない", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "全てを無効にする", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "マクロを無効にして、通知しない", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "トルコ語", + "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.txtZh": "中国語", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "適用", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "辞書言語", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "大文字がある言葉を無視する", @@ -1962,6 +1993,24 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "全般", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "ページの設定", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "スペルチェック", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "警告", + "SSE.Views.FormatRulesEditDlg.textColor": "文字の色", + "SSE.Views.FormatRulesEditDlg.textCustom": "カスタム", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "値が", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "罫線なし", + "SSE.Views.FormatRulesEditDlg.textPreview": "プレビュー", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "カラースケール、データバー、アイコンセットの条件付き書式設定では、相対参照は使用できません。", + "SSE.Views.FormatRulesEditDlg.textSelectData": "データの選択", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "アイコンのみ表示", + "SSE.Views.FormatRulesEditDlg.txtDate": "日付", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "このフィールドは必須項目です", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "アイコン無し", + "SSE.Views.FormatRulesEditDlg.txtText": "テキスト", + "SSE.Views.FormatRulesEditDlg.txtTime": "時刻", + "SSE.Views.FormatRulesManagerDlg.textApply": "に適用する", + "SSE.Views.FormatRulesManagerDlg.textDelete": "削除", + "SSE.Views.FormatRulesManagerDlg.textEdit": "編集", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "データの選択", "SSE.Views.FormatSettingsDialog.textCategory": "カテゴリー", "SSE.Views.FormatSettingsDialog.textDecimal": "小数点", "SSE.Views.FormatSettingsDialog.textFormat": "フォーマット", @@ -2841,6 +2890,7 @@ "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": "ファイルからの画像", diff --git a/apps/spreadsheeteditor/main/locale/lo.json b/apps/spreadsheeteditor/main/locale/lo.json index 35f68c2f6..50d936046 100644 --- a/apps/spreadsheeteditor/main/locale/lo.json +++ b/apps/spreadsheeteditor/main/locale/lo.json @@ -3116,7 +3116,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "ໄຮເປີລີ້ງ", "SSE.Views.Toolbar.capInsertImage": "ຮູບພາບ", "SSE.Views.Toolbar.capInsertShape": "ຮູບຮ່າງ", - "SSE.Views.Toolbar.capInsertSpark": "Sparklines", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", "SSE.Views.Toolbar.capInsertTable": "ຕາຕະລາງ", "SSE.Views.Toolbar.capInsertText": "ກອບຂໍ້ຄວາມ", "SSE.Views.Toolbar.mniImageFromFile": "ຮູບພາບຈາກຟາຍ", diff --git a/apps/spreadsheeteditor/main/locale/nl.json b/apps/spreadsheeteditor/main/locale/nl.json index b85237986..c87f86890 100644 --- a/apps/spreadsheeteditor/main/locale/nl.json +++ b/apps/spreadsheeteditor/main/locale/nl.json @@ -49,6 +49,7 @@ "Common.define.chartData.textSurface": "Oppervlak", "Common.define.chartData.textWinLossSpark": "Winst/verlies", "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "Formaat niet ingesteld", "Common.define.conditionalData.text1Above": "1 std dev boven", "Common.define.conditionalData.text1Below": "1 std dev onder", "Common.define.conditionalData.text2Above": "2 std dev boven", @@ -61,8 +62,46 @@ "Common.define.conditionalData.textBelow": "Onder", "Common.define.conditionalData.textBetween": "Tussen", "Common.define.conditionalData.textBlank": "Blanco", + "Common.define.conditionalData.textBlanks": "Bevat blanco's", "Common.define.conditionalData.textBottom": "Bodem", - "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en als kopie opslaan.", + "Common.define.conditionalData.textContains": "Bevat", + "Common.define.conditionalData.textDataBar": "Gegevensbalk", + "Common.define.conditionalData.textDate": "Datum", + "Common.define.conditionalData.textDuplicate": "Dupliceren", + "Common.define.conditionalData.textEnds": "Eindigt met", + "Common.define.conditionalData.textEqAbove": "Gelijk aan of hoger dan", + "Common.define.conditionalData.textEqBelow": "Gelijk aan of lager", + "Common.define.conditionalData.textEqual": "Gelijk aan", + "Common.define.conditionalData.textError": "Fout", + "Common.define.conditionalData.textErrors": "Bevat fouten", + "Common.define.conditionalData.textFormula": "Formule", + "Common.define.conditionalData.textGreater": "Groter dan", + "Common.define.conditionalData.textGreaterEq": "Groter dan of gelijk aan", + "Common.define.conditionalData.textIconSets": "Pictogrammensets", + "Common.define.conditionalData.textLast7days": "In de laatste 7 dagen", + "Common.define.conditionalData.textLastMonth": "Afgelopen maand", + "Common.define.conditionalData.textLastWeek": "Afgelopen week", + "Common.define.conditionalData.textLess": "Kleiner dan", + "Common.define.conditionalData.textLessEq": "Kleiner dan of gelijk aan", + "Common.define.conditionalData.textNextMonth": "Volgende maand", + "Common.define.conditionalData.textNextWeek": "Volgende week", + "Common.define.conditionalData.textNotBetween": "niet tussen", + "Common.define.conditionalData.textNotBlanks": "Bevat geen blanco's", + "Common.define.conditionalData.textNotContains": "Bevat niet", + "Common.define.conditionalData.textNotEqual": "Niet gelijk aan", + "Common.define.conditionalData.textNotErrors": "Bevat geen fouten", + "Common.define.conditionalData.textText": "Tekst", + "Common.define.conditionalData.textThisMonth": "Deze maand", + "Common.define.conditionalData.textThisWeek": "Deze week", + "Common.define.conditionalData.textToday": "Vandaag", + "Common.define.conditionalData.textTomorrow": "Morgen", + "Common.define.conditionalData.textTop": "Boven", + "Common.define.conditionalData.textUnique": "Uniek", + "Common.define.conditionalData.textValue": "Waarde is", + "Common.define.conditionalData.textYesterday": "Gisteren", + "Common.Translation.warnFileLocked": "Het bestand wordt bewerkt in een andere app. U kunt doorgaan met bewerken en het als kopie opslaan.", + "Common.Translation.warnFileLockedBtnEdit": "Maak een kopie", + "Common.Translation.warnFileLockedBtnView": "Open voor lezen", "Common.UI.ColorButton.textAutoColor": "Automatisch", "Common.UI.ColorButton.textNewColor": "Nieuwe aangepaste kleur toevoegen", "Common.UI.ComboBorderSize.txtNoBorders": "Geen randen", @@ -88,6 +127,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Het document is gewijzigd door een andere gebruiker.
    Klik om uw wijzigingen op te slaan en de updates opnieuw te laden.", "Common.UI.ThemeColorPalette.textStandartColors": "Standaardkleuren", "Common.UI.ThemeColorPalette.textThemeColors": "Themakleuren", + "Common.UI.Themes.txtThemeClassicLight": "Klassiek licht", + "Common.UI.Themes.txtThemeDark": "Donker", + "Common.UI.Themes.txtThemeLight": "Licht", "Common.UI.Window.cancelButtonText": "Annuleren", "Common.UI.Window.closeButtonText": "Sluiten", "Common.UI.Window.noButtonText": "Nee", @@ -113,11 +155,13 @@ "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoOpmaak terwijl u typt", "Common.Views.AutoCorrectDialog.textBy": "Door", "Common.Views.AutoCorrectDialog.textDelete": "Verwijder", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet en netwerkpaden met hyperlinks", "Common.Views.AutoCorrectDialog.textMathCorrect": "Wiskundige autocorrectie", "Common.Views.AutoCorrectDialog.textNewRowCol": "Voeg nieuwe rijen en kolommen toe aan de tabel", "Common.Views.AutoCorrectDialog.textRecognized": "Erkende functies", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "De volgende uitdrukkingen zijn erkende wiskunde uitdrukkingen. Ze worden niet automatisch gecursiveerd.", "Common.Views.AutoCorrectDialog.textReplace": "Vervangen", + "Common.Views.AutoCorrectDialog.textReplaceText": "Vervangen terwijl u typt", "Common.Views.AutoCorrectDialog.textReplaceType": "Tekst vervangen terwijl u typt", "Common.Views.AutoCorrectDialog.textReset": "Opnieuw instellen", "Common.Views.AutoCorrectDialog.textResetAll": "Terugzetten naar standaardinstelling", @@ -196,11 +240,15 @@ "Common.Views.ListSettingsDialog.txtTitle": "Lijst instellingen", "Common.Views.ListSettingsDialog.txtType": "Type", "Common.Views.OpenDialog.closeButtonText": "Bestand sluiten", + "Common.Views.OpenDialog.textInvalidRange": "Ongeldig celbereik", + "Common.Views.OpenDialog.textSelectData": "Gegevens selecteren", "Common.Views.OpenDialog.txtAdvanced": "Geavanceerd", "Common.Views.OpenDialog.txtColon": "Dubbele punt", "Common.Views.OpenDialog.txtComma": "Komma", "Common.Views.OpenDialog.txtDelimiter": "Scheidingsteken", - "Common.Views.OpenDialog.txtEncoding": "Versleuteling", + "Common.Views.OpenDialog.txtDestData": "Kies waar de data moet komen", + "Common.Views.OpenDialog.txtEmpty": "Dit veld is vereist", + "Common.Views.OpenDialog.txtEncoding": "Codering", "Common.Views.OpenDialog.txtIncorrectPwd": "Wachtwoord is niet juist", "Common.Views.OpenDialog.txtOpenFile": "Voer een wachtwoord in om dit bestand te openen", "Common.Views.OpenDialog.txtOther": "Overige", @@ -246,6 +294,8 @@ "Common.Views.ReviewChanges.tipCoAuthMode": "Zet samenwerkings modus", "Common.Views.ReviewChanges.tipCommentRem": "Alle opmerkingen verwijderen", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Verwijder huidige opmerking", + "Common.Views.ReviewChanges.tipCommentResolve": "Opmerkingen oplossen", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Los huidige opmerkingen op", "Common.Views.ReviewChanges.tipHistory": "Toon versie geschiedenis", "Common.Views.ReviewChanges.tipRejectCurrent": "Huidige wijziging afwijzen", "Common.Views.ReviewChanges.tipReview": "Wijzigingen bijhouden", @@ -265,6 +315,11 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Verwijder mijn commentaar", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Verwijder mijn huidige opmerkingen", "Common.Views.ReviewChanges.txtCommentRemove": "Verwijder", + "Common.Views.ReviewChanges.txtCommentResolve": "Oplossen", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Alle opmerkingen oplossen", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Los huidige opmerkingen op", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Los mijn opmerkingen op", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Mijn huidige opmerkingen oplossen", "Common.Views.ReviewChanges.txtDocLang": "Taal", "Common.Views.ReviewChanges.txtFinal": "Alle veranderingen geaccepteerd (Voorbeeld)", "Common.Views.ReviewChanges.txtFinalCap": "Einde", @@ -352,15 +407,18 @@ "Common.Views.UserNameDialog.textLabel": "Label:", "Common.Views.UserNameDialog.textLabelError": "Label mag niet leeg zijn", "SSE.Controllers.DataTab.textColumns": "Kolommen", + "SSE.Controllers.DataTab.textEmptyUrl": "U moet de URL opgeven.", "SSE.Controllers.DataTab.textRows": "Rijen", "SSE.Controllers.DataTab.textWizard": "Tekst naar kolommen", "SSE.Controllers.DataTab.txtDataValidation": "Gegevens validatie", "SSE.Controllers.DataTab.txtExpand": "Uitvouwen", "SSE.Controllers.DataTab.txtExpandRemDuplicates": "De gegevens naast de selectie worden niet verwijderd. Wilt u de selectie uitbreiden om de aangrenzende gegevens op te nemen of doorgaan met alleen de momenteel geselecteerde cellen?", "SSE.Controllers.DataTab.txtExtendDataValidation": "De selectie bevat enkele cellen zonder instellingen voor gegevensvalidatie.
    Wilt u gegevensvalidatie uitbreiden naar deze cellen? ", + "SSE.Controllers.DataTab.txtImportWizard": "Wizard Tekst importeren", "SSE.Controllers.DataTab.txtRemDuplicates": "Verwijder duplicaten", "SSE.Controllers.DataTab.txtRemoveDataValidation": "De selectie bevat meer dan één type validatie.
    Huidige instellingen wissen en doorgaan? ", "SSE.Controllers.DataTab.txtRemSelected": "Verwijder in geselecteerde", + "SSE.Controllers.DataTab.txtUrlTitle": "Plak een gegevens URL", "SSE.Controllers.DocumentHolder.alignmentText": "Uitlijning", "SSE.Controllers.DocumentHolder.centerText": "Centreren", "SSE.Controllers.DocumentHolder.deleteColumnText": "Kolom verwijderen", @@ -543,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?", "SSE.Controllers.Main.confirmMoveCellRange": "Het doelcelbereik kan gegevens bevatten. Doorgaan met bewerking?", "SSE.Controllers.Main.confirmPutMergeRange": "De brongegevens bevatten samengevoegde cellen.
    Voordat de cellen in de tabel zijn geplakt, is de samenvoeging opgeheven.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formules in de kopregel worden verwijderd en omgezet in statische tekst.
    Wilt u doorgaan?", "SSE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.", "SSE.Controllers.Main.criticalErrorExtText": "Klik op \"OK\" om terug te keren naar de lijst met documenten.", "SSE.Controllers.Main.criticalErrorTitle": "Fout", @@ -593,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", "SSE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", "SSE.Controllers.Main.errorLabledColumnsPivot": "Gebruik gegevens die zijn georganiseerd als een lijst met gelabelde kolommen om een draaitabel te maken.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "De referentie voor de locatie of het gegevensbereik is ongeldig.", "SSE.Controllers.Main.errorLockedAll": "De bewerking kan niet worden uitgevoerd omdat het blad is vergrendeld door een andere gebruiker.", "SSE.Controllers.Main.errorLockedCellPivot": "U kunt geen data veranderen in een draaitabel.", "SSE.Controllers.Main.errorLockedWorksheetRename": "De naam van het blad kan op dit moment niet worden gewijzigd omdat het al wordt hernoemd door een andere gebruiker", @@ -604,9 +664,11 @@ "SSE.Controllers.Main.errorOpenWarning": "Een van de bestandsformules overschrijdt de limiet van 8192 tekens.
    De formule is verwijderd.", "SSE.Controllers.Main.errorOperandExpected": "De syntaxis van de ingevoerde functie is niet juist. Controleer of een van de haakjes '(' of ')' ontbreekt.", "SSE.Controllers.Main.errorPasteMaxRange": "Het te kopiëren gebied komt niet overeen met het plakgebied.
    Selecteer een gebied met dezelfde grootte of klik op de eerste cel van een rij om de gekopieerde cellen te plakken.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Deze actie kan niet worden uitgevoerd bij een selectie van meerdere bereiken.
    Selecteer een enkel bereik en probeer opnieuw.", "SSE.Controllers.Main.errorPasteSlicerError": "Tabelslicers kunnen niet van de ene werkmap naar de andere worden gekopieerd.", "SSE.Controllers.Main.errorPivotGroup": "Kan die selectie niet groeperen.", "SSE.Controllers.Main.errorPivotOverlap": "Een draaitabel mag een tabel niet overlappen.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Het rapport van de draaitabel is opgeslagen zonder de onderliggende gegevens.
    Gebruik de 'Verversen' knop om het rapport bij te werken.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Helaas is het met de huidige programmaversie niet mogelijk om meer dan 1500 pagina's in één keer af te drukken.
    Deze beperking wordt opgeheven in komende releases.", "SSE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt", "SSE.Controllers.Main.errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", @@ -614,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "Het document is al lang niet meer bewerkt. Laad de pagina opnieuw.", "SSE.Controllers.Main.errorSessionToken": "De verbinding met de server is onderbroken. Laad de pagina opnieuw.", "SSE.Controllers.Main.errorSetPassword": "Wachtwoord kon niet worden ingesteld. ", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Locatieverwijzing is niet geldig omdat de cellen niet allemaal in dezelfde kolom of rij staan.
    Selecteer cellen die allemaal in dezelfde kolom of rij staan.", "SSE.Controllers.Main.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", "SSE.Controllers.Main.errorToken": "Het token voor de documentbeveiliging heeft niet de juiste indeling.
    Neem contact op met de beheerder van de documentserver.", "SSE.Controllers.Main.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
    Neem contact op met de beheerder van de documentserver.", @@ -670,12 +733,13 @@ "SSE.Controllers.Main.textPaidFeature": "Betaalde optie", "SSE.Controllers.Main.textPleaseWait": "De bewerking kan meer tijd dan verwacht in beslag nemen. Even geduld...", "SSE.Controllers.Main.textRecalcFormulas": "Formules worden berekend...", - "SSE.Controllers.Main.textRemember": "Onthoud voorkeur", + "SSE.Controllers.Main.textRemember": "Voorkeur onthouden voor alle bestanden", "SSE.Controllers.Main.textRenameError": "Gebruikersnaam mag niet leeg zijn. ", "SSE.Controllers.Main.textRenameLabel": "Voer een naam in die voor samenwerking moet worden gebruikt ", "SSE.Controllers.Main.textShape": "Vorm", "SSE.Controllers.Main.textStrict": "Strikte modus", "SSE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.
    Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", "SSE.Controllers.Main.textYes": "Ja", "SSE.Controllers.Main.titleLicenseExp": "Licentie vervallen", "SSE.Controllers.Main.titleRecalcFormulas": "Berekenen...", @@ -705,7 +769,7 @@ "SSE.Controllers.Main.txtLines": "Lijnen", "SSE.Controllers.Main.txtMath": "Wiskunde", "SSE.Controllers.Main.txtMinutes": "minuten", - "SSE.Controllers.Main.txtMonths": "maanden", + "SSE.Controllers.Main.txtMonths": "Maanden", "SSE.Controllers.Main.txtMultiSelect": "Meerdere selecteren (Alt + S)", "SSE.Controllers.Main.txtOr": "%1 of %2", "SSE.Controllers.Main.txtPage": "Pagina", @@ -713,6 +777,7 @@ "SSE.Controllers.Main.txtPages": "Pagina's", "SSE.Controllers.Main.txtPreparedBy": "Voorbereid door", "SSE.Controllers.Main.txtPrintArea": "Print_Bereik", + "SSE.Controllers.Main.txtQuarter": "Kwart", "SSE.Controllers.Main.txtQuarters": "Kwartalen ", "SSE.Controllers.Main.txtRectangles": "Rechthoeken", "SSE.Controllers.Main.txtRow": "Rij", @@ -923,7 +988,7 @@ "SSE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", "SSE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maximaal toegestane afbeeldingsgrootte overschreden.", + "SSE.Controllers.Main.uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.", "SSE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", "SSE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", "SSE.Controllers.Main.waitText": "Een moment geduld", @@ -962,9 +1027,11 @@ "SSE.Controllers.Toolbar.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", "SSE.Controllers.Toolbar.textAccent": "Accenten", "SSE.Controllers.Toolbar.textBracket": "Haakjes", + "SSE.Controllers.Toolbar.textDirectional": "Directioneel", "SSE.Controllers.Toolbar.textFontSizeErr": "De ingevoerde waarde is onjuist.
    Voer een numerieke waarde tussen 1 en 409 in.", "SSE.Controllers.Toolbar.textFraction": "Breuken", "SSE.Controllers.Toolbar.textFunction": "Functies", + "SSE.Controllers.Toolbar.textIndicator": "Indicatoren", "SSE.Controllers.Toolbar.textInsert": "Invoegen", "SSE.Controllers.Toolbar.textIntegral": "Integralen", "SSE.Controllers.Toolbar.textLargeOperator": "Grote operators", @@ -974,7 +1041,9 @@ "SSE.Controllers.Toolbar.textOperator": "Operators", "SSE.Controllers.Toolbar.textPivot": "Draaitabel", "SSE.Controllers.Toolbar.textRadical": "Wortels", + "SSE.Controllers.Toolbar.textRating": "Beoordelingen", "SSE.Controllers.Toolbar.textScript": "Scripts", + "SSE.Controllers.Toolbar.textShapes": "Vormen", "SSE.Controllers.Toolbar.textSymbols": "Symbolen", "SSE.Controllers.Toolbar.textWarning": "Waarschuwing", "SSE.Controllers.Toolbar.txtAccent_Accent": "Aigu", @@ -1365,11 +1434,15 @@ "SSE.Views.CellSettings.strWrap": "Tekstterugloop", "SSE.Views.CellSettings.textAngle": "Hoek", "SSE.Views.CellSettings.textBackColor": "Arcering", - "SSE.Views.CellSettings.textBackground": "Arcering", + "SSE.Views.CellSettings.textBackground": "Achtergrondkleur", "SSE.Views.CellSettings.textBorderColor": "Kleur", "SSE.Views.CellSettings.textBorders": "Randstijl", + "SSE.Views.CellSettings.textClearRule": "Wis regels", "SSE.Views.CellSettings.textColor": "Kleuropvulling", + "SSE.Views.CellSettings.textColorScales": "Kleurschalen", + "SSE.Views.CellSettings.textCondFormat": "Conditionele opmaak", "SSE.Views.CellSettings.textControl": "Tekstbeheer", + "SSE.Views.CellSettings.textDataBars": "Gegevensbalken", "SSE.Views.CellSettings.textDirection": "Richting", "SSE.Views.CellSettings.textFill": "Vullen", "SSE.Views.CellSettings.textForeground": "Voorgrondkleur", @@ -1377,7 +1450,10 @@ "SSE.Views.CellSettings.textGradientColor": "Kleur", "SSE.Views.CellSettings.textGradientFill": "Vulling met kleurovergang", "SSE.Views.CellSettings.textIndent": "Inspringen ", + "SSE.Views.CellSettings.textItems": "Items", "SSE.Views.CellSettings.textLinear": "Lineair", + "SSE.Views.CellSettings.textManageRule": "Regels beheren", + "SSE.Views.CellSettings.textNewRule": "Nieuwe regel", "SSE.Views.CellSettings.textNoFill": "Geen vulling", "SSE.Views.CellSettings.textOrientation": "Tekstoriëntatie", "SSE.Views.CellSettings.textPattern": "Patroon", @@ -1385,6 +1461,10 @@ "SSE.Views.CellSettings.textPosition": "Positie", "SSE.Views.CellSettings.textRadial": "Radiaal", "SSE.Views.CellSettings.textSelectBorders": "Selecteer de randen die u wilt wijzigen door de hierboven gekozen stijl toe te passen", + "SSE.Views.CellSettings.textSelection": "Van huidige selectie", + "SSE.Views.CellSettings.textThisPivot": "Van deze draaitabel", + "SSE.Views.CellSettings.textThisSheet": "Van dit werkblad", + "SSE.Views.CellSettings.textThisTable": "Van deze tabel", "SSE.Views.CellSettings.tipAddGradientPoint": "Kleurovergangpunt toevoegen", "SSE.Views.CellSettings.tipAll": "Buitenrand en alle binnenlijnen instellen", "SSE.Views.CellSettings.tipBottom": "Alleen buitenrand onder instellen", @@ -1596,12 +1676,21 @@ "SSE.Views.CreatePivotDialog.textSelectData": "Gegevens selecteren", "SSE.Views.CreatePivotDialog.textTitle": "Maak een draaitabel", "SSE.Views.CreatePivotDialog.txtEmpty": "Dit veld is vereist", + "SSE.Views.CreateSparklineDialog.textDataRange": "Brongegevensbereik", + "SSE.Views.CreateSparklineDialog.textDestination": "Kies, waar de sparklines geplaatst moeten worden", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Ongeldig celbereik", + "SSE.Views.CreateSparklineDialog.textSelectData": "Gegevens selecteren", + "SSE.Views.CreateSparklineDialog.textTitle": "Sparklines creëren", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Dit veld is vereist", "SSE.Views.DataTab.capBtnGroup": "Groeperen", "SSE.Views.DataTab.capBtnTextCustomSort": "Aangepast sorteren", "SSE.Views.DataTab.capBtnTextDataValidation": "Gegevens validatie", "SSE.Views.DataTab.capBtnTextRemDuplicates": "Verwijder duplicaten", "SSE.Views.DataTab.capBtnTextToCol": "Tekst naar kolommen", "SSE.Views.DataTab.capBtnUngroup": "Groepering opheffen", + "SSE.Views.DataTab.capDataFromText": "Van Tekst/CSV", + "SSE.Views.DataTab.mniFromFile": "Gegevens uit een bestand ophalen", + "SSE.Views.DataTab.mniFromUrl": "Gegevens van een URL ophalen", "SSE.Views.DataTab.textBelow": "Samenvatting rijen onder detail", "SSE.Views.DataTab.textClear": "Duidelijke omtrek", "SSE.Views.DataTab.textColumns": "Kolommen loskoppelen van Groep", @@ -1610,6 +1699,7 @@ "SSE.Views.DataTab.textRightOf": "Overzichtskolommen rechts van detail", "SSE.Views.DataTab.textRows": "Rij loskoppelen van groep", "SSE.Views.DataTab.tipCustomSort": "Aangepast sorteren", + "SSE.Views.DataTab.tipDataFromText": "Gegevens uit een Text/CSV bestand ophalen", "SSE.Views.DataTab.tipDataValidation": "Gegevens validatie", "SSE.Views.DataTab.tipGroup": "Groepeer celbereik", "SSE.Views.DataTab.tipRemDuplicates": "Verwijder dubbele rijen van een blad", @@ -1733,6 +1823,7 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Naar Voren Verplaatsen", "SSE.Views.DocumentHolder.textArrangeFront": "Naar voorgrond brengen", "SSE.Views.DocumentHolder.textAverage": "Gemiddeld", + "SSE.Views.DocumentHolder.textBullets": "Opsommingstekens", "SSE.Views.DocumentHolder.textCount": "AANTAL", "SSE.Views.DocumentHolder.textCrop": "Uitsnijden", "SSE.Views.DocumentHolder.textCropFill": "Vullen", @@ -1751,6 +1842,7 @@ "SSE.Views.DocumentHolder.textMore": "Meer functies", "SSE.Views.DocumentHolder.textMoreFormats": "Meer indelingen", "SSE.Views.DocumentHolder.textNone": "Geen", + "SSE.Views.DocumentHolder.textNumbering": "Nummering", "SSE.Views.DocumentHolder.textReplace": "Afbeelding vervangen", "SSE.Views.DocumentHolder.textRotate": "Draaien", "SSE.Views.DocumentHolder.textRotate270": "Draaien 90° linksom", @@ -1784,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Tekst", "SSE.Views.DocumentHolder.txtColumn": "Hele kolom", "SSE.Views.DocumentHolder.txtColumnWidth": "Kolombreedte instellen", + "SSE.Views.DocumentHolder.txtCondFormat": "Conditionele opmaak", "SSE.Views.DocumentHolder.txtCopy": "Kopiëren", "SSE.Views.DocumentHolder.txtCurrency": "Valuta", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Aangepaste kolombreedte", @@ -1827,7 +1920,7 @@ "SSE.Views.DocumentHolder.txtSortFontColor": "Geselecteerde tekstkleur bovenaan", "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", "SSE.Views.DocumentHolder.txtText": "Tekst", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Geavanceerde tekstinstellingen", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Geavanceerde alinea-instellingen", "SSE.Views.DocumentHolder.txtTime": "Tijd", "SSE.Views.DocumentHolder.txtUngroup": "Groepering opheffen", "SSE.Views.DocumentHolder.txtWidth": "Breedte", @@ -1907,7 +2000,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimaalscheidingsteken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Snel", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Hints voor lettertype", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Altijd op server opslaan (anders op server opslaan bij sluiten document)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Altijd op de server opslaan in plaats van bij het sluiten van het document", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Taal formule", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Voorbeeld: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Weergave van opmerkingen inschakelen", @@ -1920,7 +2013,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Weergave van opgeloste opmerkingen inschakelen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Scheidingsteken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strikt", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Thema", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Thema van de interface", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Duizenden scheidingsteken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Maateenheid", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Gebruik scheidingstekens op basis van regionale instellingen", @@ -1932,31 +2025,54 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "AutoHerstel", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Automatisch opslaan", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Gedeactiveerd", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Opslaan op server", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Tussenliggende versies bewaren", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Elke minuut", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Referentie stijl", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Wit-Russisch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgaars", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "standaard cache modus", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Tsjechisch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Deens", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Duits", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Grieks", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Engels", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spaans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Fins", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Frans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hongaars", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italiaans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Koreaans", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commentaarweergave", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laotiaans", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letlands", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "als OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Noors", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Nederlands", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Pools", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punt", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugees", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Roemeens", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russisch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Alles inschakelen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Schakel alle macro's in zonder een notificatie", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slowaaks", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Sloveens", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Alles uitschakelen", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Schakel alle macro's uit zonder melding", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Zweeds", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turks", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Oekraïens", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamees", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Weergeef notificatie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Schakel alle macro's uit met een melding", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "als Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinees", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Toepassen", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Woordenboek taal", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Negeer woorden in HOOFDLETTERS", @@ -1968,7 +2084,7 @@ "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Werkblad beveiligen", "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Met handtekening", "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Spreadsheet bewerken", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van dit werkblad word verwijderd.
    Weet je zeker dat je door wilt gaan?", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van dit werkblad zal worden verwijderd.
    Weet je zeker dat je door wilt gaan?", "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Deze spreadsheet is beveiligd met een wachtwoord", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Deze spreadsheet moet ondertekend worden.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Geldige handtekeningen zijn toegevoegd aan het werkblad. Dit werkblad is beveiligd tegen aanpassingen.", @@ -1977,7 +2093,8 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Algemeen", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Pagina-instellingen", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Spellingcontrole", - "SSE.Views.FormatRulesEditDlg.fillColor": "Achtergrond kleur", + "SSE.Views.FormatRulesEditDlg.fillColor": "Opvulkleur", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Waarschuwing", "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Kleurenschaal", "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Kleurenschaal", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Alle grenzen", @@ -1990,9 +2107,94 @@ "SSE.Views.FormatRulesEditDlg.textBorder": "Grens", "SSE.Views.FormatRulesEditDlg.textBordersColor": "Randen Kleur", "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Rand Stijl", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Onderranden", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Kan de voorwaardelijke opmaak niet toevoegen.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Middelpunt van de cel", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Verticale binnenranden", + "SSE.Views.FormatRulesEditDlg.textClear": "Wissen", + "SSE.Views.FormatRulesEditDlg.textColor": "Tekstkleur", + "SSE.Views.FormatRulesEditDlg.textContext": "Context", + "SSE.Views.FormatRulesEditDlg.textCustom": "Aangepast", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonale rand naar onder", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonale rand naar boven", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Voer een geldige formule in.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "De formule die u hebt ingevoerd is niet vertaald naar een getal, datum, tijd of tekenreeks.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Voer een waarde in.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "De door u ingevoerde waarde is geen geldig getal, datum, tijd of tekenreeks.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "De waarde voor de {0} moet groter zijn dan de waarde voor de {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Voer een getal in tussen {0} en {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Vullen", + "SSE.Views.FormatRulesEditDlg.textFormat": "Opmaak", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formule", + "SSE.Views.FormatRulesEditDlg.textGradient": "Kleurovergang", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "wanneer {0} {1} en", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "wanneer {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "wanneer de waarde gelijk is aan", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Een of meer reeksen van pictogramgegevens overlappen.
    Verander de pictogramgegevensreeksen zodat deze elkaar niet overlappen.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Pictogramstijl", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Binnenranden", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Ongeldig databereik", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "FOUT! Ongeldig celbereik", + "SSE.Views.FormatRulesEditDlg.textItalic": "Cursief", + "SSE.Views.FormatRulesEditDlg.textItem": "Item", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Links naar rechts", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Linkerranden", + "SSE.Views.FormatRulesEditDlg.textLongBar": "langste balk", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maximale waarde", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Horizontale binnenranden", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Gemiddelde", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minimum waarde", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negatief", "SSE.Views.FormatRulesEditDlg.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Geen randen", + "SSE.Views.FormatRulesEditDlg.textNone": "Geen", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Een of meer van de opgegeven waarden is geen geldig percentage.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "De opgegeven waarde {0} is geen geldig percentage.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Een of meer van de opgegeven waarden is geen geldig percentiel.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "De opgegeven waarde {0} is geen geldig percentiel.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Buitenranden", + "SSE.Views.FormatRulesEditDlg.textPercent": "Procent", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentiel", + "SSE.Views.FormatRulesEditDlg.textPosition": "Positie", + "SSE.Views.FormatRulesEditDlg.textPositive": "Positief", + "SSE.Views.FormatRulesEditDlg.textPresets": "Voorinstellingen", + "SSE.Views.FormatRulesEditDlg.textPreview": "Voorbeeld", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "U kunt geen relatieve verwijzingen gebruiken in voorwaardelijke opmaakcriteria voor kleurschalen, gegevensbalken en pictogrammensets.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Keer pictogrammen volgorde om", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Rechts naar links", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Rechterranden", + "SSE.Views.FormatRulesEditDlg.textRule": "Regel", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Zoals positief", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Gegevens Selecteren", + "SSE.Views.FormatRulesEditDlg.textShortBar": "Kortste balk", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Alleen balken weergeven", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Alleen symbol tonen", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Dit type verwijzing kan niet worden gebruikt in een formule voor voorwaardelijke opmaak.
    Verander de verwijzing naar een enkele cel, of gebruik de verwijzing met een werkbladfunctie, zoals =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Massief", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Doorhalen", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Subscript", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superscript", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Bovenranden", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Onderstrepen", "SSE.Views.FormatRulesEditDlg.tipBorders": "Randen", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Getalnotatie", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Boekhouding", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Valuta", + "SSE.Views.FormatRulesEditDlg.txtDate": "Datum", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Dit veld is vereist", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Breuk", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Algemeen", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Geen icoon", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Getal", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentage", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Wetenschappelijk", + "SSE.Views.FormatRulesEditDlg.txtText": "Tekst", + "SSE.Views.FormatRulesEditDlg.txtTime": "Tijd", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Opmaakregel bewerken", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nieuwe opmaakregel", + "SSE.Views.FormatRulesManagerDlg.guestText": "Gast", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std dev boven het gemiddelde", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 std dev onder het gemiddelde", "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std dev boven het gemiddelde", @@ -2001,7 +2203,39 @@ "SSE.Views.FormatRulesManagerDlg.text3Below": "3 std dev onder het gemiddelde", "SSE.Views.FormatRulesManagerDlg.textAbove": "Boven het gemiddelde", "SSE.Views.FormatRulesManagerDlg.textApply": "Solliciteer naar", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Cel waarde begint met", "SSE.Views.FormatRulesManagerDlg.textBelow": "Onder het gemiddelde", + "SSE.Views.FormatRulesManagerDlg.textBetween": "is tussen {0} en {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Cel waarde", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Gegradeerde kleurenschaal", + "SSE.Views.FormatRulesManagerDlg.textContains": "Cel waarde bevat", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "De waarde van de cel is blanco", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "De cel bevat een fout", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Verwijderen", + "SSE.Views.FormatRulesManagerDlg.textDown": "Verplaats regel naar beneden", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Waarden dupliceren", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Bewerken", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Cel waarde eindigt met", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Gelijk aan of boven het gemiddelde", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Gelijk aan of lager dan het gemiddelde", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Opmaak", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Pictogrammenset", + "SSE.Views.FormatRulesManagerDlg.textNew": "Nieuw", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "is niet tussen {0} en {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Cel waarde bevat niet", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "De waarde van de cel is niet blanco", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "De cel bevat geen fout", + "SSE.Views.FormatRulesManagerDlg.textRules": "Regel", + "SSE.Views.FormatRulesManagerDlg.textScope": "Toon opmaakregels voor", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Gegevens selecteren", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Huidige selectie", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Deze draaitabel", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Dit werkblad", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Deze tabel", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Unieke waarden", + "SSE.Views.FormatRulesManagerDlg.textUp": "Verplaats regel naar boven", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Dit element wordt bewerkt door een andere gebruiker.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Conditionele opmaak", "SSE.Views.FormatSettingsDialog.textCategory": "Categorie", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimaal", "SSE.Views.FormatSettingsDialog.textFormat": "Opmaak", @@ -2117,6 +2351,7 @@ "SSE.Views.HyperlinkSettingsDialog.textTitle": "Instellingen hyperlink", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Dit veld is vereist", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Dit veld moet een URL in de notatie \"http://www.voorbeeld.com\" bevatten", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Dit veld is beperkt tot 2083 tekens", "SSE.Views.ImageSettings.textAdvanced": "Geavanceerde instellingen tonen", "SSE.Views.ImageSettings.textCrop": "Uitsnijden", "SSE.Views.ImageSettings.textCropFill": "Vullen", @@ -2165,6 +2400,7 @@ "SSE.Views.LeftMenu.txtLimit": "Beperk toegang", "SSE.Views.LeftMenu.txtTrial": "TEST MODUS", "SSE.Views.LeftMenu.txtTrialDev": "Proefontwikkelaarsmodus", + "SSE.Views.MacroDialog.textMacro": "Macronaam", "SSE.Views.MacroDialog.textTitle": "Macro toewijzen", "SSE.Views.MainSettingsPrint.okButtonText": "Opslaan", "SSE.Views.MainSettingsPrint.strBottom": "Onder", @@ -2311,7 +2547,7 @@ "SSE.Views.PivotGroupDialog.textGreaterError": "Het eindnummer moet groter zijn dan het startnummer ", "SSE.Views.PivotGroupDialog.textHour": "uren", "SSE.Views.PivotGroupDialog.textMin": "minuten", - "SSE.Views.PivotGroupDialog.textMonth": "maanden", + "SSE.Views.PivotGroupDialog.textMonth": "Maanden", "SSE.Views.PivotGroupDialog.textNumDays": "Aantal dagen ", "SSE.Views.PivotGroupDialog.textQuart": "Kwartalen ", "SSE.Views.PivotGroupDialog.textSec": "Seconden", @@ -2450,7 +2686,7 @@ "SSE.Views.RightMenu.txtCellSettings": "Cel instellingen", "SSE.Views.RightMenu.txtChartSettings": "Grafiekinstellingen", "SSE.Views.RightMenu.txtImageSettings": "Afbeeldingsinstellingen", - "SSE.Views.RightMenu.txtParagraphSettings": "Tekstinstellingen", + "SSE.Views.RightMenu.txtParagraphSettings": "Alinea-instellingen", "SSE.Views.RightMenu.txtPivotSettings": "Draaitabel instellingen", "SSE.Views.RightMenu.txtSettings": "Algemene instellingen", "SSE.Views.RightMenu.txtShapeSettings": "Vorminstellingen", @@ -2479,7 +2715,7 @@ "SSE.Views.ShapeSettings.strPattern": "Patroon", "SSE.Views.ShapeSettings.strShadow": "Weergeef schaduw", "SSE.Views.ShapeSettings.strSize": "Grootte", - "SSE.Views.ShapeSettings.strStroke": "Streek", + "SSE.Views.ShapeSettings.strStroke": "Lijn", "SSE.Views.ShapeSettings.strTransparency": "Ondoorzichtigheid", "SSE.Views.ShapeSettings.strType": "Type", "SSE.Views.ShapeSettings.textAdvanced": "Geavanceerde instellingen tonen", @@ -2582,7 +2818,7 @@ "SSE.Views.SignatureSettings.strSigner": "Ondertekenaar", "SSE.Views.SignatureSettings.strValid": "Geldige handtekeningen", "SSE.Views.SignatureSettings.txtContinueEditing": "Hoe dan ook bewerken", - "SSE.Views.SignatureSettings.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van dit werkblad word verwijderd.
    Weet je zeker dat je door wilt gaan?", + "SSE.Views.SignatureSettings.txtEditWarning": "Aanpassingen zorgen ervoor dat de handtekening van dit werkblad zal worden verwijderd.
    Weet je zeker dat je door wilt gaan?", "SSE.Views.SignatureSettings.txtRemoveWarning": "Wilt u deze handtekening verwijderen?
    Het kan niet ongedaan worden gemaakt. ", "SSE.Views.SignatureSettings.txtRequestedSignatures": "Deze spreadsheet moet ondertekend worden.", "SSE.Views.SignatureSettings.txtSigned": "Geldige handtekeningen zijn toegevoegd aan het werkblad. Dit werkblad is beveiligd tegen aanpassingen.", @@ -2731,7 +2967,7 @@ "SSE.Views.Spellcheck.txtSpelling": "Spelling", "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Kopiëren naar einde)", "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Verplaatsen naar einde)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Kopiëren vóór blad", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Plakken vóór blad", "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Vóór blad plaatsen", "SSE.Views.Statusbar.filteredRecordsText": "{0} van {1} records gefilterd", "SSE.Views.Statusbar.filteredText": "Filtermodus", @@ -2827,7 +3063,7 @@ "SSE.Views.TextArtSettings.strForeground": "Voorgrondkleur", "SSE.Views.TextArtSettings.strPattern": "Patroon", "SSE.Views.TextArtSettings.strSize": "Grootte", - "SSE.Views.TextArtSettings.strStroke": "Streek", + "SSE.Views.TextArtSettings.strStroke": "Lijn", "SSE.Views.TextArtSettings.strTransparency": "Ondoorzichtigheid", "SSE.Views.TextArtSettings.strType": "Type", "SSE.Views.TextArtSettings.textAngle": "Hoek", @@ -2867,6 +3103,7 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Hout", "SSE.Views.Toolbar.capBtnAddComment": "Opmerking toevoegen", + "SSE.Views.Toolbar.capBtnColorSchemas": "Kleurenschema", "SSE.Views.Toolbar.capBtnComment": "Opmerking", "SSE.Views.Toolbar.capBtnInsHeader": "Kopteksten/voetteksten", "SSE.Views.Toolbar.capBtnInsSlicer": "Slicers", @@ -2886,6 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", "SSE.Views.Toolbar.capInsertImage": "Afbeelding", "SSE.Views.Toolbar.capInsertShape": "Vorm", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", "SSE.Views.Toolbar.capInsertTable": "Tabel", "SSE.Views.Toolbar.capInsertText": "Tekstvak", "SSE.Views.Toolbar.mniImageFromFile": "Afbeelding uit bestand", @@ -2909,8 +3147,11 @@ "SSE.Views.Toolbar.textBottomBorders": "Onderranden", "SSE.Views.Toolbar.textCenterBorders": "Verticale binnenranden", "SSE.Views.Toolbar.textClearPrintArea": "Wis afdrukgebied", + "SSE.Views.Toolbar.textClearRule": "Wis Regels", "SSE.Views.Toolbar.textClockwise": "Rechtsom draaien", + "SSE.Views.Toolbar.textColorScales": "Kleurschalen", "SSE.Views.Toolbar.textCounterCw": "Linksom draaien", + "SSE.Views.Toolbar.textDataBars": "Gegevensbalken", "SSE.Views.Toolbar.textDelLeft": "Cellen naar links verplaatsen", "SSE.Views.Toolbar.textDelUp": "Cellen naar boven verplaatsen", "SSE.Views.Toolbar.textDiagDownBorder": "Diagonale rand naar onder", @@ -2924,9 +3165,11 @@ "SSE.Views.Toolbar.textInsideBorders": "Binnenranden", "SSE.Views.Toolbar.textInsRight": "Cellen naar rechts verplaatsen", "SSE.Views.Toolbar.textItalic": "Cursief", + "SSE.Views.Toolbar.textItems": "Items", "SSE.Views.Toolbar.textLandscape": "Liggend", "SSE.Views.Toolbar.textLeft": "Links:", "SSE.Views.Toolbar.textLeftBorders": "Linkerranden", + "SSE.Views.Toolbar.textManageRule": "Regels beheren", "SSE.Views.Toolbar.textManyPages": "Pagina's", "SSE.Views.Toolbar.textMarginsLast": "Laatste gebruik", "SSE.Views.Toolbar.textMarginsNarrow": "Smal", @@ -2936,6 +3179,7 @@ "SSE.Views.Toolbar.textMoreFormats": "Meer indelingen", "SSE.Views.Toolbar.textMorePages": "Meer pagina's", "SSE.Views.Toolbar.textNewColor": "Nieuwe aangepaste kleur toevoegen", + "SSE.Views.Toolbar.textNewRule": "Nieuwe regel", "SSE.Views.Toolbar.textNoBorders": "Geen randen", "SSE.Views.Toolbar.textOnePage": "Pagina", "SSE.Views.Toolbar.textOutBorders": "Buitenranden", @@ -2949,6 +3193,7 @@ "SSE.Views.Toolbar.textRotateUp": "Tekst omhoog draaien", "SSE.Views.Toolbar.textScale": "Schaal", "SSE.Views.Toolbar.textScaleCustom": "Aangepast", + "SSE.Views.Toolbar.textSelection": "Van huidige selectie", "SSE.Views.Toolbar.textSetPrintArea": "Stel het afdrukgebied in", "SSE.Views.Toolbar.textStrikeout": "Doorhalen", "SSE.Views.Toolbar.textSubscript": "Subscript", @@ -2958,11 +3203,14 @@ "SSE.Views.Toolbar.textTabData": "Gegevens", "SSE.Views.Toolbar.textTabFile": "Bestand", "SSE.Views.Toolbar.textTabFormula": "Formule", - "SSE.Views.Toolbar.textTabHome": "Home", + "SSE.Views.Toolbar.textTabHome": "Start", "SSE.Views.Toolbar.textTabInsert": "Invoegen", "SSE.Views.Toolbar.textTabLayout": "Pagina-indeling", "SSE.Views.Toolbar.textTabProtect": "Beveiliging", "SSE.Views.Toolbar.textTabView": "Bekijken", + "SSE.Views.Toolbar.textThisPivot": "Van deze draaitabel", + "SSE.Views.Toolbar.textThisSheet": "Van dit werkblad", + "SSE.Views.Toolbar.textThisTable": "Van deze tabel", "SSE.Views.Toolbar.textTop": "Boven:", "SSE.Views.Toolbar.textTopBorders": "Bovenranden", "SSE.Views.Toolbar.textUnderline": "Onderstrepen", @@ -2983,6 +3231,7 @@ "SSE.Views.Toolbar.tipChangeChart": "Grafiektype wijzigen", "SSE.Views.Toolbar.tipClearStyle": "Wissen", "SSE.Views.Toolbar.tipColorSchemas": "Kleurenschema wijzigen", + "SSE.Views.Toolbar.tipCondFormat": "Conditionele opmaak", "SSE.Views.Toolbar.tipCopy": "Kopiëren", "SSE.Views.Toolbar.tipCopyStyle": "Stijl kopiëren", "SSE.Views.Toolbar.tipDecDecimal": "Minder decimalen", @@ -3010,6 +3259,7 @@ "SSE.Views.Toolbar.tipInsertOpt": "Cellen invoegen", "SSE.Views.Toolbar.tipInsertShape": "AutoVorm invoegen", "SSE.Views.Toolbar.tipInsertSlicer": "Slicer invoegen", + "SSE.Views.Toolbar.tipInsertSpark": "Sparkline invoegen", "SSE.Views.Toolbar.tipInsertSymbol": "Symbool toevoegen", "SSE.Views.Toolbar.tipInsertTable": "Tabel invoegen", "SSE.Views.Toolbar.tipInsertText": "Tekstvak invoegen", @@ -3020,7 +3270,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Paginastand", "SSE.Views.Toolbar.tipPageSize": "Paginaformaat", "SSE.Views.Toolbar.tipPaste": "Plakken", - "SSE.Views.Toolbar.tipPrColor": "Achtergrondkleur", + "SSE.Views.Toolbar.tipPrColor": "Opvulkleur", "SSE.Views.Toolbar.tipPrint": "Afdrukken", "SSE.Views.Toolbar.tipPrintArea": "Print bereik", "SSE.Views.Toolbar.tipPrintTitles": "Titels afdrukken", @@ -3085,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Grijswaarden", "SSE.Views.Toolbar.txtScheme20": "Stedelijk", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "Nieuw kantoor", "SSE.Views.Toolbar.txtScheme3": "Toppunt", "SSE.Views.Toolbar.txtScheme4": "Aspect", "SSE.Views.Toolbar.txtScheme5": "Civiel", @@ -3161,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Nieuw", "SSE.Views.ViewTab.textDefault": "Standaard", "SSE.Views.ViewTab.textFormula": "Formule balk", + "SSE.Views.ViewTab.textFreezeCol": "Blokkeer Eerste Kolom", + "SSE.Views.ViewTab.textFreezeRow": "Blokkeer Top Rij", "SSE.Views.ViewTab.textGridlines": "Rasterlijnen", "SSE.Views.ViewTab.textHeadings": "Koppen", "SSE.Views.ViewTab.textManager": "Weergave beheren", + "SSE.Views.ViewTab.textUnFreeze": "Blokkering deelvensters opheffen", + "SSE.Views.ViewTab.textZeros": "Nullen weergeven", "SSE.Views.ViewTab.textZoom": "Zoomen", "SSE.Views.ViewTab.tipClose": "Sluit bladweergave", "SSE.Views.ViewTab.tipCreate": "Maak bladweergave", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index ecc982da3..913875121 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -161,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Funções Reconhecidas", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "As seguintes expressões são expressões matemáticas reconhecidas. Eles não ficarão em itálico automaticamente.", "Common.Views.AutoCorrectDialog.textReplace": "Substituir", + "Common.Views.AutoCorrectDialog.textReplaceText": "Substituir ao Digitar", "Common.Views.AutoCorrectDialog.textReplaceType": "Substitua o texto enquanto você digita", "Common.Views.AutoCorrectDialog.textReset": "Redefinir", "Common.Views.AutoCorrectDialog.textResetAll": "Voltar para predefinições", @@ -417,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Remover Duplicatas", "SSE.Controllers.DataTab.txtRemoveDataValidation": "A seleção contém mais de um tipo de validação.
    Configurações de corrente de partida e continua?", "SSE.Controllers.DataTab.txtRemSelected": "Remover em selecionado", + "SSE.Controllers.DataTab.txtUrlTitle": "Cole um URL de dados", "SSE.Controllers.DocumentHolder.alignmentText": "Alinhamento", "SSE.Controllers.DocumentHolder.centerText": "Centro", "SSE.Controllers.DocumentHolder.deleteColumnText": "Excluir coluna", @@ -599,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.
    Você tem certeza que quer continuar?", "SSE.Controllers.Main.confirmMoveCellRange": "O intervalo de célula de destino pode conter dados. Continuar a operação?", "SSE.Controllers.Main.confirmPutMergeRange": "Os dados fontes contêm células mescladas.
    Elas foram desmescladas antes de serem coladas na tabela.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "As fórmulas na linha do cabeçalho serão removidas e convertidas em texto estático.
    Deseja continuar?", "SSE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.", "SSE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documentos.", "SSE.Controllers.Main.criticalErrorTitle": "Erro", @@ -649,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", "SSE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", "SSE.Controllers.Main.errorLabledColumnsPivot": "Para criar uma tabela dinâmica, você deve usar os dados organizados como uma lista com colunas rotuladas.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "A referência para o local ou intervalo de dados não é válida.", "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", "SSE.Controllers.Main.errorLockedCellPivot": "Você não pode alterar a data em uma tabela dinâmica.", "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", @@ -672,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "O documento ficou sem edição por muito tempo. Atualize a página.", "SSE.Controllers.Main.errorSessionToken": "A conexão com o servidor foi interrompida. Atualize a página.", "SSE.Controllers.Main.errorSetPassword": "Não foi possível definir a senha.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "A referência de local não é válida porque as células não estão todas na mesma coluna ou linha.
    Selecione células que estão todas em uma única coluna ou linha.", "SSE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
    preço de abertura, preço máx., preço mín., preço de fechamento.", "SSE.Controllers.Main.errorToken": "O token de segurança do documento não foi formado corretamente.
    Entre em contato com o administrador do Document Server.", "SSE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou.
    Entre em contato com o administrador do Document Server.", @@ -1871,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Texto", "SSE.Views.DocumentHolder.txtColumn": "Coluna inteira", "SSE.Views.DocumentHolder.txtColumnWidth": "Largura da coluna", + "SSE.Views.DocumentHolder.txtCondFormat": "Formatação condicional", "SSE.Views.DocumentHolder.txtCopy": "Copiar", "SSE.Views.DocumentHolder.txtCurrency": "Moeda", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Personalizar largura da coluna", @@ -2180,6 +2186,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Este campo é obrigatório", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fração", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Geral", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sem ícone", "SSE.Views.FormatRulesEditDlg.txtNumber": "Número", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Porcentagem", "SSE.Views.FormatRulesEditDlg.txtScientific": "Científico", @@ -3116,7 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hiperlink", "SSE.Views.Toolbar.capInsertImage": "Imagem", "SSE.Views.Toolbar.capInsertShape": "Forma", - "SSE.Views.Toolbar.capInsertSpark": "Minigráficos", + "SSE.Views.Toolbar.capInsertSpark": "Minigráfico", "SSE.Views.Toolbar.capInsertTable": "Tabela", "SSE.Views.Toolbar.capInsertText": "Caixa de texto", "SSE.Views.Toolbar.mniImageFromFile": "Imagem do arquivo", @@ -3328,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Escala de cinza", "SSE.Views.Toolbar.txtScheme20": "Urbano", "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "Novo Office", "SSE.Views.Toolbar.txtScheme3": "Ápice", "SSE.Views.Toolbar.txtScheme4": "Aspecto", "SSE.Views.Toolbar.txtScheme5": "Cívico", @@ -3404,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Novo", "SSE.Views.ViewTab.textDefault": "Padrão", "SSE.Views.ViewTab.textFormula": "Barra de fórmula", + "SSE.Views.ViewTab.textFreezeCol": "Congelar a primeira coluna", + "SSE.Views.ViewTab.textFreezeRow": "Congelar linha superior", "SSE.Views.ViewTab.textGridlines": "Linhas de grade", "SSE.Views.ViewTab.textHeadings": "Títulos", "SSE.Views.ViewTab.textManager": "Gerenciamento de visualização", + "SSE.Views.ViewTab.textUnFreeze": "Descongelar Painéis", + "SSE.Views.ViewTab.textZeros": "Mostrar zeros", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Fechar visualização de folha", "SSE.Views.ViewTab.tipCreate": "Criar visualização de folha", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index ed82fffb2..e61ad775e 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -91,6 +91,14 @@ "Common.define.conditionalData.textNotEqual": "Nu este egal cu", "Common.define.conditionalData.textNotErrors": "Nu conține erori", "Common.define.conditionalData.textText": "Text", + "Common.define.conditionalData.textThisMonth": "Luna curentă", + "Common.define.conditionalData.textThisWeek": "Această săptămână", + "Common.define.conditionalData.textToday": "Astăzi", + "Common.define.conditionalData.textTomorrow": "Mâine", + "Common.define.conditionalData.textTop": "Sus", + "Common.define.conditionalData.textUnique": "Unice", + "Common.define.conditionalData.textValue": "Valoarea este", + "Common.define.conditionalData.textYesterday": "Ieri", "Common.Translation.warnFileLocked": "Fișierul este editat într-o altă aplicație. Puteți continua să editați și să-l salvați ca o copie.", "Common.Translation.warnFileLockedBtnEdit": "Crează o copie", "Common.Translation.warnFileLockedBtnView": "Deschide vizualizarea", @@ -153,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Funcțiile recunoscute", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Următoarele expresii sunt expresii matematice recuniscute. Acestea nu vor fi redate automat cu litere cursive.", "Common.Views.AutoCorrectDialog.textReplace": "Înlocuire", + "Common.Views.AutoCorrectDialog.textReplaceText": "Înlocuire în timpul tastării", "Common.Views.AutoCorrectDialog.textReplaceType": "Înlocuire text în timpul tastării", "Common.Views.AutoCorrectDialog.textReset": "Resetare", "Common.Views.AutoCorrectDialog.textResetAll": "Restabilire setărilor implicite", @@ -238,6 +247,7 @@ "Common.Views.OpenDialog.txtComma": "Virgulă", "Common.Views.OpenDialog.txtDelimiter": "Delimitator", "Common.Views.OpenDialog.txtDestData": "Alegeți locul unde se va plasa datele", + "Common.Views.OpenDialog.txtEmpty": "Câmp obligatoriu", "Common.Views.OpenDialog.txtEncoding": "Codificare", "Common.Views.OpenDialog.txtIncorrectPwd": "Parolă incorectă", "Common.Views.OpenDialog.txtOpenFile": "Introduceți parola pentru deschidere fișier", @@ -397,6 +407,7 @@ "Common.Views.UserNameDialog.textLabel": "Etichetă:", "Common.Views.UserNameDialog.textLabelError": "Etichetă trebuie completată", "SSE.Controllers.DataTab.textColumns": "Coloane", + "SSE.Controllers.DataTab.textEmptyUrl": "Trebuie să specificaţi URL-ul.", "SSE.Controllers.DataTab.textRows": "Rânduri", "SSE.Controllers.DataTab.textWizard": "Text în coloane", "SSE.Controllers.DataTab.txtDataValidation": "Validarea datelor", @@ -407,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Eliminare dubluri", "SSE.Controllers.DataTab.txtRemoveDataValidation": "Zona selectată conține mai multe tipuri de validare.
    Vreți să ștergeți setările curente și să continuați? ", "SSE.Controllers.DataTab.txtRemSelected": "Continuare în selecția curentă", + "SSE.Controllers.DataTab.txtUrlTitle": "Lipiti adresa URL a datelor", "SSE.Controllers.DocumentHolder.alignmentText": "Aliniere", "SSE.Controllers.DocumentHolder.centerText": "La centru", "SSE.Controllers.DocumentHolder.deleteColumnText": "Ștergere coloana", @@ -589,6 +601,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
    Sunteți sigur că doriți să continuați?", "SSE.Controllers.Main.confirmMoveCellRange": "Celulele din zonă de destinație pot conține datele. Doriți să continuați?", "SSE.Controllers.Main.confirmPutMergeRange": "Datele sursă conțin celule imbinate.
    Celulele au fost scindate înainte de lipire în tabel", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formile din rând antet vor fi eliminate și transfomate în text static.
    Sigur doriți să continuați?", "SSE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", "SSE.Controllers.Main.criticalErrorExtText": "Apăsați OK pentru a vă întoarce la lista cu documente", "SSE.Controllers.Main.criticalErrorTitle": "Eroare", @@ -639,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", "SSE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", "SSE.Controllers.Main.errorLabledColumnsPivot": "Pentru a crea o tabelă Pivot, datele trebuie să fie organizate sub formă de listă care conține etichete pentru fiecare coloană. ", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Referința de localizare sau zona de date nu este validă.", "SSE.Controllers.Main.errorLockedAll": "Operațiunea nu poate fi efectuată deoarece foaia a fost blocată de către un alt utilizator.", "SSE.Controllers.Main.errorLockedCellPivot": "Nu puteți modifica datele manipulând tabel Pivot.", "SSE.Controllers.Main.errorLockedWorksheetRename": "Deocamdată, nu puteți redenumi foaia deoarece foaia este redenumită de către un alt utilizator", @@ -647,21 +661,22 @@ "SSE.Controllers.Main.errorMoveSlicerError": "Slicere din tabel nu pot fi copiate dintr-un registru de calcul în altul.
    Încercați din nou și selectați întregul tabel și slicere.", "SSE.Controllers.Main.errorMultiCellFormula": "Formule de matrice cu mai multe celule nu sunt permise în tabele.", "SSE.Controllers.Main.errorNoDataToParse": "Datele pentru parsare nu au fost selectate.", - "SSE.Controllers.Main.errorOpenWarning": "O formulă din fișier depășește limita maximă de 8192 caractere.
    Formulă a fost eliminată.", + "SSE.Controllers.Main.errorOpenWarning": "O formulă din fișier depășește limita maximă de 8192 caractere.
    Formula a fost eliminată.", "SSE.Controllers.Main.errorOperandExpected": "Sintaxa funcției incorectă. Verificați încadrarea în paranteze - '(' sau ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Zona de copiere nu corespunde zonei de lipire.
    Pentru lipirea celulelor copiate, selectați o zonă de aceeași demensiune și faceți clic pe prima celula din rând.", + "SSE.Controllers.Main.errorPasteMaxRange": "Zona de copiere nu corespunde zonei de lipire.
    Pentru lipirea celulelor copiate, selectați o zonă de aceeași demensiune sau faceți clic pe prima celula din rând.", "SSE.Controllers.Main.errorPasteMultiSelect": "Operaţia nu poate fi efectuată asupra zonelor selectate multiple.
    Selectați o singură zonă și încercați încă o dată.", "SSE.Controllers.Main.errorPasteSlicerError": "Slicere din tabel nu pot fi copiate dintr-un registru de calcul în altul.", "SSE.Controllers.Main.errorPivotGroup": "Obiectele selectate nu pot fi combinate într-un grup.", "SSE.Controllers.Main.errorPivotOverlap": "Un raport Pivot Table nu poate suprapune un tabel.", "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Raportul Pivot Table a fost salvat fără datele subiacente.
    Faceți clic pe butonul Actualizare ca raportul să fie actualizat.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Din păcate, imprimarea a 1500 de pagini deodată nu este posibilă la veriunea curentă
    Această restricție va fi eliminată într-o versiunea nouă.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Din păcate, imprimarea a 1500 de pagini deodată nu este posibilă la versiunea curentă
    Această restricție va fi eliminată într-o versiunea nouă.", "SSE.Controllers.Main.errorProcessSaveResult": "Salverea a eșuat", "SSE.Controllers.Main.errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", "SSE.Controllers.Main.errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", "SSE.Controllers.Main.errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", "SSE.Controllers.Main.errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", "SSE.Controllers.Main.errorSetPassword": "Setarea parolei eșuată.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Referința de localizare nu este validă deoarece celulele nu sunt dintr-o singură coloană sau rând.
    Selectați celulele dintr-o singură coloană sau rând.", "SSE.Controllers.Main.errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", "SSE.Controllers.Main.errorToken": "Token de securitate din document este format în mod incorect.
    Contactați administratorul dvs. de Server Documente.", "SSE.Controllers.Main.errorTokenExpire": "Token de securitate din document a expirat.
    Contactați administratorul dvs. de Server Documente.", @@ -724,6 +739,7 @@ "SSE.Controllers.Main.textShape": "Forma", "SSE.Controllers.Main.textStrict": "Modul strict", "SSE.Controllers.Main.textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.
    Faceți clic pe Modul strict ca să comutați la modul Strict de editare colaborativă și să nu intrați în conflict cu alte persoane. Toate modificările vor fi trimise numai după ce le salvați. Ulilizati Setări avansate ale editorului ca să comutați între moduri de editare colaborativă. ", + "SSE.Controllers.Main.textTryUndoRedoWarn": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", "SSE.Controllers.Main.textYes": "Da", "SSE.Controllers.Main.titleLicenseExp": "Licența a expirat", "SSE.Controllers.Main.titleRecalcFormulas": "Se calculează...", @@ -749,11 +765,11 @@ "SSE.Controllers.Main.txtFile": "Fişier", "SSE.Controllers.Main.txtGrandTotal": "Totaluri generale", "SSE.Controllers.Main.txtGroup": "Grup", - "SSE.Controllers.Main.txtHours": "Ore", + "SSE.Controllers.Main.txtHours": "Oră", "SSE.Controllers.Main.txtLines": "Linii", "SSE.Controllers.Main.txtMath": "Matematica", "SSE.Controllers.Main.txtMinutes": "Minute", - "SSE.Controllers.Main.txtMonths": "Luni", + "SSE.Controllers.Main.txtMonths": "Lună", "SSE.Controllers.Main.txtMultiSelect": "Selecții multiple (Alt+S)", "SSE.Controllers.Main.txtOr": "%1 sau %2", "SSE.Controllers.Main.txtPage": "Pagina", @@ -968,7 +984,7 @@ "SSE.Controllers.Main.txtXAxis": "Axa X", "SSE.Controllers.Main.txtYAxis": "Axa Y", "SSE.Controllers.Main.txtYears": "Ani", - "SSE.Controllers.Main.unknownErrorText": "Eroare Necunoscut.", + "SSE.Controllers.Main.unknownErrorText": "Eroare necunoscută.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "SSE.Controllers.Main.uploadImageExtMessage": "Format de imagine nerecunoscut.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", @@ -1398,7 +1414,7 @@ "SSE.Views.AutoFilterDialog.txtReapply": "Reaplicare", "SSE.Views.AutoFilterDialog.txtSortCellColor": "Sortare pe baza culoare celulă", "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sortare pe baza culoare font", - "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "de la cea mai mare la cea mai mică valoare", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sortare de la cea mai mare la cea mai mică valoare", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sortare de la cea mai mică la cea mai mare valoare", "SSE.Views.AutoFilterDialog.txtSortOption": "Mai multe opțiuni de sortare...", "SSE.Views.AutoFilterDialog.txtTextFilter": "Filtru text", @@ -1665,6 +1681,7 @@ "SSE.Views.CreateSparklineDialog.textInvalidRange": "Zona de celule nu este validă", "SSE.Views.CreateSparklineDialog.textSelectData": "Selectare date", "SSE.Views.CreateSparklineDialog.textTitle": "Creare diagrame sparkline", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Câmp obligatoriu", "SSE.Views.DataTab.capBtnGroup": "Grupare", "SSE.Views.DataTab.capBtnTextCustomSort": "Sortare particularizată", "SSE.Views.DataTab.capBtnTextDataValidation": "Validarea datelor", @@ -1859,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Întreaga coloană", "SSE.Views.DocumentHolder.txtColumnWidth": "Setarea coloanei la lățime", + "SSE.Views.DocumentHolder.txtCondFormat": "Formatarea condiționată", "SSE.Views.DocumentHolder.txtCopy": "Copiere", "SSE.Views.DocumentHolder.txtCurrency": "Monedă", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Lățimea particularizată coloană ", @@ -2048,6 +2066,9 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Se dezactivează toate", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Se dezactivează toate macrocomenzile, fără notificare", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Suedeză", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turcă", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ucraineană", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnameză", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Afișare notificări", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Se dezactivează toate macrocomenzile, cu notificare ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ca Windows", @@ -2073,6 +2094,7 @@ "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Setare pagină", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Verificarea ortografică", "SSE.Views.FormatRulesEditDlg.fillColor": "Culoare de umplere", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avertisment", "SSE.Views.FormatRulesEditDlg.text2Scales": "Scară cu două culori", "SSE.Views.FormatRulesEditDlg.text3Scales": "Scară cu trei culori", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Toate borduri", @@ -2096,12 +2118,18 @@ "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Bordură diagonală descendentă", "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Bordură diagonală ascendentă", "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Introduceți o formulă valabilă.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "Formula pe care ați introdus-o nu evaluează număr, data, ora sau șir.", "SSE.Views.FormatRulesEditDlg.textEmptyText": "Introduceți o valoare.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "Valoarea pe care ați introdus-o nu este un număr, data, ora sau șir valid.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "Valoarea pentru {0} trebuie să fie mai mare mai mare decât {1}.", "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Introduceți cifra între {0} și {1}.", "SSE.Views.FormatRulesEditDlg.textFill": "Umplere", "SSE.Views.FormatRulesEditDlg.textFormat": "Formatare", "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", "SSE.Views.FormatRulesEditDlg.textGradient": "Gradient", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "atunci când {0} {1} și", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "atunci când {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "atunci când valoarea este", "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Datele din una sau mai multe zone de pictograme se suprapun.
    Ajustați valorile pentru zonele de pictograme ca zonele să nu se suprapună.", "SSE.Views.FormatRulesEditDlg.textIconStyle": "Stil icoană", "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Borduri în interiorul ", @@ -2123,7 +2151,9 @@ "SSE.Views.FormatRulesEditDlg.textNoBorders": "Fără borduri", "SSE.Views.FormatRulesEditDlg.textNone": "Niciunul", "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Una sau mai multe valori specificate sunt valorile procentuale nevalide", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "Valoarea specificată {0} pentru procentaj nu este validă.", "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Una sau mail multe valori specificate sunt valorile de percentilă nevalide.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "Valoarea specificată {0} pentru percentilă nu este validă.", "SSE.Views.FormatRulesEditDlg.textOutBorders": "Borduri în exteriorul", "SSE.Views.FormatRulesEditDlg.textPercent": "Procent", "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentilă", @@ -2131,6 +2161,7 @@ "SSE.Views.FormatRulesEditDlg.textPositive": "Pozitiv", "SSE.Views.FormatRulesEditDlg.textPresets": "Presetări", "SSE.Views.FormatRulesEditDlg.textPreview": "Previzualizare", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Utilizarea referințelor relative nu este acceptată pentru formatarea condiţionată utilizând scală de culori, bare de date sau seturi de pictogramă.", "SSE.Views.FormatRulesEditDlg.textReverse": "Ordine pictograme inversată", "SSE.Views.FormatRulesEditDlg.textRight2Left": "Dreapta la stânga", "SSE.Views.FormatRulesEditDlg.textRightBorders": "Borduri din dreapta", @@ -2140,21 +2171,27 @@ "SSE.Views.FormatRulesEditDlg.textShortBar": "bară cea mai scurtă", "SSE.Views.FormatRulesEditDlg.textShowBar": "Se afișează doar bara", "SSE.Views.FormatRulesEditDlg.textShowIcon": "Se afișează doar pictograma", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Acest tip de referință nu este acceptat în formula pentru formatarea condiționată.
    Faceți referire la o singură celulă sau utilizați o funcție de referință din foia de calcul cum este =SUM(A1:B5).", "SSE.Views.FormatRulesEditDlg.textSolid": "Solidă", "SSE.Views.FormatRulesEditDlg.textStrikeout": "Tăiere cu o linie", "SSE.Views.FormatRulesEditDlg.textSubscript": "Indice", "SSE.Views.FormatRulesEditDlg.textSuperscript": "Exponent", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Borduri de sus", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Subliniat", "SSE.Views.FormatRulesEditDlg.tipBorders": "Borduri", "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Formatul de număr", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Contabilitate", "SSE.Views.FormatRulesEditDlg.txtCurrency": "Monedă", "SSE.Views.FormatRulesEditDlg.txtDate": "Dată", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Câmp obligatoriu", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fracție", "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Nicio pictogramă", "SSE.Views.FormatRulesEditDlg.txtNumber": "Număr", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Procentaj", "SSE.Views.FormatRulesEditDlg.txtScientific": "Științific ", "SSE.Views.FormatRulesEditDlg.txtText": "Text", + "SSE.Views.FormatRulesEditDlg.txtTime": "Oră", "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Editare regulă de formatare", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nouă regulă de formatare", "SSE.Views.FormatRulesManagerDlg.guestText": "Invitat", @@ -2192,8 +2229,12 @@ "SSE.Views.FormatRulesManagerDlg.textScope": "Afișare reguli formatare pentru", "SSE.Views.FormatRulesManagerDlg.textSelectData": "Selectare date", "SSE.Views.FormatRulesManagerDlg.textSelection": "Selecția curentă", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Acest tabel pivot", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Această foaie de lucru ", "SSE.Views.FormatRulesManagerDlg.textThisTable": "Acest tabel", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Valorile unice", "SSE.Views.FormatRulesManagerDlg.textUp": "Mutare regulă în sus", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Acest element este editat de către un alt utilizator.", "SSE.Views.FormatRulesManagerDlg.txtTitle": "Formatarea condiționată", "SSE.Views.FormatSettingsDialog.textCategory": "Categorie", "SSE.Views.FormatSettingsDialog.textDecimal": "Zecimal", @@ -2504,9 +2545,9 @@ "SSE.Views.PivotGroupDialog.textEnd": "Se încheie la", "SSE.Views.PivotGroupDialog.textError": "Acest câmp este o valoare numerică", "SSE.Views.PivotGroupDialog.textGreaterError": "Numărul la sfârșit nu poate fi mai mic decât numărul la început ", - "SSE.Views.PivotGroupDialog.textHour": "Ore", + "SSE.Views.PivotGroupDialog.textHour": "Oră", "SSE.Views.PivotGroupDialog.textMin": "Minute", - "SSE.Views.PivotGroupDialog.textMonth": "Luni", + "SSE.Views.PivotGroupDialog.textMonth": "Lună", "SSE.Views.PivotGroupDialog.textNumDays": "Numărul de zile", "SSE.Views.PivotGroupDialog.textQuart": "Trimestre", "SSE.Views.PivotGroupDialog.textSec": "Secunde", @@ -2526,11 +2567,11 @@ "SSE.Views.PivotSettings.txtFieldSettings": "Setări câmp", "SSE.Views.PivotSettings.txtMoveBegin": "Mutare la început", "SSE.Views.PivotSettings.txtMoveColumn": "Se mută la etichetele de coloană", - "SSE.Views.PivotSettings.txtMoveDown": "Deplasare în jos", + "SSE.Views.PivotSettings.txtMoveDown": "Mutare în jos", "SSE.Views.PivotSettings.txtMoveEnd": "Mutare la sfârșit", "SSE.Views.PivotSettings.txtMoveFilter": "Se mută la filtrul de raport", "SSE.Views.PivotSettings.txtMoveRow": "Se mută la etichetele de rând", - "SSE.Views.PivotSettings.txtMoveUp": "Deplasare în sus", + "SSE.Views.PivotSettings.txtMoveUp": "Mutare în sus", "SSE.Views.PivotSettings.txtMoveValues": "Se mută la valori", "SSE.Views.PivotSettings.txtRemove": "Ștergere câmp", "SSE.Views.PivotSettingsAdvanced.strLayout": "Nume și aspect", @@ -2864,7 +2905,7 @@ "SSE.Views.SortDialog.textCopy": "Copiere nivel", "SSE.Views.SortDialog.textDelete": "Ștergere nivel", "SSE.Views.SortDialog.textDesc": "Descendent", - "SSE.Views.SortDialog.textDown": "Mutare în jos", + "SSE.Views.SortDialog.textDown": "Mutare cu un nivel mai jos", "SSE.Views.SortDialog.textFontColor": "Culoare font", "SSE.Views.SortDialog.textLeft": "Stânga", "SSE.Views.SortDialog.textMoreCols": "(Mai multe coloane...)", @@ -2878,7 +2919,7 @@ "SSE.Views.SortDialog.textSortBy": "Sortare după", "SSE.Views.SortDialog.textThenBy": "Apoi după", "SSE.Views.SortDialog.textTop": "Sus", - "SSE.Views.SortDialog.textUp": "Mutare în sus", + "SSE.Views.SortDialog.textUp": "Mutare cu un nivel mai sus", "SSE.Views.SortDialog.textValues": "Valori", "SSE.Views.SortDialog.textZA": "de la Z la A", "SSE.Views.SortDialog.txtInvalidRange": "Zonă de celule nu este validă.", @@ -3082,7 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", "SSE.Views.Toolbar.capInsertImage": "Imagine", "SSE.Views.Toolbar.capInsertShape": "Forma", - "SSE.Views.Toolbar.capInsertSpark": "Diagrame sparkline", + "SSE.Views.Toolbar.capInsertSpark": "Diagramă sparkline", "SSE.Views.Toolbar.capInsertTable": "Tabel", "SSE.Views.Toolbar.capInsertText": "Casetă text", "SSE.Views.Toolbar.mniImageFromFile": "Imaginea din fișier", @@ -3294,6 +3335,7 @@ "SSE.Views.Toolbar.txtScheme2": "Tonuri de gri", "SSE.Views.Toolbar.txtScheme20": "Urban", "SSE.Views.Toolbar.txtScheme21": "Vervă", + "SSE.Views.Toolbar.txtScheme22": "New Office", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Aspect", "SSE.Views.Toolbar.txtScheme5": "Civic", @@ -3370,9 +3412,13 @@ "SSE.Views.ViewTab.textCreate": "Nou", "SSE.Views.ViewTab.textDefault": "Implicit", "SSE.Views.ViewTab.textFormula": "Bara de formule", + "SSE.Views.ViewTab.textFreezeCol": "Înghețarea primei coloane", + "SSE.Views.ViewTab.textFreezeRow": "Înghețarea rândului de sus", "SSE.Views.ViewTab.textGridlines": "Linii de grilă", "SSE.Views.ViewTab.textHeadings": "Titluri", "SSE.Views.ViewTab.textManager": "Manager vizualizări", + "SSE.Views.ViewTab.textUnFreeze": "Dezghețare panouri", + "SSE.Views.ViewTab.textZeros": "Afișare un zero", "SSE.Views.ViewTab.textZoom": "Zoom", "SSE.Views.ViewTab.tipClose": "Închidere vizualizare de foi", "SSE.Views.ViewTab.tipCreate": "Creare vizualizări de foi", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 244334005..eb3510481 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -161,6 +161,7 @@ "Common.Views.AutoCorrectDialog.textRecognized": "Распознанные функции", "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Следующие выражения являются распознанными математическими функциями. Они не будут автоматически выделяться курсивом.", "Common.Views.AutoCorrectDialog.textReplace": "Заменить", + "Common.Views.AutoCorrectDialog.textReplaceText": "Заменять при вводе", "Common.Views.AutoCorrectDialog.textReplaceType": "Заменять текст при вводе", "Common.Views.AutoCorrectDialog.textReset": "Сброс", "Common.Views.AutoCorrectDialog.textResetAll": "Сбросить настройки", @@ -417,6 +418,7 @@ "SSE.Controllers.DataTab.txtRemDuplicates": "Удалить дубликаты", "SSE.Controllers.DataTab.txtRemoveDataValidation": "Выделенная область содержит более одного условия.
    Удалить текущие параметры и продолжить?", "SSE.Controllers.DataTab.txtRemSelected": "Удалить в выделенном диапазоне", + "SSE.Controllers.DataTab.txtUrlTitle": "Вставьте URL-адрес данных", "SSE.Controllers.DocumentHolder.alignmentText": "Выравнивание", "SSE.Controllers.DocumentHolder.centerText": "По центру", "SSE.Controllers.DocumentHolder.deleteColumnText": "Удалить столбец", @@ -650,6 +652,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "SSE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", "SSE.Controllers.Main.errorLabledColumnsPivot": "Чтобы создать сводную таблицу, используйте данные, организованные в виде списка с заголовками столбцов.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Недействительная ссылка на расположение или диапазон данных.", "SSE.Controllers.Main.errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.", "SSE.Controllers.Main.errorLockedCellPivot": "Нельзя изменить данные в сводной таблице.", "SSE.Controllers.Main.errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь", @@ -673,6 +676,7 @@ "SSE.Controllers.Main.errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", "SSE.Controllers.Main.errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", "SSE.Controllers.Main.errorSetPassword": "Не удалось задать пароль.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Ссылка на расположение недопустима, так как ячейки находятся в разных столбцах или строках.
    Выделите ячейки, расположенные в одном столбце или одной строке.", "SSE.Controllers.Main.errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
    цена открытия, максимальная цена, минимальная цена, цена закрытия.", "SSE.Controllers.Main.errorToken": "Токен безопасности документа имеет неправильный формат.
    Пожалуйста, обратитесь к администратору Сервера документов.", "SSE.Controllers.Main.errorTokenExpire": "Истек срок действия токена безопасности документа.
    Пожалуйста, обратитесь к администратору Сервера документов.", @@ -1872,6 +1876,7 @@ "SSE.Views.DocumentHolder.txtClearText": "Текст", "SSE.Views.DocumentHolder.txtColumn": "Столбец", "SSE.Views.DocumentHolder.txtColumnWidth": "Задать ширину столбца", + "SSE.Views.DocumentHolder.txtCondFormat": "Условное форматирование", "SSE.Views.DocumentHolder.txtCopy": "Копировать", "SSE.Views.DocumentHolder.txtCurrency": "Денежный", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Особая ширина столбца", @@ -2166,7 +2171,7 @@ "SSE.Views.FormatRulesEditDlg.textShortBar": "самый короткий столбец", "SSE.Views.FormatRulesEditDlg.textShowBar": "Показывать только столбец", "SSE.Views.FormatRulesEditDlg.textShowIcon": "Показать только значок", - "SSE.Views.FormatRulesEditDlg.textSingleRef": "Такой тип ссылки нельзя использовать в формуле условного форматирования.
    Измените ссылку так, чтобы она указывала на одну ячейку, или поместите ссылку в функцию. Например: =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Такой тип ссылки нельзя использовать в формуле условного форматирования.
    Измените ссылку так, чтобы она указывала на одну ячейку, или поместите ссылку в функцию. Например: =СУММ(A1:B5).", "SSE.Views.FormatRulesEditDlg.textSolid": "Сплошной", "SSE.Views.FormatRulesEditDlg.textStrikeout": "Зачеркнутый", "SSE.Views.FormatRulesEditDlg.textSubscript": "Подстрочные знаки", @@ -3118,7 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Гиперссылка", "SSE.Views.Toolbar.capInsertImage": "Изображение", "SSE.Views.Toolbar.capInsertShape": "Фигура", - "SSE.Views.Toolbar.capInsertSpark": "Спарклайны", + "SSE.Views.Toolbar.capInsertSpark": "Спарклайн", "SSE.Views.Toolbar.capInsertTable": "Таблица", "SSE.Views.Toolbar.capInsertText": "Надпись", "SSE.Views.Toolbar.mniImageFromFile": "Изображение из файла", diff --git a/apps/spreadsheeteditor/main/locale/sv.json b/apps/spreadsheeteditor/main/locale/sv.json index 9c5a27ee4..bc78b4323 100644 --- a/apps/spreadsheeteditor/main/locale/sv.json +++ b/apps/spreadsheeteditor/main/locale/sv.json @@ -3,17 +3,106 @@ "Common.Controllers.Chat.notcriticalErrorTitle": "Varning", "Common.Controllers.Chat.textEnterMessage": "Skriv ditt meddelande här", "Common.define.chartData.textArea": "Område", + "Common.define.chartData.textAreaStacked": "Staplad yta", + "Common.define.chartData.textAreaStackedPer": "100% staplat område", "Common.define.chartData.textBar": "Linje", + "Common.define.chartData.textBarNormal": "Grupperad kolumn", + "Common.define.chartData.textBarNormal3d": "3-D grupperad kolumn", + "Common.define.chartData.textBarNormal3dPerspective": "3-D kolumn", + "Common.define.chartData.textBarStacked": "Staplad kolumn", + "Common.define.chartData.textBarStacked3d": "3-D staplad kolumn", + "Common.define.chartData.textBarStackedPer": "100% staplad kolumn", + "Common.define.chartData.textBarStackedPer3d": "3-D 100% staplad kolumn", "Common.define.chartData.textCharts": "Diagram", "Common.define.chartData.textColumn": "Kolumn", "Common.define.chartData.textColumnSpark": "Kolumn", + "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textComboAreaBar": "Staplat område - grupperad kolumn", + "Common.define.chartData.textComboBarLine": "Grupperad kolumn - rad", + "Common.define.chartData.textComboBarLineSecondary": "Grupperad kolumn - rad på andra axeln", + "Common.define.chartData.textComboCustom": "Anpassad kombination", + "Common.define.chartData.textDoughnut": "Doughnut", + "Common.define.chartData.textHBarNormal": "Grupperad stapel", + "Common.define.chartData.textHBarNormal3d": "3-D grupperad stapel", + "Common.define.chartData.textHBarStacked": "Staplad stapel", + "Common.define.chartData.textHBarStacked3d": "3-D staplad stapel", + "Common.define.chartData.textHBarStackedPer": "100% staplad stapel", + "Common.define.chartData.textHBarStackedPer3d": "3-D 100% staplad stapel", "Common.define.chartData.textLine": "Rad", + "Common.define.chartData.textLine3d": "3-D linje", + "Common.define.chartData.textLineMarker": "Linje med markörer", "Common.define.chartData.textLineSpark": "Rad", + "Common.define.chartData.textLineStacked": "Staplad linje", + "Common.define.chartData.textLineStackedMarker": "Staplad linje med markeringar", + "Common.define.chartData.textLineStackedPer": "100% staplad linje", + "Common.define.chartData.textLineStackedPerMarker": "100% staplad linje med markörer", "Common.define.chartData.textPie": "Paj", + "Common.define.chartData.textPie3d": "3-D paj", + "Common.define.chartData.textPoint": "XY (Spridning)", + "Common.define.chartData.textScatter": "Sprida ut", + "Common.define.chartData.textScatterLine": "Sprid med raka linjer", + "Common.define.chartData.textScatterLineMarker": "Sprid med raka linjer och markeringar", + "Common.define.chartData.textScatterSmooth": "Sprid med mjuka linjer", + "Common.define.chartData.textScatterSmoothMarker": "Sprid med mjuka linjer och markeringar", + "Common.define.chartData.textSparks": "Sparklines", + "Common.define.chartData.textStock": "Lager", "Common.define.chartData.textSurface": "Yta", "Common.define.chartData.textWinLossSpark": "Vinst / förlust", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "Inget format inställt", + "Common.define.conditionalData.text1Above": "1: a dev över", + "Common.define.conditionalData.text1Below": "1: a dev under", + "Common.define.conditionalData.text2Above": "2 std dev över", + "Common.define.conditionalData.text2Below": "2 std dev under", + "Common.define.conditionalData.text3Above": "3 std dev över", + "Common.define.conditionalData.text3Below": "3 std dev under", + "Common.define.conditionalData.textAbove": "Ovan", + "Common.define.conditionalData.textAverage": "Genomsnitt", + "Common.define.conditionalData.textBegins": "Börjar med", + "Common.define.conditionalData.textBelow": "Under", + "Common.define.conditionalData.textBetween": "Mellan", + "Common.define.conditionalData.textBlank": "Töm", + "Common.define.conditionalData.textBlanks": "Innehåller tomma", + "Common.define.conditionalData.textBottom": "Botten", + "Common.define.conditionalData.textContains": "Innehåller", + "Common.define.conditionalData.textDataBar": "Data stapel", + "Common.define.conditionalData.textDate": "Datum", "Common.define.conditionalData.textDuplicate": "Duplicera", + "Common.define.conditionalData.textEnds": "Slutar med", + "Common.define.conditionalData.textEqAbove": "Lika med eller högre", + "Common.define.conditionalData.textEqBelow": "Lika med eller lägre", + "Common.define.conditionalData.textEqual": "Lika med", + "Common.define.conditionalData.textError": "Fel", + "Common.define.conditionalData.textErrors": "Innehåller fel", + "Common.define.conditionalData.textFormula": "Formel", + "Common.define.conditionalData.textGreater": "Större än", + "Common.define.conditionalData.textGreaterEq": "Större än eller lika med", + "Common.define.conditionalData.textIconSets": "Ikonuppsättningar", + "Common.define.conditionalData.textLast7days": "Senaste 7 dagarna", + "Common.define.conditionalData.textLastMonth": "förra månaden", + "Common.define.conditionalData.textLastWeek": "senaste veckan", + "Common.define.conditionalData.textLess": "Mindre än", + "Common.define.conditionalData.textLessEq": "Mindre än eller lika med", + "Common.define.conditionalData.textNextMonth": "Nästa månad", + "Common.define.conditionalData.textNextWeek": "Nästa vecka", + "Common.define.conditionalData.textNotBetween": "inte mellan", + "Common.define.conditionalData.textNotBlanks": "Innehåller inga blanktecken", + "Common.define.conditionalData.textNotContains": "Innehåller inte", + "Common.define.conditionalData.textNotEqual": "Inte lika med", + "Common.define.conditionalData.textNotErrors": "Innehåller inga fel", + "Common.define.conditionalData.textText": "Text", + "Common.define.conditionalData.textThisMonth": "Denna månad", + "Common.define.conditionalData.textThisWeek": "Denna vecka", + "Common.define.conditionalData.textToday": "Idag", + "Common.define.conditionalData.textTomorrow": "I morgon", + "Common.define.conditionalData.textTop": "Överst", + "Common.define.conditionalData.textUnique": "Unik", + "Common.define.conditionalData.textValue": "Värdet är", + "Common.define.conditionalData.textYesterday": "Igår", "Common.Translation.warnFileLocked": "Dokumentet används av ett annat program. Du kan fortsätta redigera och spara den som en kopia.", + "Common.Translation.warnFileLockedBtnEdit": "Skapa en kopia", + "Common.Translation.warnFileLockedBtnView": "Öppna skrivskyddad", + "Common.UI.ColorButton.textAutoColor": "Automatisk", "Common.UI.ColorButton.textNewColor": "Lägg till ny egen färg", "Common.UI.ComboBorderSize.txtNoBorders": "Inga ramar", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Inga ramar", @@ -38,6 +127,9 @@ "Common.UI.SynchronizeTip.textSynchronize": "Dokumentet har ändrats av en annan användare.
    Klicka för att spara dina ändringar och ladda uppdateringarna.", "Common.UI.ThemeColorPalette.textStandartColors": "Standardfärger", "Common.UI.ThemeColorPalette.textThemeColors": "Temafärger", + "Common.UI.Themes.txtThemeClassicLight": "Classic Light", + "Common.UI.Themes.txtThemeDark": "Mörk", + "Common.UI.Themes.txtThemeLight": "Ljus", "Common.UI.Window.cancelButtonText": "Avbryt", "Common.UI.Window.closeButtonText": "Stäng", "Common.UI.Window.noButtonText": "Nej", @@ -49,14 +141,37 @@ "Common.UI.Window.textWarning": "Varning", "Common.UI.Window.yesButtonText": "Ja", "Common.Utils.Metric.txtCm": "cm", + "Common.Utils.Metric.txtPt": "pt", "Common.Views.About.txtAddress": "adress:", "Common.Views.About.txtLicensee": "LICENSINNEHAVARE", "Common.Views.About.txtLicensor": "LICENSGIVARE", "Common.Views.About.txtMail": "e-post:", "Common.Views.About.txtPoweredBy": "Powered by", "Common.Views.About.txtTel": "tel.:", + "Common.Views.About.txtVersion": "Version", "Common.Views.AutoCorrectDialog.textAdd": "Lägg till", + "Common.Views.AutoCorrectDialog.textApplyAsWork": "Tillämpa när du arbetar", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Autokorrigering", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Autoformat när du skriver", + "Common.Views.AutoCorrectDialog.textBy": "Av", "Common.Views.AutoCorrectDialog.textDelete": "Radera", + "Common.Views.AutoCorrectDialog.textHyperlink": "Sökvägar för internet och nätverk med hyperlänk", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Matematisk autokorrigering", + "Common.Views.AutoCorrectDialog.textNewRowCol": "Inkludera nya rader och kolumner i tabellen", + "Common.Views.AutoCorrectDialog.textRecognized": "Hittade funktioner", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Följande uttryck är igenkända matematiska uttryck. De kommer inte att kursiveras automatiskt.", + "Common.Views.AutoCorrectDialog.textReplace": "Ersätt", + "Common.Views.AutoCorrectDialog.textReplaceText": "Ersätt när du skriver", + "Common.Views.AutoCorrectDialog.textReplaceType": "Ersätt text när du skriver", + "Common.Views.AutoCorrectDialog.textReset": "Återställ", + "Common.Views.AutoCorrectDialog.textResetAll": "Återställ till standard", + "Common.Views.AutoCorrectDialog.textRestore": "Återställ", + "Common.Views.AutoCorrectDialog.textTitle": "Autokorrigering", + "Common.Views.AutoCorrectDialog.textWarnAddRec": "Erkända funktioner får endast innehålla bokstäverna A till Z, versaler eller gemener.", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Alla uttryck du har lagt till kommer att tas bort och de borttagna kommer att återställas. Vill du fortsätta?", + "Common.Views.AutoCorrectDialog.warnReplace": "Autokorrigeringsposten för %1 finns redan. Vill du ersätta den?", + "Common.Views.AutoCorrectDialog.warnReset": "All autokorrigering som du lagt till kommer att tas bort och ändringar kommer att återställas till sina ursprungliga värden. Vill du fortsätta?", + "Common.Views.AutoCorrectDialog.warnRestore": "Autokorrigeringen för %1 återställs till sitt ursprungliga värde. Vill du fortsätta?", "Common.Views.Chat.textSend": "Skicka", "Common.Views.Comments.textAdd": "Lägg till", "Common.Views.Comments.textAddComment": "Lägg till kommentar", @@ -81,12 +196,16 @@ "Common.Views.CopyWarningDialog.textToPaste": "till klistra in", "Common.Views.DocumentAccessDialog.textLoading": "Laddar...", "Common.Views.DocumentAccessDialog.textTitle": "Delningsinställningar", + "Common.Views.EditNameDialog.textLabel": "Etikett:", + "Common.Views.EditNameDialog.textLabelError": "Etiketten får inte vara tom.", "Common.Views.Header.labelCoUsersDescr": "Dokumentet redigeras för närvarande av flera användare.", + "Common.Views.Header.textAddFavorite": "Markera som favorit", "Common.Views.Header.textAdvSettings": "Avancerade inställningar", "Common.Views.Header.textBack": "Gå till dokument", "Common.Views.Header.textCompactView": "Dölj verktygsrad", "Common.Views.Header.textHideLines": "Dölj linjaler", "Common.Views.Header.textHideStatusBar": "Dölj statusrad", + "Common.Views.Header.textRemoveFavorite": "Ta bort från favoriter", "Common.Views.Header.textSaveBegin": "Sparar...", "Common.Views.Header.textSaveChanged": "Ändrad", "Common.Views.Header.textSaveEnd": "Alla ändringar sparade", @@ -107,15 +226,28 @@ "Common.Views.ImageFromUrlDialog.textUrl": "Klistra in en bilds URL:", "Common.Views.ImageFromUrlDialog.txtEmpty": "Detta fält är obligatoriskt", "Common.Views.ImageFromUrlDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"", + "Common.Views.ListSettingsDialog.textBulleted": "Punktad", + "Common.Views.ListSettingsDialog.textNumbering": "Numrerad", + "Common.Views.ListSettingsDialog.tipChange": "Ändra punktsymbol", + "Common.Views.ListSettingsDialog.txtBullet": "Bullet", "Common.Views.ListSettingsDialog.txtColor": "Färg", + "Common.Views.ListSettingsDialog.txtNewBullet": "New bullet", + "Common.Views.ListSettingsDialog.txtNone": "ingen", "Common.Views.ListSettingsDialog.txtOfText": "% av text", "Common.Views.ListSettingsDialog.txtSize": "Storlek", "Common.Views.ListSettingsDialog.txtStart": "Börja på", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", + "Common.Views.ListSettingsDialog.txtTitle": "Inställningar lista", + "Common.Views.ListSettingsDialog.txtType": "Typ", "Common.Views.OpenDialog.closeButtonText": "Stäng fil", + "Common.Views.OpenDialog.textInvalidRange": "Ogiltigt cellområde", + "Common.Views.OpenDialog.textSelectData": "Välj data", "Common.Views.OpenDialog.txtAdvanced": "Avancerad", "Common.Views.OpenDialog.txtColon": "Kolon", "Common.Views.OpenDialog.txtComma": "Komma", "Common.Views.OpenDialog.txtDelimiter": "Avgränsare", + "Common.Views.OpenDialog.txtDestData": "Välj plats för data", + "Common.Views.OpenDialog.txtEmpty": "Detta fält är obligatoriskt", "Common.Views.OpenDialog.txtEncoding": "Teckentabell", "Common.Views.OpenDialog.txtIncorrectPwd": "Felaktigt lösenord.", "Common.Views.OpenDialog.txtOpenFile": "Skriv in lösenord för att öppna filen", @@ -139,6 +271,7 @@ "Common.Views.Plugins.strPlugins": "Tillägg", "Common.Views.Plugins.textLoading": "Laddar", "Common.Views.Plugins.textStart": "Start", + "Common.Views.Plugins.textStop": "Stanna", "Common.Views.Protection.hintAddPwd": "Kryptera med lösenord", "Common.Views.Protection.hintPwd": "Ändra eller radera lösenord", "Common.Views.Protection.hintSignature": "Lägg till digital signatur eller rad", @@ -161,6 +294,8 @@ "Common.Views.ReviewChanges.tipCoAuthMode": "Ställ in samredigeringsläge", "Common.Views.ReviewChanges.tipCommentRem": "Ta bort kommentarer", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Ta bort aktuella kommentarer", + "Common.Views.ReviewChanges.tipCommentResolve": "Lös kommentarer", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Lös aktuella kommentarer", "Common.Views.ReviewChanges.tipHistory": "Visa versionshistorik", "Common.Views.ReviewChanges.tipRejectCurrent": "Avvisa nuvarande ändring", "Common.Views.ReviewChanges.tipReview": "Spåra ändringar", @@ -180,6 +315,11 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Ta bort mina kommentarer", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Ta bort mina aktuella kommentarer", "Common.Views.ReviewChanges.txtCommentRemove": "Ta bort", + "Common.Views.ReviewChanges.txtCommentResolve": "Lös", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Lös alla kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Lös aktuella kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Lös mina kommentarer", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Lös mina nuvarande kommentarer", "Common.Views.ReviewChanges.txtDocLang": "Språk", "Common.Views.ReviewChanges.txtFinal": "Alla ändringar accepterade (Förhandsvisning)", "Common.Views.ReviewChanges.txtFinalCap": "Slutlig", @@ -217,6 +357,7 @@ "Common.Views.SignDialog.textChange": "Ändra", "Common.Views.SignDialog.textInputName": "Infoga undertecknares namn", "Common.Views.SignDialog.textItalic": "Kursiv", + "Common.Views.SignDialog.textNameError": "Undertecknare får inte vara tom.", "Common.Views.SignDialog.textPurpose": "Syfte för att underteckna det här dokumentet", "Common.Views.SignDialog.textSelect": "Välj", "Common.Views.SignDialog.textSelectImage": "Välj bild", @@ -235,21 +376,49 @@ "Common.Views.SignSettingsDialog.textShowDate": "Visa datum för signatur på signaturraden", "Common.Views.SignSettingsDialog.textTitle": "Skapa signatur", "Common.Views.SignSettingsDialog.txtEmpty": "Detta fält är obligatoriskt", + "Common.Views.SymbolTableDialog.textCharacter": "Tecken", "Common.Views.SymbolTableDialog.textCode": "Unicode HEX värde", "Common.Views.SymbolTableDialog.textCopyright": "Upphovsrättstecken", + "Common.Views.SymbolTableDialog.textDCQuote": "Avslutande dubbelt citattecken", + "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote", + "Common.Views.SymbolTableDialog.textEllipsis": "Horisontell ellips", + "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", + "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", + "Common.Views.SymbolTableDialog.textEnDash": "En Dash", + "Common.Views.SymbolTableDialog.textEnSpace": "En Space", "Common.Views.SymbolTableDialog.textFont": "Font", + "Common.Views.SymbolTableDialog.textNBHyphen": "Icke-brytande bindestreck", + "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space", + "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow tecken", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", "Common.Views.SymbolTableDialog.textRange": "Område", "Common.Views.SymbolTableDialog.textRecent": "Tidigare använda symboler", + "Common.Views.SymbolTableDialog.textRegistered": "Registrerat tecken", + "Common.Views.SymbolTableDialog.textSCQuote": "Avslutande enkelt citattecken", + "Common.Views.SymbolTableDialog.textSection": "Avsnittstecken", "Common.Views.SymbolTableDialog.textShortcut": "Snabbtangent", + "Common.Views.SymbolTableDialog.textSHyphen": "Mjuk bindestreck", + "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote", "Common.Views.SymbolTableDialog.textSpecial": "Specialtecken", "Common.Views.SymbolTableDialog.textSymbols": "Symboler", "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Varumärkesymbol", + "Common.Views.UserNameDialog.textDontShow": "Fråga inte igen", + "Common.Views.UserNameDialog.textLabel": "Etikett:", + "Common.Views.UserNameDialog.textLabelError": "Etiketten får inte vara tom.", "SSE.Controllers.DataTab.textColumns": "Kolumner", + "SSE.Controllers.DataTab.textEmptyUrl": "Du måste ange URL.", "SSE.Controllers.DataTab.textRows": "Rader", "SSE.Controllers.DataTab.textWizard": "Text till kolumner", + "SSE.Controllers.DataTab.txtDataValidation": "Datavalidering", "SSE.Controllers.DataTab.txtExpand": "Expandera", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Data bredvid markeringen tas inte bort. Vill du utöka urvalet till att inkludera intilliggande data eller bara fortsätta med de markerade cellerna?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "Markeringen innehåller några celler utan datavalideringsinställningar.
    Vill du utvidga datavalidering till dessa celler?", + "SSE.Controllers.DataTab.txtImportWizard": "Textimport-guide", "SSE.Controllers.DataTab.txtRemDuplicates": "Ta bort dubbletter", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "Valet innehåller mer än en typ av validering.
    Radera nuvarande inställningar och fortsätt?", "SSE.Controllers.DataTab.txtRemSelected": "Ta bort i vald", + "SSE.Controllers.DataTab.txtUrlTitle": "Klistra in en data-URL", "SSE.Controllers.DocumentHolder.alignmentText": "Justering", "SSE.Controllers.DocumentHolder.centerText": "Centrera", "SSE.Controllers.DocumentHolder.deleteColumnText": "Radera kolumn", @@ -265,11 +434,15 @@ "SSE.Controllers.DocumentHolder.leftText": "Vänster", "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Varning", "SSE.Controllers.DocumentHolder.rightText": "Höger", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Inställningar autokorrigering", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Kolumnbredd {0} symboler ({1} pixlar)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Radhöjd {0} punkter ({1} pixlar)", "SSE.Controllers.DocumentHolder.textCtrlClick": "Tryck CTRL och klicka på länken", "SSE.Controllers.DocumentHolder.textInsertLeft": "Infoga vänster", "SSE.Controllers.DocumentHolder.textInsertTop": "Infoga topp", "SSE.Controllers.DocumentHolder.textPasteSpecial": "Klistra in special", + "SSE.Controllers.DocumentHolder.textStopExpand": "Stanna automatiskt", + "SSE.Controllers.DocumentHolder.textSym": "sym", "SSE.Controllers.DocumentHolder.tipIsLocked": "Detta element redigeras av en annan användare.", "SSE.Controllers.DocumentHolder.txtAboveAve": "Över medel", "SSE.Controllers.DocumentHolder.txtAddBottom": "Lägg till bottenlinje", @@ -299,6 +472,7 @@ "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Radera omslutande tecken och separatorer", "SSE.Controllers.DocumentHolder.txtDeleteEq": "Radera ekvation", "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Radera tecken", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Radera radikal", "SSE.Controllers.DocumentHolder.txtEnds": "Slutar med", "SSE.Controllers.DocumentHolder.txtEquals": "Lika med", "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Lika med cellfärg", @@ -317,6 +491,7 @@ "SSE.Controllers.DocumentHolder.txtHeight": "Höjd", "SSE.Controllers.DocumentHolder.txtHideBottom": "Dölj nedre ramen", "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Dölj nedre gränsen", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Göm stängningsparantes", "SSE.Controllers.DocumentHolder.txtHideDegree": "Göm grad", "SSE.Controllers.DocumentHolder.txtHideHor": "Dölj horisontell linje", "SSE.Controllers.DocumentHolder.txtHideLB": "Dölj vänstra bottenlinjen", @@ -364,6 +539,9 @@ "SSE.Controllers.DocumentHolder.txtPasteMerge": "Sammanfoga villkorlig formatering", "SSE.Controllers.DocumentHolder.txtPastePicture": "Bild", "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Källformatering", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transponera", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Värde + all formatering", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Värde + nummerformat", "SSE.Controllers.DocumentHolder.txtPasteValues": "Klistra in endast värde", "SSE.Controllers.DocumentHolder.txtPercent": "procent", "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Tabell autoutökning klar", @@ -378,24 +556,33 @@ "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Skript efter text", "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Skript före text", "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Visa nedre gräns", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Visa avslutande parentes", "SSE.Controllers.DocumentHolder.txtShowDegree": "Visa grad", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Visa vänsterparentes", "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Visa platshållare", "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Visa övre gräns", "SSE.Controllers.DocumentHolder.txtSorting": "Sorterar", "SSE.Controllers.DocumentHolder.txtSortSelected": "Sortering vald", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Sträck paranteser", "SSE.Controllers.DocumentHolder.txtTop": "Överst", "SSE.Controllers.DocumentHolder.txtUnderbar": "Linje under text", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Ångra automatisk tabellexpansion", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Använd guiden för textimport", "SSE.Controllers.DocumentHolder.txtWidth": "Bredd", "SSE.Controllers.FormulaDialog.sCategoryAll": "Alla", "SSE.Controllers.FormulaDialog.sCategoryCube": "Kub", "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Databas", "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Datum och tid", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Teknik", "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Finansiell", "SSE.Controllers.FormulaDialog.sCategoryInformation": "Information", "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 sist använda", "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logisk", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Sökning och referens", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matematik och trigonometri", "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistisk", "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Text och data", + "SSE.Controllers.LeftMenu.newDocumentTitle": "Namnlöst kalkylark", "SSE.Controllers.LeftMenu.textByColumns": "Av kolumner", "SSE.Controllers.LeftMenu.textByRows": "Av rader", "SSE.Controllers.LeftMenu.textFormulas": "Formler", @@ -414,12 +601,14 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Om du fortsätter att spara i det här formatet kommer alla funktioner utom texten att gå förlorade.
    Är du säker på att du vill fortsätta?", "SSE.Controllers.Main.confirmMoveCellRange": "Destinationsområdet kan innehålla data. Fortsätta operationen?", "SSE.Controllers.Main.confirmPutMergeRange": "Källinformationen innehöll sammanslagna celler.
    De hade inte slagits samman innan de klistrats in i tabellen.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formler i rubrikraden tas bort och konverteras till statisk text.
    Vill du fortsätta?", "SSE.Controllers.Main.convertationTimeoutText": "Omvandlingstiden har överskridits.", "SSE.Controllers.Main.criticalErrorExtText": "Tryck på \"OK\" för att komma tillbaka till dokumentlistan.", "SSE.Controllers.Main.criticalErrorTitle": "Fel", "SSE.Controllers.Main.downloadErrorText": "Misslyckad nedladdning.", "SSE.Controllers.Main.downloadTextText": "Hämtar kalkylblad...", "SSE.Controllers.Main.downloadTitleText": "Hämtar kalkylblad", + "SSE.Controllers.Main.errNoDuplicates": "Inga dubletter funna.", "SSE.Controllers.Main.errorAccessDeny": "Du försöker utföra en åtgärd som du inte har rättighet till.
    Vänligen kontakta din systemadministratör.", "SSE.Controllers.Main.errorArgsRange": "Ett fel i den angivna formeln.
    Felaktigt argumentområde.", "SSE.Controllers.Main.errorAutoFilterChange": "Operationen inte tillåten", @@ -429,6 +618,7 @@ "SSE.Controllers.Main.errorBadImageUrl": "Bildens URL är felaktig", "SSE.Controllers.Main.errorCannotUngroup": "Det går inte att gruppera. För att starta en kontur, välj detaljrader eller kolumner och gruppera dem.", "SSE.Controllers.Main.errorChangeArray": "Du kan inte ändra en del av en matris.", + "SSE.Controllers.Main.errorChangeFilteredRange": "Detta ändrar ett filtrerat intervall i kalkylbladet.
    Ta bort automatiska filter för att slutföra uppgiften.", "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serveranslutning förlorade. Dokumentet kan inte redigeras just nu.", "SSE.Controllers.Main.errorConnectToServer": "Dokumentet kunde inte sparas. . Kontrollera anslutningsinställningarna eller kontakta administratören
    När du klickar på \"OK\" -knappen, kommer du att bli ombedd att ladda ner dokumentet.", "SSE.Controllers.Main.errorCopyMultiselectArea": "Det här kommandot kan inte användas med flera val.
    Välj ett enda område och försök igen.", @@ -442,6 +632,7 @@ "SSE.Controllers.Main.errorDefaultMessage": "Felkod: %1", "SSE.Controllers.Main.errorEditingDownloadas": "Ett fel har inträffat.
    Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", "SSE.Controllers.Main.errorEditingSaveas": "Ett fel har inträffat.
    Använd \"Ladda ned som...\" för att spara en säkerhetskopia på din dator.", + "SSE.Controllers.Main.errorEditView": "Den befintliga vyn kan inte redigeras och den nya kan inte skapas just nu eftersom vissa av dem redigeras.", "SSE.Controllers.Main.errorEmailClient": "Ingen e-postklient kunde hittas.", "SSE.Controllers.Main.errorFilePassProtect": "Dokumentet är lösenordsskyddat och kunde inte öppnas. ", "SSE.Controllers.Main.errorFileRequest": "Externt fel.
    Filförfråganfel. Kontakta support om felet kvarstår.", @@ -451,28 +642,41 @@ "SSE.Controllers.Main.errorForceSave": "Ett fel uppstod när filen sparades. Använd alternativet \"Spara som\" för att spara filen till din lokala hårddisk eller försök igen senare.", "SSE.Controllers.Main.errorFormulaName": "Ett fel i den angivna formeln.
    Felaktigt formelnamn.", "SSE.Controllers.Main.errorFormulaParsing": "Internt fel vid analys av formeln.", + "SSE.Controllers.Main.errorFrmlMaxLength": "Formelns längd överskrider gränsen på 8192 tecken.
    Redigera den och försök igen.", + "SSE.Controllers.Main.errorFrmlMaxReference": "Du kan inte ange den här formeln eftersom den har för många värden,
    cellreferenser och / eller namn.", "SSE.Controllers.Main.errorFrmlMaxTextLength": "Textvärden i formler är begränsade till 255 tecken.
    Använd CONCATENATE-funktionen eller samkopplingsoperatören (&).", "SSE.Controllers.Main.errorFrmlWrongReferences": "Funktionen hänvisar till en flik som inte finns.
    Kontrollera data och försök igen.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "Åtgärden kunde inte slutföras för det valda cellområdet.
    Välj ett intervall så att den första tabellraden var i samma rad
    och den resulterande tabellen överlappade den aktuella.", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Åtgärden kunde inte slutföras för det valda cellområdet.
    Välj ett intervall som inte innehåller andra tabeller.", "SSE.Controllers.Main.errorInvalidRef": "Ange ett korrekt namn för valet eller en giltig referens att gå till.", "SSE.Controllers.Main.errorKeyEncrypt": "Okänd nyckelbeskrivare", "SSE.Controllers.Main.errorKeyExpire": "Nyckelns beskrivning har utgått", + "SSE.Controllers.Main.errorLabledColumnsPivot": "För att skapa en pivottabell använder du data som är organiserade som en lista med märkta kolumner.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "Referensen för platsen eller dataområdet är inte giltig.", "SSE.Controllers.Main.errorLockedAll": "Åtgärden kunde inte utföras eftersom arket har låsts av en annan användare.", "SSE.Controllers.Main.errorLockedCellPivot": "Kan inte ändra data i en pivottabell", "SSE.Controllers.Main.errorLockedWorksheetRename": "Fliken kan inte bytas namn på just nu eftersom en annan användare redigerar nu", "SSE.Controllers.Main.errorMaxPoints": "Max antal punkter i serie är 4096.", "SSE.Controllers.Main.errorMoveRange": "Kan inte ändra del av en sammanslagen cell", + "SSE.Controllers.Main.errorMoveSlicerError": "Tabellskivor kan inte kopieras från en arbetsbok till en annan.
    Försök igen genom att välja hela tabellen och skivorna.", "SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array är inte tillåtna i tabeller", "SSE.Controllers.Main.errorNoDataToParse": "Ingen data vald att bearbeta", "SSE.Controllers.Main.errorOpenWarning": "Längden på en av formlerna i filen överskred
    det tillåtna antalet tecken och det togs bort.", "SSE.Controllers.Main.errorOperandExpected": "Den angivna funktionssyntaxen är inte korrekt. Kontrollera om du saknar en av parenteserna - '(' eller ')'.", "SSE.Controllers.Main.errorPasteMaxRange": "Kopiera- och klistraområdet matchar inte.
    Välj ett område med samma storlek eller klicka på den första cellen i rad för att klistra in de kopierade cellerna.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Den här åtgärden kan inte göras i ett val av flera intervall.
    Välj ett enda område och försök igen.", + "SSE.Controllers.Main.errorPasteSlicerError": "Tabellskivor kan inte kopieras från en arbetsbok till en annan.", + "SSE.Controllers.Main.errorPivotGroup": "Det går inte att gruppera det valet.", "SSE.Controllers.Main.errorPivotOverlap": "En pivottabellrapport kan inte överlappa en tabell.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "Pivottabellrapporten sparades utan underliggande data.
    Använd knappen 'Uppdatera' för att uppdatera rapporten.", "SSE.Controllers.Main.errorPrintMaxPagesCount": "Tyvärr är det inte möjligt att skriva ut mer än 1500 sidor samtidigt i den aktuella programversionen.
    Denna begränsning kommer att tas bort i de kommande utgåvorna.", "SSE.Controllers.Main.errorProcessSaveResult": "Fel vid spara", "SSE.Controllers.Main.errorServerVersion": "Textredigerarens version har uppdaterats. Sidan kommer att laddas om för att verkställa ändringarna.", "SSE.Controllers.Main.errorSessionAbsolute": "Dokumentet redigeringssession har löpt ut. Vänligen ladda om sidan.", "SSE.Controllers.Main.errorSessionIdle": "Dokumentet har inte redigerats under en ganska lång tid. Var vänlig att ladda om sidan.", "SSE.Controllers.Main.errorSessionToken": "Anslutningen till servern har avbrutits. Vänligen ladda om sidan.", + "SSE.Controllers.Main.errorSetPassword": "Lösenord kunde inte ställas in.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Platsreferens är inte giltig eftersom cellerna inte alla finns i samma kolumn eller rad.
    Välj celler som alla finns i en enda kolumn eller rad.", "SSE.Controllers.Main.errorStockChart": "Felaktig ordningsföljd. För att bygga ett aktiediagram placerar du uppgifterna på arket i följande ordning:
    öppningspris, maxpris, minipris, slutkurs.", "SSE.Controllers.Main.errorToken": "Dokumentets säkerhetstoken är inte korrekt.
    Vänligen kontakta din dokumentserver administratör.", "SSE.Controllers.Main.errorTokenExpire": "Dokumentets säkerhetstoken har upphört att gälla.
    Var vänlig och Kontakta din dokumentserver administratör.", @@ -484,7 +688,9 @@ "SSE.Controllers.Main.errorViewerDisconnect": "Anslutningen bröts. Du kan fortfarande se dokumentet
    men kommer inte att kunna ladda ner eller skriva ut tills anslutningen är återställd.", "SSE.Controllers.Main.errorWrongBracketsCount": "Fel i den angivna formeln.
    Felaktigt antal parenteser.", "SSE.Controllers.Main.errorWrongOperator": "Ett fel i den angivna formeln. Felaktig operator används.
    Var god korrigera felet.", + "SSE.Controllers.Main.errRemDuplicates": "Duplicerade värden hittades och raderades: {0}, unika värden kvar: {1}.", "SSE.Controllers.Main.leavePageText": "Du har osparade ändringar i det här kalkylarket. Klicka på \"Stanna på den här sidan\" och sedan på \"Spara\" för att spara dem. Klicka på \"Lämna den här sidan\" om du vill ta bort alla ändringar som inte har sparats.", + "SSE.Controllers.Main.leavePageTextOnClose": "Alla ändringar som inte har sparats i detta kalkylblad går förlorade.
    Klicka på \"Avbryt\" och sedan på \"Spara\" för att spara dem. Klicka på \"OK\" för att kassera alla ändringar som inte sparats.", "SSE.Controllers.Main.loadFontsTextText": "Laddar data...", "SSE.Controllers.Main.loadFontsTitleText": "Laddar data", "SSE.Controllers.Main.loadFontTextText": "Laddar data...", @@ -505,6 +711,7 @@ "SSE.Controllers.Main.requestEditFailedMessageText": "Någon redigerar det här dokumentet just nu. Vänligen försök igen senare.", "SSE.Controllers.Main.requestEditFailedTitleText": "Ingen behörighet", "SSE.Controllers.Main.saveErrorText": "Ett fel uppstod när filen skulle sparas", + "SSE.Controllers.Main.saveErrorTextDesktop": "Den här filen kan inte sparas eller skapas.
    Möjliga orsaker är:
    1. Filen är skrivskyddad.
    2. Filen redigeras av andra användare.
    3. Disken är full eller skadad.", "SSE.Controllers.Main.savePreparingText": "Förbereder att spara", "SSE.Controllers.Main.savePreparingTitle": "Förbereder att spara. Vänta...", "SSE.Controllers.Main.saveTextText": "Sparar arbetsbok...", @@ -517,15 +724,22 @@ "SSE.Controllers.Main.textConfirm": "Bekräftelse", "SSE.Controllers.Main.textContactUs": "Kontakta säljare", "SSE.Controllers.Main.textCustomLoader": "Observera att enligt licensvillkoren har du inte rätt att byta laddaren.
    Kontakta vår försäljningsavdelning för att få en offert.", + "SSE.Controllers.Main.textGuest": "Gäst", + "SSE.Controllers.Main.textHasMacros": "Filen innehåller automatiska makron.
    Vill du köra makron?", "SSE.Controllers.Main.textLoadingDocument": "Hämtar kalkylblad", + "SSE.Controllers.Main.textLongName": "Ange namn (max 128 tecken).", "SSE.Controllers.Main.textNo": "Nej", "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE anslutningsbegränsning", "SSE.Controllers.Main.textPaidFeature": "Betald funktion", "SSE.Controllers.Main.textPleaseWait": "Åtgärden kan ta mer tid än väntat. Vänta...", "SSE.Controllers.Main.textRecalcFormulas": "Beräkning av formler...", + "SSE.Controllers.Main.textRemember": "Kom ihåg mitt val för alla filer", + "SSE.Controllers.Main.textRenameError": "Användarnamn får inte var tomt.", + "SSE.Controllers.Main.textRenameLabel": "Ange namn för samarbete", "SSE.Controllers.Main.textShape": "Form", "SSE.Controllers.Main.textStrict": "Strikt läge", "SSE.Controllers.Main.textTryUndoRedo": "Ångra/Återställ-funktionerna är inaktiva i snabbt samredigeringsläget.
    Klicka på knappen 'Strikt läge' för att växla till strikt samredigeringsläge och redigera filen utan andra användares påverkan och skicka dina ändringar först efter att du har sparat dem. Du kan växla mellan samredigeringslägena med hjälp av avancerade inställningar.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "Ångra-funktionerna är inaktiverade för snabb samredigeringsläge.", "SSE.Controllers.Main.textYes": "Ja", "SSE.Controllers.Main.titleLicenseExp": "Licensen har gått ut", "SSE.Controllers.Main.titleRecalcFormulas": "Beräknar...", @@ -534,26 +748,48 @@ "SSE.Controllers.Main.txtAll": "(Allt)", "SSE.Controllers.Main.txtArt": "Din text här", "SSE.Controllers.Main.txtBasicShapes": "Grundläggande former", + "SSE.Controllers.Main.txtBlank": "(tom)", "SSE.Controllers.Main.txtButtons": "Knappar", "SSE.Controllers.Main.txtByField": "%1 av %2", "SSE.Controllers.Main.txtCallouts": "Länktext", "SSE.Controllers.Main.txtCharts": "Diagram", + "SSE.Controllers.Main.txtClearFilter": "Rensa filter (Alt+C)", + "SSE.Controllers.Main.txtColLbls": "Kolumnetiketter", "SSE.Controllers.Main.txtColumn": "Kolumn", "SSE.Controllers.Main.txtConfidential": "Konfidentiell", "SSE.Controllers.Main.txtDate": "Datum", + "SSE.Controllers.Main.txtDays": "Dagar", "SSE.Controllers.Main.txtDiagramTitle": "Diagramtitel", "SSE.Controllers.Main.txtEditingMode": "Ställ in redigeringsläge...", "SSE.Controllers.Main.txtFiguredArrows": "Figurpilar", "SSE.Controllers.Main.txtFile": "Fil", + "SSE.Controllers.Main.txtGrandTotal": "Totalsumma", + "SSE.Controllers.Main.txtGroup": "Grupp", + "SSE.Controllers.Main.txtHours": "timmar", "SSE.Controllers.Main.txtLines": "Rader", "SSE.Controllers.Main.txtMath": "Matte", + "SSE.Controllers.Main.txtMinutes": "Minuter", + "SSE.Controllers.Main.txtMonths": "Månader", + "SSE.Controllers.Main.txtMultiSelect": "Multi-Select (Alt + S)", + "SSE.Controllers.Main.txtOr": "%1 eller %2", "SSE.Controllers.Main.txtPage": "Sida", "SSE.Controllers.Main.txtPageOf": "Sida %1 av %2", "SSE.Controllers.Main.txtPages": "Sidor", + "SSE.Controllers.Main.txtPreparedBy": "Förberedd av", "SSE.Controllers.Main.txtPrintArea": "Utskriftsområde", + "SSE.Controllers.Main.txtQuarter": "Qtr", + "SSE.Controllers.Main.txtQuarters": "Kvartal", "SSE.Controllers.Main.txtRectangles": "Rektanglar", "SSE.Controllers.Main.txtRow": "Rad", + "SSE.Controllers.Main.txtRowLbls": "Radetiketter", + "SSE.Controllers.Main.txtSeconds": "Sekunder", "SSE.Controllers.Main.txtSeries": "Serier", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)", "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Tillbaka eller föregående knapp", "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Startknapp", "SSE.Controllers.Main.txtShape_actionButtonBlank": "Tömknapp", @@ -571,7 +807,22 @@ "SSE.Controllers.Main.txtShape_bentConnector5": "Armbågskontakt", "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Armbågspilkontakt", "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Armbågsdubbelpil", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Böjd uppåtpil", + "SSE.Controllers.Main.txtShape_bevel": "Fasning", + "SSE.Controllers.Main.txtShape_blockArc": "Block båge", + "SSE.Controllers.Main.txtShape_borderCallout1": "Pratbubbla linje 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3", + "SSE.Controllers.Main.txtShape_bracePair": "Dubbelklammer", + "SSE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)", + "SSE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)", + "SSE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)", + "SSE.Controllers.Main.txtShape_can": "Burk", + "SSE.Controllers.Main.txtShape_chevron": "Chevron", + "SSE.Controllers.Main.txtShape_chord": "Chord", + "SSE.Controllers.Main.txtShape_circularArrow": "Cirkulär pil", "SSE.Controllers.Main.txtShape_cloud": "Moln", + "SSE.Controllers.Main.txtShape_cloudCallout": "Pratbubbla moln", "SSE.Controllers.Main.txtShape_corner": "Hörn", "SSE.Controllers.Main.txtShape_cube": "Kub", "SSE.Controllers.Main.txtShape_curvedConnector3": "Böjd anslutning", @@ -581,9 +832,17 @@ "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Böjd vänsterpil", "SSE.Controllers.Main.txtShape_curvedRightArrow": "Böjd högerpil", "SSE.Controllers.Main.txtShape_curvedUpArrow": "Böjd uppåtpil", + "SSE.Controllers.Main.txtShape_decagon": "Decagon", + "SSE.Controllers.Main.txtShape_diagStripe": "Diagonal rand", "SSE.Controllers.Main.txtShape_diamond": "Diamant", + "SSE.Controllers.Main.txtShape_dodecagon": "Dodecagon", + "SSE.Controllers.Main.txtShape_donut": "Donut", + "SSE.Controllers.Main.txtShape_doubleWave": "Double Wave", "SSE.Controllers.Main.txtShape_downArrow": "Nedåtpil", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Pratbubbla nedåtpil", "SSE.Controllers.Main.txtShape_ellipse": "Ellips", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "Curved Down Ribbon", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Curved Up Ribbon", "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Födesschema: Alternativ process", "SSE.Controllers.Main.txtShape_flowChartCollate": "Flödesschema: Collate", "SSE.Controllers.Main.txtShape_flowChartConnector": "Flödesschema: Anslutning", @@ -616,33 +875,60 @@ "SSE.Controllers.Main.txtShape_frame": "Ram", "SSE.Controllers.Main.txtShape_halfFrame": "Halv ram", "SSE.Controllers.Main.txtShape_heart": "Hjärta", + "SSE.Controllers.Main.txtShape_heptagon": "Heptagon", + "SSE.Controllers.Main.txtShape_hexagon": "Sexhörning", "SSE.Controllers.Main.txtShape_homePlate": "Pentagon", "SSE.Controllers.Main.txtShape_horizontalScroll": "Horisontell rullning", "SSE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1", "SSE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2", "SSE.Controllers.Main.txtShape_leftArrow": "Vänsterpil", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Pratbubbla vänsterpil", + "SSE.Controllers.Main.txtShape_leftBrace": "Vänsterklammer", + "SSE.Controllers.Main.txtShape_leftBracket": "Vänster hakparentes", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Vänster-höger-pil", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Pratbubbla vänster-höger-pil", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Vänster höger uppåtpil", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Vänster uppåtpil", "SSE.Controllers.Main.txtShape_lightningBolt": "Blixt", "SSE.Controllers.Main.txtShape_line": "Linje", "SSE.Controllers.Main.txtShape_lineWithArrow": "Pil", "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Dubbel pil", "SSE.Controllers.Main.txtShape_mathDivide": "Division", "SSE.Controllers.Main.txtShape_mathEqual": "Lika med", + "SSE.Controllers.Main.txtShape_mathMinus": "Minus", "SSE.Controllers.Main.txtShape_mathMultiply": "Multiplicera", "SSE.Controllers.Main.txtShape_mathNotEqual": "Inte lika", "SSE.Controllers.Main.txtShape_mathPlus": "Plus", + "SSE.Controllers.Main.txtShape_moon": "Måne", "SSE.Controllers.Main.txtShape_noSmoking": "\"Ingen\" symbol", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Skårad högerpil", + "SSE.Controllers.Main.txtShape_octagon": "Oktagon", + "SSE.Controllers.Main.txtShape_parallelogram": "Parallellogram", "SSE.Controllers.Main.txtShape_pentagon": "Pentagon", "SSE.Controllers.Main.txtShape_pie": "Paj", "SSE.Controllers.Main.txtShape_plaque": "Underteckna", "SSE.Controllers.Main.txtShape_plus": "Plus", "SSE.Controllers.Main.txtShape_polyline1": "Klotter", "SSE.Controllers.Main.txtShape_polyline2": "Fri form", + "SSE.Controllers.Main.txtShape_quadArrow": "Fyrdelad pil", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Fyrdelad pil med pratbubbla", "SSE.Controllers.Main.txtShape_rect": "Rektangel", + "SSE.Controllers.Main.txtShape_ribbon": "Down Ribbon", + "SSE.Controllers.Main.txtShape_ribbon2": "Uppåt band", "SSE.Controllers.Main.txtShape_rightArrow": "Högerpil", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Högerpil pratbubbla", + "SSE.Controllers.Main.txtShape_rightBrace": "Högerklammer", + "SSE.Controllers.Main.txtShape_rightBracket": "Höger hakparentes", "SSE.Controllers.Main.txtShape_round1Rect": "Rektangel med ett rundat hörn", "SSE.Controllers.Main.txtShape_round2DiagRect": "Rektangel med rundade hörn diagonalt", "SSE.Controllers.Main.txtShape_round2SameRect": "Rektangel med rundade hörn samma sida", "SSE.Controllers.Main.txtShape_roundRect": "Rektangel med avrundade hörn", + "SSE.Controllers.Main.txtShape_rtTriangle": "Höger triangel", + "SSE.Controllers.Main.txtShape_smileyFace": "Glad gubbe", + "SSE.Controllers.Main.txtShape_snip1Rect": "Rektangel med ett klippt hörn", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Rektangel med klippta hörn diagonalt", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Rektangel med klippta hörn på en sida", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Rektangel med ett klippt och rundat hörn", "SSE.Controllers.Main.txtShape_spline": "Kurva", "SSE.Controllers.Main.txtShape_star10": "10-punkts stjärna", "SSE.Controllers.Main.txtShape_star12": "12-punkts stjärna", @@ -656,13 +942,21 @@ "SSE.Controllers.Main.txtShape_star8": "8-punkts stjärna", "SSE.Controllers.Main.txtShape_stripedRightArrow": "Genomstruken högerpil", "SSE.Controllers.Main.txtShape_sun": "Sol", + "SSE.Controllers.Main.txtShape_teardrop": "Tår", "SSE.Controllers.Main.txtShape_textRect": "Textruta", + "SSE.Controllers.Main.txtShape_trapezoid": "Trapes", "SSE.Controllers.Main.txtShape_triangle": "Triangel", "SSE.Controllers.Main.txtShape_upArrow": "Pil upp", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Pratbubbla uppåtpil", "SSE.Controllers.Main.txtShape_upDownArrow": "Upp-Ner pil", "SSE.Controllers.Main.txtShape_uturnArrow": "U-sväng pil", "SSE.Controllers.Main.txtShape_verticalScroll": "Vertikal rullning", + "SSE.Controllers.Main.txtShape_wave": "Våg", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Pratbubbla rektangel", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rundad rektangel pratbubbla", "SSE.Controllers.Main.txtStarsRibbons": "Stjärnor & banner", + "SSE.Controllers.Main.txtStyle_Bad": "Dålig", "SSE.Controllers.Main.txtStyle_Calculation": "Beräkning", "SSE.Controllers.Main.txtStyle_Check_Cell": "Markera cell", "SSE.Controllers.Main.txtStyle_Comma": "Komma", @@ -678,6 +972,7 @@ "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", "SSE.Controllers.Main.txtStyle_Normal": "Normal", "SSE.Controllers.Main.txtStyle_Note": "Notera", + "SSE.Controllers.Main.txtStyle_Output": "Output", "SSE.Controllers.Main.txtStyle_Percent": "Procent", "SSE.Controllers.Main.txtStyle_Title": "Titel", "SSE.Controllers.Main.txtStyle_Total": "Totalt", @@ -688,6 +983,7 @@ "SSE.Controllers.Main.txtValues": "Värden", "SSE.Controllers.Main.txtXAxis": "X-axel", "SSE.Controllers.Main.txtYAxis": "Y-axel", + "SSE.Controllers.Main.txtYears": "år", "SSE.Controllers.Main.unknownErrorText": "Okänt fel.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Din webbläsare stöds ej.", "SSE.Controllers.Main.uploadImageExtMessage": "Okänt bildformat.", @@ -700,12 +996,17 @@ "SSE.Controllers.Main.warnBrowserZoom": "Din webbläsares nuvarande zoominställningar stöds inte fullt ut. Återställ till standard zoom genom att trycka på Ctrl + 0.", "SSE.Controllers.Main.warnLicenseExceeded": "Antalet samtidiga anslutningar till dokumentservern har överskridits och dokumentet öppnas endast för visning.
    Vänligen kontakta din systemadministratör för mer information.", "SSE.Controllers.Main.warnLicenseExp": "Din licens har gått ut.
    Förnya din licens och uppdatera sidan.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licensen ogiltig.
    Ingen access till redigeringsfunktioner.
    Kontakta din administratör.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licensen måste förnyas.
    Endast begränsad funktionalitet.
    Kontakta din administratör för full funktionalitet.", "SSE.Controllers.Main.warnLicenseUsersExceeded": "Antalet samtidiga användare har överskridits och dokumentet öppnas endast för visning.
    Vänligen kontakta din systemadministratör för mer information.", "SSE.Controllers.Main.warnNoLicense": "Den här versionen av %1 har vissa begränsningar för samtidiga anslutningar till dokumentservern.
    Om du behöver mer, överväg att köpa en kommersiell licens.", "SSE.Controllers.Main.warnNoLicenseUsers": "Den här versionen av %1 har vissa begränsningar för samtidiga användare.
    Om du behöver mer, överväg att köpa en kommersiell licens.", "SSE.Controllers.Main.warnProcessRightsChange": "Du har nekats rätten att redigera filen.", "SSE.Controllers.Print.strAllSheets": "Alla kalkylblad", + "SSE.Controllers.Print.textFirstCol": "Första kolumnen", "SSE.Controllers.Print.textFirstRow": "Första raden", + "SSE.Controllers.Print.textFrozenCols": "Låsta kolumner", + "SSE.Controllers.Print.textFrozenRows": "Låsta reder", "SSE.Controllers.Print.textInvalidRange": "FEL! Ogiltigt cellintervall", "SSE.Controllers.Print.textNoRepeat": "Upprepa inte", "SSE.Controllers.Print.textRepeat": "Upprepa...", @@ -716,23 +1017,33 @@ "SSE.Controllers.Statusbar.errorLastSheet": "Arbetsboken måste ha minst en synlig flik.", "SSE.Controllers.Statusbar.errorRemoveSheet": "Kan inte radera kalkylbladet.", "SSE.Controllers.Statusbar.strSheet": "Flik", + "SSE.Controllers.Statusbar.textSheetViewTip": "Du är i Sheet View-läge. Filter och sortering är endast synliga för dig och de som fortfarande är i den här vyn.", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Du är i Sheet View-läge. Filter är endast synliga för dig och de som fortfarande är i den här vyn.", "SSE.Controllers.Statusbar.warnDeleteSheet": "De valda kalkylarken kan innehålla data. Är du säker på att du vill fortsätta?", "SSE.Controllers.Statusbar.zoomText": "Zooma {0}%", "SSE.Controllers.Toolbar.confirmAddFontName": "Teckensnittet du kommer att spara finns inte på den aktuella enheten.
    Textstilen kommer att visas med ett av systemets teckensnitt, sparade teckensnitt kommer att användas när det är tillgängligt.
    Vill du fortsätta ?", + "SSE.Controllers.Toolbar.errorComboSeries": "Välj minst två serier med data för att skapa ett kombinationsschema.", "SSE.Controllers.Toolbar.errorMaxRows": "FEL! Det maximala antalet dataserier per diagram är 255", "SSE.Controllers.Toolbar.errorStockChart": "Felaktig radordning. Att bygga en börsdiagram plats data på arket i följande ordning:
    öppningspris, max pris, min pris, slutkurs.", "SSE.Controllers.Toolbar.textAccent": "Accenter", "SSE.Controllers.Toolbar.textBracket": "Parenteser", + "SSE.Controllers.Toolbar.textDirectional": "Riktning", "SSE.Controllers.Toolbar.textFontSizeErr": "Felaktigt värde.
    Ange numeriskt värde mellan 1 och 409", "SSE.Controllers.Toolbar.textFraction": "Fraktioner", "SSE.Controllers.Toolbar.textFunction": "Funktioner", + "SSE.Controllers.Toolbar.textIndicator": "Indikatorer", "SSE.Controllers.Toolbar.textInsert": "Infoga", "SSE.Controllers.Toolbar.textIntegral": "Integraler", "SSE.Controllers.Toolbar.textLargeOperator": "Stora operatorer", "SSE.Controllers.Toolbar.textLimitAndLog": "Begränsningar och logaritmer", + "SSE.Controllers.Toolbar.textLongOperation": "Lång operation", "SSE.Controllers.Toolbar.textMatrix": "Matriser", + "SSE.Controllers.Toolbar.textOperator": "Operatorer", "SSE.Controllers.Toolbar.textPivot": "Pivottabell", + "SSE.Controllers.Toolbar.textRadical": "Radikaler", + "SSE.Controllers.Toolbar.textRating": "Betyg", "SSE.Controllers.Toolbar.textScript": "Skript", + "SSE.Controllers.Toolbar.textShapes": "Former", "SSE.Controllers.Toolbar.textSymbols": "Symboler", "SSE.Controllers.Toolbar.textWarning": "Varning", "SSE.Controllers.Toolbar.txtAccent_Accent": "Akut", @@ -740,11 +1051,21 @@ "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Vänster pil ovanför", "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Högerriktad pil ovanför", "SSE.Controllers.Toolbar.txtAccent_Bar": "Linje", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Boxad formel (med hållare)", "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxad formel (exempel)", "SSE.Controllers.Toolbar.txtAccent_Check": "Markera", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vektor A", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC med overbar", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y med overbar", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "Trippel punkt", "SSE.Controllers.Toolbar.txtAccent_DDot": "Dubbelpunkt", "SSE.Controllers.Toolbar.txtAccent_Dot": "Punkt", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Dubbel overbar", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Grav", "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Gruppera tecken under", "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Gruppera tecken ovanför", "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Vänster harpun ovanför", @@ -796,21 +1117,43 @@ "SSE.Controllers.Toolbar.txtDeleteCells": "Radera celler", "SSE.Controllers.Toolbar.txtExpand": "Expandera och sortera", "SSE.Controllers.Toolbar.txtExpandSort": "Data bredvid markeringen kommer inte att sorteras. Vill du utöka markeringen så att den inkluderar intilliggande data eller fortsätta att sortera de markerade cellerna?", + "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skev fraktion", "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Differentiell", "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Differentiell", "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Differentiell", "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Differentiell", "SSE.Controllers.Toolbar.txtFractionHorizontal": "Linjär fraktion", "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi över 2", + "SSE.Controllers.Toolbar.txtFractionSmall": "Liten fraktion", "SSE.Controllers.Toolbar.txtFractionVertical": "Staplade fraktioner", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Inverterad cosinus funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Hyperboliska inverterad cosinus funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Inverterad cotangent funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Hyperboliska inverterad cotangent funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Inverterad cosecant funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Hyperboliska inverterad cosecant funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Inverterad secant funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Hyperboliska inverterad secant funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Inverterad sinus funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperboliska inverterad sinus funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Inverterad tangent funktion", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperboliska inverterad tangent funktion", "SSE.Controllers.Toolbar.txtFunction_Cos": "Cosinus funktion", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Hyperboliska cosinus funktion", "SSE.Controllers.Toolbar.txtFunction_Cot": "Cotangens funktion", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Hyperboliska cotangent funktion", "SSE.Controllers.Toolbar.txtFunction_Csc": "Cosekant funktion", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Hyperboliska cosekanten funktion", "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangentformel", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Sekant funktion", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Hyperboliska secant funktion", "SSE.Controllers.Toolbar.txtFunction_Sin": "Sine funktion", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Hyperboliska sinus funktion", "SSE.Controllers.Toolbar.txtFunction_Tan": "Tangentfunktion", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Hyperboliska tangent function", + "SSE.Controllers.Toolbar.txtInsertCells": "Infoga celler", "SSE.Controllers.Toolbar.txtIntegral": "Integral", "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differentiell theta", "SSE.Controllers.Toolbar.txtIntegral_dx": "Differentiell x", @@ -821,9 +1164,23 @@ "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Dubbelintegral", "SSE.Controllers.Toolbar.txtIntegralOriented": "Konturintegral", "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Konturintegral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Ytliga integraler", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Ytliga integraler", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Ytliga integraler", "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Konturintegral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volymintegral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volymintegral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volymintegral", "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "SSE.Controllers.Toolbar.txtIntegralTriple": "Trippel integral", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Trippel integral", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Trippel integral", "SSE.Controllers.Toolbar.txtInvalidRange": "FEL! Ogiltigt cellintervall", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Kil", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Kil", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Kil", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Kil", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Kil", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Samprodukt", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Samprodukt", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Samprodukt", @@ -833,6 +1190,12 @@ "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summering", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summering", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Produkt", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Koppla ihop", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Genomskärning", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Genomskärning", "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Genomskärning", @@ -848,6 +1211,11 @@ "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summering", "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summering", "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summering", + "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Koppla ihop", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Koppla ihop", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Koppla ihop", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Koppla ihop", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Koppla ihop", "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Gräns exempel", "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Max exempel", "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Gräns", @@ -885,6 +1253,7 @@ "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Högerriktad pil nedanför", "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Högerriktad pil ovanför", "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Kolon är lika med", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Avkastning", "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Delta-utbyten", "SSE.Controllers.Toolbar.txtOperator_Definition": "Lika med enligt definition", "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta lika med", @@ -902,6 +1271,7 @@ "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radikal", "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Roten ur med grad", "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Kubikrot", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radikal med grad", "SSE.Controllers.Toolbar.txtRadicalSqrt": "Roten ur", "SSE.Controllers.Toolbar.txtScriptCustom_1": "Skript", "SSE.Controllers.Toolbar.txtScriptCustom_2": "Skript", @@ -909,6 +1279,7 @@ "SSE.Controllers.Toolbar.txtScriptCustom_4": "Skript", "SSE.Controllers.Toolbar.txtScriptSub": "Nedsänkt", "SSE.Controllers.Toolbar.txtScriptSubSup": "Nedsänkt-upphöjd", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Vänster subskript-superscript", "SSE.Controllers.Toolbar.txtScriptSup": "Upphöjd", "SSE.Controllers.Toolbar.txtSorting": "Sorterar", "SSE.Controllers.Toolbar.txtSortSelected": "Sortering vald", @@ -918,16 +1289,23 @@ "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", "SSE.Controllers.Toolbar.txtSymbol_approx": "Nästa lika med", "SSE.Controllers.Toolbar.txtSymbol_ast": "Asterisk operator", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_beth": "Slå vad", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Punktlista typ", "SSE.Controllers.Toolbar.txtSymbol_cap": "Genomskärning", "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Kubikrot", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Horisontell elips i mitten", "SSE.Controllers.Toolbar.txtSymbol_celsius": "Grader celsius", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", "SSE.Controllers.Toolbar.txtSymbol_cong": "Ungefär lika med", + "SSE.Controllers.Toolbar.txtSymbol_cup": "Koppla ihop", "SSE.Controllers.Toolbar.txtSymbol_ddots": "Ner höger diagonal ellips", "SSE.Controllers.Toolbar.txtSymbol_degree": "Grader", "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", "SSE.Controllers.Toolbar.txtSymbol_div": "Divisionstecken", "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Nedåtpil", "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Tom uppsättning", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", "SSE.Controllers.Toolbar.txtSymbol_equals": "Lika med", "SSE.Controllers.Toolbar.txtSymbol_equiv": "Identisk med", "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", @@ -942,7 +1320,9 @@ "SSE.Controllers.Toolbar.txtSymbol_in": "Element av", "SSE.Controllers.Toolbar.txtSymbol_inc": "Öka", "SSE.Controllers.Toolbar.txtSymbol_infinity": "Oändligt", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Vänsterpil", "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Vänster-höger pil", "SSE.Controllers.Toolbar.txtSymbol_leq": "Mindre än eller lika med", @@ -950,37 +1330,58 @@ "SSE.Controllers.Toolbar.txtSymbol_ll": "Mycket mindre än", "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus plus", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", "SSE.Controllers.Toolbar.txtSymbol_neq": "Inte lika med", "SSE.Controllers.Toolbar.txtSymbol_ni": "Fortsätt som medlem", "SSE.Controllers.Toolbar.txtSymbol_not": "Inte signerad", "SSE.Controllers.Toolbar.txtSymbol_notexists": "Det existerar inte", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Partiell differential", "SSE.Controllers.Toolbar.txtSymbol_percent": "Procentsats", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", "SSE.Controllers.Toolbar.txtSymbol_plus": "Plus", "SSE.Controllers.Toolbar.txtSymbol_pm": "Plus minus", "SSE.Controllers.Toolbar.txtSymbol_propto": "Proportionell till", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Fjärde roten", "SSE.Controllers.Toolbar.txtSymbol_qed": "Slut på bevis", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Diagonal ellips", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Högerpil", "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Radikal skylt", "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", "SSE.Controllers.Toolbar.txtSymbol_therefore": "Därför", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", "SSE.Controllers.Toolbar.txtSymbol_times": "Multiplikationstecken", "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Pil upp", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon variant", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi variant", "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant", "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Theta variant", "SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertikal ellips", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Tabell mörk stil", "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Tabell ljus stil", "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Tabell medium stil", "SSE.Controllers.Toolbar.warnLongOperation": "Den operation du ska utföra kan ta ganska lång tid att slutföra.
    Är du säker på att du vill fortsätta?", "SSE.Controllers.Toolbar.warnMergeLostData": "Endast data från den övre vänstra cellen kommer att förbli i den sammanfogade cellen.
    Är du säker på att du vill fortsätta?", "SSE.Controllers.Viewport.textFreezePanes": "Lås paneler", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Visa skugga för frysta rutor", "SSE.Controllers.Viewport.textHideFBar": "Göm formelfält", "SSE.Controllers.Viewport.textHideGridlines": "Dölj stödlinjer", "SSE.Controllers.Viewport.textHideHeadings": "Göm rubriker", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Decimaltecken", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Tusentals-separator", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Inställningar som används för att känna igen numeriska data", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Avancerade inställningar", "SSE.Views.AutoFilterDialog.btnCustomFilter": "Anpassat filter", "SSE.Views.AutoFilterDialog.textAddSelection": "Lägg till aktuellt urval till filter", @@ -1001,9 +1402,11 @@ "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtrera efter typsnittsfärg", "SSE.Views.AutoFilterDialog.txtGreater": "Större än...", "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Större än eller lika med...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Etikettfilter", "SSE.Views.AutoFilterDialog.txtLess": "Mindre än...", "SSE.Views.AutoFilterDialog.txtLessEquals": "Mindre än eller lika med...", "SSE.Views.AutoFilterDialog.txtNotBegins": "Börjar inte med...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Inte mellan...", "SSE.Views.AutoFilterDialog.txtNotContains": "Innehåller inte...", "SSE.Views.AutoFilterDialog.txtNotEnds": "Slutar inte med...", "SSE.Views.AutoFilterDialog.txtNotEquals": "Är inte lika med...", @@ -1013,8 +1416,12 @@ "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sortera efter font-färg", "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sortera högst till lägst", "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sortera Lägsta till Högsta", + "SSE.Views.AutoFilterDialog.txtSortOption": "Flera sorteringsalternativ...", "SSE.Views.AutoFilterDialog.txtTextFilter": "Textfilter", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", + "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Filtervärde", + "SSE.Views.AutoFilterDialog.warnFilterError": "Du behöver minst ett fält i data-området för att kunna använda ett värdefilter.", "SSE.Views.AutoFilterDialog.warnNoSelected": "Du måste välja minst ett värde", "SSE.Views.CellEditor.textManager": "Namnhanterare", "SSE.Views.CellEditor.tipFormula": "Infoga funktion", @@ -1023,37 +1430,97 @@ "SSE.Views.CellRangeDialog.txtEmpty": "Detta fält är obligatoriskt", "SSE.Views.CellRangeDialog.txtInvalidRange": "FEL! Ogiltigt cellintervall", "SSE.Views.CellRangeDialog.txtTitle": "Välj dataområde", + "SSE.Views.CellSettings.strShrink": "Krymp för att passa", + "SSE.Views.CellSettings.strWrap": "Radbryt text", "SSE.Views.CellSettings.textAngle": "Vinkel", "SSE.Views.CellSettings.textBackColor": "Bakgrundsfärg", "SSE.Views.CellSettings.textBackground": "Bakgrundsfärg", "SSE.Views.CellSettings.textBorderColor": "Färg", "SSE.Views.CellSettings.textBorders": "Ramutseende", + "SSE.Views.CellSettings.textClearRule": "Rensa linjaler", "SSE.Views.CellSettings.textColor": "Färgfyllnad", + "SSE.Views.CellSettings.textColorScales": "Färgskalor", + "SSE.Views.CellSettings.textCondFormat": "Villkorlig formatering", + "SSE.Views.CellSettings.textControl": "Textkontroll", + "SSE.Views.CellSettings.textDataBars": "Data staplar", "SSE.Views.CellSettings.textDirection": "Riktning", "SSE.Views.CellSettings.textFill": "Fyll", "SSE.Views.CellSettings.textForeground": "Förgrundsfärg", "SSE.Views.CellSettings.textGradient": "Fyllning", + "SSE.Views.CellSettings.textGradientColor": "Färg", + "SSE.Views.CellSettings.textGradientFill": "Fyllning", + "SSE.Views.CellSettings.textIndent": "Indrag", + "SSE.Views.CellSettings.textItems": "objekt", "SSE.Views.CellSettings.textLinear": "Linjär", + "SSE.Views.CellSettings.textManageRule": "Hantera regler", + "SSE.Views.CellSettings.textNewRule": "Ny regel", "SSE.Views.CellSettings.textNoFill": "Ingen fyllning", "SSE.Views.CellSettings.textOrientation": "Text orientering", "SSE.Views.CellSettings.textPattern": "Mönster", "SSE.Views.CellSettings.textPatternFill": "Mönster", + "SSE.Views.CellSettings.textPosition": "Position", + "SSE.Views.CellSettings.textRadial": "Radiell", "SSE.Views.CellSettings.textSelectBorders": "Välj hur kantlinjer ska tillämpas", + "SSE.Views.CellSettings.textSelection": "Från aktuell markering", + "SSE.Views.CellSettings.textThisPivot": "Från denna pivot", + "SSE.Views.CellSettings.textThisSheet": "Från detta kalkylblad", + "SSE.Views.CellSettings.textThisTable": "Från denna tabell", + "SSE.Views.CellSettings.tipAddGradientPoint": "Lägg till lutningspunkt", "SSE.Views.CellSettings.tipAll": "Ytterkant och alla inre linjer", "SSE.Views.CellSettings.tipBottom": "Endast yttre ram i botten", + "SSE.Views.CellSettings.tipDiagD": "Ange diagonal ner ram", + "SSE.Views.CellSettings.tipDiagU": "Ange diagonal upp ram", "SSE.Views.CellSettings.tipInner": "Endast inre linjer", "SSE.Views.CellSettings.tipInnerHor": "Ställ horisontella inre linjer", "SSE.Views.CellSettings.tipInnerVert": "Endast inre vertikala linjer", "SSE.Views.CellSettings.tipLeft": "Yttre vänstra ram endast", "SSE.Views.CellSettings.tipNone": "Inga ramar", "SSE.Views.CellSettings.tipOuter": "Endast ytterkant", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", "SSE.Views.CellSettings.tipRight": "Endast yttre höger ram", "SSE.Views.CellSettings.tipTop": "Endast yttre övre ram", + "SSE.Views.ChartDataDialog.errorInFormula": "Det finns ett fel i formeln du angav.", + "SSE.Views.ChartDataDialog.errorInvalidReference": "Referensen är inte giltig. Hänvisningen måste vara till ett öppet kalkylblad.", + "SSE.Views.ChartDataDialog.errorMaxPoints": "Max antal punkter i serie är 4096.", + "SSE.Views.ChartDataDialog.errorMaxRows": "Det maximala antalet dataserier per diagram är 255.", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "Referensen är inte giltig. Referenser för titlar, värden, storlekar eller datatiketter måste vara en enda cell, rad eller kolumn.", + "SSE.Views.ChartDataDialog.errorNoValues": "För att skapa ett diagram måste serien innehålla minst ett värde.", + "SSE.Views.ChartDataDialog.errorStockChart": "Felaktig ordningsföljd. För att bygga ett aktiediagram placerar du uppgifterna på kalkylarket i följande ordning:
    öppningspris, maxpris, minipris, slutkurs.", "SSE.Views.ChartDataDialog.textAdd": "Lägg till", + "SSE.Views.ChartDataDialog.textCategory": "Etikett horisontell axel", + "SSE.Views.ChartDataDialog.textData": "Diagram data-område", + "SSE.Views.ChartDataDialog.textDelete": "Ta bort", + "SSE.Views.ChartDataDialog.textDown": "Ner", + "SSE.Views.ChartDataDialog.textEdit": "Redigera", + "SSE.Views.ChartDataDialog.textInvalidRange": "Ogiltigt cellområde", + "SSE.Views.ChartDataDialog.textSelectData": "Välj data", + "SSE.Views.ChartDataDialog.textSeries": "Legend Entries (Series)", + "SSE.Views.ChartDataDialog.textSwitch": "Byt rad / kolumn", + "SSE.Views.ChartDataDialog.textTitle": "Diagram data", + "SSE.Views.ChartDataDialog.textUp": "Upp", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "Det finns ett fel i formeln du angav.", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "Referensen är inte giltig. Hänvisningen måste vara till ett öppet kalkylblad.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "Max antal punkter i serie är 4096.", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "Det maximala antalet dataserier per diagram är 255.", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "Referensen är inte giltig. Referenser för titlar, värden, storlekar eller datatiketter måste vara en enda cell, rad eller kolumn.", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "För att skapa ett diagram måste serien innehålla minst ett värde.", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Felaktig ordningsföljd. För att bygga ett aktiediagram placerar du uppgifterna på kalkylarket i följande ordning:
    öppningspris, maxpris, minipris, slutkurs.", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Ogiltigt cellområde", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Välj data", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Axel etikett område", + "SSE.Views.ChartDataRangeDialog.txtChoose": "Välj område", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Serienamn", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Axel etiketter", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Redigera serier", + "SSE.Views.ChartDataRangeDialog.txtValues": "Värden", + "SSE.Views.ChartDataRangeDialog.txtXValues": "X-värden", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Y-värden", + "SSE.Views.ChartSettings.strLineWeight": "Linjetjocklek", "SSE.Views.ChartSettings.strSparkColor": "Färg", "SSE.Views.ChartSettings.strTemplate": "Mall", "SSE.Views.ChartSettings.textAdvanced": "Visa avancerade inställningar", "SSE.Views.ChartSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.
    Vänligen ange ett värde mellan 0 och 1584 pt.", + "SSE.Views.ChartSettings.textChangeType": "Ändra typ", "SSE.Views.ChartSettings.textChartType": "Ändra diagramtyp", "SSE.Views.ChartSettings.textEditData": "Redigera data och plats", "SSE.Views.ChartSettings.textFirstPoint": "Första punkten", @@ -1074,12 +1541,18 @@ "SSE.Views.ChartSettingsDlg.errorMaxPoints": "FEL! Det maximala antalet punkter i serie per diagram är 4096.", "SSE.Views.ChartSettingsDlg.errorMaxRows": "FEL! Det maximala antalet dataserier per diagram är 255", "SSE.Views.ChartSettingsDlg.errorStockChart": "Felaktig ordningsföljd. För att bygga ett aktiediagram placerar du uppgifterna på arket i följande ordning:
    öppningspris, maxpris, minipris, slutkurs.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "Flytta eller ändra inte storlek på celler", "SSE.Views.ChartSettingsDlg.textAlt": "Alternativ text", "SSE.Views.ChartSettingsDlg.textAltDescription": "Beskrivning", "SSE.Views.ChartSettingsDlg.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", "SSE.Views.ChartSettingsDlg.textAltTitle": "Titel", "SSE.Views.ChartSettingsDlg.textAuto": "Auto", "SSE.Views.ChartSettingsDlg.textAutoEach": "Auto för varje", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axel korsar", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axel alternativ", + "SSE.Views.ChartSettingsDlg.textAxisPos": "Axel position", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "Inställning axlar", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Titel", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Mellan Tick-märken", "SSE.Views.ChartSettingsDlg.textBillions": "Miljarder", "SSE.Views.ChartSettingsDlg.textBottom": "Botten", @@ -1097,10 +1570,15 @@ "SSE.Views.ChartSettingsDlg.textEmptyLine": "Anslut datapunkter med linje", "SSE.Views.ChartSettingsDlg.textFit": "Anpassa till bredd", "SSE.Views.ChartSettingsDlg.textFixed": "Fast", + "SSE.Views.ChartSettingsDlg.textFormat": "Etikettformat", + "SSE.Views.ChartSettingsDlg.textGaps": "luckor", "SSE.Views.ChartSettingsDlg.textGridLines": "Stödlinjer", + "SSE.Views.ChartSettingsDlg.textGroup": "Gruppera Sparkline", "SSE.Views.ChartSettingsDlg.textHide": "Göm", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Dölj axlar", "SSE.Views.ChartSettingsDlg.textHigh": "Hög", "SSE.Views.ChartSettingsDlg.textHorAxis": "Horisontell axel", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Andra horisontella axeln", "SSE.Views.ChartSettingsDlg.textHorizontal": "Horisontal", "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", "SSE.Views.ChartSettingsDlg.textHundreds": "Hundratals", @@ -1109,17 +1587,20 @@ "SSE.Views.ChartSettingsDlg.textInnerBottom": "Inre botten", "SSE.Views.ChartSettingsDlg.textInnerTop": "Inre topp", "SSE.Views.ChartSettingsDlg.textInvalidRange": "FEL! Ogiltigt cellintervall", + "SSE.Views.ChartSettingsDlg.textLabelDist": "Axel Etikett Avstånd", "SSE.Views.ChartSettingsDlg.textLabelInterval": "Intervall mellan etiketter", "SSE.Views.ChartSettingsDlg.textLabelOptions": "Etikettalternativ", "SSE.Views.ChartSettingsDlg.textLabelPos": "Etikettposition", "SSE.Views.ChartSettingsDlg.textLayout": "Layout", "SSE.Views.ChartSettingsDlg.textLeft": "Vänster", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Vänster Overlay", "SSE.Views.ChartSettingsDlg.textLegendBottom": "Botten", "SSE.Views.ChartSettingsDlg.textLegendLeft": "Vänster", "SSE.Views.ChartSettingsDlg.textLegendPos": "Teckenförklaring", "SSE.Views.ChartSettingsDlg.textLegendRight": "Höger", "SSE.Views.ChartSettingsDlg.textLegendTop": "Överst", "SSE.Views.ChartSettingsDlg.textLines": "Rader", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Platsintervall", "SSE.Views.ChartSettingsDlg.textLow": "Låg", "SSE.Views.ChartSettingsDlg.textMajor": "Större", "SSE.Views.ChartSettingsDlg.textMajorMinor": "Större och mindre", @@ -1129,54 +1610,163 @@ "SSE.Views.ChartSettingsDlg.textMarksInterval": "Intervall mellan markeringar", "SSE.Views.ChartSettingsDlg.textMaxValue": "Maxvärde", "SSE.Views.ChartSettingsDlg.textMillions": "Miljontals", + "SSE.Views.ChartSettingsDlg.textMinor": "Mindre", "SSE.Views.ChartSettingsDlg.textMinorType": "Mindre typ", "SSE.Views.ChartSettingsDlg.textMinValue": "Minsta värde", "SSE.Views.ChartSettingsDlg.textNextToAxis": "Intill axel", "SSE.Views.ChartSettingsDlg.textNone": "Ingen", "SSE.Views.ChartSettingsDlg.textNoOverlay": "Ingen överlagring", "SSE.Views.ChartSettingsDlg.textOneCell": "Flytta men ändra inte storlek på celler", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "On-Tick markeringar", "SSE.Views.ChartSettingsDlg.textOut": "Ut", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Yttre topp", + "SSE.Views.ChartSettingsDlg.textOverlay": "Overlay", "SSE.Views.ChartSettingsDlg.textReverse": "Värden i omvänd ordning", "SSE.Views.ChartSettingsDlg.textReverseOrder": "Omvänd ordning", "SSE.Views.ChartSettingsDlg.textRight": "Höger", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "Höger overlay", "SSE.Views.ChartSettingsDlg.textRotated": "Roterad", "SSE.Views.ChartSettingsDlg.textSameAll": "Lika för alla", "SSE.Views.ChartSettingsDlg.textSelectData": "Välj data", + "SSE.Views.ChartSettingsDlg.textSeparator": "Datatiketter Separator", + "SSE.Views.ChartSettingsDlg.textSeriesName": "Serienamn", "SSE.Views.ChartSettingsDlg.textShow": "Visa", "SSE.Views.ChartSettingsDlg.textShowBorders": "Visa diagramkanter", "SSE.Views.ChartSettingsDlg.textShowData": "Visa data i dolda rader och kolumner", "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Visa tomma celler som", "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Visa axlar", "SSE.Views.ChartSettingsDlg.textShowValues": "Visa diagramvärden", + "SSE.Views.ChartSettingsDlg.textSingle": "Enkel Sparkline", + "SSE.Views.ChartSettingsDlg.textSmooth": "Mjuk", + "SSE.Views.ChartSettingsDlg.textSnap": "Fäst till cell", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline områden", + "SSE.Views.ChartSettingsDlg.textStraight": "Rak", "SSE.Views.ChartSettingsDlg.textStyle": "Stil", "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", "SSE.Views.ChartSettingsDlg.textThousands": "Tusen", "SSE.Views.ChartSettingsDlg.textTickOptions": "Markera alternativ", "SSE.Views.ChartSettingsDlg.textTitle": "Diagram - avancerade inställningar", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Avancerade inställningar", "SSE.Views.ChartSettingsDlg.textTop": "Överst", + "SSE.Views.ChartSettingsDlg.textTrillions": "Trillions", "SSE.Views.ChartSettingsDlg.textTwoCell": "Flytta och ändra storlek på celler", "SSE.Views.ChartSettingsDlg.textType": "Typ", + "SSE.Views.ChartSettingsDlg.textTypeData": "Typ & data", "SSE.Views.ChartSettingsDlg.textUnits": "Visa enheter", "SSE.Views.ChartSettingsDlg.textValue": "Värde", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertikal axel", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Andra vertikala axeln", "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X-axel titel", "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y-axel titel", "SSE.Views.ChartSettingsDlg.textZero": "Noll", "SSE.Views.ChartSettingsDlg.txtEmpty": "Detta fält är obligatoriskt", + "SSE.Views.ChartTypeDialog.errorComboSeries": "Välj minst två serier med data för att skapa ett kombinationsschema.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "Den valda diagramtypen kräver den sekundära axeln som ett befintligt diagram använder. Välj en annan diagramtyp.", + "SSE.Views.ChartTypeDialog.textSecondary": "Andra axeln", + "SSE.Views.ChartTypeDialog.textSeries": "Serier", + "SSE.Views.ChartTypeDialog.textStyle": "Stil", + "SSE.Views.ChartTypeDialog.textTitle": "Diagramtyp", + "SSE.Views.ChartTypeDialog.textType": "Typ", + "SSE.Views.CreatePivotDialog.textDataRange": "Dataområde källa", + "SSE.Views.CreatePivotDialog.textDestination": "Välj tabellens plats", "SSE.Views.CreatePivotDialog.textExist": "Befintligt kalkylblad", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Ogiltigt cellområde", "SSE.Views.CreatePivotDialog.textNew": "Nytt kalkylblad", "SSE.Views.CreatePivotDialog.textSelectData": "Välj data", "SSE.Views.CreatePivotDialog.textTitle": "Skapa pivottabell", + "SSE.Views.CreatePivotDialog.txtEmpty": "Detta fält är obligatoriskt", + "SSE.Views.CreateSparklineDialog.textDataRange": "Dataområde källa", + "SSE.Views.CreateSparklineDialog.textDestination": "Välj var du vill placera sparklines", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Ogiltigt cellområde", + "SSE.Views.CreateSparklineDialog.textSelectData": "Välj data", + "SSE.Views.CreateSparklineDialog.textTitle": "Skapa Sparklines", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Detta fält är obligatoriskt", "SSE.Views.DataTab.capBtnGroup": "Grupp", "SSE.Views.DataTab.capBtnTextCustomSort": "Anpassad sortering", + "SSE.Views.DataTab.capBtnTextDataValidation": "Datavalidering", "SSE.Views.DataTab.capBtnTextRemDuplicates": "Ta bort dubbletter", "SSE.Views.DataTab.capBtnTextToCol": "Text till kolumner", "SSE.Views.DataTab.capBtnUngroup": "Dela upp", + "SSE.Views.DataTab.capDataFromText": "Från Text/csv", + "SSE.Views.DataTab.mniFromFile": "Hämta data från fil", + "SSE.Views.DataTab.mniFromUrl": "Hämta data från URL", "SSE.Views.DataTab.textBelow": "Summeringsrader under detaljer", + "SSE.Views.DataTab.textClear": "Rensa disposition", + "SSE.Views.DataTab.textColumns": "Avdela kolumner", "SSE.Views.DataTab.textGroupColumns": "Gruppera kolumner", "SSE.Views.DataTab.textGroupRows": "Gruppera rader", "SSE.Views.DataTab.textRightOf": "Summeringskolumner till höger om detaljer", + "SSE.Views.DataTab.textRows": "Avgruppera rader", "SSE.Views.DataTab.tipCustomSort": "Anpassad sortering", + "SSE.Views.DataTab.tipDataFromText": "Hämta data från Text/csv fil", + "SSE.Views.DataTab.tipDataValidation": "Datavalidering", + "SSE.Views.DataTab.tipGroup": "Gruppera celler", + "SSE.Views.DataTab.tipRemDuplicates": "Ta bort dubbla rader från ett kalkylark", + "SSE.Views.DataTab.tipToColumns": "Separera celltext i kolumner", + "SSE.Views.DataTab.tipUngroup": "Ta bort gruppering av celler", + "SSE.Views.DataValidationDialog.errorFormula": "Värdet valideras för närvarande till ett fel. Vill du fortsätta?", + "SSE.Views.DataValidationDialog.errorInvalid": "Värdet du angav för fältet \"{0}\" är ogiltigt.", + "SSE.Views.DataValidationDialog.errorInvalidDate": "Datumet du angav för fältet \"{0}\" är ogiltigt.", + "SSE.Views.DataValidationDialog.errorInvalidList": "Listkällan måste vara en avgränsad lista eller en hänvisning till en rad eller kolumn.", + "SSE.Views.DataValidationDialog.errorInvalidTime": "Tiden du angav för fältet \"{0}\" är ogiltig.", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "Fältet \"{1}\" måste vara större än eller lika med fältet \"{0}\".", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "Du måste ange ett värde i både fältet \"{0}\" och fältet \"{1}\".", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "Du måste ange ett värde i fältet \"{0}\".", + "SSE.Views.DataValidationDialog.errorNamedRange": "Det angivna intervallet som du angav kan inte hittas.", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "Negativa värden kan inte användas under villkor \"{0}\".", + "SSE.Views.DataValidationDialog.errorNotNumeric": "Fältet \"{0}\" måste vara ett numeriskt värde, ett numeriskt uttryck eller hänvisa till en cell som innehåller ett numeriskt värde.", + "SSE.Views.DataValidationDialog.strError": "Felmeddelande", + "SSE.Views.DataValidationDialog.strInput": "Inmatningsmeddelande", + "SSE.Views.DataValidationDialog.strSettings": "Inställningar", + "SSE.Views.DataValidationDialog.textAlert": "Alert", + "SSE.Views.DataValidationDialog.textAllow": "Tillåt", + "SSE.Views.DataValidationDialog.textApply": "Tillämpa dessa ändringar på alla andra celler med samma inställningar", + "SSE.Views.DataValidationDialog.textCellSelected": "När cellen är vald, visa detta inmatningsmeddelande", + "SSE.Views.DataValidationDialog.textCompare": "Jämför med", + "SSE.Views.DataValidationDialog.textData": "Data", + "SSE.Views.DataValidationDialog.textEndDate": "Slutdatum", + "SSE.Views.DataValidationDialog.textEndTime": "Sluttid", + "SSE.Views.DataValidationDialog.textError": "Felmeddelande", + "SSE.Views.DataValidationDialog.textFormula": "Formel", + "SSE.Views.DataValidationDialog.textIgnore": "Ignorera tomma", + "SSE.Views.DataValidationDialog.textInput": "Inmatningsmeddelande", + "SSE.Views.DataValidationDialog.textMax": "Max", + "SSE.Views.DataValidationDialog.textMessage": "Meddelande", + "SSE.Views.DataValidationDialog.textMin": "Minst", + "SSE.Views.DataValidationDialog.textSelectData": "Välj data", + "SSE.Views.DataValidationDialog.textShowDropDown": "Visa drop-down-list i cell", + "SSE.Views.DataValidationDialog.textShowError": "Visa felvarning efter att ogiltiga data har angetts", + "SSE.Views.DataValidationDialog.textShowInput": "Visa inmatningsmeddelande när cell är vald", + "SSE.Views.DataValidationDialog.textSource": "Källa", + "SSE.Views.DataValidationDialog.textStartDate": "Startdatum", + "SSE.Views.DataValidationDialog.textStartTime": "Starttid", + "SSE.Views.DataValidationDialog.textStop": "Stanna", + "SSE.Views.DataValidationDialog.textStyle": "Stil", + "SSE.Views.DataValidationDialog.textTitle": "Titel", + "SSE.Views.DataValidationDialog.textUserEnters": "När användaren anger ogiltiga data, visa detta felmeddelande", + "SSE.Views.DataValidationDialog.txtAny": "Valfritt värde", + "SSE.Views.DataValidationDialog.txtBetween": "mellan", + "SSE.Views.DataValidationDialog.txtDate": "Datum", + "SSE.Views.DataValidationDialog.txtDecimal": "Decimal", + "SSE.Views.DataValidationDialog.txtElTime": "Förfluten tid", + "SSE.Views.DataValidationDialog.txtEndDate": "Slutdatum", + "SSE.Views.DataValidationDialog.txtEndTime": "Sluttid", + "SSE.Views.DataValidationDialog.txtEqual": "lika", + "SSE.Views.DataValidationDialog.txtGreaterThan": "Större än", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "Större än eller lika med", + "SSE.Views.DataValidationDialog.txtLength": "Längd", + "SSE.Views.DataValidationDialog.txtLessThan": "mindre än", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "mindre än eller lika med", + "SSE.Views.DataValidationDialog.txtList": "Lista", + "SSE.Views.DataValidationDialog.txtNotBetween": "inte mellan", + "SSE.Views.DataValidationDialog.txtNotEqual": "Är inte lika med", + "SSE.Views.DataValidationDialog.txtOther": "Annan", + "SSE.Views.DataValidationDialog.txtStartDate": "Startdatum", + "SSE.Views.DataValidationDialog.txtStartTime": "Starttid", + "SSE.Views.DataValidationDialog.txtTextLength": "Textlängd", + "SSE.Views.DataValidationDialog.txtTime": "Tid", + "SSE.Views.DataValidationDialog.txtWhole": "Heltal", "SSE.Views.DigitalFilterDialog.capAnd": "Och", "SSE.Views.DigitalFilterDialog.capCondition1": "lika", "SSE.Views.DigitalFilterDialog.capCondition10": "slutar inte med", @@ -1193,9 +1783,12 @@ "SSE.Views.DigitalFilterDialog.capOr": "Eller", "SSE.Views.DigitalFilterDialog.textNoFilter": "inget filter", "SSE.Views.DigitalFilterDialog.textShowRows": "Visa rader där", + "SSE.Views.DigitalFilterDialog.textUse1": "Använda sig av ? att presentera varje enskilt tecken", + "SSE.Views.DigitalFilterDialog.textUse2": "Använd * för att presentera alla serier av tecken", "SSE.Views.DigitalFilterDialog.txtTitle": "Anpassat filter", "SSE.Views.DocumentHolder.advancedImgText": "Bild avancerade inställningar", "SSE.Views.DocumentHolder.advancedShapeText": "Form - Avancerade inställningar", + "SSE.Views.DocumentHolder.advancedSlicerText": "Slicer avancerade inställningar", "SSE.Views.DocumentHolder.bottomCellText": "Justera botten", "SSE.Views.DocumentHolder.bulletsText": "Punkter och numrering", "SSE.Views.DocumentHolder.centerCellText": "Centrera", @@ -1229,6 +1822,9 @@ "SSE.Views.DocumentHolder.textArrangeBackward": "Flytta bakåt", "SSE.Views.DocumentHolder.textArrangeForward": "Flytta framåt", "SSE.Views.DocumentHolder.textArrangeFront": "Flytta fram", + "SSE.Views.DocumentHolder.textAverage": "Genomsnitt", + "SSE.Views.DocumentHolder.textBullets": "Punkter", + "SSE.Views.DocumentHolder.textCount": "Antal", "SSE.Views.DocumentHolder.textCrop": "Beskär", "SSE.Views.DocumentHolder.textCropFill": "Fyll", "SSE.Views.DocumentHolder.textCropFit": "Anpassa", @@ -1237,9 +1833,16 @@ "SSE.Views.DocumentHolder.textFlipV": "Vänd vertikalt", "SSE.Views.DocumentHolder.textFreezePanes": "Lås paneler", "SSE.Views.DocumentHolder.textFromFile": "Från fil", + "SSE.Views.DocumentHolder.textFromStorage": "Från lagring", "SSE.Views.DocumentHolder.textFromUrl": "Från URL", + "SSE.Views.DocumentHolder.textListSettings": "Inställningar lista", + "SSE.Views.DocumentHolder.textMacro": "Tilldela makro", + "SSE.Views.DocumentHolder.textMax": "Max", + "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMore": "Mera funktioner", "SSE.Views.DocumentHolder.textMoreFormats": "Flera format", "SSE.Views.DocumentHolder.textNone": "Ingen", + "SSE.Views.DocumentHolder.textNumbering": "Numrering", "SSE.Views.DocumentHolder.textReplace": "Ersätt bild", "SSE.Views.DocumentHolder.textRotate": "Rotera", "SSE.Views.DocumentHolder.textRotate270": "Rotera 90° moturs", @@ -1250,8 +1853,11 @@ "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Centrera", "SSE.Views.DocumentHolder.textShapeAlignRight": "Högerjustera", "SSE.Views.DocumentHolder.textShapeAlignTop": "Justera till toppen", + "SSE.Views.DocumentHolder.textStdDev": "StdDev", + "SSE.Views.DocumentHolder.textSum": "Summa", "SSE.Views.DocumentHolder.textUndo": "Ångra", "SSE.Views.DocumentHolder.textUnFreezePanes": "Lås upp paneler", + "SSE.Views.DocumentHolder.textVar": "Var", "SSE.Views.DocumentHolder.topCellText": "Justera till toppen", "SSE.Views.DocumentHolder.txtAccounting": "Redovisning", "SSE.Views.DocumentHolder.txtAddComment": "Lägg till kommentar", @@ -1265,13 +1871,17 @@ "SSE.Views.DocumentHolder.txtClearComments": "Kommentarer", "SSE.Views.DocumentHolder.txtClearFormat": "Format", "SSE.Views.DocumentHolder.txtClearHyper": "Hyperlänkar", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Rensa valda Sparkline-grupper", + "SSE.Views.DocumentHolder.txtClearSparklines": "Rensa valda Sparklines", "SSE.Views.DocumentHolder.txtClearText": "Text", "SSE.Views.DocumentHolder.txtColumn": "Hela kolumnen", "SSE.Views.DocumentHolder.txtColumnWidth": "Ange kolumnbredd", + "SSE.Views.DocumentHolder.txtCondFormat": "Villkorlig formatering", "SSE.Views.DocumentHolder.txtCopy": "Kopiera", "SSE.Views.DocumentHolder.txtCurrency": "Valuta", "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Anpassad kolumnbredd", "SSE.Views.DocumentHolder.txtCustomRowHeight": "Anpassad radhöjd", + "SSE.Views.DocumentHolder.txtCustomSort": "Anpassad sortering", "SSE.Views.DocumentHolder.txtCut": "Klipp ut", "SSE.Views.DocumentHolder.txtDate": "Datum", "SSE.Views.DocumentHolder.txtDelete": "Radera", @@ -1297,6 +1907,7 @@ "SSE.Views.DocumentHolder.txtReapply": "Tillämpa", "SSE.Views.DocumentHolder.txtRow": "Hela raden", "SSE.Views.DocumentHolder.txtRowHeight": "Ange radhöjd", + "SSE.Views.DocumentHolder.txtScientific": "Vetenskaplig", "SSE.Views.DocumentHolder.txtSelect": "Välj", "SSE.Views.DocumentHolder.txtShiftDown": "Flytta celler nedåt", "SSE.Views.DocumentHolder.txtShiftLeft": "Flytta celler åt vänster", @@ -1305,6 +1916,9 @@ "SSE.Views.DocumentHolder.txtShow": "Visa", "SSE.Views.DocumentHolder.txtShowComment": "Visa kommentar", "SSE.Views.DocumentHolder.txtSort": "Sortera", + "SSE.Views.DocumentHolder.txtSortCellColor": "Vald cellfärg ovanpå", + "SSE.Views.DocumentHolder.txtSortFontColor": "Välj font-färg överst", + "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", "SSE.Views.DocumentHolder.txtText": "Text", "SSE.Views.DocumentHolder.txtTextAdvanced": "Avancerade textinställningar", "SSE.Views.DocumentHolder.txtTime": "Tid", @@ -1314,15 +1928,30 @@ "SSE.Views.FieldSettingsDialog.strLayout": "Layout", "SSE.Views.FieldSettingsDialog.strSubtotals": "Delsumma", "SSE.Views.FieldSettingsDialog.textReport": "Rapportformulär", + "SSE.Views.FieldSettingsDialog.textTitle": "Fältinställningar", "SSE.Views.FieldSettingsDialog.txtAverage": "Genomsnitt", + "SSE.Views.FieldSettingsDialog.txtBlank": "Infoga tom rad efter varje objekt", + "SSE.Views.FieldSettingsDialog.txtBottom": "Visa längst ner i gruppen", "SSE.Views.FieldSettingsDialog.txtCompact": "Kompakt", "SSE.Views.FieldSettingsDialog.txtCount": "Räkna", "SSE.Views.FieldSettingsDialog.txtCountNums": "Räkna nummer", "SSE.Views.FieldSettingsDialog.txtCustomName": "Anpassat namn", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Visa objekt utan data", + "SSE.Views.FieldSettingsDialog.txtMax": "Max", + "SSE.Views.FieldSettingsDialog.txtMin": "Min", + "SSE.Views.FieldSettingsDialog.txtOutline": "Översikt", + "SSE.Views.FieldSettingsDialog.txtProduct": "Produkt", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Upprepa etiketter på varje rad", "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Visa delsummor", "SSE.Views.FieldSettingsDialog.txtSourceName": "Källnamn:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", "SSE.Views.FieldSettingsDialog.txtSum": "Summa", "SSE.Views.FieldSettingsDialog.txtSummarize": "Funktioner för delsummor", + "SSE.Views.FieldSettingsDialog.txtTabular": "Tabellformat", + "SSE.Views.FieldSettingsDialog.txtTop": "Visa överst i gruppen", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", "SSE.Views.FileMenu.btnBackCaption": "Gå till dokument", "SSE.Views.FileMenu.btnCloseMenuCaption": "Stäng meny", "SSE.Views.FileMenu.btnCreateNewCaption": "Skapa ny", @@ -1368,18 +1997,26 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Redigera samtidigt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Andra användare kommer att se dina ändringar på en gång", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Du måste acceptera ändringar innan du kan se dom", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimaltecken", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Snabb", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Fontförslag", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Spara alltid till server (annars spara till servern när dokumentet stängs)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formelspråk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "SUMMA; MIN; MAX; ANTAL", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Aktivera visning av kommentarer", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Makroinställningar", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Klipp ut, kopiera och klistra in", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Visa knappen Klistra in alternativ när innehållet klistras in", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Aktivera R1C1-stil", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regionala inställningar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exempel:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Aktivera visning av lösta kommentarer", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separator", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strikt", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Gränssnittstema", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Tusentals-separator", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Måttenhet", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Använd separatorer baserat på regionala inställningar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Standard zoomvärde", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Var 10:e minut", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Var 30:e minut", @@ -1390,22 +2027,58 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Inaktiverad", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Spara till server", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Varje minut", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Referensstil", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Belarusian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgarian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Katalanska", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Standard cache-läge", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Czech", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Dansk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Tysk", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Greek", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Engelsk", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanska", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Slutför", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Franska", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hungarian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Tum", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japanese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Korean", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Visa kommentarer", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Latvian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "som OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Orginal", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norwegian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Dutch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polish", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punkt", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanian", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rysk", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Aktivera alla", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Aktivera alla makron utan avisering", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovak", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Slovenian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Inaktivera allt", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Inaktivera alla makron utan avisering", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Swedish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turkish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukrainian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Visa meddelanden", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Inaktivera alla makron med en avisering", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "som Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinese", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Tillämpa", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Rättstavningsspråk", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorera ord med VERSALER", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorera ord med tal", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Inställningar autokorrigering", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Korrektur", "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Varning", "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Med lösenord", "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Skydda kalkylblad", @@ -1414,16 +2087,159 @@ "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Redigering tar bort signaturerna från kalkylbladet.
    Är du säker på att du vill fortsätta?", "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Detta kalkylblad har skyddats med lösenord", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Detta kalkylblad måste signeras.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Giltiga signaturer har lagts till i kalkylbladet. Kalkylarket är skyddat från redigering.", "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Vissa av de digitala signaturerna i kalkylarket är ogiltiga eller kunde inte verifieras. Kalkylarket är skyddat från redigering.", "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Visa signaturer", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Generell", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Sidinställningar", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Stavningskontroll", + "SSE.Views.FormatRulesEditDlg.fillColor": "Bakgrundsfärg", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Varning", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2-färgs skala", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3-färgs skala", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Alla ramar", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Stapel utseende", + "SSE.Views.FormatRulesEditDlg.textApply": "Tillämpa på intervall", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatisk", + "SSE.Views.FormatRulesEditDlg.textAxis": "Axlar", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Stapel riktning", + "SSE.Views.FormatRulesEditDlg.textBold": "Fet", + "SSE.Views.FormatRulesEditDlg.textBorder": "Gräns", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Ramfärg", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Ramutseende", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Nedre ramar", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Det går inte att lägga till den villkorliga formateringen.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Cell mittpunkt", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Innanför vertikala ramar", + "SSE.Views.FormatRulesEditDlg.textClear": "Rensa", + "SSE.Views.FormatRulesEditDlg.textColor": "Textfärg", + "SSE.Views.FormatRulesEditDlg.textContext": "Sammanhang", + "SSE.Views.FormatRulesEditDlg.textCustom": "Anpassad", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonal nedre ram", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonal upp ram", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Ange en giltig formel.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "Formeln du angav resulterar inte till nummer, datum, tid eller sträng.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Ange ett värde.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "Det angivna värdet är inte ett giltigt nummer, datum, tid eller sträng.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "Värdet för {0} måste vara större än värdet för {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Ange tal mellan {0} och {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Fyll", + "SSE.Views.FormatRulesEditDlg.textFormat": "Format", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formel", + "SSE.Views.FormatRulesEditDlg.textGradient": "Fyllning", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "när {0} {1} och", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "när {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "när värdet är", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "En eller flera ikondataområden överlappar varandra.
    Justera värdena för dataintervall för ikoner så att intervallen inte överlappar varandra.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Ikonstil", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Innanför ramar", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Ogiltigt dataområde", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "FEL! Ogiltigt cellintervall", + "SSE.Views.FormatRulesEditDlg.textItalic": "Kursiv", + "SSE.Views.FormatRulesEditDlg.textItem": "Element", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Vänster till höger", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Ram vänster", + "SSE.Views.FormatRulesEditDlg.textLongBar": "längsta stapeln", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Max", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maxpunkt", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Innanför horisontella ramar", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Mittpunkt", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minst", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Lägsta punkten", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negativ", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Anpassad färg", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Inga ramar", + "SSE.Views.FormatRulesEditDlg.textNone": "ingen", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Ett eller flera av de angivna värdena är inte en giltig procentsats.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "Det angivna {0} värdet är inte en giltig procentsats.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Ett eller flera av de angivna värdena är inte en giltig percentil.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "Det angivna {0} -värdet är inte en giltig percentil.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Ram runtom", + "SSE.Views.FormatRulesEditDlg.textPercent": "Procent", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentil", + "SSE.Views.FormatRulesEditDlg.textPosition": "Position", + "SSE.Views.FormatRulesEditDlg.textPositive": "Positiv", + "SSE.Views.FormatRulesEditDlg.textPresets": "Förvalda", + "SSE.Views.FormatRulesEditDlg.textPreview": "Förhandsvisa", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Du kan inte använda relativa referenser i villkorliga formateringskriterier för färgskalor, datafält och ikonuppsättningar.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Omvänd ikonordning", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Höger till vänster", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Ram höger", + "SSE.Views.FormatRulesEditDlg.textRule": "Linjal", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Samma som positivt", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Välj data", + "SSE.Views.FormatRulesEditDlg.textShortBar": "kortaste stapeln", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Visa endast stapel", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Visa endast ikon", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Den här typen av referens kan inte användas i en villkorlig formateringsformel.
    Ändra referensen till en enda cell eller använd referensen med en kalkylbladfunktion, till exempel = SUM (A1: B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Fast", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Genomstryk", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Nedsänkt", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Upphöjd", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Ram över", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Understrykning", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Ramar", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Sifferformat", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Redovisning", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Valuta", + "SSE.Views.FormatRulesEditDlg.txtDate": "Datum", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Detta fält är obligatoriskt", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Fraktion", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Generell", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Ingen ikon", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Nummer", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Procentsats", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Vetenskaplig", + "SSE.Views.FormatRulesEditDlg.txtText": "Text", + "SSE.Views.FormatRulesEditDlg.txtTime": "Tid", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Redigera formateringsregel", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Ny formateringsregel", + "SSE.Views.FormatRulesManagerDlg.guestText": "Gäst", + "SSE.Views.FormatRulesManagerDlg.text1Above": "1: a dev över genomsnittet", + "SSE.Views.FormatRulesManagerDlg.text1Below": "1: a dev under genomsnittet", + "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std dev över genomsnitt", + "SSE.Views.FormatRulesManagerDlg.text2Below": "2 std dev under genomsnitt", + "SSE.Views.FormatRulesManagerDlg.text3Above": "3 std dev över genomsnitt", + "SSE.Views.FormatRulesManagerDlg.text3Below": "3 std dev under genomsnitt", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Över medel", + "SSE.Views.FormatRulesManagerDlg.textApply": "Tillämpa på", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Cellvärde börjar med", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Under medel", + "SSE.Views.FormatRulesManagerDlg.textBetween": "är mellan {0} och {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Cell värde", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Graderad färgskala", + "SSE.Views.FormatRulesManagerDlg.textContains": "Cellvärde innehåller", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Cellen innehåller ett tomt värde", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "Cellen innehåller ett fel", "SSE.Views.FormatRulesManagerDlg.textDelete": "Radera", + "SSE.Views.FormatRulesManagerDlg.textDown": "Flytta regel ned", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplicera värden", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Redigera", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Cellvärdet slutar med", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Lika med eller högre än genomsnitt", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Lika med eller lägre än medel", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Format", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Ikonuppsättning", "SSE.Views.FormatRulesManagerDlg.textNew": "Ny", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "är inte mellan {0} och {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Cellvärdet innehåller inte", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Cellen innehåller inte ett tomt värde", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Cell innehåller inte något fel", + "SSE.Views.FormatRulesManagerDlg.textRules": "Linjaler", + "SSE.Views.FormatRulesManagerDlg.textScope": "Visa formateringsregler för", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Välj data", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Aktuell markering", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Denna pivot", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Detta kalkylblad", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Denna tabell", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Unika värden", + "SSE.Views.FormatRulesManagerDlg.textUp": "Flytta regel upp", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Detta element redigeras av en annan användare.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Villkorlig formatering", "SSE.Views.FormatSettingsDialog.textCategory": "Kategori", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", "SSE.Views.FormatSettingsDialog.textFormat": "Format", + "SSE.Views.FormatSettingsDialog.textLinked": "Kopplad till källa", "SSE.Views.FormatSettingsDialog.textSeparator": "Använd tusentals-separator", "SSE.Views.FormatSettingsDialog.textSymbols": "Symboler", "SSE.Views.FormatSettingsDialog.textTitle": "Sifferformat", @@ -1436,6 +2252,7 @@ "SSE.Views.FormatSettingsDialog.txtAs8": "Som åttondelar (4/8)", "SSE.Views.FormatSettingsDialog.txtCurrency": "Valuta", "SSE.Views.FormatSettingsDialog.txtCustom": "Anpassad", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Ange det anpassade nummerformatet noggrant. Kalkylredigeraren kontrollerar inte anpassade format för fel som kan påverka xlsx-filen.", "SSE.Views.FormatSettingsDialog.txtDate": "Datum", "SSE.Views.FormatSettingsDialog.txtFraction": "Fraktion", "SSE.Views.FormatSettingsDialog.txtGeneral": "Generell", @@ -1443,9 +2260,14 @@ "SSE.Views.FormatSettingsDialog.txtNumber": "Nummer", "SSE.Views.FormatSettingsDialog.txtPercentage": "Procentsats", "SSE.Views.FormatSettingsDialog.txtSample": "Exempel:", + "SSE.Views.FormatSettingsDialog.txtScientific": "Vetenskaplig", "SSE.Views.FormatSettingsDialog.txtText": "Text", "SSE.Views.FormatSettingsDialog.txtTime": "Tid", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Upp till en siffra (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "Upp till två siffror (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Upp till tre siffror (131/135)", "SSE.Views.FormulaDialog.sDescription": "Beskrivning", + "SSE.Views.FormulaDialog.textGroupDescription": "Välj funktionsgrupp", "SSE.Views.FormulaDialog.textListDescription": "Välj funktion", "SSE.Views.FormulaDialog.txtRecommended": "Rekommenderad", "SSE.Views.FormulaDialog.txtSearch": "Sök", @@ -1453,6 +2275,7 @@ "SSE.Views.FormulaTab.textAutomatic": "Automatisk", "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Beräkna det aktuella arket", "SSE.Views.FormulaTab.textCalculateWorkbook": "Räkna om arbetsboken", + "SSE.Views.FormulaTab.textManual": "Manuell", "SSE.Views.FormulaTab.tipCalculate": "Beräkna", "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Räkna om hela arbetsbladet", "SSE.Views.FormulaTab.txtAdditional": "Extra", @@ -1463,6 +2286,18 @@ "SSE.Views.FormulaTab.txtFormulaTip": "Infoga funktion", "SSE.Views.FormulaTab.txtMore": "Mera funktioner", "SSE.Views.FormulaTab.txtRecent": "Tidigare använda", + "SSE.Views.FormulaWizard.textAny": "Någon", + "SSE.Views.FormulaWizard.textArgument": "Argument", + "SSE.Views.FormulaWizard.textFunction": "Funktion", + "SSE.Views.FormulaWizard.textFunctionRes": "Funktionsresultat", + "SSE.Views.FormulaWizard.textHelp": "Hjälp med den här funktionen", + "SSE.Views.FormulaWizard.textLogical": "logisk", + "SSE.Views.FormulaWizard.textNoArgs": "Denna funktion har inga argument", + "SSE.Views.FormulaWizard.textNumber": "nummer", + "SSE.Views.FormulaWizard.textRef": "referens", + "SSE.Views.FormulaWizard.textText": "text", + "SSE.Views.FormulaWizard.textTitle": "Funktionsargument", + "SSE.Views.FormulaWizard.textValue": "Formelresultat", "SSE.Views.HeaderFooterDialog.textAlign": "Anpassa till sidbredd", "SSE.Views.HeaderFooterDialog.textAll": "Alla sidor", "SSE.Views.HeaderFooterDialog.textBold": "Fet", @@ -1484,6 +2319,7 @@ "SSE.Views.HeaderFooterDialog.textOdd": "Udda sidor", "SSE.Views.HeaderFooterDialog.textPageCount": "Sidantal", "SSE.Views.HeaderFooterDialog.textPageNum": "Sidnummer", + "SSE.Views.HeaderFooterDialog.textPresets": "Förvalda", "SSE.Views.HeaderFooterDialog.textRight": "Höger", "SSE.Views.HeaderFooterDialog.textScale": "Skala till dokumentet", "SSE.Views.HeaderFooterDialog.textSheet": "Fliknamn", @@ -1505,14 +2341,17 @@ "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Ange länk här", "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Ange verktygstips här", "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Extern länk", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Hämta länk", "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Internt dataområde", "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "FEL! Ogiltigt cellintervall", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Definierade namn", "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Välj data", "SSE.Views.HyperlinkSettingsDialog.textSheets": "Blad", "SSE.Views.HyperlinkSettingsDialog.textTipText": "Skärmtext", "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlänkinställningar", "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Detta fält är obligatoriskt", "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Detta fält bör vara en URL i formatet \"http://www.example.com\"", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Detta fält är begränsat till 2083 tecken", "SSE.Views.ImageSettings.textAdvanced": "Visa avancerade inställningar", "SSE.Views.ImageSettings.textCrop": "Beskär", "SSE.Views.ImageSettings.textCropFill": "Fyll", @@ -1521,6 +2360,7 @@ "SSE.Views.ImageSettings.textEditObject": "Redigera objekt", "SSE.Views.ImageSettings.textFlip": "Vänd", "SSE.Views.ImageSettings.textFromFile": "Från fil", + "SSE.Views.ImageSettings.textFromStorage": "Från lagring", "SSE.Views.ImageSettings.textFromUrl": "Från URL", "SSE.Views.ImageSettings.textHeight": "Höjd", "SSE.Views.ImageSettings.textHint270": "Rotera 90° moturs", @@ -1534,6 +2374,7 @@ "SSE.Views.ImageSettings.textRotation": "Rotation", "SSE.Views.ImageSettings.textSize": "Storlek", "SSE.Views.ImageSettings.textWidth": "Bredd", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Flytta eller ändra inte storlek på celler", "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternativ text", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Beskrivning", "SSE.Views.ImageSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", @@ -1543,6 +2384,7 @@ "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horisontellt", "SSE.Views.ImageSettingsAdvanced.textOneCell": "Flytta men ändra inte storlek på celler", "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotation", + "SSE.Views.ImageSettingsAdvanced.textSnap": "Fäst till cell", "SSE.Views.ImageSettingsAdvanced.textTitle": "Bild - avancerade inställningar", "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Flytta och ändra storlek på celler", "SSE.Views.ImageSettingsAdvanced.textVertically": "Vertikalt", @@ -1555,6 +2397,11 @@ "SSE.Views.LeftMenu.tipSpellcheck": "Stavningskontroll", "SSE.Views.LeftMenu.tipSupport": "Feedback & support", "SSE.Views.LeftMenu.txtDeveloper": "UTVECKLARLÄGE", + "SSE.Views.LeftMenu.txtLimit": "Begränsad åtkomst", + "SSE.Views.LeftMenu.txtTrial": "TESTLÄGE", + "SSE.Views.LeftMenu.txtTrialDev": "Testutvecklarläge", + "SSE.Views.MacroDialog.textMacro": "Makronamn", + "SSE.Views.MacroDialog.textTitle": "Tilldela makro", "SSE.Views.MainSettingsPrint.okButtonText": "Spara", "SSE.Views.MainSettingsPrint.strBottom": "Botten", "SSE.Views.MainSettingsPrint.strLandscape": "Landskap", @@ -1574,9 +2421,11 @@ "SSE.Views.MainSettingsPrint.textPageOrientation": "Orientering", "SSE.Views.MainSettingsPrint.textPageScaling": "Skalning", "SSE.Views.MainSettingsPrint.textPageSize": "Sidstorlek", + "SSE.Views.MainSettingsPrint.textPrintGrid": "Skriv rutnät", "SSE.Views.MainSettingsPrint.textPrintHeadings": "Skriv ut rad och kolumn", "SSE.Views.MainSettingsPrint.textRepeat": "Upprepa...", "SSE.Views.MainSettingsPrint.textRepeatLeft": "Upprepa kolumner till vänster", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Upprepa raderna överst", "SSE.Views.MainSettingsPrint.textSettings": "Inställningar för", "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "De befintliga namngivna områdena kan inte redigeras och de nya kan inte skapas
    just nu eftersom några av dem redigeras.", "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Definierat namn", @@ -1589,6 +2438,7 @@ "SSE.Views.NamedRangeEditDlg.textIsLocked": "FEL! Detta element redigeras av en annan användare.", "SSE.Views.NamedRangeEditDlg.textName": "Namn", "SSE.Views.NamedRangeEditDlg.textReservedName": "Namnet du försöker använda refereras redan i cellformler. Använd något annat namn.", + "SSE.Views.NamedRangeEditDlg.textScope": "Omfattning", "SSE.Views.NamedRangeEditDlg.textSelectData": "Välj data", "SSE.Views.NamedRangeEditDlg.txtEmpty": "Detta fält är obligatoriskt", "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Redigera namn", @@ -1604,13 +2454,17 @@ "SSE.Views.NameManagerDlg.textFilter": "Filter", "SSE.Views.NameManagerDlg.textFilterAll": "Alla", "SSE.Views.NameManagerDlg.textFilterDefNames": "Definierade namn", + "SSE.Views.NameManagerDlg.textFilterSheet": "Namn inom kalkylbladet", "SSE.Views.NameManagerDlg.textFilterTableNames": "Tabell namn", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "Namn inom arbetsboken", "SSE.Views.NameManagerDlg.textNew": "Ny", "SSE.Views.NameManagerDlg.textnoNames": "Inga namngivna intervall som matchar ditt filter kunde hittas.", "SSE.Views.NameManagerDlg.textRanges": "Namngivna områden", + "SSE.Views.NameManagerDlg.textScope": "Omfattning", "SSE.Views.NameManagerDlg.textWorkbook": "Arbetsbok", "SSE.Views.NameManagerDlg.tipIsLocked": "Detta element redigeras av en annan användare.", "SSE.Views.NameManagerDlg.txtTitle": "Namnhanterare", + "SSE.Views.NameManagerDlg.warnDelete": "Är du säker på att du vill ta bort namnet {0}?", "SSE.Views.PageMarginsDialog.textBottom": "Botten", "SSE.Views.PageMarginsDialog.textLeft": "Vänster", "SSE.Views.PageMarginsDialog.textRight": "Höger", @@ -1664,6 +2518,42 @@ "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Höger", "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Stycke - avancerade inställningar", "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "lika", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "Slutar inte med", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "innehåller", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "Innehåller inte", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "mellan", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "inte mellan", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "Är inte lika med", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "är större än", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "är större än eller lika med", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "är mindre än", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "är mindre än eller lika med", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "börjar med", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "Börjar inte med", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "Slutar med", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Visa objekt för vilka etiketten:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Visa objekt för vilka:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Använda sig av ? att presentera varje enskilt tecken", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Använd * för att presentera alla serier av tecken", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "och", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Etikettfilter", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filtervärde", + "SSE.Views.PivotGroupDialog.textAuto": "auto", + "SSE.Views.PivotGroupDialog.textBy": "Av", + "SSE.Views.PivotGroupDialog.textDays": "dagar", + "SSE.Views.PivotGroupDialog.textEnd": "slutar vid", + "SSE.Views.PivotGroupDialog.textError": "Detta fält är numeriskt", + "SSE.Views.PivotGroupDialog.textGreaterError": "Slutnumret måste vara större än startnumret", + "SSE.Views.PivotGroupDialog.textHour": "timmar", + "SSE.Views.PivotGroupDialog.textMin": "Minuter", + "SSE.Views.PivotGroupDialog.textMonth": "Månader", + "SSE.Views.PivotGroupDialog.textNumDays": "Antal dagar", + "SSE.Views.PivotGroupDialog.textQuart": "Kvartal", + "SSE.Views.PivotGroupDialog.textSec": "Sekunder", + "SSE.Views.PivotGroupDialog.textStart": "Börjar vid", + "SSE.Views.PivotGroupDialog.textYear": "år", + "SSE.Views.PivotGroupDialog.txtTitle": "Gruppering", "SSE.Views.PivotSettings.textAdvanced": "Visa avancerade inställningar", "SSE.Views.PivotSettings.textColumns": "Kolumner", "SSE.Views.PivotSettings.textFields": "Välj fält", @@ -1687,12 +2577,24 @@ "SSE.Views.PivotSettingsAdvanced.strLayout": "Namn och layout", "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternativ text", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Beskrivning", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Titel", "SSE.Views.PivotSettingsAdvanced.textDataRange": "Dataområde", "SSE.Views.PivotSettingsAdvanced.textDataSource": "Datakälla", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Visa fält i rapportfilterområdet", + "SSE.Views.PivotSettingsAdvanced.textDown": "Ner, sedan över", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Totalsumma", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Fältrubriker", "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "FEL! Ogiltigt cellintervall", + "SSE.Views.PivotSettingsAdvanced.textOver": "Över, sedan ner", "SSE.Views.PivotSettingsAdvanced.textSelectData": "Välj data", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Visa för kolumner", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Visa fältrubriker för rader och kolumner", "SSE.Views.PivotSettingsAdvanced.textShowRows": "Visa för rader", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Pivottabell avancerad", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Rapportfilter per kolumn", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Rapportfilter per rad", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Detta fält är obligatoriskt", "SSE.Views.PivotSettingsAdvanced.txtName": "Namn", "SSE.Views.PivotTable.capBlankRows": "Tomma rader", "SSE.Views.PivotTable.capGrandTotals": "Totalsumma", @@ -1700,14 +2602,21 @@ "SSE.Views.PivotTable.capSubtotals": "Delsumma", "SSE.Views.PivotTable.mniBottomSubtotals": "Visa delsumma efter varje grupp", "SSE.Views.PivotTable.mniInsertBlankLine": "Lägg in blank linje efter varje objekt", + "SSE.Views.PivotTable.mniLayoutCompact": "Visa kompakt", "SSE.Views.PivotTable.mniLayoutNoRepeat": "Repetera inte alla objektetiketter", + "SSE.Views.PivotTable.mniLayoutOutline": "Visa i dispositionsformulär", "SSE.Views.PivotTable.mniLayoutRepeat": "Upprepa alla objektetiketter", + "SSE.Views.PivotTable.mniLayoutTabular": "Visa i tabellform", "SSE.Views.PivotTable.mniNoSubtotals": "Visa inte subtotaler", + "SSE.Views.PivotTable.mniOffTotals": "Av för rader och kolumner", "SSE.Views.PivotTable.mniOnColumnsTotals": "Enbart för kolumner", "SSE.Views.PivotTable.mniOnRowsTotals": "Endast för rader", "SSE.Views.PivotTable.mniOnTotals": "På för rader och kolumner", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Ta bort tomrad efter varje objekt", "SSE.Views.PivotTable.mniTopSubtotals": "Visa delsumma ovanför grupp", + "SSE.Views.PivotTable.textColBanded": "Randiga kolumner", "SSE.Views.PivotTable.textColHeader": "Kolumnrubriker", + "SSE.Views.PivotTable.textRowBanded": "Randiga rader", "SSE.Views.PivotTable.textRowHeader": "Radrubriker", "SSE.Views.PivotTable.tipCreatePivot": "Infoga pivottabell", "SSE.Views.PivotTable.tipGrandTotals": "Visa / dölj totalsumma", @@ -1715,6 +2624,7 @@ "SSE.Views.PivotTable.tipSelect": "Välj hela pivottabellen", "SSE.Views.PivotTable.tipSubtotals": "Visa / dölj delsumma", "SSE.Views.PivotTable.txtCreate": "Infoga tabell", + "SSE.Views.PivotTable.txtPivotTable": "Pivottabell", "SSE.Views.PivotTable.txtRefresh": "Uppdatera", "SSE.Views.PivotTable.txtSelect": "Välj", "SSE.Views.PrintSettings.btnDownload": "Spara & ladda ner", @@ -1743,11 +2653,13 @@ "SSE.Views.PrintSettings.textPageOrientation": "Orientering", "SSE.Views.PrintSettings.textPageScaling": "Skalning", "SSE.Views.PrintSettings.textPageSize": "Sidstorlek", + "SSE.Views.PrintSettings.textPrintGrid": "Skriv rutnät", "SSE.Views.PrintSettings.textPrintHeadings": "Skriv ut rad och kolumn", "SSE.Views.PrintSettings.textPrintRange": "Utskriftsområde", "SSE.Views.PrintSettings.textRange": "Omgång", "SSE.Views.PrintSettings.textRepeat": "Upprepa...", "SSE.Views.PrintSettings.textRepeatLeft": "Upprepa kolumner till vänster", + "SSE.Views.PrintSettings.textRepeatTop": "Upprepa raderna överst", "SSE.Views.PrintSettings.textSelection": "Markering", "SSE.Views.PrintSettings.textSettings": "Flikinställningar", "SSE.Views.PrintSettings.textShowDetails": "Visa detaljer", @@ -1755,14 +2667,20 @@ "SSE.Views.PrintSettings.textShowHeadings": "Visa rad och kolumnrubriker", "SSE.Views.PrintSettings.textTitle": "Skrivarinställningar", "SSE.Views.PrintSettings.textTitlePDF": "PDF-inställningar", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Första kolumnen", "SSE.Views.PrintTitlesDialog.textFirstRow": "Första raden", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Låsta kolumner", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Låsta reder", "SSE.Views.PrintTitlesDialog.textInvalidRange": "FEL! Ogiltigt cellintervall", "SSE.Views.PrintTitlesDialog.textLeft": "Upprepa kolumner till vänster", "SSE.Views.PrintTitlesDialog.textNoRepeat": "Upprepa inte", "SSE.Views.PrintTitlesDialog.textRepeat": "Upprepa...", "SSE.Views.PrintTitlesDialog.textSelectRange": "Välj intervall", "SSE.Views.PrintTitlesDialog.textTitle": "Skriv ut titlar", + "SSE.Views.PrintTitlesDialog.textTop": "Upprepa raderna överst", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Kolumner", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "Om du vill ta bort dubbletter av värden väljer du en eller flera kolumner som innehåller dubbletter.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Mina data har rubriker", "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Markera allt", "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Ta bort dubbletter", "SSE.Views.RightMenu.txtCellSettings": "Formatera celler", @@ -1773,6 +2691,8 @@ "SSE.Views.RightMenu.txtSettings": "Allmänna inställningar", "SSE.Views.RightMenu.txtShapeSettings": "Form inställningar", "SSE.Views.RightMenu.txtSignatureSettings": "Signaturinställningar", + "SSE.Views.RightMenu.txtSlicerSettings": "Slicer inställningar", + "SSE.Views.RightMenu.txtSparklineSettings": "Sparkline inställningar", "SSE.Views.RightMenu.txtTableSettings": "Tabell inställningar", "SSE.Views.RightMenu.txtTextArtSettings": "Text Art inställningar", "SSE.Views.ScaleDialog.textAuto": "Auto", @@ -1799,14 +2719,17 @@ "SSE.Views.ShapeSettings.strTransparency": "Opacitet", "SSE.Views.ShapeSettings.strType": "Typ", "SSE.Views.ShapeSettings.textAdvanced": "Visa avancerade inställningar", + "SSE.Views.ShapeSettings.textAngle": "Vinkel", "SSE.Views.ShapeSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.
    Vänligen ange ett värde mellan 0 och 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Färgfyllnad", "SSE.Views.ShapeSettings.textDirection": "Riktning", "SSE.Views.ShapeSettings.textEmptyPattern": "Inget mönster", "SSE.Views.ShapeSettings.textFlip": "Vänd", "SSE.Views.ShapeSettings.textFromFile": "Från fil", + "SSE.Views.ShapeSettings.textFromStorage": "Från lagring", "SSE.Views.ShapeSettings.textFromUrl": "Från URL", "SSE.Views.ShapeSettings.textGradient": "Fyllning", + "SSE.Views.ShapeSettings.textGradientFill": "Fyllning", "SSE.Views.ShapeSettings.textHint270": "Rotera 90° moturs", "SSE.Views.ShapeSettings.textHint90": "Rotera 90° medsols", "SSE.Views.ShapeSettings.textHintFlipH": "Vänd horisontellt", @@ -1816,27 +2739,40 @@ "SSE.Views.ShapeSettings.textNoFill": "Ingen fyllning", "SSE.Views.ShapeSettings.textOriginalSize": "Originalstorlek", "SSE.Views.ShapeSettings.textPatternFill": "Mönster", + "SSE.Views.ShapeSettings.textPosition": "Position", + "SSE.Views.ShapeSettings.textRadial": "Radiell", "SSE.Views.ShapeSettings.textRotate90": "Rotera 90°", "SSE.Views.ShapeSettings.textRotation": "Rotation", + "SSE.Views.ShapeSettings.textSelectImage": "Välj bild", "SSE.Views.ShapeSettings.textSelectTexture": "Välj", + "SSE.Views.ShapeSettings.textStretch": "Sträck", "SSE.Views.ShapeSettings.textStyle": "Stil", "SSE.Views.ShapeSettings.textTexture": "Från mönster", + "SSE.Views.ShapeSettings.textTile": "Bricka", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Lägg till lutningspunkt", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", "SSE.Views.ShapeSettings.txtBrownPaper": "Brunt papper", "SSE.Views.ShapeSettings.txtCanvas": "Duk", "SSE.Views.ShapeSettings.txtCarton": "Kartong", "SSE.Views.ShapeSettings.txtDarkFabric": "Mörkt tyg", + "SSE.Views.ShapeSettings.txtGrain": "Gryn", + "SSE.Views.ShapeSettings.txtGranite": "Granit", "SSE.Views.ShapeSettings.txtGreyPaper": "Grått papper", + "SSE.Views.ShapeSettings.txtKnit": "Sticka", "SSE.Views.ShapeSettings.txtLeather": "Läder", "SSE.Views.ShapeSettings.txtNoBorders": "Ingen rad", + "SSE.Views.ShapeSettings.txtPapyrus": "Papyrus", "SSE.Views.ShapeSettings.txtWood": "Trä", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Kolumner", "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text padding", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Flytta eller ändra inte storlek på celler", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternativ text", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Beskrivning", "SSE.Views.ShapeSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Titel", "SSE.Views.ShapeSettingsAdvanced.textAngle": "Vinkel", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Pilar", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Anpassa automatiskt", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Startutseende", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Startutseende", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Fasning", @@ -1853,12 +2789,15 @@ "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Konstanta proportioner", "SSE.Views.ShapeSettingsAdvanced.textLeft": "Vänster", "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Linjestil", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "Miter", "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Flytta men ändra inte storlek på celler", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Låt texten rinna över", "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Ändra storlek så den passar texten", "SSE.Views.ShapeSettingsAdvanced.textRight": "Höger", "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotation", "SSE.Views.ShapeSettingsAdvanced.textRound": "Rund", "SSE.Views.ShapeSettingsAdvanced.textSize": "Storlek", + "SSE.Views.ShapeSettingsAdvanced.textSnap": "Fäst till cell", "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Avstånd mellan kolumner", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Fyrkant", "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Textruta", @@ -1880,9 +2819,75 @@ "SSE.Views.SignatureSettings.strValid": "Giltiga signaturer", "SSE.Views.SignatureSettings.txtContinueEditing": "Redigera ändå", "SSE.Views.SignatureSettings.txtEditWarning": "Redigering tar bort signaturerna från kalkylbladet.
    Är du säker på att du vill fortsätta?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "Vill du ta bort den här signaturen?
    Kan inte ångras.", "SSE.Views.SignatureSettings.txtRequestedSignatures": "Detta kalkylblad måste signeras.", + "SSE.Views.SignatureSettings.txtSigned": "Giltiga signaturer har lagts till i kalkylbladet. Kalkylarket är skyddat från redigering.", "SSE.Views.SignatureSettings.txtSignedInvalid": "Vissa av de digitala signaturerna i kalkylarket är ogiltiga eller kunde inte verifieras. Kalkylarket är skyddat från redigering.", + "SSE.Views.SlicerAddDialog.textColumns": "Kolumner", + "SSE.Views.SlicerAddDialog.txtTitle": "Infoga Slicers", + "SSE.Views.SlicerSettings.strHideNoData": "Dölj objekt utan data", + "SSE.Views.SlicerSettings.strIndNoData": "Ange visuellt objekt utan data", + "SSE.Views.SlicerSettings.strShowDel": "Visa objekt som raderats från datakällan", + "SSE.Views.SlicerSettings.strShowNoData": "Visa objekt utan data senast", + "SSE.Views.SlicerSettings.strSorting": "Sortering och filter", + "SSE.Views.SlicerSettings.textAdvanced": "Visa avancerade inställningar", + "SSE.Views.SlicerSettings.textAsc": "Stigande", + "SSE.Views.SlicerSettings.textAZ": "A till Z", + "SSE.Views.SlicerSettings.textButtons": "Knappar", + "SSE.Views.SlicerSettings.textColumns": "Kolumner", + "SSE.Views.SlicerSettings.textDesc": "Nedåtgående", + "SSE.Views.SlicerSettings.textHeight": "Höjd", + "SSE.Views.SlicerSettings.textHor": "Horisontell", + "SSE.Views.SlicerSettings.textKeepRatio": "Konstanta proportioner", + "SSE.Views.SlicerSettings.textLargeSmall": "största till minsta", + "SSE.Views.SlicerSettings.textLock": "Inaktivera storleksändring eller flyttning", + "SSE.Views.SlicerSettings.textNewOld": "nyast till äldst", + "SSE.Views.SlicerSettings.textOldNew": "äldsta till nyaste", + "SSE.Views.SlicerSettings.textPosition": "Position", + "SSE.Views.SlicerSettings.textSize": "Storlek", + "SSE.Views.SlicerSettings.textSmallLarge": "minsta till största", + "SSE.Views.SlicerSettings.textStyle": "Stil", + "SSE.Views.SlicerSettings.textVert": "Vertikal", + "SSE.Views.SlicerSettings.textWidth": "Bredd", + "SSE.Views.SlicerSettings.textZA": "Z till A", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Knappar", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Kolumner", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Höjd", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Dölj objekt utan data", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Ange visuellt objekt utan data", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referenser", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Visa objekt som raderats från datakällan", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Visa rubrik", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Visa objekt utan data senast", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Storlek", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Sortering och filter", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Stil", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Stil och storlek", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Bredd", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Flytta eller ändra inte storlek på celler", "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternativ text", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Beskrivning", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "Den alternativa textbaserade representation av den visuella informationsobjektet, som kommer att läsas för personer med syn eller kognitiva funktionsnedsättningar att hjälpa dem att bättre förstå vilken information som finns i bilden, figur eller, diagram eller en tabell.", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Titel", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Stigande", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A till Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Nedåtgående", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Namn som ska användas i formler", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Huvud", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Konstanta proportioner", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "största till minsta", + "SSE.Views.SlicerSettingsAdvanced.textName": "Namn", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "nyast till äldst", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "äldsta till nyaste", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Flytta men ändra inte storlek på celler", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "minsta till största", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "Fäst till cell", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Sortera", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Källans namn", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer - Avancerade inställningar", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Flytta och ändra storlek på celler", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Z till A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Detta fält är obligatoriskt", "SSE.Views.SortDialog.errorEmpty": "Alla sorteringskriterier måste ha en kolumn eller rad specificerad.", "SSE.Views.SortDialog.errorMoreOneCol": "Mer än en kolumn är vald.", "SSE.Views.SortDialog.errorMoreOneRow": "Mer än en rad är vald.", @@ -1898,11 +2903,14 @@ "SSE.Views.SortDialog.textCellColor": "Cellfärg", "SSE.Views.SortDialog.textColumn": "Kolumn", "SSE.Views.SortDialog.textCopy": "Kopiera nivå", + "SSE.Views.SortDialog.textDelete": "Radera nivå", "SSE.Views.SortDialog.textDesc": "Nedåtgående", + "SSE.Views.SortDialog.textDown": "Flytta ner nivå", "SSE.Views.SortDialog.textFontColor": "Teckensnittsfärg", "SSE.Views.SortDialog.textLeft": "Vänster", "SSE.Views.SortDialog.textMoreCols": "(Mer kolumner...)", "SSE.Views.SortDialog.textMoreRows": "(Mer rader...)", + "SSE.Views.SortDialog.textNone": "ingen", "SSE.Views.SortDialog.textOptions": "Alternativ", "SSE.Views.SortDialog.textOrder": "Ordning", "SSE.Views.SortDialog.textRight": "Höger", @@ -1911,30 +2919,42 @@ "SSE.Views.SortDialog.textSortBy": "Sortera efter", "SSE.Views.SortDialog.textThenBy": "Sedan av", "SSE.Views.SortDialog.textTop": "Överst", + "SSE.Views.SortDialog.textUp": "Flytta upp nivå", "SSE.Views.SortDialog.textValues": "Värden", "SSE.Views.SortDialog.textZA": "Z till A", "SSE.Views.SortDialog.txtInvalidRange": "Ogiltigt cell-område", "SSE.Views.SortDialog.txtTitle": "Sortera", + "SSE.Views.SortFilterDialog.textAsc": "Stigande (A till Z ) ", + "SSE.Views.SortFilterDialog.textDesc": "Omvänd sortering (Z - A) med", + "SSE.Views.SortFilterDialog.txtTitle": "Sortera", "SSE.Views.SortOptionsDialog.textCase": "Skiftlägeskänslig", + "SSE.Views.SortOptionsDialog.textHeaders": "Mina data har rubriker", "SSE.Views.SortOptionsDialog.textLeftRight": "Sortera från vänster till höger", "SSE.Views.SortOptionsDialog.textOrientation": "Orientering", "SSE.Views.SortOptionsDialog.textTitle": "Sorteringsalternativ", "SSE.Views.SortOptionsDialog.textTopBottom": "Sortera från topp till botten", "SSE.Views.SpecialPasteDialog.textAdd": "Lägg till", "SSE.Views.SpecialPasteDialog.textAll": "Alla", + "SSE.Views.SpecialPasteDialog.textBlanks": "Hoppa över tomma", + "SSE.Views.SpecialPasteDialog.textColWidth": "Kolumnbredd", "SSE.Views.SpecialPasteDialog.textComments": "Kommentarer", + "SSE.Views.SpecialPasteDialog.textDiv": "Dela upp", "SSE.Views.SpecialPasteDialog.textFFormat": "Formler och formatering", "SSE.Views.SpecialPasteDialog.textFNFormat": "Formler och nummerformat", "SSE.Views.SpecialPasteDialog.textFormats": "Format", "SSE.Views.SpecialPasteDialog.textFormulas": "Formler", "SSE.Views.SpecialPasteDialog.textFWidth": "Formler och kolumnbredder", "SSE.Views.SpecialPasteDialog.textMult": "Multiplicera", + "SSE.Views.SpecialPasteDialog.textNone": "ingen", + "SSE.Views.SpecialPasteDialog.textOperation": "Åtgärd", "SSE.Views.SpecialPasteDialog.textPaste": "Klistra in", "SSE.Views.SpecialPasteDialog.textSub": "Subtrahera", "SSE.Views.SpecialPasteDialog.textTitle": "Klistra in special", + "SSE.Views.SpecialPasteDialog.textTranspose": "Transponera", "SSE.Views.SpecialPasteDialog.textValues": "Värden", "SSE.Views.SpecialPasteDialog.textVFormat": "Värden och formatering", "SSE.Views.SpecialPasteDialog.textVNFormat": "Värden & nummerformat", + "SSE.Views.SpecialPasteDialog.textWBorders": "Allt utom ramar", "SSE.Views.Spellcheck.noSuggestions": "Inga stavningsförslag", "SSE.Views.Spellcheck.textChange": "Ändra", "SSE.Views.Spellcheck.textChangeAll": "Ändra alla", @@ -1951,13 +2971,18 @@ "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Flytta före ark", "SSE.Views.Statusbar.filteredRecordsText": "{0} av {1} poster filtrerade", "SSE.Views.Statusbar.filteredText": "Filterläge", + "SSE.Views.Statusbar.itemAverage": "Genomsnitt", "SSE.Views.Statusbar.itemCopy": "Kopiera", + "SSE.Views.Statusbar.itemCount": "Antal", "SSE.Views.Statusbar.itemDelete": "Radera", "SSE.Views.Statusbar.itemHidden": "Dold", "SSE.Views.Statusbar.itemHide": "Göm", "SSE.Views.Statusbar.itemInsert": "Infoga", + "SSE.Views.Statusbar.itemMaximum": "Max", + "SSE.Views.Statusbar.itemMinimum": "Minst", "SSE.Views.Statusbar.itemMove": "Flytta", "SSE.Views.Statusbar.itemRename": "Döp om", + "SSE.Views.Statusbar.itemSum": "Summa", "SSE.Views.Statusbar.itemTabColor": "Tabbfärg", "SSE.Views.Statusbar.RenameDialog.errNameExists": "En arbetsbok med samma namn finns redan.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Namnet på ett blad kan inte innehålla följande tecken:: \\/*?[]:", @@ -1965,13 +2990,20 @@ "SSE.Views.Statusbar.selectAllSheets": "Markera alla blad", "SSE.Views.Statusbar.textAverage": "GENOMSNITT", "SSE.Views.Statusbar.textCount": "RÄKNA", + "SSE.Views.Statusbar.textMax": "Max", + "SSE.Views.Statusbar.textMin": "Min", "SSE.Views.Statusbar.textNewColor": "Lägg till ny egen färg", "SSE.Views.Statusbar.textNoColor": "Ingen färg", "SSE.Views.Statusbar.textSum": "Summa", "SSE.Views.Statusbar.tipAddTab": "Lägg till kalkylblad", + "SSE.Views.Statusbar.tipFirst": "Scrolla till första bladet", + "SSE.Views.Statusbar.tipLast": "Scrolla till sista bladet", + "SSE.Views.Statusbar.tipNext": "Bläddra listan till höger", + "SSE.Views.Statusbar.tipPrev": "Bläddra listan till vänster", "SSE.Views.Statusbar.tipZoomFactor": "Zooma", "SSE.Views.Statusbar.tipZoomIn": "Zooma in", "SSE.Views.Statusbar.tipZoomOut": "Zooma ut", + "SSE.Views.Statusbar.ungroupSheets": "Avgruppera kalkylblad", "SSE.Views.Statusbar.zoomText": "Zooma {0}%", "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "Åtgärden kunde inte göras för det valda cellområdet.
    Välj ett enhetligt dataområde som skiljer sig från det befintliga och försök igen.", "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Åtgärden kunde inte slutföras för det valda cellområdet.
    Välj ett intervall så att den första tabellraden var i samma rad
    och den resulterande tabellen överlappade den aktuella.", @@ -1980,6 +3012,7 @@ "SSE.Views.TableOptionsDialog.txtEmpty": "Detta fält är obligatoriskt", "SSE.Views.TableOptionsDialog.txtFormat": "Skapa tabell", "SSE.Views.TableOptionsDialog.txtInvalidRange": "FEL! Ogiltigt cellintervall", + "SSE.Views.TableOptionsDialog.txtNote": "Rubrikerna måste förbli i samma rad och det resulterande tabellintervallet måste överlappa det ursprungliga tabellintervallet.", "SSE.Views.TableOptionsDialog.txtTitle": "Titel", "SSE.Views.TableSettings.deleteColumnText": "Radera kolumn", "SSE.Views.TableSettings.deleteRowText": "Radera rad", @@ -1993,7 +3026,9 @@ "SSE.Views.TableSettings.selectDataText": "Välj kolumndata", "SSE.Views.TableSettings.selectRowText": "Välj rad", "SSE.Views.TableSettings.selectTableText": "Välj tabell", + "SSE.Views.TableSettings.textActions": "Tabellåtgärder", "SSE.Views.TableSettings.textAdvanced": "Visa avancerade inställningar", + "SSE.Views.TableSettings.textBanded": "Banded", "SSE.Views.TableSettings.textColumns": "Kolumner", "SSE.Views.TableSettings.textConvertRange": "Konvertera till intervall", "SSE.Views.TableSettings.textEdit": "Rader & kolumner", @@ -2005,11 +3040,14 @@ "SSE.Views.TableSettings.textInvalidName": "FEL! Ogiltigt tabellnamn", "SSE.Views.TableSettings.textIsLocked": "Detta element redigeras av en annan användare.", "SSE.Views.TableSettings.textLast": "Senaste", + "SSE.Views.TableSettings.textLongOperation": "Lång operation", + "SSE.Views.TableSettings.textPivot": "Infoga pivottabell", "SSE.Views.TableSettings.textRemDuplicates": "Ta bort dubbletter", "SSE.Views.TableSettings.textReservedName": "Namnet du försöker använda refereras redan i cellformler. Använd något annat namn.", "SSE.Views.TableSettings.textResize": "Ändra storlek på tabell", "SSE.Views.TableSettings.textRows": "Rader", "SSE.Views.TableSettings.textSelectData": "Välj data", + "SSE.Views.TableSettings.textSlicer": "Infoga Slicer", "SSE.Views.TableSettings.textTableName": "Tabell namn", "SSE.Views.TableSettings.textTemplate": "Välj från mall", "SSE.Views.TableSettings.textTotal": "Totalt", @@ -2028,6 +3066,7 @@ "SSE.Views.TextArtSettings.strStroke": "Genomslag", "SSE.Views.TextArtSettings.strTransparency": "Opacitet", "SSE.Views.TextArtSettings.strType": "Typ", + "SSE.Views.TextArtSettings.textAngle": "Vinkel", "SSE.Views.TextArtSettings.textBorderSizeErr": "Det angivna värdet är inkorrekt.
    Vänligen ange ett värde mellan 0 och 1584 pt.", "SSE.Views.TextArtSettings.textColor": "Färgfyllnad", "SSE.Views.TextArtSettings.textDirection": "Riktning", @@ -2035,27 +3074,39 @@ "SSE.Views.TextArtSettings.textFromFile": "Från fil", "SSE.Views.TextArtSettings.textFromUrl": "Från URL", "SSE.Views.TextArtSettings.textGradient": "Fyllning", + "SSE.Views.TextArtSettings.textGradientFill": "Fyllning", "SSE.Views.TextArtSettings.textImageTexture": "Bild eller textur", "SSE.Views.TextArtSettings.textLinear": "Linjär", "SSE.Views.TextArtSettings.textNoFill": "Ingen fyllning", "SSE.Views.TextArtSettings.textPatternFill": "Mönster", + "SSE.Views.TextArtSettings.textPosition": "Position", + "SSE.Views.TextArtSettings.textRadial": "Radiell", "SSE.Views.TextArtSettings.textSelectTexture": "Välj", + "SSE.Views.TextArtSettings.textStretch": "Sträck", "SSE.Views.TextArtSettings.textStyle": "Stil", "SSE.Views.TextArtSettings.textTemplate": "Mall", "SSE.Views.TextArtSettings.textTexture": "Från mönster", + "SSE.Views.TextArtSettings.textTile": "Bricka", "SSE.Views.TextArtSettings.textTransform": "Omvandla", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Lägg till lutningspunkt", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Ta bort lutningspunkten", "SSE.Views.TextArtSettings.txtBrownPaper": "Brunt papper", "SSE.Views.TextArtSettings.txtCanvas": "Duk", "SSE.Views.TextArtSettings.txtCarton": "Kartong", "SSE.Views.TextArtSettings.txtDarkFabric": "Mörkt tyg", + "SSE.Views.TextArtSettings.txtGrain": "Gryn", "SSE.Views.TextArtSettings.txtGranite": "Granit", "SSE.Views.TextArtSettings.txtGreyPaper": "Grått papper", + "SSE.Views.TextArtSettings.txtKnit": "Sticka", "SSE.Views.TextArtSettings.txtLeather": "Läder", "SSE.Views.TextArtSettings.txtNoBorders": "Ingen rad", + "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", "SSE.Views.TextArtSettings.txtWood": "Trä", "SSE.Views.Toolbar.capBtnAddComment": "Lägg till kommentar", + "SSE.Views.Toolbar.capBtnColorSchemas": "Färgschema", "SSE.Views.Toolbar.capBtnComment": "Kommentar", "SSE.Views.Toolbar.capBtnInsHeader": "Sidhuvud/Sidfot", + "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", "SSE.Views.Toolbar.capBtnMargins": "Marginaler", "SSE.Views.Toolbar.capBtnPageOrient": "Orientering", @@ -2072,6 +3123,7 @@ "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlänk", "SSE.Views.Toolbar.capInsertImage": "Bild", "SSE.Views.Toolbar.capInsertShape": "Form", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", "SSE.Views.Toolbar.capInsertTable": "Tabell", "SSE.Views.Toolbar.capInsertText": "Textruta", "SSE.Views.Toolbar.mniImageFromFile": "Bild från fil", @@ -2087,6 +3139,7 @@ "SSE.Views.Toolbar.textAlignTop": "Justera till toppen", "SSE.Views.Toolbar.textAllBorders": "Alla ramar", "SSE.Views.Toolbar.textAuto": "Auto", + "SSE.Views.Toolbar.textAutoColor": "Automatisk", "SSE.Views.Toolbar.textBold": "Fet", "SSE.Views.Toolbar.textBordersColor": "Ramfärg", "SSE.Views.Toolbar.textBordersStyle": "Ramutseende", @@ -2094,10 +3147,15 @@ "SSE.Views.Toolbar.textBottomBorders": "Nedre ramar", "SSE.Views.Toolbar.textCenterBorders": "Innanför vertikala ramar", "SSE.Views.Toolbar.textClearPrintArea": "Nollställ utskriftsområde", + "SSE.Views.Toolbar.textClearRule": "Rensa linjaler", "SSE.Views.Toolbar.textClockwise": "Vinkel medurs", + "SSE.Views.Toolbar.textColorScales": "Färgskalor", "SSE.Views.Toolbar.textCounterCw": "Vinkel moturs", + "SSE.Views.Toolbar.textDataBars": "Data staplar", "SSE.Views.Toolbar.textDelLeft": "Flytta celler åt vänster", "SSE.Views.Toolbar.textDelUp": "Flytta celler uppåt", + "SSE.Views.Toolbar.textDiagDownBorder": "Diagonal nedre ram", + "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal upp ram", "SSE.Views.Toolbar.textEntireCol": "Hela kolumnen", "SSE.Views.Toolbar.textEntireRow": "Hela raden", "SSE.Views.Toolbar.textFewPages": "sidor", @@ -2107,9 +3165,11 @@ "SSE.Views.Toolbar.textInsideBorders": "Innanför ramar", "SSE.Views.Toolbar.textInsRight": "Flytta celler åt höger", "SSE.Views.Toolbar.textItalic": "Kursiv", + "SSE.Views.Toolbar.textItems": "objekt", "SSE.Views.Toolbar.textLandscape": "Landskap", "SSE.Views.Toolbar.textLeft": "Vänster:", "SSE.Views.Toolbar.textLeftBorders": "Ram vänster", + "SSE.Views.Toolbar.textManageRule": "Hantera regler", "SSE.Views.Toolbar.textManyPages": "sidor", "SSE.Views.Toolbar.textMarginsLast": "Senast anpassade", "SSE.Views.Toolbar.textMarginsNarrow": "Smal", @@ -2119,6 +3179,7 @@ "SSE.Views.Toolbar.textMoreFormats": "Flera format", "SSE.Views.Toolbar.textMorePages": "Mera sidor", "SSE.Views.Toolbar.textNewColor": "Lägg till ny egen färg", + "SSE.Views.Toolbar.textNewRule": "Ny regel", "SSE.Views.Toolbar.textNoBorders": "Inga ramar", "SSE.Views.Toolbar.textOnePage": "sida", "SSE.Views.Toolbar.textOutBorders": "Ram runtom", @@ -2132,6 +3193,7 @@ "SSE.Views.Toolbar.textRotateUp": "Rotera text uppåt", "SSE.Views.Toolbar.textScale": "Skala", "SSE.Views.Toolbar.textScaleCustom": "Anpassad", + "SSE.Views.Toolbar.textSelection": "Från aktuell markering", "SSE.Views.Toolbar.textSetPrintArea": "Ange utskriftsområde", "SSE.Views.Toolbar.textStrikeout": "Genomstruken", "SSE.Views.Toolbar.textSubscript": "Nedsänkt", @@ -2146,8 +3208,13 @@ "SSE.Views.Toolbar.textTabLayout": "Layout", "SSE.Views.Toolbar.textTabProtect": "Skydd", "SSE.Views.Toolbar.textTabView": "Visa", + "SSE.Views.Toolbar.textThisPivot": "Från denna pivot", + "SSE.Views.Toolbar.textThisSheet": "Från detta kalkylblad", + "SSE.Views.Toolbar.textThisTable": "Från denna tabell", + "SSE.Views.Toolbar.textTop": "Överst:", "SSE.Views.Toolbar.textTopBorders": "Ram över", "SSE.Views.Toolbar.textUnderline": "Understrykning", + "SSE.Views.Toolbar.textVertical": "Vertikal text", "SSE.Views.Toolbar.textWidth": "Bredd", "SSE.Views.Toolbar.textZoom": "Zooma", "SSE.Views.Toolbar.tipAlignBottom": "Justera botten", @@ -2164,6 +3231,7 @@ "SSE.Views.Toolbar.tipChangeChart": "Ändra diagramtyp", "SSE.Views.Toolbar.tipClearStyle": "Rensa", "SSE.Views.Toolbar.tipColorSchemas": "Ändra färgschema", + "SSE.Views.Toolbar.tipCondFormat": "Villkorlig formatering", "SSE.Views.Toolbar.tipCopy": "Kopiera", "SSE.Views.Toolbar.tipCopyStyle": "Kopiera stil", "SSE.Views.Toolbar.tipDecDecimal": "Minska decimal", @@ -2173,6 +3241,8 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Valutastil", "SSE.Views.Toolbar.tipDigStylePercent": "Procent-stil", "SSE.Views.Toolbar.tipEditChart": "Redigera diagram", + "SSE.Views.Toolbar.tipEditChartData": "Välj data", + "SSE.Views.Toolbar.tipEditChartType": "Ändra diagramtyp", "SSE.Views.Toolbar.tipEditHeader": "Ändra sidhuvud och fot", "SSE.Views.Toolbar.tipFontColor": "Fontfärg", "SSE.Views.Toolbar.tipFontName": "Font", @@ -2188,6 +3258,8 @@ "SSE.Views.Toolbar.tipInsertImage": "Infoga bild", "SSE.Views.Toolbar.tipInsertOpt": "Infoga celler", "SSE.Views.Toolbar.tipInsertShape": "Infoga autoform", + "SSE.Views.Toolbar.tipInsertSlicer": "Infoga Slicer", + "SSE.Views.Toolbar.tipInsertSpark": "Infoga Sparkline", "SSE.Views.Toolbar.tipInsertSymbol": "Infoga symbol", "SSE.Views.Toolbar.tipInsertTable": "Infoga tabell", "SSE.Views.Toolbar.tipInsertText": "Infoga textruta", @@ -2234,6 +3306,7 @@ "SSE.Views.Toolbar.txtFilter": "Filter", "SSE.Views.Toolbar.txtFormula": "Infoga funktion", "SSE.Views.Toolbar.txtFraction": "Fraktion", + "SSE.Views.Toolbar.txtFranc": "CHF Swiss franc", "SSE.Views.Toolbar.txtGeneral": "Generell", "SSE.Views.Toolbar.txtInteger": "Heltal", "SSE.Views.Toolbar.txtManageRange": "Namnhanterare", @@ -2252,16 +3325,25 @@ "SSE.Views.Toolbar.txtScheme10": "Median", "SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme12": "Modul", + "SSE.Views.Toolbar.txtScheme13": "Välmående", + "SSE.Views.Toolbar.txtScheme14": "Oriel", "SSE.Views.Toolbar.txtScheme15": "Ursprung", "SSE.Views.Toolbar.txtScheme16": "Papper", "SSE.Views.Toolbar.txtScheme17": "Solstånd", + "SSE.Views.Toolbar.txtScheme18": "Teknik", + "SSE.Views.Toolbar.txtScheme19": "Vandra", "SSE.Views.Toolbar.txtScheme2": "Gråskala", + "SSE.Views.Toolbar.txtScheme20": "Urban", + "SSE.Views.Toolbar.txtScheme21": "Fart", + "SSE.Views.Toolbar.txtScheme22": "New Office", "SSE.Views.Toolbar.txtScheme3": "Apex", "SSE.Views.Toolbar.txtScheme4": "Aspekt", + "SSE.Views.Toolbar.txtScheme5": "Medborgerlig", "SSE.Views.Toolbar.txtScheme6": "Öppen plats", "SSE.Views.Toolbar.txtScheme7": "Rimlighet", "SSE.Views.Toolbar.txtScheme8": "Flöde", "SSE.Views.Toolbar.txtScheme9": "Grund", + "SSE.Views.Toolbar.txtScientific": "Vetenskaplig", "SSE.Views.Toolbar.txtSearch": "Sök", "SSE.Views.Toolbar.txtSort": "Sortera", "SSE.Views.Toolbar.txtSortAZ": "Sortera stigande", @@ -2270,46 +3352,73 @@ "SSE.Views.Toolbar.txtTableTemplate": "Formatera som tabellmall", "SSE.Views.Toolbar.txtText": "Text", "SSE.Views.Toolbar.txtTime": "Tid", + "SSE.Views.Toolbar.txtUnmerge": "Dela celler", "SSE.Views.Toolbar.txtYen": "¥ Yen", "SSE.Views.Top10FilterDialog.textType": "Visa", "SSE.Views.Top10FilterDialog.txtBottom": "Botten", + "SSE.Views.Top10FilterDialog.txtBy": "av", "SSE.Views.Top10FilterDialog.txtItems": "Element", "SSE.Views.Top10FilterDialog.txtPercent": "Procent", + "SSE.Views.Top10FilterDialog.txtSum": "Summa", + "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 autofilter", "SSE.Views.Top10FilterDialog.txtTop": "Överst", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 filter", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Inställning datafält", "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Genomsnitt", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Basfält", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Bas objekt", "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 av %2", "SSE.Views.ValueFieldSettingsDialog.txtCount": "Räkna", "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Räkna nummer", "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Anpassat namn", "SSE.Views.ValueFieldSettingsDialog.txtDifference": "Skillnaden från", "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Ingen beräkning", "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Procent av", "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Procent skillnad från", "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Procent av kolumn", "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Procent av total", "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Procent av rad", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Produkt", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Running Total In", "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Visa värden som", "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Källnamn:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", "SSE.Views.ValueFieldSettingsDialog.txtSum": "Summa", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Sammanfatta värdefältet med", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", "SSE.Views.ViewManagerDlg.closeButtonText": "Stäng", + "SSE.Views.ViewManagerDlg.guestText": "Gäst", "SSE.Views.ViewManagerDlg.textDelete": "Radera", "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicera", "SSE.Views.ViewManagerDlg.textEmpty": "Inga vyer har skapats än.", "SSE.Views.ViewManagerDlg.textGoTo": "Gå till vy", + "SSE.Views.ViewManagerDlg.textLongName": "Ange namn (max 128 tecken).", "SSE.Views.ViewManagerDlg.textNew": "Ny", "SSE.Views.ViewManagerDlg.textRename": "Döp om", + "SSE.Views.ViewManagerDlg.textRenameError": "Visningsnamnet får inte vara tomt.", "SSE.Views.ViewManagerDlg.textRenameLabel": "Döp om vy", "SSE.Views.ViewManagerDlg.textViews": "Arkvyer", + "SSE.Views.ViewManagerDlg.tipIsLocked": "Detta element redigeras av en annan användare.", "SSE.Views.ViewManagerDlg.txtTitle": "Vyhanterare", + "SSE.Views.ViewManagerDlg.warnDeleteView": "Du försöker ta bort den för närvarande aktiverade vyn %1.
    Stäng den här vyn och ta bort den?", "SSE.Views.ViewTab.capBtnFreeze": "Lås paneler", "SSE.Views.ViewTab.capBtnSheetView": "Arkvy", "SSE.Views.ViewTab.textClose": "Stäng", "SSE.Views.ViewTab.textCreate": "Ny", "SSE.Views.ViewTab.textDefault": "Standard", "SSE.Views.ViewTab.textFormula": "Formelfält", + "SSE.Views.ViewTab.textFreezeCol": "Lås första kolumnen", + "SSE.Views.ViewTab.textFreezeRow": "Lås översta raden", "SSE.Views.ViewTab.textGridlines": "Stödlinjer", "SSE.Views.ViewTab.textHeadings": "Rubriker", "SSE.Views.ViewTab.textManager": "Vyhanterare", + "SSE.Views.ViewTab.textUnFreeze": "Lås upp paneler", + "SSE.Views.ViewTab.textZeros": "Visa nollor", "SSE.Views.ViewTab.textZoom": "Zooma", "SSE.Views.ViewTab.tipClose": "Stäng arkvy", "SSE.Views.ViewTab.tipCreate": "Skapa arkvy", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/bg_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/bg_desc.json index e5a695d53..dbc5e7b52 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/bg_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/bg_desc.json @@ -4,8 +4,8 @@ "d": "Връща числото, което представлява датата в кода за дата и час" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(начална_дата; крайна_дата; единица)", + "d": "Изчислява броя на дните, месеците или годините между две дати" }, "DATEVALUE": { "a": "(дата_текст)", @@ -396,8 +396,8 @@ "d": "Връща началната позиция на един текстов низ в друг текстов низ. FIND различава малките и главните букви" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(намери_текст; в_текст; [начален_ном])", + "d": "Търся един текстов низ в друг текстов низ и връща номера на началната позиция на първия знак на първия текстов низ спрямо втория, може да се използва с езици, които използват набора знаци от по два байта (DBCS) - японски, китайски и корейски" }, "FIXED": { "a": "(число; [десетични]; [брой_запетаи])", @@ -408,16 +408,16 @@ "d": "Връща зададения брой знаци от началото на текстов низ" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(текст; [брой_знаци])", + "d": "Връща първия знак или първите знаци в текстов низ, в зависимост от броя байтове, който зададете, може да се използва с езици, които използват набора знаци от по два байта (DBCS) - японски, китайски и корейски" }, "LEN": { "a": "(текст)", "d": "Връща броя на знаците в текстов низ" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(текст)", + "d": "Връща броя байтове за знаци в текстов низ, може да се използва с езици, които използват набора знаци от по два байта (DBCS) - японски, китайски и корейски" }, "LOWER": { "a": "(текст)", @@ -428,8 +428,8 @@ "d": "Връща знаците от средата на текстов низ при зададени начална позиция и дължина" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(текст; начален_ном; брой_знаци)", + "d": "Връща определен брой знаци от текстов низ, започвайки от зададена от вас позиция, на базата на зададен от вас брой байтове, може да се използва с езици, които използват набора знаци от по два байта (DBCS) - японски, китайски и корейски" }, "NUMBERVALUE": { "a": "(текст; [десетичен_разделител]; [разделител_на_групи])", @@ -444,8 +444,8 @@ "d": "Замества част от текстов низ с друг текстов низ" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(стар_текст; начален_ном; брой_знаци; нов_текст)", + "d": "Замества част от текстов низ, на базата на броя байтове, които зададете, с различен текстов низ, може да се използва с езици, които използват набора знаци от по два байта (DBCS) - японски, китайски и корейски" }, "REPT": { "a": "(текст; брой_пъти)", @@ -456,16 +456,16 @@ "d": "Връща зададения брой знаци от края на текстов низ" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(текст; [брой_знаци])", + "d": "Връща последния знак или последните знаци в текстов низ в зависимост от броя байтове, който зададете, може да се използва с езици, които използват набора знаци от по два байта (DBCS) - японски, китайски и корейски" }, "SEARCH": { "a": "(намери_текст; в_текст; [начален_ном])", "d": "Връща броя на знаците, с които определен знак или текстов низ е намерен първоначално при обхождане отляво надясно (без да се отчитат разликите между малки и главни букви)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(намери_текст; в_текст; [начален_ном])", + "d": "Търся един текстов низ в друг текстов низ и връща номера на началната позиция на първия текстов низ спрямо първия знак на втория текстов низ, може да се използва с езици, които използват набора знаци от по два байта (DBCS) - японски, китайски и корейски" }, "SUBSTITUTE": { "a": "(текст; стар_текст; нов_текст; [срещане_ном])", @@ -1348,8 +1348,8 @@ "d": "Преобразува римска цифра в арабска" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(текст)", + "d": "За езици с набори от двубайтови знаци (DBCS), функцията променя знаците с пълна ширина (двубайтови) в знаци с половин ширина (еднобайтови)" }, "ASIN": { "a": "(число)", @@ -1384,8 +1384,8 @@ "d": "Закръглява число нагоре до най-близкото цяло число или най-близкото кратно на \"значимост\"" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(число; [значимост])", + "d": "Връща число, което е закръглено нагоре до най-близкото цяло число или до най-близкото кратно на значимост" }, "COMBIN": { "a": "(число; число_избрано)", @@ -1428,8 +1428,8 @@ "d": "Преобразува радиани в градуси" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(число; [значимост])", + "d": "Закръглява число нагоре до най-близкото кратно на значимост" }, "EVEN": { "a": "(число)", @@ -1452,8 +1452,8 @@ "d": "Закръглява число надолу до най-близкото кратно на \"значимост\"" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(число; [значимост])", + "d": "Връща число, което е закръглено надолу до най-близкото цяло число или до най-близкото кратно на значимост" }, "FLOOR.MATH": { "a": "(число; [значимост]; [режим])", @@ -1468,8 +1468,8 @@ "d": "Закръглява число надолу до най-близкото цяло число" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(число; [значимост])", + "d": "Връща число, което е закръглено нагоре до най-близкото цяло число или до най-близкото кратно на значимост. Числото се закръглява нагоре, независимо от знака си. Ако обаче числото или значимост са нула, връща се нула." }, "LCM": { "a": "(число1; [число2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Търси в диапазон или масив и връща съответния елемент от втори диапазон или масив. По подразбиране се използва точно съвпадение" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(инфо_тип; [препратка])", + "d": "Връща информация за форматирането, местоположението или съдържанието на клетка" }, "ERROR.TYPE": { "a": "(грешка_стойност)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ca_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ca_desc.json index 05b622783..443c945e7 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ca_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ca_desc.json @@ -4,8 +4,8 @@ "d": "Retorna la xifra que representa la data en codi de data i hora" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(data_inicial; data_final; unitat)", + "d": "Retorna la diferència entre dos valors de data (data inicial i data final), basada en l'interval (unitat) especificat" }, "DATEVALUE": { "a": "(date_text)", @@ -396,8 +396,8 @@ "d": "Retorna la posició inicial d'una cadena de text a dins d'una altra cadena de text. BUSCA fa distinció entre majúscules i minúscules" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text_cercat; dins_text; [núm_inicial])", + "d": "Cerca la subcadena especificada (cadena-1) dins d'una cadena (cadena-2) i està destinada a llenguatges amb el joc de caràcters de doble byte (DBCS) com el japonès, el xinès, el coreà, etc." }, "FIXED": { "a": "(número; [decimals]; [sense_comes])", @@ -408,16 +408,16 @@ "d": "Retorna el número especificat de caràcters des del començament d'una cadena de text" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [nombre_caràcters])", + "d": "Extreu la subcadena de la cadena especificada començant pel caràcter de l'esquerra i està destinada a llenguatges que utilitzen el joc de caràcters de doble byte (DBCS) com el japonès, el xinès, el coreà, etc." }, "LEN": { "a": "(text)", "d": "Retorna el número de caràcters d'una cadena de text" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "Analitza la cadena especificada i retorna el nombre de caràcters que conté i està pensat per a llenguatges que utilitzen el joc de caràcters de doble byte (DBCS) com el japonès, el xinès, el coreà, etc." }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "Retorna els caràcters del centre d'una cadena de text, donada una posició inicial i la longitud" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; posició_inicial; nombre_caràcters)", + "d": "Extreu els caràcters de la cadena especificada començant des de qualsevol posició i està pensat per a llenguatges que utilitzen el joc de caràcters de doble byte (DBCS) com el japonès, el xinès, el coreà, etc." }, "NUMBERVALUE": { "a": "(text; [separador_decimal]; [separador_grup])", @@ -444,8 +444,8 @@ "d": "Substitueix una part d'una cadena de text per una cadena de text diferent" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text_original; núm_inicial; nombre_caràcters; text_nou)", + "d": "Situa un conjunt de caràcters, basat en el nombre de caràcters i la posició inicial que especifiqueu, amb un nou conjunt de caràcters i està pensat per a llenguatges que utilitzen el joc de caràcters de doble byte (DBCS) com el japonès, el xinès, el coreà, etc." }, "REPT": { "a": "(text; número_de_vegades)", @@ -456,16 +456,16 @@ "d": "Retorna el número especificat de caràcters des de la fi d'una cadena de text" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [nombre_caràcters])", + "d": "Extreu una subcadena d'una cadena que comença des del caràcter de més a la dreta, basant-se en el nombre especificat de caràcters i està destinat a llenguatges que utilitzen el joc de caràcters de doble byte (DBCS) com el japonès, el xinès, el coreà, etc." }, "SEARCH": { "a": "(text_cercat; dins_text; [núm_inicial])", "d": "Retorna el número del caràcter on es troba un caràcter concret o una cadena de text, llegint d'esquerra a dreta (no fa distinció entre majúscules i minúscules)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text_cercat; dins_text; [núm_inicial])", + "d": "Retorna la ubicació de la subcadena especificada en una cadena i està destinada a llenguatges que utilitzen el joc de caràcters de doble byte (DBCS) com el japonès, el xinès, el coreà, etc." }, "SUBSTITUTE": { "a": "(text; text_original; text_nou; [núm_ocurrència])", @@ -1348,8 +1348,8 @@ "d": "Converteix un numeral llatí en àrab" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "Per a llenguatges de doble byte (DBCS), la funció canvia caràcters d'amplada completa (doble byte) a caràcters de mitja amplada (un byte)" }, "ASIN": { "a": "(número)", @@ -1384,8 +1384,8 @@ "d": "Arrodoneix un número cap amunt, cap a l'enter més proper o el múltiple significatiu més proper" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(nombre; [significat])", + "d": "Retorna un nombre que s'arrodoneix fins a l'enter més proper o al múltiple més proper de significat" }, "COMBIN": { "a": "(nombre; nombre_triat)", @@ -1428,8 +1428,8 @@ "d": "Converteix els radians en graus" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(número; significat)", + "d": "Arrodoneix el nombre fins al múltiple més proper d'importància" }, "EVEN": { "a": "(número)", @@ -1452,8 +1452,8 @@ "d": "Arrodoneix un número cap avall en el múltiple significatiu més proper" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(nombre; [significat] )", + "d": "Retorna un nombre que s'arrodoneix cap avall a l'enter més proper o al múltiple més proper de significat" }, "FLOOR.MATH": { "a": "(nombre; [xifra_significativa]; [moda])", @@ -1468,8 +1468,8 @@ "d": "Arrodoneix un número fins a l'enter inferior més proper" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(nombre; [significat])", + "d": "Retorna un nombre que s'arrodoneix fins a l'enter més proper o al múltiple més proper d'importància independentment del signe del nombre. No obstant això, si el nombre o el significat és zero, es retorna zero." }, "LCM": { "a": "(nombre1; [nombre2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Cerca una coincidència en un interval o una matriu i retorna l'element corresponent d'un segon interval o d'una segona matriu. Per defecte, s'utilitzarà una coincidència exacta" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(info_tipus; [referència])", + "d": "Retorna la informació sobre el format, la ubicació o el contingut d'una cel·la" }, "ERROR.TYPE": { "a": "(val_error)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/cs_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/cs_desc.json index 8b80521f7..296b2a2c9 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/cs_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/cs_desc.json @@ -4,8 +4,8 @@ "d": "Vrátí číslo, které představuje datum v kódu pro datum a čas." }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(počáteční_datum; konncové_datum; jednotka)", + "d": "Vypočítá počet dnů, měsíců nebo roků mezi dvěma daty" }, "DATEVALUE": { "a": "(datum)", @@ -396,8 +396,8 @@ "d": "Vrátí počáteční pozici jednoho textového řetězce v jiném textovém řetězci. Tato funkce rozlišuje malá a velká písmena." }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(co; kde; [start])", + "d": "Vyhledají jeden textový řetězec v druhém textovém řetězci a vrátí číslo počáteční pozice prvního textového řetězce od prvního znaku druhého textového řetězce, je určena pro jazyky používající dvoubajtovou znakovou sadu (DBCS) - japonština, čínština a korejština" }, "FIXED": { "a": "(číslo; [desetiny]; [bez_čárky])", @@ -408,16 +408,16 @@ "d": "Vrátí zadaný počet znaků od počátku textového řetězce." }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [znaky])", + "d": "Vrátí první znak nebo znaky v textovém řetězci na základě zadaného počtu bajtů, je určena pro jazyky používající dvoubajtovou znakovou sadu (DBCS) - japonština, čínština a korejština" }, "LEN": { "a": "(text)", "d": "Vrátí počet znaků textového řetězce." }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "Vrátí počet bajtů, které představují znaky v textovém řetězci, je určena pro jazyky používající dvoubajtovou znakovou sadu (DBCS) - japonština, čínština a korejština" }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "Vrátí znaky z textového řetězce, je-li zadána počáteční pozice a počet znaků." }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; start; počet_znaků)", + "d": "Vrátí určitý počet znaků (na základě zadaného počtu bajtů) z textového řetězce od zadané pozice, je určena pro jazyky používající dvoubajtovou znakovou sadu (DBCS) - japonština, čínština a korejština" }, "NUMBERVALUE": { "a": "(text; [oddělovač_desetin]; [oddělovač_skupin])", @@ -444,8 +444,8 @@ "d": "Nahradí část textového řetězce jiným textovým řetězcem." }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(starý; start; znaky; nový)", + "d": "Nahradí na základě zadaného počtu bajtů část textového řetězce jiným textovým řetězcem, je určena pro jazyky používající dvoubajtovou znakovou sadu (DBCS) - japonština, čínština a korejština" }, "REPT": { "a": "(text; počet)", @@ -456,16 +456,16 @@ "d": "Vrátí zadaný počet znaků od konce textového řetězce." }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [znaky])", + "d": "Vrátí zadaný počet bajtů od konce textového řetězce, je určena pro jazyky používající dvoubajtovou znakovou sadu (DBCS) - japonština, čínština a korejština" }, "SEARCH": { "a": "(co; kde; [start])", "d": "Vrátí číslo prvního nalezeného výskytu znaku nebo textového řetězce. Směr hledání je zleva doprava. Velká a malá písmena nejsou rozlišována." }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(co; kde; [start])", + "d": "Vyhledají jeden textový řetězec v rámci druhého textového řetězce a vrátí číslo počáteční pozice prvního textového řetězce od prvního znaku druhého textového řetězce, je určena pro jazyky používající dvoubajtovou znakovou sadu (DBCS) - japonština, čínština a korejština" }, "SUBSTITUTE": { "a": "(text; starý; nový; [instance])", @@ -1348,8 +1348,8 @@ "d": "Převede římskou číslici na arabskou." }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "U jazyků využívajících dvoubajtové znakové sady (DBCS) změní znaky s plnou šířkou (dvoubajtové) na znaky s poloviční šířkou (jednobajtové)" }, "ASIN": { "a": "(číslo)", @@ -1384,8 +1384,8 @@ "d": "Zaokrouhlí číslo nahoru na nejbližší celé číslo nebo na nejbližší násobek zadané hodnoty významnosti" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(číslo; [významnost])", + "d": "Vrátí číslo zaokrouhlené nahoru na nejbližší celé číslo nebo na nejbližší násobek zadané hodnoty" }, "COMBIN": { "a": "(počet; kombinace)", @@ -1428,8 +1428,8 @@ "d": "Převede radiány na stupně." }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(číslo; významnost)", + "d": "Zaokrouhlí číslo nahoru na nejbližší násobek zadané hodnoty významnosti" }, "EVEN": { "a": "(číslo)", @@ -1452,8 +1452,8 @@ "d": "Zaokrouhlí číslo dolů na nejbližší násobek zadané hodnoty významnosti." }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(číslo; [významnost])", + "d": "Vrátí číslo zaokrouhlené dolů na nejbližší celé číslo nebo na nejbližší násobek zadané hodnoty" }, "FLOOR.MATH": { "a": "(číslo; [významnost]; [režim])", @@ -1468,8 +1468,8 @@ "d": "Zaokrouhlí číslo dolů na nejbližší celé číslo." }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(číslo; [významnost])", + "d": "Vrátí číslo zaokrouhlené nahoru na nejbližší celé číslo nebo na nejbližší násobek zadané hodnoty. Číslo bude zaokrouhleno nahoru bez ohledu na jeho znaménko. Pokud je však zadáno číslo nula nebo násobek nuly, bude vrácena nula." }, "LCM": { "a": "(číslo1; [číslo2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Vyhledá požadovanou hodnotu v oblasti nebo poli a vrátí odpovídající položku z jiné oblasti nebo pole. Ve výchozím nastavení se vyžaduje přesná shoda." }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(informace; [odkaz])", + "d": "Vrátí informace o formátování, umístění nebo obsahu buňky" }, "ERROR.TYPE": { "a": "(chyba)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/da_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/da_desc.json index bdddae205..c67916d70 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/da_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/da_desc.json @@ -4,8 +4,8 @@ "d": "Returnerer det tal, der repræsenterer datoen i dato- og klokkeslætskoden" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(startdato; slutdato; enhed)", + "d": "Beregner antallet af dage, måneder eller år mellem to datoer" }, "DATEVALUE": { "a": "(datotekst)", @@ -396,28 +396,28 @@ "d": "Returnerer startpositionen for en tekststreng i en anden tekststreng. FIND skelner mellem store og små bogstaver" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_tekst; i_tekst; [start_ved])", + "d": "Finder én tekststreng inden i en anden tekststreng og returnerer nummeret på den første strengs startposition fra det første tegn i den anden tekststreng, er beregnet til brug sammen med sprog, der anvender dobbelt-byte tegnsæt (DBCS) - japansk, kinesisk og koreansk" }, "FIXED": { "a": "(tal; [decimaler]; [ingen_punktummer])", - "d": "afrunder et tal til det angivne antal decimaler og returnerer resultatet som tekst med eller uden kommaer" + "d": "Afrunder et tal til det angivne antal decimaler og returnerer resultatet som tekst med eller uden kommaer" }, "LEFT": { "a": "(tekst; [antal_tegn])", "d": "Returnerer det angivne antal tegn fra begyndelsen af en tekststreng" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; [antal_tegn])", + "d": "Returnerer det eller de første tegn i en tekststreng baseret på det antal byte, du angiver, er beregnet til brug sammen med sprog, der anvender dobbelt-byte tegnsæt (DBCS) - japansk, kinesisk og koreansk" }, "LEN": { "a": "(tekst)", "d": "Returnerer antallet af tegn i en tekststreng" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst)", + "d": "Returnerer det antal byte, der bruges til at repræsentere tegnene i en tekststreng, er beregnet til brug sammen med sprog, der anvender dobbelt-byte tegnsæt (DBCS) - japansk, kinesisk og koreansk" }, "LOWER": { "a": "(tekst)", @@ -428,8 +428,8 @@ "d": "Returnerer tegnene fra midten af en tekststreng ved angivelse af startposition og længde" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; start_ved; antal_tegn)", + "d": "Returnerer et bestemt antal tegn fra en tekststreng fra og med den startposition, du angiver, og på basis af det antal byte, du angiver, er beregnet til brug sammen med sprog, der anvender dobbelt-byte tegnsæt (DBCS) - japansk, kinesisk og koreansk" }, "NUMBERVALUE": { "a": "(tekst; [decimaltegn]; [gruppeseparator])", @@ -444,8 +444,8 @@ "d": "Erstatter en del af en tekststreng med en anden tekststreng" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(gammel_tekst; start_ved; antal_tegn; ny_tekst)", + "d": "Erstatter en del af en tekststreng med en anden tekststreng baseret på det antal byte, du angiver, er beregnet til brug sammen med sprog, der anvender dobbelt-byte tegnsæt (DBCS) - japansk, kinesisk og koreansk" }, "REPT": { "a": "(tekst; antal_gange)", @@ -456,16 +456,16 @@ "d": "Returnerer det angivne antal tegn fra slutningen af en tekststreng" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; [antal_tegn])", + "d": "Returnerer det eller de sidste tegn i en tekststreng baseret på det antal bytes, du angiver, er beregnet til brug sammen med sprog, der anvender dobbelt-byte tegnsæt (DBCS) - japansk, kinesisk og koreansk" }, "SEARCH": { "a": "(find_tekst; i_tekst; [start_ved])", "d": "Returnerer et tal, der repræsenterer placeringen af et tegn eller en tekststreng i en anden tekststreng, læst fra venstre mod højre (skelner ikke mellem store og små bogstaver)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_tekst; i_tekst; [start_ved])", + "d": "Finder én tekststreng inden i en anden tekststreng og returnerer nummeret på den første strengs startposition fra det første tegn i den anden tekststreng, er beregnet til brug sammen med sprog, der anvender dobbelt-byte tegnsæt (DBCS) - japansk, kinesisk og koreansk" }, "SUBSTITUTE": { "a": "(tekst; gammel_tekst; ny_tekst; [forekomst])", @@ -1348,8 +1348,8 @@ "d": "Konverterer et romertal til arabisk" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(tekst)", + "d": "For dobbeltbytetegnsætsprog ændrer funktionen tegn i fuld bredde (dobbeltbyte) til tegn i halv bredde (enkeltbyte)" }, "ASIN": { "a": "(tal)", @@ -1384,8 +1384,8 @@ "d": "Runder et tal op til det nærmeste heltal eller til det nærmeste betydende multiplum" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(tal; [betydning])", + "d": "Returnerer et tal, der rundes op til nærmeste heltal eller til nærmeste multiplum af signifikans" }, "COMBIN": { "a": "(tal; tal_valgt)", @@ -1428,8 +1428,8 @@ "d": "Konverterer radianer til grader" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(tal; betydning)", + "d": "Runder et tal op til nærmeste multiplum af betydning" }, "EVEN": { "a": "(tal)", @@ -1452,8 +1452,8 @@ "d": "Runder et tal ned til det nærmeste multiplum af betydning" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(tal; [betydning])", + "d": "Returnerer et tal, der rundes ned til nærmeste heltal eller til nærmeste multiplum af signifikans" }, "FLOOR.MATH": { "a": "(tal; [betydning]; [tilstand])", @@ -1468,8 +1468,8 @@ "d": "Runder et tal ned til nærmeste heltal" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(tal; [betydning])", + "d": "Returnerer et tal, der rundes op til nærmeste heltal eller til nærmeste multiplum af signifikans. Uanset tallets fortegn, rundes tallet op. Men hvis tallet eller signifikansen er nul, returneres nul." }, "LCM": { "a": "(tal1; [tal2]; ...)", @@ -1720,8 +1720,8 @@ "d": "søger efter et match i et område eller en matrix og returnerer det tilsvarende element fra et andet område eller en anden matrix. Som standard bruges et nøjagtigt match" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(info; [reference])", + "d": "Returnerer oplysninger om formatering, placering eller indholdet af en celle" }, "ERROR.TYPE": { "a": "(fejlværdi)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json index 1aa234f46..9e35b25f4 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/de_desc.json @@ -5,7 +5,7 @@ }, "DATEDIF": { "a": "(Ausgangsdatum;Enddatum;Einheit)", - "d": "Datums- und Uhrzeitfunktion - zur Berechnung der Differenz zwischen zwei Datumsangaben (Start- und Enddatum), basierend auf der angegebenen Einheit" + "d": "Berechnet der Differenz zwischen zwei Datumsangaben (Start- und Enddatum), basierend auf der angegebenen Einheit" }, "DATEVALUE": { "a": "(Datumstext)", @@ -397,7 +397,7 @@ }, "FINDB": { "a": "(Suchtext;Text;[Erstes_Zeichen])", - "d": "Text- und Datenfunktionen - sucht eine Zeichenfolge (Suchtext) innerhalb einer anderen (Text) und gibt die Position der gesuchten Zeichenfolge ab dem ersten Zeichen der anderen Zeichenfolge an, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." + "d": "Sucht eine Zeichenfolge (Suchtext) innerhalb einer anderen (Text) und gibt die Position der gesuchten Zeichenfolge ab dem ersten Zeichen der anderen Zeichenfolge an, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." }, "FIXED": { "a": "(Zahl; [Dezimalstellen]; [Keine_Punkte])", @@ -409,7 +409,7 @@ }, "LEFTB": { "a": "(Text;[Anzahl_Bytes])", - "d": "Text- und Datenfunktionen - gibt auf der Grundlage der Anzahl von Bytes, die Sie angeben, das oder die erste(n) Zeichen in einer Textzeichenfolge zurück, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." + "d": "Gibt auf der Grundlage der Anzahl von Bytes, die Sie angeben, das oder die erste(n) Zeichen in einer Textzeichenfolge zurück, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." }, "LEN": { "a": "(Text)", @@ -417,7 +417,7 @@ }, "LENB": { "a": "(Text)", - "d": "Text- und Datenfunktionen - gibt die Anzahl von Bytes zurück, die zum Darstellen der Zeichen in einer Zeichenfolge verwendet werden, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." + "d": "Gibt die Anzahl von Bytes zurück, die zum Darstellen der Zeichen in einer Zeichenfolge verwendet werden, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." }, "LOWER": { "a": "(Text)", @@ -429,7 +429,7 @@ }, "MIDB": { "a": "(Text;Erstes_Zeichen;Anzahl_Byte)", - "d": "Text- und Datenfunktionen - gibt auf der Grundlage der angegebenen Anzahl von Bytes eine bestimmte Anzahl von Zeichen einer Zeichenfolge ab der von Ihnen angegebenen Position zurück, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." + "d": "Gibt auf der Grundlage der angegebenen Anzahl von Bytes eine bestimmte Anzahl von Zeichen einer Zeichenfolge ab der von Ihnen angegebenen Position zurück, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." }, "NUMBERVALUE": { "a": "(Text; [Dezimaltrennzeichen]; [Gruppentrennzeichen])", @@ -445,7 +445,7 @@ }, "REPLACEB": { "a": "(Alter_Text;Erstes_Zeichen;Anzahl_Bytes;Neuer_Text)", - "d": "Text- und Datenfunktionen - ersetzt eine Zeichenfolge, basierend auf der Anzahl der Zeichen und der angegebenen Startposition, durch eine neue Zeichengruppe, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." + "d": "Ersetzt eine Zeichenfolge, basierend auf der Anzahl der Zeichen und der angegebenen Startposition, durch eine neue Zeichengruppe, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." }, "REPT": { "a": "(Text; Multiplikator)", @@ -457,7 +457,7 @@ }, "RIGHTB": { "a": "(Text;[Anzahl_Bytes])", - "d": "Text- und Datenfunktionen - gibt auf der Grundlage der angegebenen Anzahl von Bytes das bzw. die letzten Zeichen einer Zeichenfolge zurück, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." + "d": "Gibt auf der Grundlage der angegebenen Anzahl von Bytes das bzw. die letzten Zeichen einer Zeichenfolge zurück, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." }, "SEARCH": { "a": "(Suchtext; Text; [Erstes_Zeichen])", @@ -465,7 +465,7 @@ }, "SEARCHB": { "a": "(Suchtext;Text;[Erstes_Zeichen])", - "d": "Text- und Datenfunktionen - gibt die Position der angegebenen Teilzeichenfolge in einer Zeichenfolge zurück, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." + "d": "Gibt die Position der angegebenen Teilzeichenfolge in einer Zeichenfolge zurück, für Sprachen die den Double-Byte Zeichensatz (DBCS) verwenden, wie japanisch, chinesisch, koreanisch etc." }, "SUBSTITUTE": { "a": "(Text; Alter_Text; Neuer_Text; [ntes_Auftreten])", @@ -1348,8 +1348,8 @@ "d": "Konvertiert eine römische Zahl in eine arabische Zahl" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(Text)", + "d": "Für Sprachen mit einem Double-Byte-Zeichensatz (DBCS) werden in dieser Funktion Zeichen normaler Breite (Double-Byte-Zeichen) in Zeichen halber Breite (Single-Byte-Zeichen) umgewandelt" }, "ASIN": { "a": "(Zahl)", @@ -1385,7 +1385,7 @@ }, "CEILING.PRECISE": { "a": "(Zahl;[Schritt])", - "d": "Mathematische und trigonometrische Funktion - gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von „Schritt“ gerundet wurde" + "d": "Gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von „Schritt“ gerundet wurde" }, "COMBIN": { "a": "(n; k)", @@ -1429,7 +1429,7 @@ }, "ECMA.CEILING": { "a": "(Zahl;Schritt)", - "d": "Mathematische und trigonometrische Funktion - rundet eine Zahl auf die nächste Ganzzahl oder auf das kleinste Vielfache des angegebenen Schritts" + "d": "Rundet eine Zahl auf die nächste Ganzzahl oder auf das kleinste Vielfache des angegebenen Schritts" }, "EVEN": { "a": "(Zahl)", @@ -1453,7 +1453,7 @@ }, "FLOOR.PRECISE": { "a": "(Zahl;[Schritt])", - "d": "Mathematische und trigonometrische Funktion - gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von „Schritt“ gerundet wurde" + "d": "Gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von „Schritt“ gerundet wurde" }, "FLOOR.MATH": { "a": "(Zahl; [Schritt]; [Modus])", @@ -1468,8 +1468,8 @@ "d": "Rundet eine Zahl auf die nächstkleinere ganze Zahl ab" }, "ISO.CEILING": { - "a": "(Zahl;Schritt)", - "d": "Mathematische und trigonometrische Funktion - gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von „Schritt“ gerundet wurde. Die Zahl wird unabhängig von ihrem Vorzeichen aufgerundet. Ist „Zahl“ oder „Schritt“ gleich 0, wird 0 zurückgegeben." + "a": "(Zahl; Schritt)", + "d": "Gibt eine Zahl zurück, die auf die nächste Ganzzahl oder auf das kleinste Vielfache von „Schritt“ gerundet wurde. Die Zahl wird unabhängig von ihrem Vorzeichen aufgerundet. Ist „Zahl“ oder „Schritt“ gleich 0, wird 0 zurückgegeben." }, "LCM": { "a": "(Zahl1; [Zahl2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Informationsfunktion - werden Informationen zur Formatierung, zur Position oder zum Inhalt einer Zelle zurückgegeben" + "d": "Werden Informationen zur Formatierung, zur Position oder zum Inhalt einer Zelle zurückgegeben" }, "ERROR.TYPE": { "a": "(Fehlerwert)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/el_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/el_desc.json index 540585443..5da3ea95e 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/el_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/el_desc.json @@ -4,8 +4,8 @@ "d": "Αποδίδει τον αριθμό που αναπαριστά την ημερομηνία στον κώδικα ημερομηνίας-ώρας" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(ημερομηνία_έναρξης; ημερομηνία_λήξης; μονάδα)", + "d": "Υπολογίζει τον αριθμό των ημερών, των μηνών ή των ετών μεταξύ δύο ημερομηνιών" }, "DATEVALUE": { "a": "(κείμενο_ημερομηνίας)", @@ -396,8 +396,8 @@ "d": "Επιστρέφει τη θέση έναρξης μιας ακολουθίας χαρακτήρων κειμένου μέσα σε μια άλλη ακολουθία χαρακτήρων κειμένου. Η παράμετρος FIND κάνει διάκριση πεζών-κεφαλαίων" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(εύρεση_κειμένου; εντός_κειμένου; [αριθμός_έναρξης])", + "d": "Εντοπίζουν μία συμβολοσειρά κειμένου εντός μιας δεύτερης συμβολοσειράς κειμένου και επιστρέφουν τον αριθμό της θέσης έναρξης της πρώτης συμβολοσειράς κειμένου από τον πρώτο χαρακτήρα της δεύτερης συμβολοσειράς κειμένου, προορίζεται για χρήση με γλώσσες που χρησιμοποιούν σύνολα χαρακτήρων των δύο byte (DBCS) - Ιαπωνικά, Κινεζικά και Κορεατικά" }, "FIXED": { "a": "(αριθμός; [δεκαδικά_ψηφία]; [χωρίς_τελείες])", @@ -408,16 +408,16 @@ "d": "Αποδίδει το καθορισμένο πλήθος χαρακτήρων από την αρχή μιας ακολουθίας χαρακτήρων κειμένου" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(κείμενο; [αριθμός_χαρακτήρων])", + "d": "Eπιστρέφει τον πρώτο χαρακτήρα ή τους χαρακτήρες μιας συμβολοσειράς κειμένου, με βάση τον αριθμό των byte που καθορίζετε, προορίζεται για χρήση με γλώσσες που χρησιμοποιούν σύνολα χαρακτήρων των δύο byte (DBCS) - Ιαπωνικά, Κινεζικά και Κορεατικά" }, "LEN": { "a": "(κείμενο)", "d": "Αποδίδει το πλήθος των χαρακτήρων σε μια ακολουθία χαρακτήρων κειμένου" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(κείμενο)", + "d": "Eπιστρέφει το πλήθος των byte που χρησιμοποιούνται για την απεικόνιση των χαρακτήρων σε μια συμβολοσειρά κειμένου., προορίζεται για χρήση με γλώσσες που χρησιμοποιούν σύνολα χαρακτήρων των δύο byte (DBCS) - Ιαπωνικά, Κινεζικά και Κορεατικά" }, "LOWER": { "a": "(κείμενο)", @@ -428,8 +428,8 @@ "d": "Αποδίδει τους χαρακτήρες από το μέσο μιας ακολουθίας χαρακτήρων κειμένου, εφόσον καθοριστεί η αρχική θέση και το μήκος" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(κείμενο; αριθμός_έναρξης; αριθμός_χαρακτήρων)", + "d": "Eπιστρέφει έναν συγκεκριμένο αριθμό χαρακτήρων από μια συμβολοσειρά κειμένου, αρχίζοντας από μια καθορισμένη θέση, βάσει του αριθμού των byte που καθορίζετε., προορίζεται για χρήση με γλώσσες που χρησιμοποιούν σύνολα χαρακτήρων των δύο byte (DBCS) - Ιαπωνικά, Κινεζικά και Κορεατικά" }, "NUMBERVALUE": { "a": "(κείμενο; [διαχωριστικό_δεκαδικών]; [διαχωριστικό_ομάδων])", @@ -444,8 +444,8 @@ "d": "Αντικαθιστά χαρακτήρες μέσα σε κείμενο" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(παλιό_κείμενο; αριθμός_έναρξης; αριθμός_χαρακτήρων; νέο_κείμενο)", + "d": "Aντικαθιστά μέρος μιας συμβολοσειράς κειμένου με άλλη συμβολοσειρά, βάσει του αριθμού των byte που καθορίζετε, προορίζεται για χρήση με γλώσσες που χρησιμοποιούν σύνολα χαρακτήρων των δύο byte (DBCS) - Ιαπωνικά, Κινεζικά και Κορεατικά" }, "REPT": { "a": "(κείμενο; αριθμός_επαναλήψεων)", @@ -456,16 +456,16 @@ "d": "Αποδίδει το καθορισμένο πλήθος χαρακτήρων από το τέλος μιας ακολουθίας χαρακτήρων κειμένου" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(κείμενο; [αριθμός_χαρακτήρων])", + "d": "Αποδίδει τους τελευταίους χαρακτήρες μιας συμβολοσειράς κειμένου, με βάση τον αριθμό των byte που καθορίζετε, προορίζεται για χρήση με γλώσσες που χρησιμοποιούν σύνολα χαρακτήρων των δύο byte (DBCS) - Ιαπωνικά, Κινεζικά και Κορεατικά" }, "SEARCH": { "a": "(εύρεση_κειμένου; εντός_κειμένου; [αριθμός_έναρξης])", "d": "Αποδίδει τον αριθμό του χαρακτήρα όπου εντοπίζεται για πρώτη φορά ένας χαρακτήρας ή συμβολοσειρά κειμένου, από αριστερά προς δεξιά (χωρίς διάκριση πεζών-κεφαλαίων)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(εύρεση_κειμένου; εντός_κειμένου; [αριθμός_έναρξης])", + "d": "Εντοπίζουν μία συμβολοσειρά κειμένου εντός μιας δεύτερης συμβολοσειράς κειμένου και επιστρέφουν τον αριθμό της θέσης έναρξης της πρώτης συμβολοσειράς κειμένου από τον πρώτο χαρακτήρα της δεύτερης συμβολοσειράς κειμένου, προορίζεται για χρήση με γλώσσες που χρησιμοποιούν σύνολα χαρακτήρων των δύο byte (DBCS) - Ιαπωνικά, Κινεζικά και Κορεατικά" }, "SUBSTITUTE": { "a": "(κείμενο; παλιό_κείμενο; νέο_κείμενο; [αριθμός_παρουσίας])", @@ -1348,8 +1348,8 @@ "d": "Μετατρέπει ένα ρωμαϊκό νούμερο σε αραβικά ψηφία" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(κείμενο)", + "d": "Σε γλώσσες με σύνολα χαρακτήρων διπλού byte (Double-Byte Character Set - DBCS), μετατρέπει τους χαρακτήρες πλήρους πλάτους (δύο byte) σε χαρακτήρες μισού πλάτους (ενός byte)" }, "ASIN": { "a": "(αριθμός)", @@ -1384,8 +1384,8 @@ "d": "Στρογγυλοποιεί έναν αριθμό προς τα επάνω, στον πλησιέστερο ακέραιο ή στο πλησιέστερο πολλαπλάσιο των σημαντικών ψηφίων" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(αριθμός; [σημαντικότητα])", + "d": "Επιστρέφει έναν αριθμό που είναι στρογγυλοποιημένος προς τα επάνω στον πλησιέστερο ακέραιο ή στο πλησιέστερο σημαντικό πολλαπλάσιο" }, "COMBIN": { "a": "(αριθμός; επιλεγμένος_αριθμός)", @@ -1428,8 +1428,8 @@ "d": "Μετατρέπει τα ακτίνια σε μοίρες" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(αριθμός; σημαντικότητα)", + "d": "Στρογγυλοποιεί έναν αριθμό προς τα πάνω, στον πλησιέστερο ακέραιο ή στο πλησιέστερο σημαντικό πολλαπλάσιο" }, "EVEN": { "a": "(αριθμός)", @@ -1452,8 +1452,8 @@ "d": "Στρογγυλοποιεί έναν αριθμό προς τα κάτω, προς το πλησιέστερο σημαντικό πολλαπλάσιο" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(αριθμός; [σημαντικότητα] )", + "d": "Επιστρέφει έναν αριθμό που είναι στρογγυλοποιημένος προς τα κάτω στον πλησιέστερο ακέραιο ή στο πλησιέστερο σημαντικό πολλαπλάσιο" }, "FLOOR.MATH": { "a": "(αριθμός; [σημαντικότητα]; [τρόπος])", @@ -1468,8 +1468,8 @@ "d": "Στρογγυλοποιεί προς τα κάτω έναν αριθμό στον πλησιέστερο ακέραιο" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(αριθμός; [σημαντικότητα])", + "d": "Επιστρέφει έναν αριθμό που είναι στρογγυλοποιημένος προς τα επάνω στον πλησιέστερο ακέραιο ή στο πλησιέστερο σημαντικό πολλαπλάσιο. Ανεξάρτητα από το πρόσημο του αριθμού, ο αριθμός στρογγυλοποιείται προς τα επάνω. Εάν το όρισμα αριθμός ή το όρισμα σημαντικότητα είναι μηδέν, η συνάρτηση επιστρέφει την τιμή μηδέν." }, "LCM": { "a": "(αριθμός1; [αριθμός2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Κάνει αναζήτηση σε ένα εύρος ή έναν πίνακα για μια αντιστοίχιση και επιστρέφει το αντίστοιχο στοιχείο από ένα δεύτερο εύρος ή πίνακα. Από προεπιλογή, χρησιμοποιείται ακριβής αντιστοίχιση" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(τύπος_πληροφοριών; [αναφορά])", + "d": "Επιστρέφει πληροφορίες σχετικά με τη μορφοποίηση, τη θέση ή τα περιεχόμενα ενός κελιού" }, "ERROR.TYPE": { "a": "(τιμή_σφάλματος)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json index dfab91b1e..28268f328 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/en_desc.json @@ -5,7 +5,7 @@ }, "DATEDIF": { "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "d": "Returns the difference between two date values (start date and end date), based on the interval (unit) specified" }, "DATEVALUE": { "a": "(date_text)", @@ -397,7 +397,7 @@ }, "FINDB": { "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "d": "Finds the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." }, "FIXED": { "a": "(number; [decimals]; [no_commas])", @@ -409,7 +409,7 @@ }, "LEFTB": { "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "d": "Extracts the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." }, "LEN": { "a": "(text)", @@ -417,7 +417,7 @@ }, "LENB": { "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "d": "Analyses the specified string and returns the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." }, "LOWER": { "a": "(text)", @@ -429,7 +429,7 @@ }, "MIDB": { "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "d": "Extracts the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." }, "NUMBERVALUE": { "a": "(text; [decimal_separator]; [group_separator])", @@ -445,7 +445,7 @@ }, "REPLACEB": { "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "d": "Replaces a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." }, "REPT": { "a": "(text; number_times)", @@ -457,7 +457,7 @@ }, "RIGHTB": { "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "d": "Extracts a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." }, "SEARCH": { "a": "(find_text; within_text; [start_num])", @@ -465,7 +465,7 @@ }, "SEARCHB": { "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "d": "Returns the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." }, "SUBSTITUTE": { "a": "(text; old_text; new_text; [instance_num])", @@ -1349,7 +1349,7 @@ }, "ASC": { "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "d": "For Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" }, "ASIN": { "a": "(number)", @@ -1385,7 +1385,7 @@ }, "CEILING.PRECISE": { "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "d": "Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance" }, "COMBIN": { "a": "(number; number_chosen)", @@ -1429,7 +1429,7 @@ }, "ECMA.CEILING": { "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "d": "Rounds the number up to the nearest multiple of significance" }, "EVEN": { "a": "(number)", @@ -1453,7 +1453,7 @@ }, "FLOOR.PRECISE": { "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "d": "Returns a number that is rounded down to the nearest integer or to the nearest multiple of significance" }, "FLOOR.MATH": { "a": "(number; [significance]; [mode])", @@ -1469,7 +1469,7 @@ }, "ISO.CEILING": { "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "d": "Returns a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." }, "LCM": { "a": "(number1; [number2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "d": "Returns information about the formatting, location, or contents of a cell" }, "ERROR.TYPE": { "a": "(error_val)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json index a1f817165..d6d6f2dbb 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/es_desc.json @@ -5,7 +5,7 @@ }, "DATEDIF": { "a": "( fecha-inicio; fecha-final; unidad )", - "d": "Función de fecha y hora es utilizada para devolver la diferencia entre dos valores de fecha (fecha de inicio y fecha de fin), según el intervalo (unidad) especificado" + "d": "Devuelve la diferencia entre dos valores de fecha (fecha de inicio y fecha de fin), según el intervalo (unidad) especificado" }, "DATEVALUE": { "a": "(texto_de_fecha)", @@ -397,7 +397,7 @@ }, "FINDB": { "a": "(cadena-1; cadena-2; [posición-inicio])", - "d": "Función de texto y datos utilizada para encontrar la subcadena especificada (cadena-1) dentro de una cadena (cadena-2) y está destinada a los idiomas del conjunto de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." + "d": "Encuentra la subcadena especificada (cadena-1) dentro de una cadena (cadena-2) y está destinada a los idiomas del conjunto de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." }, "FIXED": { "a": "(número; [decimales]; [no_separar_millares])", @@ -409,7 +409,7 @@ }, "LEFTB": { "a": "(cadena; [número-caracteres])", - "d": "Función de texto y datos utilizada para extraer la subcadena de la cadena especificada a partir del carácter izquierdo y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." + "d": "Extrae la subcadena de la cadena especificada a partir del carácter izquierdo y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." }, "LEN": { "a": "(texto)", @@ -417,7 +417,7 @@ }, "LENB": { "a": "( cadena )", - "d": "Función de texto y datos utilizada para analizar la cadena especificada y devolver el número de caracteres que contiene y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." + "d": "Analiza la cadena especificada y devolver el número de caracteres que contiene y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." }, "LOWER": { "a": "(texto)", @@ -429,7 +429,7 @@ }, "MIDB": { "a": "(cadena; posición-empiece; número-caracteres)", - "d": "Función de texto y datos utilizada para extraer los caracteres de la cadena especificada a partir de cualquier posición y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." + "d": "Extrae los caracteres de la cadena especificada a partir de cualquier posición y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." }, "NUMBERVALUE": { "a": "(texto; [separador_decimal]; [separador_grupo])", @@ -445,7 +445,7 @@ }, "REPLACEB": { "a": "(cadena-1; pos-inicio; número-caracteres; cadena-2)", - "d": "Función de texto y datos utilizada para reemplazar un conjunto de caracteres, basado en el número de caracteres y la posición inicial que especifique, por un nuevo conjunto de caracteres y está destinada a idiomas que utilizan el conjunto de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." + "d": "Reemplaza un conjunto de caracteres, basado en el número de caracteres y la posición inicial que especifique, por un nuevo conjunto de caracteres y está destinada a idiomas que utilizan el conjunto de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." }, "REPT": { "a": "(texto; núm_de_veces)", @@ -457,7 +457,7 @@ }, "RIGHTB": { "a": "(cadena; [número-caracteres])", - "d": "Función de texto y datos utilizada para extraer una subcadena de una cadena a partir del carácter más a la derecha, basada en el número especificado de caracteres y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." + "d": "Extrae una subcadena de una cadena a partir del carácter más a la derecha, basada en el número especificado de caracteres y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." }, "SEARCH": { "a": "(texto_buscado; dentro_del_texto; [núm_inicial])", @@ -465,7 +465,7 @@ }, "SEARCHB": { "a": "(cadena-1; cadena-2; [posición-inicio])", - "d": "Función de texto y datos utilizada para devolver la ubicación de la subcadena especificada en una cadena y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." + "d": "Devuelve la ubicación de la subcadena especificada en una cadena y está destinada a idiomas que utilizan el juego de caracteres de doble bit (DBCS) como el japonés, chino, coreano, etc." }, "SUBSTITUTE": { "a": "(texto; texto_original; texto_nuevo; [núm_de_repeticiones])", @@ -1348,8 +1348,8 @@ "d": "Convierte un número romano en arábigo" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(texto)", + "d": "Para los idiomas que empleen juegos de caracteres de dos bytes (DBCS), convierte los caracteres de ancho completo (de dos bytes) en caracteres de ancho medio (de un byte)" }, "ASIN": { "a": "(número)", @@ -1385,7 +1385,7 @@ }, "CEILING.PRECISE": { "a": "( x; [significado])", - "d": "Función de matemáticas y trigonometría utilizada para devolver un número que se redondea hacia arriba al entero más cercano o al múltiplo de significación más cercano." + "d": "Devuelve un número que se redondea hacia arriba al entero más cercano o al múltiplo de significación más cercano." }, "COMBIN": { "a": "(número; tamaño)", @@ -1429,7 +1429,7 @@ }, "ECMA.CEILING": { "a": "( x; significado)", - "d": "Función de matemáticas y trigonometría utilizada para redondear el número hasta el múltiplo de significación más cercano" + "d": "Redondea el número hasta el múltiplo de significación más cercano" }, "EVEN": { "a": "(número)", @@ -1453,7 +1453,7 @@ }, "FLOOR.PRECISE": { "a": "( x; [significado])", - "d": "Función de matemáticas y trigonometría utilizada para devolver un número que se redondea hacia abajo al entero más cercano o al múltiplo de significación más cercano." + "d": "Devuelve un número que se redondea hacia abajo al entero más cercano o al múltiplo de significación más cercano." }, "FLOOR.MATH": { "a": "(número; [cifra_significativa]; [moda])", @@ -1468,8 +1468,8 @@ "d": "Redondea un número hasta el entero inferior más próximo" }, "ISO.CEILING": { - "a": "( número; [significado])", - "d": "Función de matemáticas y trigonometría utilizada para devolver un número que se redondea hacia arriba al entero más cercano o al múltiplo de significación más cercano, independientemente del signo del número. Sin embargo, si el número o el significado es cero, se devuelve cero." + "a": "(número; [significado])", + "d": "Devuelve un número que se redondea hacia arriba al entero más cercano o al múltiplo de significación más cercano, independientemente del signo del número. Sin embargo, si el número o el significado es cero, se devuelve cero." }, "LCM": { "a": "(número1; [número2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Función de información utilizada para devolver información sobre el formato, la ubicación o el contenido de una celda" + "d": "Devuelve información sobre el formato, la ubicación o el contenido de una celda" }, "ERROR.TYPE": { "a": "(valor_de_error)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fi_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/fi_desc.json index cde4ad617..40234940a 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/fi_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/fi_desc.json @@ -4,8 +4,8 @@ "d": "Palauttaa annetun päivämäärän järjestysnumeron päivämäärä-aika-koodissa" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(aloituspäivä; lopetuspäivä; yksikkö)", + "d": "Laskee kahden päivämäärän välillä olevien päivien, kuukausien tai vuosien määrän" }, "DATEVALUE": { "a": "(päivämäärä_teksti)", @@ -396,8 +396,8 @@ "d": "Palauttaa kohdan, josta toisen merkkijonon sisällä oleva merkkijono alkaa. FIND-arvo ottaa huomioon kirjainkoon" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(etsittävä_teksti; tekstissä; [aloitusnro])", + "d": "Etsivät merkkijonon toisen merkkijonon sisältä ja palauttavat luvun, joka ilmaisee etsittävän merkkijonon ensimmäisen merkin sijainnin toisen merkkijonon sisällä, käytetään, kun kirjoituskielen merkistön merkeissä on kaksi tavua (DBCS) - japani, kiina ja korea." }, "FIXED": { "a": "(luku; [desimaalit]; [ei_erotinta])", @@ -408,16 +408,16 @@ "d": "Palauttaa määritetyn määrän merkkejä tekstimerkkijonon alusta lukien" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(teksti; [merkit_luku])", + "d": "Palauttaa merkkijonon ensimmäisen merkin tai ensimmäiset merkit määritetyn tavumäärän perusteella, käytetään, kun kirjoituskielen merkistön merkeissä on kaksi tavua (DBCS) - japani, kiina ja korea" }, "LEN": { "a": "(teksti)", "d": "Palauttaa tekstimerkkijonon merkkien määrän" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(teksti)", + "d": "Palauttaa tekstimerkkijonossa olevien tavujen määrän, käytetään, kun kirjoituskielen merkistön merkeissä on kaksi tavua (DBCS) - japani, kiina ja korea" }, "LOWER": { "a": "(teksti)", @@ -428,8 +428,8 @@ "d": "Palauttaa tekstin keskeltä määritetyn määrän merkkejä aloittaen määrittämästäsi kohdasta" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(teksti; aloitusnro; merkit_luku)", + "d": "Poimii merkkijonosta määrittämääsi tavumäärään perustuvan määrän merkkejä alkaen määrittämästäsi paikasta, käytetään, kun kirjoituskielen merkistön merkeissä on kaksi tavua (DBCS) - japani, kiina ja korea" }, "NUMBERVALUE": { "a": "(teksti; [desimaalierotin]; [ryhmäerotin])", @@ -444,8 +444,8 @@ "d": "Korvaa merkkejä tekstissä" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(vanha_teksti; aloitusnro; merkit_luku; uusi_teksti)", + "d": "Korvaa tekstimerkkijonon osan toisella tekstimerkkijonolla määritettyjen merkkien tavujen määrän perusteella, with a new set of characters, käytetään, kun kirjoituskielen merkistön merkeissä on kaksi tavua (DBCS) - japani, kiina ja korea" }, "REPT": { "a": "(teksti; kerrat_luku)", @@ -456,16 +456,16 @@ "d": "Palauttaa määritetyn määrän merkkejä tekstimerkkijonon lopusta lukien" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(teksti; [merkit_luku])", + "d": "Palauttaa merkkijonon viimeisen merkin tai viimeiset merkit annetun merkkien tavumäärän perusteella, käytetään, kun kirjoituskielen merkistön merkeissä on kaksi tavua (DBCS) - japani, kiina ja korea" }, "SEARCH": { "a": "(etsittävä_teksti; tekstissä; [aloitusnro])", "d": "Palauttaa sen merkin numeron, jossa etsittävä merkki tai merkkijono esiintyy ensimmäisen kerran. Merkkiä tai merkkijonoa etsitään vasemmalta oikealle, eikä kirjainkokoa oteta huomioon" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(etsittävä_teksti; tekstissä; [aloitusnro])", + "d": "Paikantavat yhden merkkijonon toisen merkkijonon sisältä ja ne palauttavat luvun, joka vastaa ensimmäisen merkkijonon aloituskohtaa toisen merkkijojon ensimmäisestä kirjaimesta laskettuna, käytetään, kun kirjoituskielen merkistön merkeissä on kaksi tavua (DBCS) - japani, kiina ja korea" }, "SUBSTITUTE": { "a": "(teksti; vanha_teksti; uusi_teksti; [esiintymä_nro])", @@ -1348,8 +1348,8 @@ "d": "Muuntaa roomalaiset numerot arabialaisiksi numeroiksi" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(teksti)", + "d": "Funktio muuttaa DBCS (Double-byte character set) -merkit SBCS (Single-byte character set) -merkistön merkeiksi DBCS-merkistöä edellyttäviä kieliä käytettäessä" }, "ASIN": { "a": "(luku)", @@ -1384,8 +1384,8 @@ "d": "Pyöristää luvun ylöspäin seuraavaan kokonaislukuun tai seuraavaan tarkkuuden monikertaan" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(luku; [tarkkuus])", + "d": "Palauttaa luvun pyöristettynä lähimpään kokonaislukuun tai tarkkuuden kerrannaiseen" }, "COMBIN": { "a": "(luku; valittu_luku)", @@ -1428,8 +1428,8 @@ "d": "Muuntaa radiaanit asteiksi" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(luku; tarkkuus)", + "d": "Pyöristää luvun ylöspäin lähimpään tarkkuuden kerrannaiseen" }, "EVEN": { "a": "(luku)", @@ -1452,8 +1452,8 @@ "d": "Pyöristää luvun alaspäin lähimpään tarkkuuden kerrannaiseen" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(luku; [tarkkuus])", + "d": "Palauttaa luvun pyöristettynä alaspäin lähimpään kokonaislukuun tai tarkkuuden kerrannaiseen" }, "FLOOR.MATH": { "a": "(luku; [tarkkuus]; [tila])", @@ -1468,8 +1468,8 @@ "d": "Pyöristää luvun alaspäin lähimpään kokonaislukuun" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(luku; [tarkkuus])", + "d": "Palauttaa luvun pyöristettynä lähimpään kokonaislukuun tai tarkkuuden kerrannaiseen. Luvun etumerkistä huolimatta arvo pyöristetään aina ylöspäin. Jos luku tai tarkkuus on pariton kokonaisluku, sitä ei pyöristetä." }, "LCM": { "a": "(luku1; [luku2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Hakee vastaavaa aluetta tai matriisia ja palauttaa vastaavan kohteen toisesta alueesta tai matriisista. Oletusarvoisesti tarkkaa vastaavuutta käytetään" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(kuvaus_laji; [viittaus])", + "d": "Palauttaa tietoja solun muotoilusta, sijainnista ja sisällöstä" }, "ERROR.TYPE": { "a": "(virhearvo)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json index 47c20f591..ccc08ed25 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/fr_desc.json @@ -5,7 +5,7 @@ }, "DATEDIF": { "a": "(date_début; date_fin; unité)", - "d": "Fonction de date et d’heure utilisée pour renvoyer la différence entre deux dates (date_début et date_fin) sur la base d'un intervalle (unité) spécifié" + "d": "Renvoie la différence entre deux dates (date_début et date_fin) sur la base d'un intervalle (unité) spécifié" }, "DATEVALUE": { "a": "(date_texte)", @@ -397,7 +397,7 @@ }, "FINDB": { "a": "(texte_cherché; texte; [no_départ])", - "d": "Fonction de texte et de données utilisée pour trouver la sous-chaîne spécifiée (texte_cherché) dans une chaîne (texte) et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." + "d": "Recherche la sous-chaîne spécifiée (texte_cherché) dans une chaîne (texte) et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." }, "FIXED": { "a": "(nombre; [décimales]; [no_séparateur])", @@ -409,7 +409,7 @@ }, "LEFTB": { "a": "(texte; [no_car])", - "d": "Fonction de texte et de données utilisée pour extraire la sous-chaîne d’une chaîne spécifiée à partir du caractère de gauche et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." + "d": "Extrait la sous-chaîne d’une chaîne spécifiée à partir du caractère de gauche et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." }, "LEN": { "a": "(texte)", @@ -417,7 +417,7 @@ }, "LENB": { "a": "(texte)", - "d": "Fonction de texte et de données utilisée pour analyser la chaîne spécifiée et renvoyer le nombre de caractères qu’elle contient et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." + "d": "Analyse la chaîne spécifiée et renvoyer le nombre de caractères qu’elle contient et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." }, "LOWER": { "a": "(texte)", @@ -429,7 +429,7 @@ }, "MIDB": { "a": "(texte; no_départ; no_car)", - "d": "Fonction de texte et de données utilisée pour extraire les caractères d’une chaîne spécifiée à partir de n’importe quelle position et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." + "d": "Extrait les caractères d’une chaîne spécifiée à partir de n’importe quelle position et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." }, "NUMBERVALUE": { "a": "(texte; [séparateur_décimal]; [séparateur_groupe])", @@ -445,7 +445,7 @@ }, "REPLACEB": { "a": "(ancien_texte; no_départ; no_car; nouveau_texte)", - "d": "Fonction de texte et de données utilisée pour remplacer un jeu de caractères, en fonction du nombre de caractères et de la position de départ que vous spécifiez, avec un nouvel ensemble de caractères et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." + "d": "Remplace un jeu de caractères, en fonction du nombre de caractères et de la position de départ que vous spécifiez, avec un nouvel ensemble de caractères et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." }, "REPT": { "a": "(texte; no_fois)", @@ -457,7 +457,7 @@ }, "RIGHTB": { "a": "(texte; [no_car])", - "d": "Fonction de texte et de données utilisée pour extraire une sous-chaîne d'une chaîne à partir du caractère le plus à droite, en fonction du nombre de caractères spécifié et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." + "d": "Extrait une sous-chaîne d'une chaîne à partir du caractère le plus à droite, en fonction du nombre de caractères spécifié et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." }, "SEARCH": { "a": "(texte_cherché; texte; [no_départ])", @@ -465,7 +465,7 @@ }, "SEARCHB": { "a": "(texte_cherché; texte; [no_départ])", - "d": "Fonction de texte et de données utilisée pour renvoyer l'emplacement de la sous-chaîne spécifiée dans une chaîne et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." + "d": "Renvoie l'emplacement de la sous-chaîne spécifiée dans une chaîne et destinée aux langues qui utilisent le jeu de caractères à deux octets (DBCS) comme le Japonais, le Chinois, le Coréen etc." }, "SUBSTITUTE": { "a": "(texte; ancien_texte; nouveau_texte; [no_position])", @@ -1348,8 +1348,8 @@ "d": "Convertit un chiffre romain en un chiffre arabe" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(texte)", + "d": "En ce qui concerne les langues à jeu de caractères codés sur deux octets (DBCS, Double-byte Character Set), la fonction remplace les caractères à pleine chasse (codés sur deux octets) en caractères à demi-chasse (codés sur un octet)" }, "ASIN": { "a": "(nombre)", @@ -1385,7 +1385,7 @@ }, "CEILING.PRECISE": { "a": "(x; [précision])", - "d": "Fonction mathématique et trigonométrique utilisée pour arrondir le nombre à l'excès à l'entier ou au multiple significatif le plus proche." + "d": "Arrondit le nombre à l'excès à l'entier ou au multiple significatif le plus proche." }, "COMBIN": { "a": "(nombre_éléments; nb_éléments_choisis)", @@ -1429,7 +1429,7 @@ }, "ECMA.CEILING": { "a": "(x; précision)", - "d": "Fonction mathématique et trigonométrique utilisée pour arrondir le nombre au multiple le plus proche de l'argument de précision." + "d": "Arrondit le nombre au multiple le plus proche de l'argument de précision." }, "EVEN": { "a": "(nombre)", @@ -1453,7 +1453,7 @@ }, "FLOOR.PRECISE": { "a": "(x; [précision])", - "d": "Fonction mathématique et trigonométrique utilisée pour arrondir le nombre par défaut à l'entier ou au multiple significatif le plus proche." + "d": "Arrondit le nombre par défaut à l'entier ou au multiple significatif le plus proche." }, "FLOOR.MATH": { "a": "(nombre; [précision]; [mode])", @@ -1469,7 +1469,7 @@ }, "ISO.CEILING": { "a": "(nombre; [précision])", - "d": "Fonction mathématique et trigonométrique utilisée pour arrondir le nombre à l'excès à l'entier ou au multiple significatif le plus proche sans tenir compte du signe de ce nombre. Cependant, si le nombre ou la valeur significative est zéro, zéro est renvoyé." + "d": "Renvoie un nombre arrondi au nombre entier le plus proche ou au multiple le plus proche de l’argument précision en s’éloignant de zéro. Quel que soit son signe, ce nombre est arrondi à l’entier supérieur. Toutefois, si le nombre ou l’argument précision est égal à zéro, zéro est retourné." }, "LCM": { "a": "(nombre1; [nombre2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Fonction d’information utilisée pour renvoie des informations sur la mise en forme, l’emplacement ou le contenu d’une cellule" + "d": "Renvoie des informations sur la mise en forme, l’emplacement ou le contenu d’une cellule" }, "ERROR.TYPE": { "a": "(valeur)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/hu_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/hu_desc.json index bf321ca5c..0b3f5d86e 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/hu_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/hu_desc.json @@ -4,8 +4,8 @@ "d": "Eredménye a dátumot dátum- és időértékben megadó szám" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(kezdő_dátum; záró_dátum; egység)", + "d": "Két dátum közé eső napok, hónapok vagy évek számát számítja ki" }, "DATEVALUE": { "a": "(dátum_szöveg)", @@ -396,8 +396,8 @@ "d": "Megkeres egy szövegrészt egy másikban, eredményül a talált szövegrész kezdőpozíciójának számát adja, a kis- és nagybetűket megkülönbözteti" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(keres_szöveg; szöveg; [kezdet])", + "d": "Egy karaktersorozatban egy másikat keres, és eredményül az első karakterlánc első karakterének helyét adja a második karakterlánc elejétől számítva, kétbájtos (DBCS) karakterkészletet alkalmazó nyelvekhez készült - a japán, a kínai és a koreai" }, "FIXED": { "a": "(szám; [tizedesek]; [nincs_pont])", @@ -408,16 +408,16 @@ "d": "Egy szövegrész elejétől megadott számú karaktert ad eredményül" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(szöveg; [hány_karakter])", + "d": "A szöveg első karaktereit adja vissza a megadott bájtszám alapján, kétbájtos (DBCS) karakterkészletet alkalmazó nyelvekhez készült - a japán, a kínai és a koreai" }, "LEN": { "a": "(szöveg)", "d": "Egy szöveg karakterekben mért hosszát adja eredményül." }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(szöveg)", + "d": "A szöveg karaktereinek ábrázolására használt bájtok számát adja vissza, kétbájtos (DBCS) karakterkészletet alkalmazó nyelvekhez készült - a japán, a kínai és a koreai" }, "LOWER": { "a": "(szöveg)", @@ -428,8 +428,8 @@ "d": "Eredményként megadott számú karaktert ad egy szövegből a megadott sorszámú karaktertől kezdődően" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(szöveg; honnantól; hány_karakter)", + "d": "A karakterek által elfoglalt bájtok alapján megadott pozíciójú karaktertől kezdve adott számú karaktert ad vissza szövegből, kétbájtos (DBCS) karakterkészletet alkalmazó nyelvekhez készült - a japán, a kínai és a koreai" }, "NUMBERVALUE": { "a": "(szöveg; [tizedes_elv]; [ezres_elv])", @@ -444,8 +444,8 @@ "d": "Szövegdarab megadott részét eltérő szövegdarabbal cseréli ki." }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(régi_szöveg; honnantól; hány_karakter; új_szöveg)", + "d": "Egy adott bájtszám alapján a szöveg adott részét másik karaktersorozatra cseréli, kétbájtos (DBCS) karakterkészletet alkalmazó nyelvekhez készült - a japán, a kínai és a koreai" }, "REPT": { "a": "(szöveg; hányszor)", @@ -456,16 +456,16 @@ "d": "Egy szövegrész végétől megadott számú karaktert ad eredményül" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(szöveg; [hány_karakter])", + "d": "Szöveg utolsó karaktereit adja vissza a megadott bájtszám alapján, kétbájtos (DBCS) karakterkészletet alkalmazó nyelvekhez készült - a japán, a kínai és a koreai" }, "SEARCH": { "a": "(keres_szöveg; szöveg; [kezdet])", "d": "Azt a karaktersorszámot adja meg, ahol egy adott karakter vagy szövegdarab először fordul elő balról jobbra haladva, a kis- és nagybetűket azonosnak tekintve." }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(keres_szöveg; szöveg; [kezdet])", + "d": "Egy szöveges karakterláncot keres egy második karakterláncban, és visszaadja az első karakterlánc kezdő pozíciójának számát a második karakterlánc első karakterében, kétbájtos (DBCS) karakterkészletet alkalmazó nyelvekhez készült - a japán, a kínai és a koreai" }, "SUBSTITUTE": { "a": "(szöveg; régi_szöveg; új_szöveg; [melyiket])", @@ -1348,8 +1348,8 @@ "d": "Római számot arab számmá alakít át" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(szöveg)", + "d": "Ez a függvény a kétbájtos (DBCS) karakterkészletet használó nyelveknél egybájtos karakterekre cseréli a kétbájtos karaktereket" }, "ASIN": { "a": "(szám)", @@ -1384,8 +1384,8 @@ "d": "Egy számot a legközelebbi egészre vagy a pontosságként megadott érték legközelebb eső többszörösére kerekít fel." }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(szám; [pontosság])", + "d": "Egy számot a legközelebbi egészre vagy a pontosságként megadott érték legközelebb eső többszörösére kerekít" }, "COMBIN": { "a": "(szám; hány_kiválasztott)", @@ -1428,8 +1428,8 @@ "d": "Radiánt fokká alakít át" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(szám; pontosság)", + "d": "Egy számot a pontosságként megadott érték legközelebb eső többszörösére kerekít fel" }, "EVEN": { "a": "(szám)", @@ -1452,8 +1452,8 @@ "d": "Egy számot lefelé kerekít, a pontosságként megadott érték legközelebb eső többszörösére." }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(szám; [pontosság])", + "d": "Egy számot a legközelebbi egészre vagy a pontosságként megadott érték legközelebb eső többszörösére lefelé kerekít" }, "FLOOR.MATH": { "a": "(szám; [pontosság]; [mód])", @@ -1468,8 +1468,8 @@ "d": "Egy számot lefelé kerekít a legközelebbi egészre." }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(szám; [pontosság])", + "d": "Egy számot a legközelebbi egészre vagy a pontosságként megadott érték legközelebb eső többszörösére kerekít. A szám előjelétől függetlenül a számot felfelé kerekíti. Ugyanakkor ha a szám vagy a pontosságként megadott érték nulla, a függvény nullát ad vissza." }, "LCM": { "a": "(szám1; [szám2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Egyezéseket keres valamely tartományban vagy tömbben, és egy második tartományból vagy tömbből adja vissza a megfelelő elemet. Alapértelmezés szerint pontos egyezést használ a program." }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(infótípus; [hivatkozás])", + "d": "Egy cella formázásáról, helyéről vagy tartalmáról ad információt" }, "ERROR.TYPE": { "a": "(hibaérték)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/id_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/id_desc.json index 6b488423b..57ab504fb 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/id_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/id_desc.json @@ -4,8 +4,8 @@ "d": "Mengembalikan angka yang mewakili tanggal dalam kode tanggal-waktu" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(start-date; end-date; unit)", + "d": "Menghitung jumlah hari, bulan, atau tahun di antara dua tanggal" }, "DATEVALUE": { "a": "(date_text)", @@ -396,8 +396,8 @@ "d": "Menampilkan posisi awal satu string teks dalam string teks lain. FIND membedakan huruf besar dan kecil" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "Menemukan satu string teks ketika string teks kedua, dan mengembalikan nomor posisi mulai string teks pertama dari karakter pertama string teks kedua, ditujukan untuk penggunaan dengan bahasa yang menggunakan kumpulan karakter byte ganda (DBCS) - Jepang, Tionghoa, dan Korea" }, "FIXED": { "a": "(number; [decimals]; [no_commas])", @@ -408,16 +408,16 @@ "d": "Menampilkan jumlah karakter tertentu dari awal string teks" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "Mengembalikan karakter pertama atau beberapa karakter dalam string teks, berdasarkan jumlah byte yang Anda tentukan, ditujukan untuk penggunaan dengan bahasa yang menggunakan kumpulan karakter byte ganda (DBCS) - Jepang, Tionghoa, dan Korea" }, "LEN": { "a": "(text)", "d": "Menampilkan jumlah karakter dalam string teks" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "Mengembalikan jumlah byte yang digunakan untuk menunjukkan karakter dalam string teks, ditujukan untuk penggunaan dengan bahasa yang menggunakan kumpulan karakter byte ganda (DBCS) - Jepang, Tionghoa, dan Korea" }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "Menampilkan karakter dari tengah string teks, memberikan posisi awal dan panjang" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; start_num; num_chars)", + "d": "Mengembalikan jumlah karakter tertentu dari sebuah string teks, dimulai dari posisi yang Anda tentukan, berdasarkan jumlah byte yang Anda tentukan, ditujukan untuk penggunaan dengan bahasa yang menggunakan kumpulan karakter byte ganda (DBCS) - Jepang, Tionghoa, dan Korea" }, "NUMBERVALUE": { "a": "(text; [decimal_separator]; [group_separator])", @@ -444,8 +444,8 @@ "d": "Mengganti bagian dari string teks dengan string teks yang lain" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(old_text; start_num; num_chars; new_text)", + "d": "Menggantikan bagian dari string teks, berdasarkan jumlah byte yang Anda tentukan, dengan string teks berbeda, ditujukan untuk penggunaan dengan bahasa yang menggunakan kumpulan karakter byte ganda (DBCS) - Jepang, Tionghoa, dan Korea" }, "REPT": { "a": "(text; number_times)", @@ -456,16 +456,16 @@ "d": "Menampilkan jumlah karakter tertentu dari bagian akhir string teks" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "Menampilkan karakter terakhir atau karakter dalam string teks, berdasarkan jumlah byte yang Anda tentukan, ditujukan untuk penggunaan dengan bahasa yang menggunakan kumpulan karakter byte ganda (DBCS) - Jepang, Tionghoa, dan Korea" }, "SEARCH": { "a": "(find_text; within_text; [start_num])", "d": "Menampilkan jumlah dari karakter saat karakter atau string teks tertentu ditemukan pertama kali, membaca dari kiri ke kanan (huruf besar dan kecil tidak dibedakan)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "Menemukan satu string teks dalam string teks kedua, dan mengembalikan nomor posisi awal string teks pertama dari karakter pertama string teks kedua, ditujukan untuk penggunaan dengan bahasa yang menggunakan kumpulan karakter byte ganda (DBCS) - Jepang, Tionghoa, dan Korea" }, "SUBSTITUTE": { "a": "(text; old_text; new_text; [instance_num])", @@ -1348,8 +1348,8 @@ "d": "Mengonversi angka Romawi ke angka Arab" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "Untuk bahasa Perangkat karakter bit ganda (DBCS, Double-byte character set), fungsi tersebut mengubah karakter lebar penuh (bit ganda) menjadi lebar setengah (bit tunggal)" }, "ASIN": { "a": "(number)", @@ -1384,8 +1384,8 @@ "d": "Membulatkan angka ke atas, ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat" }, "COMBIN": { "a": "(number; number_chosen)", @@ -1428,8 +1428,8 @@ "d": "Mengonversi radian ke derajat" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(number; significance)", + "d": "Membulatkan angka ke atas, ke bilangan bulat terdekat atau ke multipel terdekat dari signifikansi" }, "EVEN": { "a": "(number)", @@ -1452,8 +1452,8 @@ "d": "Membulatkan angka ke bawah, mendekati multipel terdekat dari signifikansi" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "Mengembalikan angka yang dibulatkan ke bawah ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat" }, "FLOOR.MATH": { "a": "(number; [significance]; [mode])", @@ -1468,8 +1468,8 @@ "d": "Membulatkan angka ke bawah ke bilangan bulat terdekat" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(number; [significance])", + "d": "Mengembalikan angka yang dibulatkan ke atas ke bilangan bulat terdekat atau ke kelipatan signifikansi terdekat. Tanpa memperhatikan lambang angkanya, bilangan itu dibulatkan ke atas. Akan tetapi, jika angka signifikansinya nol, maka hasilnya nol." }, "LCM": { "a": "(number1; [number2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "d": "Mengembalikan informasi tentang pemformatan, lokasi, atau konten sel" }, "ERROR.TYPE": { "a": "(error_val)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json index 481ac7f49..02fa82b04 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/it_desc.json @@ -453,7 +453,7 @@ }, "RIGHTB": { "a": "(testo; [num_caratt])", - "d": " set (DBCS) per linguaggi come Japanese, Chinese, Korean etc." + "d": "Restituisce l'ultimo o gli ultimi caratteri di una stringa di testo, in base al numero di byte specificati set (DBCS) per linguaggi come Japanese, Chinese, Korean etc." }, "SEARCH": { "a": "(testo; stringa; [inizio])", @@ -1316,8 +1316,8 @@ "d": "Converte un numero romano in arabo" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(testo)", + "d": "Nelle lingue che utilizzano set di caratteri a byte doppio (DBCS, Double-Byte Character Set), la funzione converte i caratteri latini a byte doppio (DB, Double-Byte) in caratteri a byte singolo (SB, Single-Byte)" }, "ASIN": { "a": "(num)", @@ -1436,8 +1436,8 @@ "d": "Arrotonda un numero per difetto all'intero più vicino." }, "ISO.CEILING": { - "a": "( num; [peso] )", - "d": "Funzione matematica e trigonometrica utilizzata per restituire un numero arrotondato al numero intero più vicino o al multiplo più vicino di significato indipendentemente dal segno del numero. Tuttavia, se il numero o il significato è zero, viene restituito zero." + "a": "(num; [peso])", + "d": "Restituisce un numero arrotondato per eccesso all'intero più vicino o al multiplo più vicino a peso. Indipendentemente dal segno di num, il numero viene arrotondato per eccesso. Se tuttavia num o peso è zero, verrà restituito il valore zero." }, "LCM": { "a": "(num1; [num2]; ...)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ja_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ja_desc.json index 12cd0b332..2676afb03 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ja_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ja_desc.json @@ -4,8 +4,8 @@ "d": "日付/時刻コードで指定した日付を表す数値を返します。" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(開始日; 終了日; 単位)", + "d": "2 つの日付の間の日数、月数、または年数を計算します。" }, "DATEVALUE": { "a": "(日付文字列)", @@ -396,8 +396,8 @@ "d": "文字列が他の文字列内で最初に現れる位置を検索します。大文字と小文字は区別されます。" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(検索文字列; 対象; [開始位置])", + "d": "指定された文字列を他の文字列の中で検索し、その文字列が最初に現れる位置を左端から数え、その番号を返します。関数は、2 バイト文字セット (DBCS) を使う言語での使用を前提としています。DBCS をサポートする言語には、日本語、中国語、および韓国語があります。" }, "FIXED": { "a": "(数値; [桁数]; [桁区切り])", @@ -408,16 +408,16 @@ "d": "文字列の先頭から指定された数の文字を返します。" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(文字列; [文字数])", + "d": "関数は、文字列の先頭から指定されたバイト数の文字を返します。関数は、2 バイト文字セット (DBCS) を使う言語での使用を前提としています。DBCS をサポートする言語には、日本語、中国語、および韓国語があります。" }, "LEN": { "a": "(文字列)", "d": "文字列の長さ (文字数) を返します。半角と全角の区別なく、1 文字を 1 として処理します。" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(文字列)", + "d": "関数は、文字列のバイト数を返します。関数は、2 バイト文字セット (DBCS) を使う言語での使用を前提としています。DBCS をサポートする言語には、日本語、中国語、および韓国語があります。" }, "LOWER": { "a": "(文字列)", @@ -428,8 +428,8 @@ "d": "文字列の指定された位置から、指定された数の文字を返します。半角と全角の区別なく、1 文字を 1 として処理します。" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(文字列; 開始位置; 文字数)", + "d": "関数は、文字列の任意の位置から指定されたバイト数の文字を返します。関数は、2 バイト文字セット (DBCS) を使う言語での使用を前提としています。DBCS をサポートする言語には、日本語、中国語、および韓国語があります。" }, "NUMBERVALUE": { "a": "(文字列; [小数点記号]; [桁区切り記号])", @@ -444,8 +444,8 @@ "d": "文字列中の指定した位置の文字列を置き換えた結果を返します。半角と全角の区別なく、1 文字を 1 として処理します。" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(文字列; 開始位置; 文字数; 置換文字列)", + "d": "関数は、文字列中の指定されたバイト数の文字を別の文字に置き換えます。関数は、2 バイト文字セット (DBCS) を使う言語での使用を前提としています。DBCS をサポートする言語には、日本語、中国語、および韓国語があります。" }, "REPT": { "a": "(文字列; 繰り返し回数)", @@ -456,16 +456,16 @@ "d": "文字列の末尾から指定された文字数の文字を返します。" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(文字列; [バイト数])", + "d": "関数は、文字列の末尾 (右端) から指定されたバイト数の文字を返します。関数は、2 バイト文字セット (DBCS) を使う言語での使用を前提としています。DBCS をサポートする言語には、日本語、中国語、および韓国語があります。" }, "SEARCH": { "a": "(検索文字列; 対象; [開始位置])", "d": "文字列が最初に現れる位置の文字番号を返します。大文字、小文字は区別されません。" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(検索文字列,対象,[開始位置])", + "d": "関数は、指定された文字列を他の文字列の中で検索し、その文字列が最初に現れる位置を左端から数え、その番号を返します。 関数は、2 バイト文字セット (DBCS) を使う言語での使用を前提としています。DBCS をサポートする言語には、日本語、中国語、および韓国語があります。" }, "SUBSTITUTE": { "a": "(文字列; 検索文字列; 置換文字列; [置換対象])", @@ -1348,8 +1348,8 @@ "d": "ローマ数字をアラビア数字に変換します。" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(文字列)", + "d": "2 バイト文字セット (DBCS) 言語の場合、全角 (2 バイト) 文字を半角 (1 バイト) 文字に変更します。" }, "ASIN": { "a": "(数値)", @@ -1384,8 +1384,8 @@ "d": "数値を最も近い整数、または最も近い基準値の倍数に切り上げます。" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(数値; [基準値])", + "d": "最も近い整数に切り上げた値、または、指定された基準値の倍数のうち最も近い値を返します。" }, "COMBIN": { "a": "(総数; 抜き取り数)", @@ -1428,8 +1428,8 @@ "d": "ラジアンで表された角度を度に変更します。" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(数値; 基準値)", + "d": "指定された基準値の倍数のうち、最も近い値に数値を切り上げます。" }, "EVEN": { "a": "(数値)", @@ -1452,8 +1452,8 @@ "d": "指定された基準値の倍数のうち、最も近い値に数値を切り捨てます。" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(数値; [基準値])", + "d": "最も近い整数、または最も近い基準値の倍数に切り捨てる数値を返します。" }, "FLOOR.MATH": { "a": "(数値; [基準値]; [モード])", @@ -1468,8 +1468,8 @@ "d": "切り捨てて整数にした数値を返します。" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(数値, [基準値])", + "d": "最も近い整数に切り上げた値、または、指定された基準値の倍数のうち最も近い値を返します。 数値は正負に関係なく切り上げられます。 ただし、数値または基準値が 0 の場合は 0 が返されます。" }, "LCM": { "a": "(数値1; [数値2]; ...)", @@ -1720,8 +1720,8 @@ "d": "範囲または配列で一致の検索を行い、2 つめの範囲または配列から対応する項目を返します。既定では、完全一致が使用されます" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(検査の種類; [対象範囲])", + "d": "セルの書式、位置、または内容に関する情報を返します。" }, "ERROR.TYPE": { "a": "(エラー値)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ko_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ko_desc.json index e2641b309..3691c1e14 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ko_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ko_desc.json @@ -4,8 +4,8 @@ "d": "날짜-시간 코드에서 날짜를 나타내는 수를 구합니다." }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(start-date; end-date; unit)", + "d": "두 날짜 사이의 일, 월 또는 연도 수를 계산합니다." }, "DATEVALUE": { "a": "(date_text)", @@ -396,8 +396,8 @@ "d": "지정한 텍스트를 다른 텍스트 내에서 찾아 해당 문자의 시작 위치를 나타냅니다. 대/소문자를 구분합니다." }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "는 두 번째 텍스트 문자열에서 지정된 텍스트 문자열을 검색하고, 두 번째 텍스트 문자열의 첫 문자를 기준으로 첫 번째 문자열이 시작하는 위치에 해당하는 숫자를 반환합니다. 는 DBCS(더블바이트 문자 집합)를 사용하는 언어에 사용합니다. DBCS를 지원하는 언어로는 한국어, 일본어, 중국어." }, "FIXED": { "a": "(number; [decimals]; [no_commas])", @@ -408,16 +408,16 @@ "d": "텍스트 문자열의 시작 지점부터 지정한 수만큼의 문자를 반환합니다." }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "는 텍스트 문자열의 첫 번째 문자부터 시작하여 지정한 바이트 수만큼 문자를 반환합니다. 는 DBCS(더블바이트 문자 집합)를 사용하는 언어에 사용합니다. DBCS를 지원하는 언어로는 한국어, 일본어, 중국어." }, "LEN": { "a": "(text)", "d": "텍스트 문자열 내의 문자 개수를 구합니다." }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "는 텍스트 문자열의 문자를 나타내는 데 사용되는 바이트 수를 반환합니다. 는 DBCS(더블바이트 문자 집합)를 사용하는 언어에 사용합니다. DBCS를 지원하는 언어로는 한국어, 일본어, 중국어." }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "문자열의 지정 위치에서 문자를 지정한 개수만큼 돌려줍니다." }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; start_num; num_chars)", + "d": "는 지정한 바이트 수에 따라 문자열의 지정한 위치로부터 지정한 개수의 문자를 표시합니다. 는 DBCS(더블바이트 문자 집합)를 사용하는 언어에 사용합니다. DBCS를 지원하는 언어로는 한국어, 일본어, 중국어." }, "NUMBERVALUE": { "a": "(text; [decimal_separator]; [group_separator])", @@ -444,8 +444,8 @@ "d": "텍스트의 일부를 다른 텍스트로 바꿉니다." }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(old_text; start_num; num_chars; new_text)", + "d": "는 지정한 바이트 수에 따라 텍스트 문자열의 일부를 다른 텍스트 문자열로 바꿉니다. 는 DBCS(더블바이트 문자 집합)를 사용하는 언어에 사용합니다. DBCS를 지원하는 언어로는 한국어, 일본어, 중국어." }, "REPT": { "a": "(text; number_times)", @@ -456,16 +456,16 @@ "d": "텍스트 문자열의 끝 지점부터 지정한 수만큼의 문자를 반환합니다." }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "는 지정한 바이트 수에 따라 텍스트 문자열의 마지막 문자부터 지정된 길이의 문자를 반환합니다. 는 DBCS(더블바이트 문자 집합)를 사용하는 언어에 사용합니다. DBCS를 지원하는 언어로는 한국어, 일본어, 중국어." }, "SEARCH": { "a": "(find_text; within_text; [start_num])", "d": "왼쪽에서 오른쪽으로 검색하여 지정한 문자 또는 텍스트 스트링이 처음 발견되는 곳에서의 문자 개수를 구합니다(대/소문자 구분 안 함)." }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "함수는 두 번째 텍스트 문자열에서 지정된 텍스트 문자열을 검색하고, 두 번째 텍스트 문자열의 첫 문자를 기준으로 몇 번째 위치에서 첫 번째 텍스트 문자열이 시작하는지 나타내는 값을 반환합니다. 는 DBCS(더블바이트 문자 집합)를 사용하는 언어에 사용합니다. DBCS를 지원하는 언어로는 한국어, 일본어, 중국어." }, "SUBSTITUTE": { "a": "(text; old_text; new_text; [instance_num])", @@ -1348,8 +1348,8 @@ "d": "로마 숫자를 아라비아 숫자로 변환합니다." }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "DBCS(더블바이트 문자 집합) 언어의 경우 함수가 전자 문자(더블바이트)를 반자 문자(싱글바이트)로 변경합니다." }, "ASIN": { "a": "(number)", @@ -1384,8 +1384,8 @@ "d": "수를 가장 가까운 정수 또는 가장 가까운 significance의 배수가 되도록 올림합니다." }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "가장 가까운 정수 또는 significance의 배수로 올림된 수를 반환합니다. " }, "COMBIN": { "a": "(number; number_chosen)", @@ -1428,8 +1428,8 @@ "d": "라디안 형태의 각도를 도 단위로 바꿉니다." }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(number; significance)", + "d": "수를 significance의 배수가 되도록 절대 값을 올림합니다." }, "EVEN": { "a": "(number)", @@ -1452,8 +1452,8 @@ "d": "수를 significance의 배수가 되도록 절대 값을 내림합니다." }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "가장 가까운 정수 또는 significance의 가장 가까운 배수로 내림된 숫자를 반환합니다." }, "FLOOR.MATH": { "a": "(number; [significance]; [mode])", @@ -1468,8 +1468,8 @@ "d": "소수점 아래를 버리고 가장 가까운 정수로 내림합니다." }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(number; [significance])", + "d": "가장 가까운 정수 또는 significance의 배수로 올림된 수를 반환합니다. number의 부호와 상관없이 number를 올림합니다. number 또는 significance가 0이면 0이 반환됩니다." }, "LCM": { "a": "(number1; [number2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "d": "는 셀의 서식이나 위치, 내용에 대한 정보를 반환합니다." }, "ERROR.TYPE": { "a": "(error_val)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/lo_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/lo_desc.json index f133b6d56..761f47faf 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/lo_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/lo_desc.json @@ -4,8 +4,8 @@ "d": "ສົ່ງ​ຄືນ​ຕົວ​ເລກ​ທີ່​ສະ​ແດງ​ເຖິງ​ວັນ​ທີ​ໃນລະຫັດ​ວັນ​ທີ-​ເວລາ" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(start-date; end-date; unit)", + "d": "ຄືນ ຜົນລົບ ຈາກສອງຄ່າ ວັນທີ (ວັນທີເລີ່ມ ແລະ ວັນທີສິ້ນສຸດ) ໂດຍອີງໃສ່ ຫົວໜ່ວຍ (unit) ທີໄດ້ລະບຸໄວ້" }, "DATEVALUE": { "a": "(date_text)", @@ -396,8 +396,8 @@ "d": "ສົ່ງຄືນຄ່າຕຳແໜ່ງເລີ່ມຕົ້ນຂອງສາຍຂໍ້ຄວາມທີ່ຢູ່ພາຍໃນຕົວສາຍຂໍ້ຄວາມອີກອັນໜຶ່ງ. ເຊິ່ງຟັງຊັນ FIND ​ນັ້ນແມ່ນໂຕພິມໃຫຍ່ນ້ອຍມີຜົນຕ່າງກັນ" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "ຊອກຫາ ຊຸດຕົວອັກສອນທີໄດ້ລະບຸໄວ້ ໃນຊຸດຕົວອັກສອນ ແລະ ສໍາລັບຕົວອັກສອນອ double-byte character set (DBCS) ເຊັ່ນພາສາຍີ່ປຸ່ນ, ຈີນ, ເກົາຫຼີແລະອື່ນໆ." }, "FIXED": { "a": "(number; [decimals]; [no_commas])", @@ -408,16 +408,16 @@ "d": "ສະ​ແດງ​ຜົນ​ຈຳ​ນວນ​ລະ​ບຸ​ໄວ້​ຂອງ​ຕົວ​ອັກ​ຂະ​ລະ​ຈາກເລີ່ມ​ຕົ້ນ​ຂອງ​ສະ​ຕ​ຣິງ​ຂໍ້​ຄວາມ" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "ສະກັດຊຸດຕົວອັກສອນ ຍ່ອຍຈາກ ຊຸດຕົວອັກາອນ ທີ່ລະບຸໄວ້ເລີ່ມຕົ້ນຈາກຕົວອັກສອນຊ້າຍສຸດ ແລະມີຈຸດປະສົງ ສຳ ລັບພາສາຕ່າງໆທີ່ໃຊ້ຊຸດຕົວອັກສອນ double-byte character set (DBCS) ເຊັ່ນພາສາຍີ່ປຸ່ນ, ຈີນ, ເກົາຫຼີແລະອື່ນໆ." }, "LEN": { "a": "(text)", "d": "ສະ​ແດງ​ຜົນ​ຈຳ​ນວນຕົວ​ອັກ​ຂະ​ລະຢູ່​ໃນ​ສະ​​ຕ​ຣິງ​ຂໍ້​ຄວາມ" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "ປະເມີນຊຸດຕົວອັກສອນ ທີໄດ້ລະບຸໄວ້ ແລະ ຄືນ ຕົວອັກສອນ ທີມີພາສາ double-byte character set (DBCS) like ເປັນຕົ້ນ ຈີນ, ຢີປຸ່ນ ເກົາຫຼີ ແລະ ອື່ນໆ." }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "ສະ​ແດງ​ຜົນຕົວ​ອັກ​ຂະ​ລະຈາກ​ໃຈ​ກາງ​ຂອງ​ສະ​ຕ​ຣິງ, ໂດຍ​ທີ່​ມີ​ຕຳ​ແໜ່ງ​ເລີ່ມ​ຕົ້ນ ແລະ​ຄວາມ​ຍາວ" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; start_num; num_chars)", + "d": "ດືງເອົາຕົວອັກສອນທີໄດ້ລະບຸໄວ້ ທີເລີ່ມຈາກ ຈຸດໃດໜື່ງ ແລະ ເພື່ອນໍາໃຊ້ ຊຸດພາສາ double-byte (DBCS) ເປັນຕົ້ນ ຈີນ, ຢີປຸ່ນ ເກົາຫຼີ ແລະ ອື່ນໆ." }, "NUMBERVALUE": { "a": "(text; [decimal_separator]; [group_separator])", @@ -444,8 +444,8 @@ "d": "ແທນທີ່ບາງສ່ວນຂອງສາຍຂໍ້ຄວາມດ້ວຍສາຍຂໍ້ຄວາມອື່ນ" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(old_text; start_num; num_chars; new_text)", + "d": "ປ່ຽນແທນ ຊຸດຕົວອັກສອນ, ທີໄດ້ລະບຸ ຈໍານວນຕົວອັກສອນ ແລະ ຈຸດເລີ່ມຕົ້ນ, ປ່ຽນເປັນ ຊຸດຕົວອັກສອນໃໝ່ ເພື່ອນໍາໃຊ້ ຊຸດພາສາ double-byte (DBCS) ເປັນຕົ້ນ ຈີນ, ຢີປຸ່ນ ເກົາຫຼີ ແລະ ອື່ນໆ." }, "REPT": { "a": "(text; number_times)", @@ -456,16 +456,16 @@ "d": "ສະ​ແດງ​ຜົນ​ຈຳ​ນວນ​ລະ​ບຸ​ໄວ້​ຂອງ​ຕົວ​ອັກ​ຂະ​ລະ​ຈາກ​ທ້າຍ​ຂອງ​ສະ​ຕ​ຣິງ​ຂໍ້​ຄວາມ" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "ດືງເອົາຕົວອັກສອນທີໄດ້ລະບຸໄວ້ ທີເລີ່ມຈາກ ຂວາສຸດ ແລະ ເພື່ອນໍາໃຊ້ ຊຸດພາສາ double-byte (DBCS) ເປັນຕົ້ນ ຈີນ, ຢີປຸ່ນ ເກົາຫຼີ ແລະ ອື່ນໆ." }, "SEARCH": { "a": "(find_text; within_text; [start_num])", "d": "ສົ່ງຄືນໝາຍ​ເລກ​ອັກຂະ​ລະທີ່​ອັກ​ຂະ​ລະຖືກຄົ້ນພົບເປັນອັນດັບທຳອິດໃນສາຍອັກຂະ​ລະຫຼືຂໍ້ຄວາມສະ​ເພາະ, ການຄົ້ນຫາຈະຖືກເຮັດຈາກຊ້າຍໄປຂວາ (ໂຕພິມໃຫຍ່ນ້ອຍບໍ່ມີຜົນຕ່າງກັນ)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "ຄືນ ສະຖານທີ ຂອງຊຸດອັກສອນຍ່ອຍ ທີໄດ້ລະບຸໄວ້ ຈາກຊຸດຕົວອກາອນຫຼັກ. ແລະ ສໍາລັບຕົວອັກສອນທີເປັນ double-byte character set (DBCS) ເຊັ່ນພາສາຍີ່ປຸ່ນ, ຈີນ, ເກົາຫຼີແລະອື່ນໆ." }, "SUBSTITUTE": { "a": "(text; old_text; new_text; [instance_num])", @@ -1348,8 +1348,8 @@ "d": "ປ່ຽນ​ຕົວ​ເລກ​ໂຣມັນ​ເປັນ​ອາຣາບິ​ກ" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "ສໍາລັບພາສາ ຕົວອັກສອນເປັນຊຸດ Double-byte (DBCS), ໜ້າທີ ປ່ຽນ ຈະປ່ຽນ ຕົວອັກສອນຈາກ ເຕັມໜ້າ (double-byte) ເປັນ ຕົວອັກສອນ ເຄີ່ງໜ້າ (single-byte)" }, "ASIN": { "a": "(number)", @@ -1384,8 +1384,8 @@ "d": "ປັດ​ເສດ​ຕົວ​ເລກ​ຂຶ້ນໃຫ້​ເປັນ​ຈໍານວນ​ເຕັມທີ່​ໃກ້​ທີ່​ສຸດ ຫຼື​ເປັນ​ຈໍານວນ​ເທົ່າ​ທີ່​ໃກ້​ທີ່​ສຸດ​ຂອງ​ຄວາມສຳຄັນ" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "ຄືນ ຕົວເລກທີປັດເສດຂື້ນເປັນຈໍານວນເຕັມທີໄກ້ຄຽງທີສຸດ ຫຼື ໄກ້ຄຽງກັບຕົວເລກທີໃຫ່ຍທີສຸດ, ແລະບໍ່ຂື້ນກັບ ເຄື່ອງໝາຍຂອງຕົວເລກ." }, "COMBIN": { "a": "(number; number_chosen)", @@ -1428,8 +1428,8 @@ "d": "ປ່ຽນມູມຣາດຽນ (radians)​ໃຫ້​ເປັນມູມອົງສາ" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(number; significance)", + "d": "ປັດຕົວເລກຂື້ນ ຫາຈຸດທີໄກ້ຄຽງ ທີໄດ້ກໍານົດໄວ້" }, "EVEN": { "a": "(number)", @@ -1452,8 +1452,8 @@ "d": "ປັດ​ເສດ​ຕົວ​ເລກ​ລົງ​ໃຫ້​ເປັນ​ຈໍານວນ​ທີ່​ໃຫ້​ທີ່​ສຸດ​ຂອງ​ຄວາມສຳຄັນ" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "ຄືນ ຕົວເລກທີປັດເສດລົງເປັນຈໍານວນເຕັມທີໄກ້ຄຽງທີສຸດ ຫຼື ໄກ້ຄຽງກັບຕົວເລກທີນ້ອຍທີສຸດ, ແລະບໍ່ຂື້ນກັບ ເຄື່ອງໝາຍຂອງຕົວເລກ." }, "FLOOR.MATH": { "a": "(number; [significance]; [mode])", @@ -1468,8 +1468,8 @@ "d": "ປ່ຽນຈຳນວນເສດໃຫ້ເປັນຈຳນວນຖ້ວນທີ່ໃກ້ຄຽງທີ່ສຸດ" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(number; [significance])", + "d": "ຄືນ ຕົວເລກທີປັດເສດຂື້ນເປັນຈໍານວນເຕັມທີໄກ້ຄຽງທີສຸດ ຫຼື ໄກ້ຄຽງກັບຕົວເລກທີໃຫ່ຍທີສຸດ, ແລະບໍ່ຂື້ນກັບ ເຄື່ອງໝາຍຂອງຕົວເລກ. ແຕ່ວ່າ,ຖ້າຫາກ ຕົວຄູນ ແມ່ນເລກ ສູນ. ຈະຕ້ອງຄືນ ສູນ." }, "LCM": { "a": "(number1; [number2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "d": "ຄືນຂໍ້ມູນກ່ຽວກັບການຈັດຮູບແບບ, ສະຖານທີ່, ຫຼື ເນື້ອໃນຂອງ ​ເຊ​ລ" }, "ERROR.TYPE": { "a": "(error_val)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/lv_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/lv_desc.json index e11569c84..ef5be68a9 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/lv_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/lv_desc.json @@ -4,8 +4,8 @@ "d": "Atgriež skaitli, kas apzīmē datumu datuma/laika kodā" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(sākuma_datums; beigu_datums; mērvienība)", + "d": "Aprēķina dienu, mēnešu vai gadu skaitu starp diviem datumiem" }, "DATEVALUE": { "a": "(datums_teksts)", @@ -396,8 +396,8 @@ "d": "Atgriež vienas teksta virknes sākuma pozīciju citā teksta virknē. Funkcija FIND ir reģistrjutīga" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(atrast_tekstu; tekstā; [sākuma_num])", + "d": "Atgriež vienu teksta virkni otrā teksta virknē un atgriež pirmās teksta virknes sākuma pozīcijas numuru no otrās teksta virknes pirmās rakstzīmes, ir paredzēta valodām, kuras izmanto dubultbaita rakstzīmju kopu (DBCS) - japāņu, ķīniešu un korejiešu" }, "FIXED": { "a": "(skaitlis; [decimāldaļas]; [bez_komatiem])", @@ -408,16 +408,16 @@ "d": "Atgriež norādīto rakstzīmju skaitu no teksta virknes sākuma" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(teksts; [skaitļu_rakstz])", + "d": "Atgriež pirmo rakstzīmi vai rakstzīmes teksta virknē, pamatojoties uz norādīto baitu skaitu, ir paredzēta valodām, kuras izmanto dubultbaita rakstzīmju kopu (DBCS) - japāņu, ķīniešu un korejiešu" }, "LEN": { "a": "(teksts)", "d": "Atgriež rakstzīmju skaitu teksta virknē" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(teksts)", + "d": "Atgriež baitu skaitu, kas tiek izmantoti rakstzīmju attēlošanai teksta virknē, ir paredzēta valodām, kuras izmanto dubultbaita rakstzīmju kopu (DBCS) - japāņu, ķīniešu un korejiešu" }, "LOWER": { "a": "(teksts)", @@ -428,8 +428,8 @@ "d": "Atgriež rakstzīmes no teksta virknes vidus, norādot sākuma pozīciju un garumu" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(teksts; sākuma_num; rakstzīmju_skaits)", + "d": "Atgriež noteiktas rakstzīmes no teksta virknes, sākot no norādītās vietas un pamatojoties uz norādīto baitu skaitu, ir paredzēta valodām, kuras izmanto dubultbaita rakstzīmju kopu (DBCS) - japāņu, ķīniešu un korejiešu" }, "NUMBERVALUE": { "a": "(teksts; [decimālzīme]; [grupu_atdalītājs])", @@ -444,8 +444,8 @@ "d": "Aizstāj daļu teksta virknes ar citu teksta virkni" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(vecais_teksts; sākuma_num; rakstzīmju_skaits; jaunais_teksts)", + "d": "Aizstāj teksta virknes daļu ar citu teksta virkni, pamatojoties uz norādīto baitu skaitu, ir paredzēta valodām, kuras izmanto dubultbaita rakstzīmju kopu (DBCS) - japāņu, ķīniešu un korejiešu" }, "REPT": { "a": "(teksts; skaitlis_reizes)", @@ -456,16 +456,16 @@ "d": "Atgriež norādīto rakstzīmju skaitu no teksta virknes beigām" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(teksts; [skaitļu_rakstz])", + "d": "Atgriež pēdējo rakstzīmi vai rakstzīmes teksta virknē, pamatojoties uz norādīto baitu skaitu, ir paredzēta valodām, kuras izmanto dubultbaita rakstzīmju kopu (DBCS) - japāņu, ķīniešu un korejiešu" }, "SEARCH": { "a": "(atrast_tekstu; tekstā; [sākuma_num])", "d": "Atgriež rakstzīmes numuru, pie kuras noteikta rakstzīme vai teksta virkne atrasta pirmo reizi, lasot virzienā no kreisās uz labo pusi (nav reģistrjutīgi)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(atrast_tekstu; tekstā; [sākuma_num])", + "d": "Atrod vienu teksta virkni otrā teksta virknē un atgriež pirmās teksta virknes sākuma atrašanās vietas numuru, skaitot no otrās teksta virknes pirmās rakstzīmes, ir paredzēta valodām, kuras izmanto dubultbaita rakstzīmju kopu (DBCS) - japāņu, ķīniešu un korejiešu" }, "SUBSTITUTE": { "a": "(teksts; vecais_teksts; jaunais_teksts; [gadījuma_numurs])", @@ -1348,8 +1348,8 @@ "d": "Pārvērš romiešu ciparu par arābu ciparu" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(teksts)", + "d": "Dubultbaitu rakstzīmju kopu (DBCS) valodām funkcija nomaina pilna platuma (dubultbaitu) rakstzīmes ar pusplatuma (vienbaita) rakstzīmēm" }, "ASIN": { "a": "(skaitlis)", @@ -1384,8 +1384,8 @@ "d": "Noapaļo skaitli uz augšu līdz tuvākajam veselajam skaitlim vai līdz tuvākajam nozīmīgajam skaitlim, kas dalās bez atlikuma" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(skaitlis; [būtiskums])", + "d": "Atgriež skaitli, kas noapaļots līdz tuvākajam veselajam skaitlim vai tuvākajam būtiskajam skaitlim, kas dalās bez atlikuma" }, "COMBIN": { "a": "(skaitlis; izvēlētais_skaitlis)", @@ -1428,8 +1428,8 @@ "d": "Konvertē radiānus par grādiem" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(skaitlis; būtiskums)", + "d": "Noapaļo skaitli uz augšu līdz tuvākajam būtiskjama skaitlim, kas dalās bez atlikuma" }, "EVEN": { "a": "(skaitlis)", @@ -1452,8 +1452,8 @@ "d": "Noapaļo skaitli uz leju līdz tuvākajam būtiskajam skaitlim, kas dalās bez atlikuma" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(skaitlis; [būtiskums])", + "d": "Atgriež skaitli, kas noapaļots uz leju līdz tuvākajam veselajam skaitlim vai tuvākajam būtiskajam skaitlim, kas dalās bez atlikuma" }, "FLOOR.MATH": { "a": "(skaitlis; [būtiskums]; [režīms])", @@ -1468,8 +1468,8 @@ "d": "Noapaļo skaitli līdz tuvākajam veselajam skaitlim" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(skaitlis; [būtiskums])", + "d": "Atgriež skaitli, kas noapaļots līdz tuvākajam veselajam skaitlim vai tuvākajam būtiskajam skaitlim, kas dalās bez atlikuma. Neatkarīgi no skaitļa zīmes, tas tiek noapaļots uz augšu. Taču ja skaitlis vai būtiskais skaitlis ir nulle, tiek atgriezta nulle." }, "LCM": { "a": "(skaitlis1; [skaitlis2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Meklē diapazonā vai masīvā atbilstību un atgriež atbilstošo vienumu no otra diapazona vai masīva. Pēc noklusējuma tiek izmantota precīza atbilstība" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(info_tips; [atsauce])", + "d": "Atgriež informāciju par šūnas formatējumu, atrašanās vietu vai saturu" }, "ERROR.TYPE": { "a": "(kļūdas_vērt)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/nb_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/nb_desc.json index 2d3e4171c..39ab34eb7 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/nb_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/nb_desc.json @@ -4,8 +4,8 @@ "d": "Returnerer tallet som svarer til datoen i koden for dato og tid" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(startdato; sluttdato; enhet)", + "d": "Beregner antall dager, måneder eller år mellom to datoer" }, "DATEVALUE": { "a": "(dato_tekst)", @@ -396,8 +396,8 @@ "d": "Returnerer nummeret for posisjonen for det første tegnet i en tekststreng inne i en annen tekststreng. FINN skiller mellom store og små bokstaver" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(finn; innen_tekst; [startpos])", + "d": "Finner en tekststreng inni en annen tekststreng og returnerer nummeret som svarer til startposisjonen for den første tekststrengen, regnet fra det første tegnet i den andre tekststrengen, er beregnet for språk som bruker dobbeltbyte-tegnsett (DBCS) - japansk, kinesisk og koreansk" }, "FIXED": { "a": "(tall; [desimaler]; [ingen_tusenskille])", @@ -408,16 +408,16 @@ "d": "Returnerer det angitte antall tegn fra begynnelsen av en tekststreng" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; [antall_tegn])", + "d": "Returnerer det første tegnet eller de første tegnene i en tekststreng, basert på antallet byte du angir, er beregnet for språk som bruker dobbeltbyte-tegnsett (DBCS) - japansk, kinesisk og koreansk" }, "LEN": { "a": "(tekst)", "d": "Returnerer antall tegn i en tekststreng" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst)", + "d": "Returnerer antallet byte som brukes til å representere tegnene i en tekststreng, er beregnet for språk som bruker dobbeltbyte-tegnsett (DBCS) - japansk, kinesisk og koreansk" }, "LOWER": { "a": "(tekst)", @@ -428,8 +428,8 @@ "d": "Returnerer tegnene fra midten av en tekststreng, hvis posisjonen for det første tegnet og lengden er oppgitt" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; startpos; antall_tegn)", + "d": "Returnerer et angitt antall tegn fra en tekststreng, regnet fra den posisjonen du angir og basert på antall tegn du angir, er beregnet for språk som bruker dobbeltbyte-tegnsett (DBCS) - japansk, kinesisk og koreansk" }, "NUMBERVALUE": { "a": "(tekst; [desimalskilletegn]; [gruppeskilletegn])", @@ -444,8 +444,8 @@ "d": "Erstatter en del av en tekststreng med en annen tekststreng" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(gammel_tekst; startpos; antall_tegn; ny_tekst)", + "d": "Bytter ut en del av en tekststreng med en annen tekststreng. Hvilken del som byttes ut, er basert på antall byte du angir, er beregnet for språk som bruker dobbeltbyte-tegnsett (DBCS) - japansk, kinesisk og koreansk" }, "REPT": { "a": "(tekst; antall_ganger)", @@ -456,16 +456,16 @@ "d": "Returnerer det angitte antall tegn fra slutten av en tekststreng" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; [antall_tegn])", + "d": "Returnerer det siste tegnet eller de siste tegnene i en tekststreng, basert på antallet byte du angir, er beregnet for språk som bruker dobbeltbyte-tegnsett (DBCS) - japansk, kinesisk og koreansk" }, "SEARCH": { "a": "(finn; innen_tekst; [startpos])", "d": "Returnerer tallet for tegnet hvor et bestemt tegn eller en tekststreng først blir funnet, lest fra venstre mot høyre (skiller ikke mellom små og store bokstaver)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(finn; innen_tekst; [startpos])", + "d": "Finner én tekststreng inni en annen tekststreng og returnerer tallet som svarer til startposisjonen for den første tekststrengen, regnet fra det første tegnet i den andre tekststrengen, er beregnet for språk som bruker dobbeltbyte-tegnsett (DBCS) - japansk, kinesisk og koreansk" }, "SUBSTITUTE": { "a": "(tekst; gammel_tekst; ny_tekst; [forekomst_nr])", @@ -1348,8 +1348,8 @@ "d": "Konverterer et romertall til et arabisk tall" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(tekst)", + "d": "For språk med dobbeltbyte-tegnsett (DBCS) endrer funksjonen tegn med full bredde (dobbeltbyte) til tegn med halv bredde (enkeltbyte)" }, "ASIN": { "a": "(tall)", @@ -1384,8 +1384,8 @@ "d": "Runder av et tall oppover til nærmeste heltall eller til nærmeste signifikante multiplum av en faktor" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(tall; [gjeldende_multiplum])", + "d": "Returnerer et tall som er avrundet opp til nærmeste heltall, eller til nærmeste gjeldende multiplum" }, "COMBIN": { "a": "(antall; valgt_antall)", @@ -1428,8 +1428,8 @@ "d": "Konverterer radianer til grader" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(tall; gjeldende_multiplum)", + "d": "Runder av et tall oppover til nærmeste multiplum av en faktor" }, "EVEN": { "a": "(tall)", @@ -1452,8 +1452,8 @@ "d": "Runder av et tall nedover til nærmeste signifikante multiplum av en faktor" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(tall; [gjeldende_multiplum])", + "d": "Returnerer et tall som er avrundet ned til nærmeste heltall eller til nærmeste multiplum av gjeldende_multiplum" }, "FLOOR.MATH": { "a": "(tall; [gjeldende_multiplum]; [modus])", @@ -1468,8 +1468,8 @@ "d": "Runder av et tall nedover til nærmeste heltall" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(tall; [gjeldende_multiplum])", + "d": "Returnerer et tall som er avrundet opp til nærmeste heltall, eller til nærmeste gjeldende multiplum. Uansett tallets fortegn, blir tallet avrundet opp. Men hvis tallet eller gjeldende multiplum er null, returneres null." }, "LCM": { "a": "(tall1; [tall2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Søker i et område eller en matrise etter et treff og returnerer det tilsvarende elementet fra et annet område eller en annen matrise. Som standard brukes et eksakt treff" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(infotype; [ref])", + "d": "Returnerer informasjon om formatering, plassering eller innholdet til en celle" }, "ERROR.TYPE": { "a": "(feilverdi)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/nl_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/nl_desc.json index 891b2c70b..785294898 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/nl_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/nl_desc.json @@ -4,8 +4,8 @@ "d": "Geeft het getal als resultaat dat de datum aangeeft in code voor de datum/tijd" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(begindatum; einddatum; eenheid)", + "d": "Berekent het aantal dagen, maanden of jaren tussen twee datums" }, "DATEVALUE": { "a": "(datum_tekst)", @@ -396,8 +396,8 @@ "d": "Geeft als resultaat de beginpositie van een tekenreeks binnen een andere tekenreeks (er wordt onderscheid gemaakt tussen hoofdletters en kleine letters)" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(zoeken_tekst; in_tekst; [begin_getal])", + "d": "Wordt naar een tekenreeks binnen een andere tekenreeks gezocht en wordt als resultaat het nummer van de beginpositie van de eerste tekenreeks gegeven, is bedoeld voor talen met DBCS-tekenset (Double-Byte Character Set) - Japans, Chinees en Koreaans." }, "FIXED": { "a": "(getal; [decimalen]; [geen-punten])", @@ -408,16 +408,16 @@ "d": "Geeft als resultaat het aantal tekens vanaf het begin van een tekenreeks" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; [aantal-tekens])", + "d": "Geeft het eerste teken of de eerste tekens in een tekenreeks als resultaat, op basis van het aantal bytes dat u opgeeft, is bedoeld voor talen met DBCS-tekenset (Double-Byte Character Set) - Japans, Chinees en Koreaans" }, "LEN": { "a": "(tekst)", "d": "Geeft als resultaat het aantal tekens in een tekenreeks" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst)", + "d": "Geeft als resultaat het aantal bytes dat is gebruikt voor de tekens in een tekenreeks, is bedoeld voor talen met DBCS-tekenset (Double-Byte Character Set) - Japans, Chinees en Koreaans" }, "LOWER": { "a": "(tekst)", @@ -428,8 +428,8 @@ "d": "Geeft als resultaat het aantal tekens in het midden van een tekenreeks, beginnend op een opgegeven positie en met een opgegeven lengte" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; begin_getal; aantal-tekens)", + "d": "Geeft als resultaat een bepaald aantal tekens uit een tekenreeks, gerekend vanaf de opgegeven positie en op basis van het aantal opgegeven bytes, is bedoeld voor talen met DBCS-tekenset (Double-Byte Character Set) - Japans, Chinees en Koreaans" }, "NUMBERVALUE": { "a": "(tekst; [decimaal_scheidingsteken]; [groep_scheidingsteken])", @@ -444,8 +444,8 @@ "d": "Vervangt een deel van een tekenreeks door een andere tekenreeks" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(oud_tekst; begin_getal; aantal-tekens; nieuw_tekst)", + "d": "Wordt een deel van een tekenreeks vervangen door een andere tekenreeks, op basis van het aantal bytes dat u opgeeft, is bedoeld voor talen met DBCS-tekenset (Double-Byte Character Set) - Japans, Chinees en Koreaans" }, "REPT": { "a": "(tekst; aantal-malen)", @@ -456,16 +456,16 @@ "d": "Geeft als resultaat het opgegeven aantal tekens vanaf het einde van een tekenreeks" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; [aantal-tekens])", + "d": "Geeft het laatste teken of de laatste tekens in een tekenreeks als resultaat, op basis van het aantal bytes dat u opgeeft, is bedoeld voor talen met DBCS-tekenset (Double-Byte Character Set) - Japans, Chinees en Koreaans" }, "SEARCH": { "a": "(zoeken_tekst; in_tekst; [begin_getal])", "d": "Geeft als resultaat de positie van het teken, lezend van links naar rechts, waar een bepaald teken of een bepaalde tekenreeks de eerste keer wordt gevonden (zonder onderscheid tussen hoofdletters en kleine letters)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(zoeken_tekst; in_tekst; [begin_getal])", + "d": "Wordt naar een tekenreeks gezocht binnen een andere tekenreeks en wordt het nummer van de beginpositie van de eerste tekenreeks als resultaat gegeven, berekend vanaf het eerste teken van de tweede tekenreeks, is bedoeld voor talen met DBCS-tekenset (Double-Byte Character Set) - Japans, Chinees en Koreaans" }, "SUBSTITUTE": { "a": "(tekst; oud_tekst; nieuw_tekst; [rang_getal])", @@ -1348,8 +1348,8 @@ "d": "Converteert een Romeins cijfer naar een Arabisch cijfer" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(tekst)", + "d": "Voor talen met DBCS-tekensets (Double Byte Character Set). Wijzigt de functie tekens met volledige breedte (dubbel-byte) in tekens met halve breedte (enkel-byte)" }, "ASIN": { "a": "(getal)", @@ -1384,8 +1384,8 @@ "d": "Rondt een getal naar boven af tot op het dichtstbijzijnde gehele getal of op het dichtstbijzijnde veelvoud van significantie" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(getal; [significantie])", + "d": "Geeft als resultaat een getal dat is afgerond naar boven op het dichtstbijzijnde gehele getal of het dichtstbijzijnde meervoud van de significantie" }, "COMBIN": { "a": "(getal; aantal-gekozen)", @@ -1428,8 +1428,8 @@ "d": "Converteert radialen naar graden" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(getal; significantie)", + "d": "Rondt een getal naar boven af op het dichtstbijzijnde significante veelvoud" }, "EVEN": { "a": "(getal)", @@ -1452,8 +1452,8 @@ "d": "Rondt een getal naar beneden af op het dichtstbijzijnde significante veelvoud" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(getal; [significantie])", + "d": "Geeft als resultaat een getal dat naar beneden is afgerond op het dichtstbijzijnde gehele getal of het dichtstbijzijnde significante veelvoud" }, "FLOOR.MATH": { "a": "(getal; [significantie]; [modus])", @@ -1468,8 +1468,8 @@ "d": "Rondt een getal naar beneden af op het dichtstbijzijnde gehele getal" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(getal; significantie)", + "d": "Geeft als resultaat een getal dat is afgerond naar boven op het dichtstbijzijnde gehele getal of het dichtstbijzijnde meervoud van de significantie. Het getal wordt afgerond ongeacht het teken van het getal. Als het getal of de significantie echter nul is, is nul het resultaat." }, "LCM": { "a": "(complex_getal1; [complex_getal2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Zoekt in een bereik of matrix naar een overeenkomst en retourneert het bijbehorende item uit een tweede bereik of matrix. Standaard wordt een exacte overeenkomst gebruikt" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(infotype; [verwijzing])", + "d": "Geeft als resultaat informatie over de opmaak, locatie of inhoud van een cel" }, "ERROR.TYPE": { "a": "(foutwaarde)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pl_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/pl_desc.json index 4a34f5d9c..4de807c10 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/pl_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/pl_desc.json @@ -4,8 +4,8 @@ "d": "Zwraca liczbę reprezentującą datę w kodzie data-godzina" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(data_początkowa; data_końcowa; jednostka)", + "d": "Oblicza liczbę dni, miesięcy lub lat między dwiema datami" }, "DATEVALUE": { "a": "(data_tekst)", @@ -396,8 +396,8 @@ "d": "Zwraca pozycję początkową jednego ciągu tekstowego w drugim ciągu tekstowym. Funkcja ZNAJDŹ uwzględnia wielkość liter" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(szukany_tekst; w_tekście; [liczba_początkowa])", + "d": "Lokalizują ciąg tekstowy wewnątrz innego ciągu tekstowego i zwracają pozycję początkową pierwszego ciągu, licząc od pierwszego znaku drugiego ciągu, do używania z językami o zestawach znaków dwubajtowych (DBCS) - japoński, chiński i koreański" }, "FIXED": { "a": "(liczba; [miejsca_dziesiętne]; [bez_przecinka])", @@ -408,16 +408,16 @@ "d": "Zwraca określoną liczbę znaków od początku ciągu tekstowego" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; [liczba_znaków])", + "d": "Zwraca pierwsze znaki w ciągu tekstowym na podstawie określonej liczby znaków, do używania z językami o zestawach znaków dwubajtowych (DBCS) - japoński, chiński i koreański" }, "LEN": { "a": "(tekst)", "d": "Zwraca liczbę znaków w ciągu znaków" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst)", + "d": "Zwraca liczbę bajtów reprezentujących znaki w ciągu tekstowym, do używania z językami o zestawach znaków dwubajtowych (DBCS) - japoński, chiński i koreański" }, "LOWER": { "a": "(tekst)", @@ -428,8 +428,8 @@ "d": "Zwraca znaki ze środka ciągu tekstowego przy danej pozycji początkowej i długości" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; liczba_początkowa; liczba_znaków)", + "d": "Zwraca określoną liczbę znaków z ciągu tekstowego, począwszy od określonej pozycji, na podstawie podanej liczby bajtów, do używania z językami o zestawach znaków dwubajtowych (DBCS) - japoński, chiński i koreański" }, "NUMBERVALUE": { "a": "(tekst; [separator_dziesiętny]; [separator_grup])", @@ -444,8 +444,8 @@ "d": "Zamienia część ciągu znaków innym ciągiem znaków" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(stary_tekst; liczba_początkowa; liczba_znaków; nowy_tekst)", + "d": "Zamienia część ciągu tekstowego na inny ciąg tekstowy z uwzględnieniem określonej liczby bajtów, do używania z językami o zestawach znaków dwubajtowych (DBCS) - japoński, chiński i koreański" }, "REPT": { "a": "(tekst; ile_razy)", @@ -456,16 +456,16 @@ "d": "Zwraca określoną liczbę znaków od końca ciągu tekstowego" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(tekst; [liczba_znaków])", + "d": "Zwraca ostatnie znaki w ciągu tekstowym, na podstawie określonej liczby bajtów, do używania z językami o zestawach znaków dwubajtowych (DBCS) - japoński, chiński i koreański" }, "SEARCH": { "a": "(szukany_tekst; obejmujący_tekst; [liczba_początkowa])", "d": "Zwraca numer znaku, w którym jeden ciąg znaków został znaleziony po raz pierwszy w drugim, począwszy od lewej strony (nie rozróżniając liter małych i dużych)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(szukany_tekst; obejmujący_tekst; [liczba_początkowa])", + "d": "Służy do odnajdywania jednego ciągu tekstowego wewnątrz innego ciągu tekstowego i zwracania pozycji początkowej szukanego tekstu liczonej od pierwszego znaku tekstu przeszukiwanego, do używania z językami o zestawach znaków dwubajtowych (DBCS) - japoński, chiński i koreański" }, "SUBSTITUTE": { "a": "(tekst; stary_tekst; nowy_tekst; [wystapienie_liczba])", @@ -1348,8 +1348,8 @@ "d": "Konwertuje liczbę rzymską na arabską." }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(tekst)", + "d": "W językach korzystających z dwubajtowego zestawu znaków (DBCS) funkcja zmienia znaki o pełnej szerokości (dwubajtowe) na znaki o połówkowej szerokości (jednobajtowe)" }, "ASIN": { "a": "(liczba)", @@ -1384,8 +1384,8 @@ "d": "Zaokrągla liczbę w górę do najbliższej liczby całkowitej lub najbliższej wielokrotności istotności." }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(liczba; [istotność])", + "d": "Zaokrągla liczbę w górę do najbliższej wartości całkowitej lub wielokrotności podanej istotności" }, "COMBIN": { "a": "(liczba; liczba_wybrana)", @@ -1428,8 +1428,8 @@ "d": "Konwertuje radiany na stopnie" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(liczba; istotność)", + "d": "Zaokrągla liczbę w górę do najbliższej wielokrotności podanej istotności" }, "EVEN": { "a": "(liczba)", @@ -1452,8 +1452,8 @@ "d": "Zaokrągla liczbę w dół do najbliższej wielokrotności podanej istotności" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(liczba; [istotność])", + "d": "Zaokrągla liczbę w dół do najbliższej wartości całkowitej lub wielokrotności podanej istotności" }, "FLOOR.MATH": { "a": "(liczba; [istotność]; [tryb])", @@ -1468,8 +1468,8 @@ "d": "Zaokrągla liczbę w dół do najbliższej liczby całkowitej" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(liczba; [istotność])", + "d": "Zaokrągla liczbę w górę do najbliższej wartości całkowitej lub wielokrotności podanej istotności. Zaokrąglenie następuje w górę niezależnie od znaku liczby. Jeśli liczba lub istotność wynosi zero, jest zwracana wartość zero." }, "LCM": { "a": "(liczba1; [liczba2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Przeszukuje zakres lub tablicę pod kątem dopasowania i zwraca odpowiedni element z drugiego zakresu lub drugiej tablicy. Domyślnie jest używane dokładne dopasowanie" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(typ_info; [odwołanie])", + "d": "Zwraca informacje o formatowaniu, położeniu lub zawartości komórki" }, "ERROR.TYPE": { "a": "(błąd_wartość)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/pt_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/pt_desc.json index dc7f373af..14d1ddc7f 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/pt_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/pt_desc.json @@ -4,8 +4,8 @@ "d": "Devolve o número que representa a data no código de data e hora" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(data_inicial; data_final; unidade)", + "d": "Calcula o número de dias, meses ou anos entre duas datas" }, "DATEVALUE": { "a": "(texto_data)", @@ -396,8 +396,8 @@ "d": "Devolve a posição de partida de uma cadeia de texto dentro de outra. LOCALIZAR é sensível a maiúsculas e minúsculas" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(texto_a_localizar; no_texto; [núm_inicial])", + "d": "Localiza uma cadeia de texto dentro de uma segunda cadeia de texto e devolve o número da posição inicial da primeira cadeia de texto a partir do primeiro caráter da segunda cadeia de texto, destina-se a ser utilizada com idiomas que utilizem o conjunto de carateres de byte duplo (DBCS, double-byte character set) - japonês, chinês e coreano" }, "FIXED": { "a": "(núm; [decimais]; [sem_sep_milhar])", @@ -408,16 +408,16 @@ "d": "Devolve o número especificado de carateres do início de uma cadeia de texto" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(texto; [núm_caract])", + "d": "Devolve o primeiro caráter ou carateres numa cadeia de texto, com base no número de bytes que especificar, destina-se a ser utilizada com idiomas que utilizem o conjunto de carateres de byte duplo (DBCS, double-byte character set) - japonês, chinês e coreano" }, "LEN": { "a": "(texto)", "d": "Devolve o número de carateres de uma cadeia de texto" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(texto)", + "d": "Devolve o número de bytes utilizado para representar os carateres numa cadeia de texto, destina-se a ser utilizada com idiomas que utilizem o conjunto de carateres de byte duplo (DBCS, double-byte character set) - japonês, chinês e coreano" }, "LOWER": { "a": "(texto)", @@ -428,8 +428,8 @@ "d": "Devolve um número específico de carateres de uma cadeia de texto, com início na posição especificada" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(texto; núm_inicial; núm_caract)", + "d": "Devolve um número específico de carateres de uma cadeia de texto, começando na posição que especificar, com base no número de bytes especificado, destina-se a ser utilizada com idiomas que utilizem o conjunto de carateres de byte duplo (DBCS, double-byte character set) - japonês, chinês e coreano" }, "NUMBERVALUE": { "a": "(texto; [separador_decimal]; [separador_grupo])", @@ -444,8 +444,8 @@ "d": "Substitui parte de uma cadeia de texto por outra diferente" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(texto_antigo; núm_inicial; núm_caract; texto_novo)", + "d": "Substitui parte de uma cadeia de texto, com base no número de bytes que especificar, por uma cadeia de texto diferente, destina-se a ser utilizada com idiomas que utilizem o conjunto de carateres de byte duplo (DBCS, double-byte character set) - japonês, chinês e coreano" }, "REPT": { "a": "(texto; núm_vezes)", @@ -456,16 +456,16 @@ "d": "Devolve o número especificado de carateres do fim de uma cadeia de texto" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(texto; [núm_caract])", + "d": "Devolve o último caráter ou carateres numa cadeia de texto, baseado no número de bytes especificados, destina-se a ser utilizada com idiomas que utilizem o conjunto de carateres de byte duplo (DBCS, double-byte character set) - japonês, chinês e coreano" }, "SEARCH": { "a": "(texto_a_localizar; no_texto; [núm_inicial])", "d": "Devolve o número do caráter no qual é localizado pela primeira vez uma cadeia de texto específica, lida da esquerda para a direita (não distingue maiúsculas e minúsculas)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(texto_a_localizar; no_texto; [núm_inicial])", + "d": "Localiza uma cadeia de texto dentro de uma segunda cadeia de texto e devolve o número da posição de início da primeira cadeia de texto do primeiro caráter da segunda cadeia de texto, destina-se a ser utilizada com idiomas que utilizem o conjunto de carateres de byte duplo (DBCS, double-byte character set) - japonês, chinês e coreano" }, "SUBSTITUTE": { "a": "(texto; texto_antigo; texto_novo; [núm_ocorrência])", @@ -1348,8 +1348,8 @@ "d": "Converte um número Romano em Arábico" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(texto)", + "d": "Em tipos de linguagem de conjuntos de carateres de bytes duplos (DBCS), a função altera os carateres de largura total (bytes duplos) para carateres de largura média (byte único)" }, "ASIN": { "a": "(núm)", @@ -1384,8 +1384,8 @@ "d": "Arredonda um número por excesso para o número inteiro ou para o múltiplo significativo mais próximo" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(número; [significância])", + "d": "Devolve um número arredondado para o número inteiro mais próximo ou para o múltiplo de significância mais próximo" }, "COMBIN": { "a": "(núm; núm_escolhido)", @@ -1428,8 +1428,8 @@ "d": "Converte radianos em graus" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(núm; significância)", + "d": "Arredonda um número por excesso para o múltiplo significativo mais próximo" }, "EVEN": { "a": "(núm)", @@ -1452,8 +1452,8 @@ "d": "Arredonda um número por defeito para o múltiplo significativo mais próximo" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(número; [significância])", + "d": "Devolve um número arredondado por defeito para o número inteiro mais próximo ou para o múltiplo de significância mais próximo" }, "FLOOR.MATH": { "a": "(número; [significância]; [modo])", @@ -1468,8 +1468,8 @@ "d": "Arredonda um número por defeito até ao número inteiro mais próximo" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(número; [significância])", + "d": "Devolve um número arredondado para o número inteiro mais próximo ou para o múltiplo de significância mais próximo. Independentemente do sinal do número, o número é arredondado. Contudo, se o número ou a significância for zero, é devolvido zero." }, "LCM": { "a": "(núm1; [núm2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Procura uma correspondência num intervalo ou matriz e devolve o item correspondente de um segundo intervalo ou matriz. Por predefinição, é utilizada uma correspondência exata" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(tipo_info; [referência])", + "d": "Devolve informações sobre a formatação, localização ou conteúdo de uma célula" }, "ERROR.TYPE": { "a": "(val_erro)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ro_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ro_desc.json index dce7c4fcd..bd944120b 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ro_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ro_desc.json @@ -4,8 +4,8 @@ "d": "Returnează numărul care reprezintă data în cod dată-oră." }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(dată_început; dată_sfârșit; unitate)", + "d": "Calculează numărul de zile, luni sau ani dintre două date calendaristice" }, "DATEVALUE": { "a": "(text_dată)", @@ -396,8 +396,8 @@ "d": "Returnează numărul poziției de început a unui șir text găsit în cadrul altui șir text. FIND diferențiază literele mari de literele mici" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text_de_căutat; în_text; [num_start])", + "d": "Găsesc un șir text într-un al doilea șir text, apoi returnează numărul poziției de început a primului șir text începând cu primul caracter al celui de-al doilea șir text, are ca scop utilizarea cu limbi care întrebuințează setul de caractere dublu-octet (DBCS) - limba japoneză, limba chineză și limba coreeană" }, "FIXED": { "a": "(număr; [zecimale]; [nr_virgule])", @@ -408,16 +408,16 @@ "d": "Returnează numărul precizat de caractere de la începutul unui șir text" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [car_num])", + "d": "Returnează primul caracter sau primele caractere dintr-un șir text, în funcție de numărul de byți specificat, are ca scop utilizarea cu limbi care întrebuințează setul de caractere dublu-octet (DBCS) - limba japoneză, limba chineză și limba coreeană" }, "LEN": { "a": "(text)", "d": "Returnează numărul de caractere într-un șir text" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "Returnează numărul de byți utilizați pentru reprezentarea caracterelor dintr-un șir text, are ca scop utilizarea cu limbi care întrebuințează setul de caractere dublu-octet (DBCS) - limba japoneză, limba chineză și limba coreeană" }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "Returnează caracterele din mijlocul unui șir text fiind date poziția de început și lungimea" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; num_start; car_num)", + "d": "Returnează un anumit număr de caractere dintr-un șir de text, începând din poziția specificată, pe baza numărului de byți specificat, are ca scop utilizarea cu limbi care întrebuințează setul de caractere dublu-octet (DBCS) - limba japoneză, limba chineză și limba coreeană" }, "NUMBERVALUE": { "a": "(text; [separator_zecimale]; [separator_grup])", @@ -444,8 +444,8 @@ "d": "Înlocuiește o parte a unui șir text cu un șir text diferit" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text_vechi; num_start; car_num; text_nou)", + "d": "Înlocuiește o parte dintr-un șir de text, pe baza numărului de byți specificat, cu un alt șir de text, are ca scop utilizarea cu limbi care întrebuințează setul de caractere dublu-octet (DBCS) - limba japoneză, limba chineză și limba coreeană" }, "REPT": { "a": "(text; număr_ori)", @@ -456,16 +456,16 @@ "d": "Returnează numărul precizat de caractere de la sfârșitul unui șir text" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [car_num])", + "d": "Întoarce ultimul caracter sau caractere dintr-un șir de text, pe baza unui număr de byți specificat, are ca scop utilizarea cu limbi care întrebuințează setul de caractere dublu-octet (DBCS) - limba japoneză, limba chineză și limba coreeană" }, "SEARCH": { "a": "(text_de_căutat; în_text; [num_start])", "d": "Returnează numărul caracterului de la care este găsit prima dată un caracter sau un șir text precizat, citind de la stânga la dreapta (nu se diferențiază literele mari și mici)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text_de_căutat; în_text; [num_start])", + "d": "Găsesc un șir text într-un al doilea șir text, apoi returnează numărul poziției de început a primului șir text începând cu primul caracter al celui de-al doilea șir text, are ca scop utilizarea cu limbi care întrebuințează setul de caractere dublu-octet (DBCS) - limba japoneză, limba chineză și limba coreeană" }, "SUBSTITUTE": { "a": "(text; text_vechi; text_nou; [num_instanță])", @@ -1348,8 +1348,8 @@ "d": "Efectuează conversia unui număr roman în număr arab" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "Pentru limbile cu set de caractere pe doi octeți (DBCS), funcția modifică caracterele cu lățime întreagă (doi octeți) în caractere cu lățime pe jumătate (un octet)" }, "ASIN": { "a": "(număr)", @@ -1384,8 +1384,8 @@ "d": "Rotunjește prin adaos un număr, la cel mai apropiat întreg sau la cel mai apropiat multiplu de semnificație" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(număr; [semnificație])", + "d": "Returnează un număr care este rotunjit la cel mai apropiat întreg sau la cel mai apropiat multiplu semnificativ" }, "COMBIN": { "a": "(număr; număr_ales)", @@ -1428,8 +1428,8 @@ "d": "Transformă radiani în grade" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(număr; semnificație)", + "d": "Rotunjește prin adaos un număr, la cel mai apropiat multiplu de argument de precizie" }, "EVEN": { "a": "(număr)", @@ -1452,8 +1452,8 @@ "d": "Rotunjește prin lipsă un număr, la cel mai apropiat multiplu de semnificație" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(număr; [semnificație])", + "d": "Returnează un număr care este rotunjit prin lipsă la cel mai apropiat întreg sau la cel mai apropiat multiplu al semnificației" }, "FLOOR.MATH": { "a": "(număr; [semnificație]; [mod])", @@ -1468,8 +1468,8 @@ "d": "Rotunjește un număr prin lipsă la cel mai apropiat întreg" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(număr; [semnif])", + "d": "Returnează un număr care este rotunjit la cel mai apropiat întreg sau la cel mai apropiat multiplu semnificativ. Indiferent de semnul numărului, numărul este rotunjit. Însă, dacă numărul sau semnificația este zero, se returnează zero." }, "LCM": { "a": "(număr1; [număr2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Caută într-o zonă sau într-o matrice pentru o potrivire și returnează elementul corespunzător dintr-o a doua zonă sau matrice. În mod implicit, se utilizează o potrivire exactă" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(tip_info; [referință])", + "d": "Returnează informații despre formatare, locație și conținutul unei celule" }, "ERROR.TYPE": { "a": "(val_er)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json index 7af867a1e..0f0962dd3 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/ru_desc.json @@ -5,7 +5,7 @@ }, "DATEDIF": { "a": "(нач_дата;кон_дата;единица)", - "d": "Функция даты и времени, возвращает разницу между двумя датами (начальной и конечной) согласно заданному интервалу (единице)" + "d": "Возвращает разницу между двумя датами (начальной и конечной) согласно заданному интервалу (единице)" }, "DATEVALUE": { "a": "(дата_как_текст)", @@ -397,7 +397,7 @@ }, "FINDB": { "a": "(искомый_текст;просматриваемый_текст;[нач_позиция])", - "d": "Функция для работы с текстом и данными, используется для поиска заданной подстроки (искомый_текст) внутри строки (просматриваемый_текст), предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." + "d": "Находит заданную подстроку (искомый_текст) внутри строки (просматриваемый_текст), предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." }, "FIXED": { "a": "(число; [число_знаков]; [без_разделителей])", @@ -409,7 +409,7 @@ }, "LEFTB": { "a": "(текст;[число_знаков])", - "d": "Функция для работы с текстом и данными, извлекает подстроку из заданной строки, начиная с левого символа, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." + "d": "Извлекает подстроку из заданной строки, начиная с левого символа, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." }, "LEN": { "a": "(текст)", @@ -417,7 +417,7 @@ }, "LENB": { "a": "(текст)", - "d": "Функция для работы с текстом и данными, анализирует заданную строку и возвращает количество символов, которые она содержит, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." + "d": "Анализирует заданную строку и возвращает количество символов, которые она содержит, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." }, "LOWER": { "a": "(текст)", @@ -429,7 +429,7 @@ }, "MIDB": { "a": "(текст;начальная_позиция;число_знаков)", - "d": "Функция для работы с текстом и данными, извлекает символы из заданной строки, начиная с любого места, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." + "d": "Извлекает символы из заданной строки, начиная с любого места, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." }, "NUMBERVALUE": { "a": "(текст; [десятичный_разделитель]; [разделитель_разрядов])", @@ -445,7 +445,7 @@ }, "REPLACEB": { "a": "(стар_текст;начальная_позиция;число_знаков;нов_текст)", - "d": "Функция для работы с текстом и данными, заменяет ряд символов на новый, с учетом заданного количества символов и начальной позиции, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." + "d": "Заменяет ряд символов на новый, с учетом заданного количества символов и начальной позиции, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." }, "REPT": { "a": "(текст; число_повторений)", @@ -457,7 +457,7 @@ }, "RIGHTB": { "a": "(текст;[число_знаков])", - "d": "Функция для работы с текстом и данными, извлекает подстроку из заданной строки, начиная с крайнего правого символа, согласно заданному количеству символов, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." + "d": "Извлекает подстроку из заданной строки, начиная с крайнего правого символа, согласно заданному количеству символов, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." }, "SEARCH": { "a": "(искомый_текст; текст_для_поиска; [нач_позиция])", @@ -465,7 +465,7 @@ }, "SEARCHB": { "a": "(искомый_текст;просматриваемый_текст;[начальная_позиция])", - "d": "Функция для работы с текстом и данными, возвращает местоположение заданной подстроки в строке, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." + "d": "Возвращает местоположение заданной подстроки в строке, предназначена для языков, использующих двухбайтовую кодировку (DBCS), таких как японский, китайский, корейский и т.д." }, "SUBSTITUTE": { "a": "(текст; стар_текст; нов_текст; [номер_вхождения])", @@ -1349,7 +1349,7 @@ }, "ASC": { "a": "(текст)", - "d": "Текстовая функция, для языков с двухбайтовой кодировкой (DBCS) преобразует полноширинные (двухбайтовые) знаки в полуширинные (однобайтовые)" + "d": "Для языков с двухбайтовой кодировкой (DBCS) преобразует полноширинные (двухбайтовые) знаки в полуширинные (однобайтовые)" }, "ASIN": { "a": "(число)", @@ -1385,7 +1385,7 @@ }, "CEILING.PRECISE": { "a": "(x;[точность])", - "d": "Математическая и тригонометрическая функция, округляет число вверх до ближайшего целого или до ближайшего кратного указанному значению" + "d": "Округляет число вверх до ближайшего целого или до ближайшего кратного указанному значению" }, "COMBIN": { "a": "(число; число_выбранных)", @@ -1429,7 +1429,7 @@ }, "ECMA.CEILING": { "a": "(x;точность)", - "d": "Математическая и тригонометрическая функция, используется, чтобы округлить число в большую сторону до ближайшего числа, кратного заданной значимости" + "d": "Округляет число в большую сторону до ближайшего числа, кратного заданной значимости" }, "EVEN": { "a": "(число)", @@ -1453,7 +1453,7 @@ }, "FLOOR.PRECISE": { "a": "(x;[точность])", - "d": "Математическая и тригонометрическая функция, возвращает число, округленное с недостатком до ближайшего целого или до ближайшего кратного разрядности" + "d": "Возвращает число, округленное с недостатком до ближайшего целого или до ближайшего кратного разрядности" }, "FLOOR.MATH": { "a": "(число; [точность]; [режим])", @@ -1720,8 +1720,8 @@ "d": "Ищет совпадение в диапазоне или массиве и возвращает соответствующий элемент из второго диапазона или массива. По умолчанию используется точное соответствие" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Информационная функция, возвращает сведения о форматировании, расположении или содержимом ячейки" + "a": "(тип_сведений; [ссылка])", + "d": "Возвращает сведения о форматировании, расположении или содержимом ячейки" }, "ERROR.TYPE": { "a": "(значение_ошибки)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sk_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/sk_desc.json index 9724c7c35..2c1d8a066 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/sk_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/sk_desc.json @@ -4,8 +4,8 @@ "d": "Vráti číslo, ktoré v kóde pre dátum a čas predstavuje dátum" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(počiatočný_dátum; koncový_dátum; jednotka)", + "d": "Vypočíta počet dní, mesiacov alebo rokov medzi dvomi dátumami" }, "DATEVALUE": { "a": "(text_dátumu)", @@ -396,8 +396,8 @@ "d": "Vráti počiatočnú pozíciu textového reťazca v rámci iného textového reťazca. Táto funkcia rozlišuje malé a veľké písmená" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(nájsť_text; v_texte; [počiatočné_číslo])", + "d": "Vráti jeden textový reťazec vo vnútri druhého reťazca a vracajú počiatočnú pozíciu prvého reťazca od prvého znaku druhého reťazca, je určená pre jazyky, ktoré používajú dvojbajtovú tabuľku znakov (DBCS) - japončina, čínština a kórejčina" }, "FIXED": { "a": "(číslo; [desatinné_miesta]; [bez_čiarok])", @@ -408,16 +408,16 @@ "d": "Vráti zadaný počet znakov od začiatku textového reťazca" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [počet_znakov])", + "d": "Vráti prvý znak alebo prvé znaky v textovom reťazci, pričom ich počet je určený veľkosťou v bajtoch, je určená pre jazyky, ktoré používajú dvojbajtovú tabuľku znakov (DBCS) - japončina, čínština a kórejčina" }, "LEN": { "a": "(text)", "d": "Vráti počet znakov textového reťazca" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "Vráti počet bajtov použitých pre zobrazenie znakov v textovom reťazci, je určená pre jazyky, ktoré používajú dvojbajtovú tabuľku znakov (DBCS) - japončina, čínština a kórejčina" }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "Vráti znaky z textového reťazca, ak je zadaná počiatočná pozícia a dĺžka" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; počiatočná_pozícia; počet_znakov)", + "d": "Vráti časť textového reťazca od zadanej pozície a podľa zadaného počtu bajtov, je určená pre jazyky, ktoré používajú dvojbajtovú tabuľku znakov (DBCS) - japončina, čínština a kórejčina" }, "NUMBERVALUE": { "a": "(text; [decimal_separator]; [group_separator])", @@ -444,8 +444,8 @@ "d": "Nahradí časť textového reťazce iným textovým reťazcom" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(starý_text; počiatočné_číslo; počet_znakov; nový_text)", + "d": "Nahradí časť textového reťazca so zadaným počtom bajtov odlišným textovým reťazcom, je určená pre jazyky, ktoré používajú dvojbajtovú tabuľku znakov (DBCS) - japončina, čínština a kórejčina" }, "REPT": { "a": "(text; počet_opakovaní)", @@ -456,16 +456,16 @@ "d": "Vráti zadaný počet znakov od konca textového reťazca" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [počet_znakov])", + "d": "Vráti znaky z konca textového reťazca, pričom dĺžka výsledku je zadaná v bajtoch, je určená pre jazyky, ktoré používajú dvojbajtovú tabuľku znakov (DBCS) - japončina, čínština a kórejčina" }, "SEARCH": { "a": "(nájsť_text; v_texte; [pozícia_začiatku])", "d": "Vráti číslo prvého výskytu daného znaku alebo textového reťazca. Program hľadá zľava doprava a nerozlišuje veľké a malé písmená" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(nájsť_text; v_texte; [pozícia_začiatku])", + "d": "Vyhľadávajú jeden textový reťazec v rámci druhého textového reťazca a vrátia číslo počiatočnej pozície prvého textového reťazca od prvého znaku druhého textového reťazca, je určená pre jazyky, ktoré používajú dvojbajtovú tabuľku znakov (DBCS) - japončina, čínština a kórejčina" }, "SUBSTITUTE": { "a": "(text; starý_text; nový_text; [číslo_inštancie])", @@ -1348,8 +1348,8 @@ "d": "Konvertuje rímske číslice na arabské" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "Pre jazyky s dvojbajtovými tabuľkami znakov (DBCS) sa menia znaky s plnou šírkou (dvojbajtové) na znaky s polovičnou šírkou (jednobajtové)" }, "ASIN": { "a": "(číslo)", @@ -1384,8 +1384,8 @@ "d": "Zaokrúhli číslo nahor na najbližšie celé číslo alebo na najbližší násobok zadanej hodnoty" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(číslo; [významnosť])", + "d": "Vráti číslo zaokrúhlené na najbližšie celé číslo alebo na najbližší násobok zadanej hodnoty" }, "COMBIN": { "a": "(počet; vybratý_počet)", @@ -1428,8 +1428,8 @@ "d": "Konvertuje radiány na stupne" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(číslo; významnosť)", + "d": "Zaokrúhli číslo smerom nahor na najbližší násobok zadanej hodnoty" }, "EVEN": { "a": "(číslo)", @@ -1452,8 +1452,8 @@ "d": "Zaokrúhli číslo nadol na najbližší násobok zadanej hodnoty" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(číslo; [významnosť])", + "d": "Vráti číslo, ktoré je zaokrúhlené nadol na najbližšie celé číslo alebo na násobok zadanej hodnoty" }, "FLOOR.MATH": { "a": "(number; [significance]; [mode])", @@ -1468,8 +1468,8 @@ "d": "Zaokrúhli číslo nadol na najbližšie celé číslo" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(číslo; [významnosť])", + "d": "Vráti číslo zaokrúhlené na najbližšie celé číslo alebo na najbližší násobok zadanej hodnoty. Číslo sa bez ohľadu na znamienko zaokrúhli nahor. Ak je však dané číslo alebo násobok nula, vráti sa nula." }, "LCM": { "a": "(číslo1; [číslo2]; ...)", @@ -1720,8 +1720,8 @@ "d": "V danom rozsahu alebo poli hľadá zhodu a vráti zodpovedajúcu položku z druhého rozsahu alebo poľa. Predvolene sa použije presná zhoda" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(typ_informácií; [odkaz])", + "d": "Vráti informácie o formátovaní, umiestnení alebo obsahu bunky" }, "ERROR.TYPE": { "a": "(hodnota_chyby)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sl_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/sl_desc.json index d9593f35f..ce8780223 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/sl_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/sl_desc.json @@ -4,8 +4,8 @@ "d": "Vrne število, ki predstavlja datum v kodi za datum in uro." }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(začetni_datum; končni_datum; enota)", + "d": "Izračuna število dni, mesecev ali let med dvema datumoma" }, "DATEVALUE": { "a": "(besedilo_datuma)", @@ -396,8 +396,8 @@ "d": "Vrne začetni položaj besedilnega niza v drugem besedilnem nizu. FIND loči velike in male črke." }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(iskano_besedilo; v_besedilu; [začetni_znak])", + "d": "Je mogoče en besedilni niz poiskati z drugim in vrniti število začetnih mest prvega besedilnega niza iz prvega znaka drugega besedilnega niza, uporablja v jezikih z dvobajtnim naborom znakov (DBCS) - japonščina, kitajščina in korejščina" }, "FIXED": { "a": "(število; [decimalna_mesta]; [brez_vejic])", @@ -408,16 +408,16 @@ "d": "Vrne določeno število znakov od začetka besedilnega niza." }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(besedilo; [št_znakov])", + "d": "Vrne prvi znak ali znake v nizu besedila na osnovi navedenega števila bajtov, uporablja v jezikih z dvobajtnim naborom znakov (DBCS) - japonščina, kitajščina in korejščina" }, "LEN": { "a": "(besedilo)", "d": "Vrne število znakov v besedilnem nizu." }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(besedilo)", + "d": "Vrne število bajtov, ki predstavljajo znake v besedilnem nizu, uporablja v jezikih z dvobajtnim naborom znakov (DBCS) - japonščina, kitajščina in korejščina" }, "LOWER": { "a": "(besedilo)", @@ -428,8 +428,8 @@ "d": "Vrne znake iz sredine besedilnega niza, če sta podana začetni položaj in dolžina." }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(besedilo; prvi_znak; št_znakov)", + "d": "Vrne določeno število znakov iz besedilnega niza z začetkom pri navedenem položaju in na osnovi navedenega števila bajtov, uporablja v jezikih z dvobajtnim naborom znakov (DBCS) - japonščina, kitajščina in korejščina" }, "NUMBERVALUE": { "a": "(besedilo; [decimalno_ločilo]; [skupina_ločilo])", @@ -444,8 +444,8 @@ "d": "Zamenja del besedilnega niza z drugim besedilnim nizom." }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(staro_besedilo; mesto_znaka; št_znakov; novo_besedilo)", + "d": "Nadomesti del besedilnega niza z drugim besedilnim nizom glede na navedeno število bajtov, uporablja v jezikih z dvobajtnim naborom znakov (DBCS) - japonščina, kitajščina in korejščina" }, "REPT": { "a": "(besedilo; št_ponovitev)", @@ -456,16 +456,16 @@ "d": "Vrne določeno število znakov od konca besedilnega niza." }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(besedilo; [št_znakov])", + "d": "Vrne zadnji znak ali znake v besedilnem nizu, in sicer na podlagi navedenega števila bajtov, uporablja v jezikih z dvobajtnim naborom znakov (DBCS) - japonščina, kitajščina in korejščina" }, "SEARCH": { "a": "(iskano_besedilo; v_besedilu; [št_začetka])", "d": "Vrne številko znaka, kjer je prvič – gledano z leve proti desni - najden poseben znak ali besedilni niz (ne loči velikih in malih črk)." }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(iskano_besedilo; v_besedilu; [št_začetka])", + "d": "Je mogoče en besedilni niz poiskati z drugim in vrniti število začetnih mest prvega besedilnega niza iz prvega znaka drugega besedilnega niza, uporablja v jezikih z dvobajtnim naborom znakov (DBCS) - japonščina, kitajščina in korejščina" }, "SUBSTITUTE": { "a": "(besedilo; staro_besedilo; novo_besedilo; [št_primerka])", @@ -1348,8 +1348,8 @@ "d": "Pretvori rimsko številko v arabsko" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(besedilo)", + "d": "Za jezike z dvobajtnim naborom znakov (DBCS) spremeni funkcija znake polne širine (dvobajtne) v znake polovične (enobajtne) širine" }, "ASIN": { "a": "(število)", @@ -1384,8 +1384,8 @@ "d": "Zaokroži število na najbližje celo število ali večkratnik osnove navzgor" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(število; [pomembnost])", + "d": "Vrne število, ki je zaokroženo na najbližje celo število ali na najbližji mnogokratnik značilnega števila" }, "COMBIN": { "a": "(število; izbrano_število)", @@ -1428,8 +1428,8 @@ "d": "Pretvori radiane v stopinje." }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(število; pomembnost)", + "d": "Zaokroži število navzgor, na najbližji mnogokratnik značilnega števila" }, "EVEN": { "a": "(število)", @@ -1452,8 +1452,8 @@ "d": "Zaokroži število navzdol do najbližjega mnogokratnika značilnega števila." }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(število; [pomembnost])", + "d": "Vrne število, ki je zaokroženo navzdol na najbližje celo število ali na najbližji večkratnik osnove" }, "FLOOR.MATH": { "a": "(število; [osnova]; [način])", @@ -1468,8 +1468,8 @@ "d": "Število zaokroži navzdol do najbližjega celega števila." }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(število; [pomembnost])", + "d": "Vrne število, ki je zaokroženo na najbližje celo število ali na najbližji mnogokratnik značilnega števila. Ne glede na znak števila, je število zaokroženo navzgor. Če je vrednost števila ali značilnega števila nič, je vrnjena vrednost nič." }, "LCM": { "a": "(število1; [število2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Poišče ujemanje v obsegu ali polju in vrne ustrezen element iz drugega obsega ali polja. Privzeto je uporabljeno natančno ujemanje" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(vrsta_informacij; [sklic])", + "d": "Vrne informacije o oblikovanju, mestu ali vsebini celice" }, "ERROR.TYPE": { "a": "(vrednost_napake)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/sv_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/sv_desc.json index 11cabf739..0bff1c959 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/sv_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/sv_desc.json @@ -4,8 +4,8 @@ "d": "Returnerar numret som representerar datumet i datum-tidkoden" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(startdatum; stoppdatum; enhet)", + "d": "Beräknar antalet dagar, månader eller år mellan två datum" }, "DATEVALUE": { "a": "(datumtext)", @@ -396,8 +396,8 @@ "d": "Returnerar startpositionen för en textsträng inom en annan textsträng. SÖK är skiftlägeskänsligt." }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(sök; inom_text; [startpos])", + "d": "Söker efter en textsträng i en annan textsträng och returnerar numret på startpositionen för den första strängen från det första tecknet i den andra textsträngen, är avsedd att användas med språk som använder DBCS-teckenuppsättningen (Double-Byte Character Set) - japanska, kinesiska och koreanska" }, "FIXED": { "a": "(tal; [decimaler]; [ej_komma])", @@ -408,16 +408,16 @@ "d": "Returnerar det angivna antalet tecken från början av en textsträng." }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [antal_tecken])", + "d": "Returnerar det första tecknet eller tecknen i en textsträng, baserat på antal angivna byte, är avsedd att användas med språk som använder DBCS-teckenuppsättningen (Double-Byte Character Set) - japanska, kinesiska och koreanska" }, "LEN": { "a": "(text)", "d": "Returnerar antalet tecken i en textsträng." }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "Returnerar antalet byte som används för att representera tecknen i en textsträng, är avsedd att användas med språk som använder DBCS-teckenuppsättningen (Double-Byte Character Set) - japanska, kinesiska och koreanska" }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "Returnerar tecknen från mitten av en textsträng med en startposition och längd som du anger." }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; startpos; antal_tecken)", + "d": "Returnerar ett angivet antal tecken ur en textsträng med början från en angiven position, baserat på antalet byte du anger, är avsedd att användas med språk som använder DBCS-teckenuppsättningen (Double-Byte Character Set) - japanska, kinesiska och koreanska" }, "NUMBERVALUE": { "a": "(text; [decimaltecken]; [tusentalsavgränsare])", @@ -444,8 +444,8 @@ "d": "Ersätter del av textsträng med en annan." }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(gammal_text; startpos; antal_tecken; ny_text)", + "d": "Ersätter en del av en textsträng, baserat på det antal tecken du anger, med en annan textsträng, är avsedd att användas med språk som använder DBCS-teckenuppsättningen (Double-Byte Character Set) - japanska, kinesiska och koreanska" }, "REPT": { "a": "(text; antal_gånger)", @@ -456,16 +456,16 @@ "d": "Returnerar det angivna antalet tecken från slutet av en textsträng." }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [antal_tecken])", + "d": "Returnerar det eller de sista tecknen i en textsträng, baserat på det antal byte du anger, är avsedd att användas med språk som använder DBCS-teckenuppsättningen (Double-Byte Character Set) - japanska, kinesiska och koreanska" }, "SEARCH": { "a": "(sök; inom; [startpos])", "d": "Returnerar antalet tecken vilka ett givet tecken eller textsträng söker efter först, läser från höger till vänster (ej skiftlägeskänslig)." }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(sök; inom; [startpos])", + "d": "Söker efter en textsträng i en annan textsträng och returnerar numret på startpositionen för den första strängen från det första tecknet i den andra textsträngen, är avsedd att användas med språk som använder DBCS-teckenuppsättningen (Double-Byte Character Set) - japanska, kinesiska och koreanska" }, "SUBSTITUTE": { "a": "(text; gammal_text; ny_text; [antal_förekomster])", @@ -1348,8 +1348,8 @@ "d": "Konverterar romerska siffror till arabiska." }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "För språk med DBCS-teckenuppsättningar (teckenuppsättningar med dubbla byte) ändrar den gär funktionen tecken med hel bredd (två byte) till halvbreddstecken (en byte)" }, "ASIN": { "a": "(tal)", @@ -1384,8 +1384,8 @@ "d": "Avrundar ett tal uppåt till närmaste heltal eller till närmaste signifikanta multipel." }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(tal; [signifikans])", + "d": "Returnerar ett tal som har rundats upp till närmaste heltal eller närmaste signifikanta multipel" }, "COMBIN": { "a": "(antal; valt_antal)", @@ -1428,8 +1428,8 @@ "d": "Konverterar radianer till grader." }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(tal; signifikans)", + "d": "Avrundar ett tal uppåt, till närmaste signifikanta multipel" }, "EVEN": { "a": "(tal)", @@ -1452,8 +1452,8 @@ "d": "Avrundar ett tal nedåt, till närmaste signifikanta multipel." }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(tal; [signifikans])", + "d": "Returnerar ett tal som har rundats av nedåt till närmaste heltal eller närmaste signifikanta multipel" }, "FLOOR.MATH": { "a": "(tal; [signifikans]; [typvärde])", @@ -1468,8 +1468,8 @@ "d": "Rundar av ett tal till närmaste heltal." }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(tal; [signifikans])", + "d": "Returnerar ett tal som har rundats upp till närmaste heltal eller närmaste signifikanta multipel. Oavsett talets tecken rundas talet uppåt. Om talet eller signifikansen är noll returneras dock noll." }, "LCM": { "a": "(tal1; [tal2]; ...)", @@ -1720,8 +1720,8 @@ "d": "söker efter ett intervall eller en matris för en matchning och returnerar motsvarande objekt från ett andra intervall eller en andra matris. Som standard används en exakt matchning" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(infotyp; [referens])", + "d": "Returnerar information om formatering, placering eller innehåll för en cell" }, "ERROR.TYPE": { "a": "(felvärde)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/tr_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/tr_desc.json index aa03f5758..20535df5d 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/tr_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/tr_desc.json @@ -4,8 +4,8 @@ "d": "Tarih-saat kodundaki tarihi gösteren sayıyı verir." }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(başlangıç_tarihi; bitiş_tarihi; birim)", + "d": "İki tarih arasındaki gün, ay veya yıl sayısını hesaplar" }, "DATEVALUE": { "a": "(tarih_metni)", @@ -396,8 +396,8 @@ "d": "Bir metin dizesini diğer bir metin dizesi içinde bulur ve bulunan dizenin başlama konumu numarasını verir (büyük küçük harfe duyarlı)" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(bul_metin; metin_içinde; [başlangıç_sayısı])", + "d": "Bir metin dizesi içinde bir metin dizesi bulur ve ikinci metin dizesinin ilk karakterinden ilk metin dizesinin başlangıç konumuna ait sayıyı verir, ise çift baytlık karakter kümesi (DBCS) kullanan dillerle kullanım için tasarlanmıştır - Japonca, Çince ve Korecedir" }, "FIXED": { "a": "(sayı; [onluklar]; [virgül_yok])", @@ -408,16 +408,16 @@ "d": "Bir metin dizesinin ilk (en solundaki) belirtilen sayıdaki karakter ya da karakterlerini verir" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(metin; [sayı_karakterler])", + "d": "Belirteceğiniz bayt sayısına göre bir metin dizesindeki ilk karakteri veya karakterleri verir, ise çift baytlık karakter kümesi (DBCS) kullanan dillerle kullanım için tasarlanmıştır - Japonca, Çince ve Korecedir" }, "LEN": { "a": "(metin)", "d": "Bir karakter dizesi içerisindeki karakter sayısını verir" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(metin)", + "d": "Bir metin dizesinde karakterleri temsil etmek üzere kullanılan bayt sayısını verir, ise çift baytlık karakter kümesi (DBCS) kullanan dillerle kullanım için tasarlanmıştır - Japonca, Çince ve Korecedir" }, "LOWER": { "a": "(metin)", @@ -428,8 +428,8 @@ "d": "Belirttiğiniz konumdan başlamak üzere metinden belirli sayıda karakter verir" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(metin; başlangıç_sayısı; sayı_karakterler)", + "d": "Bir metin dizesinden, belirttiğiniz yerden başlayarak, belirttiğiniz bayt sayısına göre belirli sayıda karakteri verir, ise çift baytlık karakter kümesi (DBCS) kullanan dillerle kullanım için tasarlanmıştır - Japonca, Çince ve Korecedir" }, "NUMBERVALUE": { "a": "(metin; [ondalık_ayırıcı]; [grup_ayırıcı])", @@ -444,8 +444,8 @@ "d": "Metin dizesinin bir kısmını başka bir metin dizesiyle değiştirir" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(eski_metin; başlangıç_sayısı; sayı_karakterler; yeni_metin)", + "d": "Belirteceğiniz bayt sayısına göre, bir metin dizesinin bir kısmını farklı bir metin dizesi ile değiştirir, ise çift baytlık karakter kümesi (DBCS) kullanan dillerle kullanım için tasarlanmıştır - Japonca, Çince ve Korecedir" }, "REPT": { "a": "(metin; sayı_kere)", @@ -456,16 +456,16 @@ "d": "Bir metin dizesinin son (en sağdaki) belirtilen sayıdaki karakter ya da karakterlerini verir" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(metin; [sayı_karakterler])", + "d": "Belirteceğiniz bayt sayısına göre, bir metin dizesindeki son karakteri veya karakterleri verir, ise çift baytlık karakter kümesi (DBCS) kullanan dillerle kullanım için tasarlanmıştır - Japonca, Çince ve Korecedir" }, "SEARCH": { "a": "(bul_metin; metin; [başlangıç_sayısı])", "d": "Özel bir karakter ya da metin dizesinin ilk geçtiği yerin karakter numarasını verir, soldan sağa okuma sırasında (büyük küçük harfe duyarlı değil)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(bul_metin; metin; [başlangıç_sayısı])", + "d": "Bir metin dizesi içinde bir metin dizesi bulur ve ikinci metin dizesinin ilk karakterinden ilk metin dizesinin başlangıç konumuna ait sayıyı verir, ise çift baytlık karakter kümesi (DBCS) kullanan dillerle kullanım için tasarlanmıştır - Japonca, Çince ve Korecedir" }, "SUBSTITUTE": { "a": "(metin; eski_metin; yeni_metin; [yineleme_sayısı])", @@ -1348,8 +1348,8 @@ "d": "Bir Roma rakamını Arap rakamına dönüştürür" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(metin)", + "d": "Çift bayt karakter kümeli (DBCS) dillerde, işlev tam genişlikli (çift bayt) karakterleri yarı genişlikli (tek bayt) karakterlere dönüştürür" }, "ASIN": { "a": "(sayı)", @@ -1384,8 +1384,8 @@ "d": "Bir sayıyı, yukarı doğru en yakın tamsayı veya anlamlı sayı katına yuvarlar" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(sayı; [anlam])", + "d": "En yakın tam sayıya ya da en yakın katına yuvarlanmış sayıyı verir" }, "COMBIN": { "a": "(sayı; sayı_seçilen)", @@ -1428,8 +1428,8 @@ "d": "Radyanı dereceye çevirir" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(sayı; anlam)", + "d": "Bir sayıyı, yukarı doğru en yakın anlamlı sayı katına yuvarlar" }, "EVEN": { "a": "(sayı)", @@ -1452,8 +1452,8 @@ "d": "Bir sayıyı, anlamlı en yakın katına, aşağı doğru yuvarlar" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(sayı; [anlam])", + "d": "En yakın sayıya veya en yakın anlam katına aşağı yuvarlanmış bir sayı verir" }, "FLOOR.MATH": { "a": "(sayı; [anlam]; [mod])", @@ -1468,8 +1468,8 @@ "d": "Bir sayıyı, sıfırdan ıraksayarak en yakın tam sayıya yuvarlar" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(sayı; [anlam])", + "d": "En yakın tam sayıya ya da en yakın katına yuvarlanmış sayıyı verir. Sayının işareti dikkate alınmadan sayı yuvarlanır. Ancak, sayı veya anlam sıfırsa, sıfır verilir." }, "LCM": { "a": "(sayı1; [sayı2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Eşleştirme bulmak için bir aralıkta veya dizide arama yapar ve ilgili öğeyi ikinci bir aralıkta ya da dizide döndürür. Varsayılan olarak tam eşleşme kullanılır" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(bilgi_türü; [başvuru])", + "d": "Hücrenin biçimlendirmesi, konumu ve içeriği hakkındaki bilgileri verir" }, "ERROR.TYPE": { "a": "(hata_değer)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/uk_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/uk_desc.json index 1a0540f5c..ae4c4c0a7 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/uk_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/uk_desc.json @@ -4,8 +4,8 @@ "d": "Повертає число, що відповідає коду дати-часу" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(дата_початку; дата_завершення; одиниця)", + "d": "Обчислює кількість днів, місяців або років між двома датами" }, "DATEVALUE": { "a": "(дата_в_текстовому_форматі)", @@ -396,8 +396,8 @@ "d": "Повертає позицію початку шуканого текстового рядка в тексті перегляду, який його містить. Великі й малі букви розрізняються" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(шуканий_текст; текст_перегляду; [поч_позиція])", + "d": "Знаходить один рядок тексту у другому рядку тексту та повертає позицію початку першого рядка тексту від першого символу другого рядка тексту, передбачена для використання з мовами, що мають набір двобайтних символів (DBCS) - японська, китайська і корейська" }, "FIXED": { "a": "(число; [кількість_знаків]; [без_розділювачів])", @@ -408,16 +408,16 @@ "d": "Повертає задану кількість символів, вибрану з початку текстового рядка" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(текст; [кількість_символів])", + "d": "Повертає перший символ або символи в текстовому рядку, залежно від заданої кількості байтів, передбачена для використання з мовами, що мають набір двобайтних символів (DBCS) - японська, китайська і корейська" }, "LEN": { "a": "(текст)", "d": "Повертає кількість символів у текстовому рядку" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(текст)", + "d": "Повертає кількість байтів, використаних для відображення символів у текстовому рядку, передбачена для використання з мовами, що мають набір двобайтних символів (DBCS) - японська, китайська і корейська" }, "LOWER": { "a": "(текст)", @@ -428,8 +428,8 @@ "d": "Повертає задану кількість символів, вибрану з рядка тексту, починаючи з указаної позиції" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(текст; поч_позиція; кількість_символів)", + "d": "Повертає задану кількість символів із рядка тексту, починаючи з указаної позиції, на основі заданої кількості байтів, передбачена для використання з мовами, що мають набір двобайтних символів (DBCS) - японська, китайська і корейська" }, "NUMBERVALUE": { "a": "(текст; [десятковий_роздільник]; [груповий_роздільник])", @@ -444,8 +444,8 @@ "d": "Замінює частину текстового рядка на інший текст" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(старий_текст; поч_поз; кількість_символів; новий_текст)", + "d": "Замінює частину текстового рядка на інший текст, виходячи з кількості вказаних байтів, передбачена для використання з мовами, що мають набір двобайтних символів (DBCS) - японська, китайська і корейська" }, "REPT": { "a": "(текст; кількість_повторів)", @@ -456,16 +456,16 @@ "d": "Повертає задану кількість символів, вибрану з кінця текстового рядка" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(текст; [кількість_символів])", + "d": "Повертає останній символ або символи в текстовому рядку, залежно від указаної кількості байтів, передбачена для використання з мовами, що мають набір двобайтних символів (DBCS) - японська, китайська і корейська" }, "SEARCH": { "a": "(шуканий_текст; текст_перегляду; [поч_позиція])", "d": "Повертає позицію першого входження символу або рядка тексту (без урахування регістру), якщо читати зліва направо" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(шуканий_текст; текст_перегляду; [поч_позиція])", + "d": "Знаходить один текстовий рядок у межах другого рядка та повертає число стартової позиції першого текстового рядка з першого символу другого текстового рядка, передбачена для використання з мовами, що мають набір двобайтних символів (DBCS) - японська, китайська і корейська" }, "SUBSTITUTE": { "a": "(текст; стар_текст; нов_текст; [номер_входження])", @@ -1348,8 +1348,8 @@ "d": "Перетворює римську цифру на арабську" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(текст)", + "d": "Для мов із двобайтними наборами символів (DBCS) ця функція перетворює двобайтні символи на однобайтні" }, "ASIN": { "a": "(число)", @@ -1384,8 +1384,8 @@ "d": "Округлює число до найближчого більшого за модулем цілого числа або кратного значенню точності" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(число; [точність])", + "d": "Повертає число, округлене до найближчого більшого цілого або до кратного значенню точності" }, "COMBIN": { "a": "(число; кількість_вибраних)", @@ -1428,8 +1428,8 @@ "d": "Перетворює радіани на градуси" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(число; точність)", + "d": "Округлює число найближчого більшого кратного точності" }, "EVEN": { "a": "(число)", @@ -1452,8 +1452,8 @@ "d": "Округлює число до найближчого меншого кратного точності" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(число; [точність])", + "d": "Повертає число, округлене до найближчого меншого цілого або до кратного значенню точності" }, "FLOOR.MATH": { "a": "(число; [точність]; [модуль])", @@ -1468,8 +1468,8 @@ "d": "Округлює число до найближчого меншого цілого" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(число; [точність])", + "d": "Повертає число, округлене до найближчого більшого цілого або до кратного значенню точності. Число округлюється незалежно від його знака. Однак, якщо число – нуль або його значення точності дорівнює нулю, буде повернуто нуль." }, "LCM": { "a": "(число1; [число2]; ...)", @@ -1720,8 +1720,8 @@ "d": "Пошук збігів у масиві або діапазоні та повернення відповідного елемента з другого масиву або діапазону. За замовчуванням ведеться пошук точних збігів" }, "CELL": { - "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "a": "(тип_відомостей; [посилання])", + "d": "Повертає інформацію про форматування, розташування або вміст клітинки" }, "ERROR.TYPE": { "a": "(значення_помилки)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/vi_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/vi_desc.json index fd5a7cf32..e2eaf4d16 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/vi_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/vi_desc.json @@ -4,8 +4,8 @@ "d": "Trả về số thể hiện ngày tháng theo mã ngày-giờ" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(start-date; end-date; unit)", + "d": "Tính toán số ngày, tháng hoặc năm giữa hai ngày" }, "DATEVALUE": { "a": "(date_text)", @@ -396,8 +396,8 @@ "d": "Trả về vị trí bắt đầu của một xâu văn bản nằm trong xâu văn bản khác. Hàm FIND có phân biệt chữ hoa, chữ thường" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "Định vị một chuỗi văn bản nằm trong chuỗi văn bản thứ hai và trả về số của vị trí bắt đầu của chuỗi văn bản thứ nhất tính từ ký tự thứ nhất của chuỗi văn bản thứ hai, nhằm để dùng với những ngôn ngữ sử dụng bộ ký tự byte kép (DBCS) - Tiếng Nhật, Tiếng Trung Quốc và Tiếng Hàn Quốc" }, "FIXED": { "a": "(number; [decimals]; [no_commas])", @@ -408,16 +408,16 @@ "d": "Trả về số ký tự xác định từ vị trí bắt đầu của xâu văn bản" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "Trả về một hoặc nhiều ký tự đầu tiên trong một chuỗi, dựa vào số byte mà bạn chỉ định, nhằm để dùng với những ngôn ngữ sử dụng bộ ký tự byte kép (DBCS) - Tiếng Nhật, Tiếng Trung Quốc và Tiếng Hàn Quốc" }, "LEN": { "a": "(text)", "d": "Trả về số lượng ký tự trong xâu văn bản" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "Trả về số byte dùng để biểu thị các ký tự trong một chuỗi văn bản, nhằm để dùng với những ngôn ngữ sử dụng bộ ký tự byte kép (DBCS) - Tiếng Nhật, Tiếng Trung Quốc và Tiếng Hàn Quốc" }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "Trả về các ký tự ở giữa xâu văn bản, với vị trí bắt đầu và độ dài chỉ định" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; start_num; num_chars)", + "d": "Trả về một số lượng ký tự cụ thể từ một chuỗi văn bản, bắt đầu từ vị trí do bạn chỉ định, dựa vào số lượng byte do bạn chỉ định, nhằm để dùng với những ngôn ngữ sử dụng bộ ký tự byte kép (DBCS) - Tiếng Nhật, Tiếng Trung Quốc và Tiếng Hàn Quốc" }, "NUMBERVALUE": { "a": "(text; [decimal_separator]; [group_separator])", @@ -444,8 +444,8 @@ "d": "Thay thế một phần của xâu văn bản bằng xâu văn bản khác" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(old_text; start_num; num_chars; new_text)", + "d": "Thay thế một phần của chuỗi văn bản, dựa vào số byte do bạn chỉ định, bằng một chuỗi văn bản khác, nhằm để dùng với những ngôn ngữ sử dụng bộ ký tự byte kép (DBCS) - Tiếng Nhật, Tiếng Trung Quốc và Tiếng Hàn Quốc" }, "REPT": { "a": "(text; number_times)", @@ -456,16 +456,16 @@ "d": "Trả về số ký tự xác định từ vị trí cuối của xâu văn bản" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "Trả về một hoặc nhiều ký tự cuối cùng trong một chuỗi, dựa vào số byte mà bạn chỉ định, nhằm để dùng với những ngôn ngữ sử dụng bộ ký tự byte kép (DBCS) - Tiếng Nhật, Tiếng Trung Quốc và Tiếng Hàn Quốc" }, "SEARCH": { "a": "(find_text; within_text; [start_num])", "d": "Trả về số ký tự tại vị trí xuất hiện đầu tiên của ký tự hoặc xâu văn bản cho trước, tính từ trái qua phải (không phân biệt chữ hoa, chữ thường)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "Trả về một chuỗi văn bản bên trong chuỗi văn bản thứ hai và trả về số vị trí bắt đầu của chuỗi văn bản thứ nhất từ ký tự đầu tiên của chuỗi văn bản thứ hai, nhằm để dùng với những ngôn ngữ sử dụng bộ ký tự byte kép (DBCS) - Tiếng Nhật, Tiếng Trung Quốc và Tiếng Hàn Quốc" }, "SUBSTITUTE": { "a": "(text; old_text; new_text; [instance_num])", @@ -1348,8 +1348,8 @@ "d": "Chuyển đổi chữ số La Mã sang chữ số Ả Rập" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "Đối với những ngôn ngữ dùng bộ ký tự byte kép (DBCS), hàm này giúp thay đổi các ký tự có độ rộng toàn phần (byte kép) thành các ký tự có độ rộng bán phần (byte đơn)" }, "ASIN": { "a": "(number)", @@ -1384,8 +1384,8 @@ "d": "Làm tròn số lên tới số nguyên gần nhất hoặc lên bội số có nghĩa gần nhất" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "Trả về một số được làm tròn lên tới số nguyên gần nhất hoặc tới bội số có nghĩa gần nhất" }, "COMBIN": { "a": "(number; number_chosen)", @@ -1428,8 +1428,8 @@ "d": "Chuyển đổi từ radian sang độ" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(number; significance)", + "d": "Làm tròn số lên, tới số nguyên hoặc bội gần nhất của số có nghĩa" }, "EVEN": { "a": "(number)", @@ -1452,8 +1452,8 @@ "d": " làm tròn number xuống bội số gần nhất của significance" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "Trả về một số được làm tròn xuống tới số nguyên gần nhất hoặc tới bội số có nghĩa gần nhất" }, "FLOOR.MATH": { "a": "(number; [significance]; [mode])", @@ -1468,8 +1468,8 @@ "d": "Làm tròn số xuống giá trị nguyên gần nhất" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(number; [significance])", + "d": "Trả về một số được làm tròn lên tới số nguyên gần nhất hoặc tới bội số có nghĩa gần nhất. Bất chấp dấu của số, số sẽ được làm tròn lên. Tuy nhiên, nếu đối số số hoặc đối số số có nghĩa là không, thì kết quả là không." }, "LCM": { "a": "(number1; [number2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "d": "Trả về thông tin về định dạng, vị trí hay nội dung của một ô" }, "ERROR.TYPE": { "a": "(error_val)", diff --git a/apps/spreadsheeteditor/main/resources/formula-lang/zh_desc.json b/apps/spreadsheeteditor/main/resources/formula-lang/zh_desc.json index 5fe93892f..cb020cb71 100644 --- a/apps/spreadsheeteditor/main/resources/formula-lang/zh_desc.json +++ b/apps/spreadsheeteditor/main/resources/formula-lang/zh_desc.json @@ -4,8 +4,8 @@ "d": "返回在日期时间代码中代表日期的数字" }, "DATEDIF": { - "a": "( start-date; end-date; unit )", - "d": "Date and time function used to return the difference between two date values (start date and end date), based on the interval (unit) specified" + "a": "(start-date; end-date; unit)", + "d": "计算两个日期之间相隔的天数、月数或年数。" }, "DATEVALUE": { "a": "(date_text)", @@ -396,8 +396,8 @@ "d": "返回一个字符串在另一个字符串中出现的起始位置(区分大小写)" }, "FINDB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to find the specified substring (string-1) within a string (string-2) and is intended for languages the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "用于在第二个文本串中定位第一个文本串,并返回第一个文本串的起始位置的值,该值从第二个文本串的第一个字符算起。适用于使用双字节字符集 (DBCS) 的语言。支持 DBCS 的语言包括日语、中文、以及朝鲜语。" }, "FIXED": { "a": "(number; [decimals]; [no_commas])", @@ -408,16 +408,16 @@ "d": "从一个文本字符串的第一个字符开始返回指定个数的字符" }, "LEFTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract the substring from the specified string starting from the left character and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "基于所指定的字节数返回文本字符串中的第一个或前几个字符。适用于使用双字节字符集 (DBCS) 的语言。支持 DBCS 的语言包括日语、中文、以及朝鲜语。" }, "LEN": { "a": "(text)", "d": "返回文本字符串中的字符个数" }, "LENB": { - "a": "( string )", - "d": "Text and data function used to analyse the specified string and return the number of characters it contains and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text)", + "d": "返回文本字符串中用于代表字符的字节数。适用于使用双字节字符集 (DBCS) 的语言。支持 DBCS 的语言包括日语、中文、以及朝鲜语。" }, "LOWER": { "a": "(text)", @@ -428,8 +428,8 @@ "d": "从文本字符串中指定的起始位置起返回指定长度的字符" }, "MIDB": { - "a": "( string; start-pos; number-chars )", - "d": "Text and data function used to extract the characters from the specified string starting from any position and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; start_num; num_chars)", + "d": "根据您指定的字节数,返回文本字符串中从指定位置开始的特定数目的字符。适用于使用双字节字符集 (DBCS) 的语言。支持 DBCS 的语言包括日语、中文、以及朝鲜语。" }, "NUMBERVALUE": { "a": "(text; [decimal_separator]; [group_separator])", @@ -444,8 +444,8 @@ "d": "将一个字符串中的部分字符用另一个字符串替换" }, "REPLACEB": { - "a": "( string-1; start-pos; number-chars; string-2 )", - "d": "Text and data function used to replace a set of characters, based on the number of characters and the start position you specify, with a new set of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(old_text; start_num; num_chars; new_text)", + "d": "使用其他文本字符串并根据所指定的字节数替换某文本字符串中的部分文本。适用于使用双字节字符集 (DBCS) 的语言。支持 DBCS 的语言包括日语、中文、以及朝鲜语。" }, "REPT": { "a": "(text; number_times)", @@ -456,16 +456,16 @@ "d": "从一个文本字符串的最后一个字符开始返回指定个数的字符" }, "RIGHTB": { - "a": "( string; [number-chars] )", - "d": "Text and data function used to extract a substring from a string starting from the right-most character, based on the specified number of characters and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(text; [num_chars])", + "d": "根据所指定的字节数返回文本字符串中最后一个或多个字符。适用于使用双字节字符集 (DBCS) 的语言。支持 DBCS 的语言包括日语、中文、以及朝鲜语。" }, "SEARCH": { "a": "(find_text; within_text; [start_num])", "d": "返回一个指定字符或文本字符串在字符串中第一次出现的位置,从左到右查找(忽略大小写)" }, "SEARCHB": { - "a": "( string-1; string-2; [start-pos] )", - "d": "Text and data function used to return the location of the specified substring in a string and is intended for languages that use the double-byte character set (DBCS) like Japanese, Chinese, Korean etc." + "a": "(find_text; within_text; [start_num])", + "d": "函数可在第二个文本字符串中查找第一个文本字符串,并返回第一个文本字符串的起始位置的编号,该编号从第二个文本字符串的第一个字符算起。适用于使用双字节字符集 (DBCS) 的语言。支持 DBCS 的语言包括日语、中文、以及朝鲜语。" }, "SUBSTITUTE": { "a": "(text; old_text; new_text; [instance_num])", @@ -1348,8 +1348,8 @@ "d": "将罗马数字转换为阿拉伯数字" }, "ASC": { - "a": "( text )", - "d": "Text function for Double-byte character set (DBCS) languages, the function changes full-width (double-byte) characters to half-width (single-byte) characters" + "a": "(text)", + "d": "对于双字节字符集 (DBCS) 语言,该函数将全角(双字节)字符转换成半角(单字节)字符。" }, "ASIN": { "a": "(number)", @@ -1384,8 +1384,8 @@ "d": "将数字向上舍入到最接近的整数或最接近的指定基数的倍数" }, "CEILING.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "返回一个数字,该数字向上舍入为最接近的整数或最接近的有效位的倍数。" }, "COMBIN": { "a": "(number; number_chosen)", @@ -1428,8 +1428,8 @@ "d": "将弧度转换成角度" }, "ECMA.CEILING": { - "a": "( x; significance )", - "d": "Math and trigonometry function used to round the number up to the nearest multiple of significance" + "a": "(number; significance)", + "d": "将参数向上舍入为最接近的指定基数的倍数" }, "EVEN": { "a": "(number)", @@ -1452,8 +1452,8 @@ "d": "将参数向下舍入为最接近的指定基数的倍数" }, "FLOOR.PRECISE": { - "a": "( x; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded down to the nearest integer or to the nearest multiple of significance" + "a": "(number; [significance])", + "d": "返回一个数字,该数字向下舍入为最接近的整数或最接近的 significance 的倍数。" }, "FLOOR.MATH": { "a": "(number; [significance]; [mode])", @@ -1468,8 +1468,8 @@ "d": "将数值向下取整为最接近的整数" }, "ISO.CEILING": { - "a": "( number; [significance] )", - "d": "Math and trigonometry function used to return a number that is rounded up to the nearest integer or to the nearest multiple of significance regardless of the sign of the number. However, if the number or the significance is zero, zero is returned." + "a": "(number; [significance])", + "d": "返回一个数字,该数字向上舍入为最接近的整数或最接近的有效位的倍数。 无论该数字的符号如何,该数字都向上舍入。 但是,如果该数字或有效位为 0,则返回 0。" }, "LCM": { "a": "(number1; [number2]; ...)", @@ -1721,7 +1721,7 @@ }, "CELL": { "a": "(info_type; [reference])", - "d": "Information function used to return information about the formatting, location, or contents of a cell" + "d": "返回有关单元格的格式、位置或内容的信息。" }, "ERROR.TYPE": { "a": "(error_val)", diff --git a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm index 5c9e82056..24c38680a 100644 --- a/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm +++ b/apps/spreadsheeteditor/main/resources/help/en/UsageInstructions/InsertEquation.htm @@ -88,6 +88,12 @@
  • To delete an Accent, you can right-click on it and select the Remove accent character, Delete char or Remove bar option from the menu (the available options differ depending on the selected accent).
  • To delete a row or a column of a Matrix, you can right-click on the placeholder within the row/column you need to delete, select the Delete option from the menu, then select Delete Row/Column.
  • +

    Convert equations

    +

    If you open an existing document containing equations which were created with an old version of equation editor (for example, with MS Office versions before 2007), you need to convert these equations to the Office Math ML format to be able to edit them.

    +

    To convert an equation, double-click it. The warning window will appear:

    +

    Convert equation

    +

    To convert the selected equation only, click the Yes button in the warning window. To convert all equations in this document, check the Apply to all equations box and click Yes.

    +

    Once the equation is converted, you can edit it.

    \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/en/images/convertequation.png b/apps/spreadsheeteditor/main/resources/help/en/images/convertequation.png new file mode 100644 index 000000000..a97a5bea2 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/en/images/convertequation.png differ diff --git a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm index 430c05aed..77305fa76 100644 --- a/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm +++ b/apps/spreadsheeteditor/main/resources/help/ru/UsageInstructions/InsertEquation.htm @@ -90,6 +90,12 @@
  • Чтобы удалить Диакритический знак, можно щелкнуть по нему правой кнопкой мыши и выбрать из контекстного меню пункт Удалить диакритический знак, Удалить символ или Удалить черту (доступные опции отличаются в зависимости от выбранного диакритического знака).
  • Чтобы удалить строку или столбец Матрицы, можно щелкнуть правой кнопкой мыши по полю для заполнения внутри строки/столбца, который требуется удалить, выбрать из контекстного меню пункт Удалить, а затем - Удалить строку/столбец.
  • +

    Преобразование уравнений

    +

    Если вы открываете существующий документ с уравнениями, которые были созданы с помощью старой версии редактора уравнений (например, в версиях, предшествующих MS Office 2007), эти уравнения необходимо преобразовать в формат Office Math ML, чтобы иметь возможность их редактировать.

    +

    Чтобы преобразовать уравнение, дважды щелкните по нему. Откроется окно с предупреждением:

    +

    Преобразование уравнений

    +

    Чтобы преобразовать только выбранное уравнение, нажмите кнопку Да в окне предупреждения. Чтобы преобразовать все уравнения в документе, поставьте галочку Применить ко всем уравнениям и нажмите кнопку Да.

    +

    После преобразования уравнения вы сможете его редактировать.

    \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/help/ru/images/convertequation.png b/apps/spreadsheeteditor/main/resources/help/ru/images/convertequation.png new file mode 100644 index 000000000..3ad46ae4e Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/help/ru/images/convertequation.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/allow-edit-ranges.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/allow-edit-ranges.png new file mode 100644 index 000000000..5ca1006cf Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/allow-edit-ranges.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/protect-sheet.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/protect-sheet.png new file mode 100644 index 000000000..8635630cb Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/protect-sheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/protect-workbook.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/protect-workbook.png new file mode 100644 index 000000000..3a79456b7 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.25x/big/protect-workbook.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/allow-edit-ranges.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/allow-edit-ranges.png new file mode 100644 index 000000000..d4bfc9f5a Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/allow-edit-ranges.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/protect-sheet.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/protect-sheet.png new file mode 100644 index 000000000..ad5d81504 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/protect-sheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/protect-workbook.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/protect-workbook.png new file mode 100644 index 000000000..dac23614c Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.5x/big/protect-workbook.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/allow-edit-ranges.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/allow-edit-ranges.png new file mode 100644 index 000000000..713d290ca Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/allow-edit-ranges.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/protect-sheet.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/protect-sheet.png new file mode 100644 index 000000000..b6bdb51c3 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/protect-sheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/protect-workbook.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/protect-workbook.png new file mode 100644 index 000000000..c58415e06 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1.75x/big/protect-workbook.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/allow-edit-ranges.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/allow-edit-ranges.png new file mode 100644 index 000000000..8aac86372 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/allow-edit-ranges.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/protect-sheet.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/protect-sheet.png new file mode 100644 index 000000000..fb3caef38 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/protect-sheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/protect-workbook.png b/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/protect-workbook.png new file mode 100644 index 000000000..2995d1460 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/1x/big/protect-workbook.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/allow-edit-ranges.png b/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/allow-edit-ranges.png new file mode 100644 index 000000000..30706da3b Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/allow-edit-ranges.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/protect-sheet.png b/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/protect-sheet.png new file mode 100644 index 000000000..cc5e80c46 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/protect-sheet.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/protect-workbook.png b/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/protect-workbook.png new file mode 100644 index 000000000..b96369801 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/2x/big/protect-workbook.png differ diff --git a/apps/spreadsheeteditor/main/resources/less/app.less b/apps/spreadsheeteditor/main/resources/less/app.less index dccc48e5f..8244ff99a 100644 --- a/apps/spreadsheeteditor/main/resources/less/app.less +++ b/apps/spreadsheeteditor/main/resources/less/app.less @@ -121,6 +121,7 @@ @import "../../../../common/main/resources/less/winxp_fix.less"; @import "../../../../common/main/resources/less/symboltable.less"; @import "../../../../common/main/resources/less/hint-manager.less"; +@import "../../../../common/main/resources/less/history.less"; // App // -------------------------------------------------- diff --git a/apps/spreadsheeteditor/main/resources/less/layout.less b/apps/spreadsheeteditor/main/resources/less/layout.less index 54b5f4216..73e06aa0c 100644 --- a/apps/spreadsheeteditor/main/resources/less/layout.less +++ b/apps/spreadsheeteditor/main/resources/less/layout.less @@ -71,4 +71,11 @@ label { .tooltip-inner { max-width: none; } +} + +#left-panel-history { + left: 40px; + width: 300px; + height: 100%; + display: none; } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/less/leftmenu.less b/apps/spreadsheeteditor/main/resources/less/leftmenu.less index 778e54c5d..2cb71ac7a 100644 --- a/apps/spreadsheeteditor/main/resources/less/leftmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/leftmenu.less @@ -14,6 +14,12 @@ } } +.left-panel { + #left-panel-history { + height: 100%; + } +} + .left-menu-full-ct { width: 100%; height: 100%; @@ -258,7 +264,8 @@ h3 { margin: 0; font-size: 10pt; - color: #665; + color: @text-normal-ie; + color: @text-normal; font-weight: bold; padding: 0 0 10px 10px; white-space: nowrap; @@ -291,7 +298,8 @@ hr { margin: 0; border-bottom: none; - border-color: #e1e1e1; + border-top: @scaled-one-px-value-ie solid @border-divider-ie; + border-top: @scaled-one-px-value solid @border-divider; } .thumb-list { diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 9bf280f99..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -1,659 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Дадаць адказ", - "Common.Controllers.Collaboration.textCancel": "Скасаваць", - "Common.Controllers.Collaboration.textDeleteComment": "Выдаліць каментар", - "Common.Controllers.Collaboration.textDeleteReply": "Выдаліць адказ", - "Common.Controllers.Collaboration.textDone": "Завершана", - "Common.Controllers.Collaboration.textEdit": "Рэдагаваць", - "Common.Controllers.Collaboration.textEditUser": "Дакумент рэдагуецца карыстальнікамі:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Сапраўды хочаце выдаліць гэты каментар?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Сапраўды хочаце выдаліць гэты адказ?", - "Common.Controllers.Collaboration.textReopen": "Адкрыць зноў", - "Common.Controllers.Collaboration.textResolve": "Вырашыць", - "Common.Controllers.Collaboration.textYes": "Так", - "Common.UI.ThemeColorPalette.textCustomColors": "Адвольныя колеры", - "Common.UI.ThemeColorPalette.textStandartColors": "Стандартныя колеры", - "Common.UI.ThemeColorPalette.textThemeColors": "Колеры тэмы", - "Common.Utils.Metric.txtCm": "см", - "Common.Utils.Metric.txtPt": "пт", - "Common.Views.Collaboration.textAddReply": "Дадаць адказ", - "Common.Views.Collaboration.textBack": "Назад", - "Common.Views.Collaboration.textCancel": "Скасаваць", - "Common.Views.Collaboration.textCollaboration": "Сумесная праца", - "Common.Views.Collaboration.textDone": "Завершана", - "Common.Views.Collaboration.textEditReply": "Рэдагаваць адказ", - "Common.Views.Collaboration.textEditUsers": "Карыстальнікі", - "Common.Views.Collaboration.textEditСomment": "Рэдагаваць каментар", - "Common.Views.Collaboration.textNoComments": "Да гэтай табліцы няма каментароў", - "Common.Views.Collaboration.textСomments": "Каментары", - "SSE.Controllers.AddChart.txtDiagramTitle": "Загаловак дыяграмы", - "SSE.Controllers.AddChart.txtSeries": "Шэраг", - "SSE.Controllers.AddChart.txtXAxis": "Вось Х", - "SSE.Controllers.AddChart.txtYAxis": "Вось Y", - "SSE.Controllers.AddContainer.textChart": "Дыяграма", - "SSE.Controllers.AddContainer.textFormula": "Функцыя", - "SSE.Controllers.AddContainer.textImage": "Выява", - "SSE.Controllers.AddContainer.textOther": "Іншае", - "SSE.Controllers.AddContainer.textShape": "Фігура", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Увага", - "SSE.Controllers.AddLink.textInvalidRange": "ПАМЫЛКА! хібны дыяпазон ячэек", - "SSE.Controllers.AddLink.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Увага", - "SSE.Controllers.AddOther.textCancel": "Скасаваць", - "SSE.Controllers.AddOther.textContinue": "Працягнуць", - "SSE.Controllers.AddOther.textDelete": "Выдаліць", - "SSE.Controllers.AddOther.textDeleteDraft": "Сапраўды хочаце выдаліць чарнавік?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", - "SSE.Controllers.AddOther.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Аперацыі капіявання, выразання і ўстаўкі праз кантэкстнае меню будуць выконвацца толькі ў бягучым файле.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "Спасылка паказвае на ячэйку, якая не існуе. Выпраўце ці выдаліце спасылку.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Дадаць каментар", - "SSE.Controllers.DocumentHolder.menuAddLink": "Дадаць спасылку", - "SSE.Controllers.DocumentHolder.menuCell": "Ячэйка", - "SSE.Controllers.DocumentHolder.menuCopy": "Капіяваць", - "SSE.Controllers.DocumentHolder.menuCut": "Выразаць", - "SSE.Controllers.DocumentHolder.menuDelete": "Выдаліць", - "SSE.Controllers.DocumentHolder.menuEdit": "Рэдагаваць", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Замацаваць вобласці", - "SSE.Controllers.DocumentHolder.menuHide": "Схаваць", - "SSE.Controllers.DocumentHolder.menuMerge": "Аб’яднаць", - "SSE.Controllers.DocumentHolder.menuMore": "Больш", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Адкрыць спасылку", - "SSE.Controllers.DocumentHolder.menuPaste": "Уставіць", - "SSE.Controllers.DocumentHolder.menuShow": "Паказаць", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Адмацаваць вобласці", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Раз’яднаць", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Прыбраць перанос", - "SSE.Controllers.DocumentHolder.menuViewComment": "Праглядзець каментар", - "SSE.Controllers.DocumentHolder.menuWrap": "Перанос тэксту", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Увага", - "SSE.Controllers.DocumentHolder.sheetCancel": "Скасаваць", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Скапіяваць, выразаць, уставіць", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Больш не паказваць", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "У аб’яднанай ячэйцы застануцца толькі даныя з левай верхняй ячэйкі.
    Сапраўды хочаце працягнуць?", - "SSE.Controllers.EditCell.textAuto": "Аўта", - "SSE.Controllers.EditCell.textFonts": "Шрыфты", - "SSE.Controllers.EditCell.textPt": "пт", - "SSE.Controllers.EditChart.errorMaxRows": "ПАМЫЛКА! максімальная колькасць радкоў даных адной дыяграмы - 255.", - "SSE.Controllers.EditChart.errorStockChart": "Хібны парадак радкоў. Каб стварыць біржавую дыяграму размясціце даныя ў наступным парадку:
    кошт адкрыцця, максімальны кошт, мінімальны кошт, кошт закрыцця.", - "SSE.Controllers.EditChart.textAuto": "Аўта", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Паміж падзеламі", - "SSE.Controllers.EditChart.textBillions": "Мільярды", - "SSE.Controllers.EditChart.textBottom": "Знізу", - "SSE.Controllers.EditChart.textCenter": "Па цэнтры", - "SSE.Controllers.EditChart.textCross": "На скрыжаванні", - "SSE.Controllers.EditChart.textCustom": "Адвольны", - "SSE.Controllers.EditChart.textFit": "Па шырыні", - "SSE.Controllers.EditChart.textFixed": "Фіксаванае", - "SSE.Controllers.EditChart.textHigh": "Вышэй", - "SSE.Controllers.EditChart.textHorizontal": "Гарызантальна", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Сотні", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "Унутры", - "SSE.Controllers.EditChart.textInnerBottom": "Унутры ўнізе", - "SSE.Controllers.EditChart.textInnerTop": "Унутры зверху", - "SSE.Controllers.EditChart.textLeft": "Злева", - "SSE.Controllers.EditChart.textLeftOverlay": "Накладанне злева", - "SSE.Controllers.EditChart.textLow": "Ніжэй", - "SSE.Controllers.EditChart.textManual": "Уласнаручна", - "SSE.Controllers.EditChart.textMaxValue": "Максімальнае значэнне", - "SSE.Controllers.EditChart.textMillions": "Мільёны", - "SSE.Controllers.EditChart.textMinValue": "Мінімальнае значэнне", - "SSE.Controllers.EditChart.textNextToAxis": "Побач з воссю", - "SSE.Controllers.EditChart.textNone": "Няма", - "SSE.Controllers.EditChart.textNoOverlay": "Без накладання", - "SSE.Controllers.EditChart.textOnTickMarks": "Падзелы", - "SSE.Controllers.EditChart.textOut": "Звонку", - "SSE.Controllers.EditChart.textOuterTop": "Звонку зверху", - "SSE.Controllers.EditChart.textOverlay": "Накладанне", - "SSE.Controllers.EditChart.textRight": "Справа", - "SSE.Controllers.EditChart.textRightOverlay": "Накладанне справа", - "SSE.Controllers.EditChart.textRotated": "Павернута", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Тысячы", - "SSE.Controllers.EditChart.textTop": "Уверсе", - "SSE.Controllers.EditChart.textTrillions": "Трыльёны", - "SSE.Controllers.EditChart.textValue": "Значэнне", - "SSE.Controllers.EditContainer.textCell": "Ячэйка", - "SSE.Controllers.EditContainer.textChart": "Дыяграма", - "SSE.Controllers.EditContainer.textHyperlink": "Гіперспасылка", - "SSE.Controllers.EditContainer.textImage": "Выява", - "SSE.Controllers.EditContainer.textSettings": "Налады", - "SSE.Controllers.EditContainer.textShape": "Фігура", - "SSE.Controllers.EditContainer.textTable": "Табліца", - "SSE.Controllers.EditContainer.textText": "Тэкст", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Увага", - "SSE.Controllers.EditHyperlink.textDefault": "Абраны дыяпазон", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Вонкавая спасылка", - "SSE.Controllers.EditHyperlink.textInternalLink": "Унутраны дыяпазон даных", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Хібны дыяпазон ячэек", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Гэтае поле мусіць быць URL-адрасам фармату \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Увага", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Неабходна вызначыць URL-адрас выявы.", - "SSE.Controllers.EditImage.txtNotUrl": "Гэтае поле павінна быць URL-адрасам фармату \"http://www.example.com\"", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Пустыя}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Неабходна абраць прынамсі адно значэнне", - "SSE.Controllers.FilterOptions.textErrorTitle": "Увага", - "SSE.Controllers.FilterOptions.textSelectAll": "Вылучыць усе", - "SSE.Controllers.Main.advCSVOptions": "Абраць параметры CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Увядзіце ваш пароль:", - "SSE.Controllers.Main.advDRMOptions": "Абаронены файл", - "SSE.Controllers.Main.advDRMPassword": "Пароль", - "SSE.Controllers.Main.applyChangesTextText": "Загрузка даных…", - "SSE.Controllers.Main.applyChangesTitleText": "Загрузка даных", - "SSE.Controllers.Main.closeButtonText": "Закрыць файл", - "SSE.Controllers.Main.convertationTimeoutText": "Час чакання пераўтварэння сышоў.", - "SSE.Controllers.Main.criticalErrorExtText": "Націсніце \"Добра\", каб вярнуцца да спіса дакументаў.", - "SSE.Controllers.Main.criticalErrorTitle": "Памылка", - "SSE.Controllers.Main.downloadErrorText": "Не атрымалася спампаваць.", - "SSE.Controllers.Main.downloadMergeText": "Спампоўванне...", - "SSE.Controllers.Main.downloadMergeTitle": "Спампоўванне", - "SSE.Controllers.Main.downloadTextText": "Спампоўванне табліцы…", - "SSE.Controllers.Main.downloadTitleText": "Спампоўванне табліцы", - "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.errorChangeArray": "Немагчыма змяніць частку масіву.", - "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.errorDefaultMessage": "Код памылкі: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Падчас працы з дакументам адбылася памылка.
    Выкарыстайце \"Спампаваць\", каб захаваць рэзервовую копію файла на цвёрдым дыску камп’ютара.", - "SSE.Controllers.Main.errorFilePassProtect": "Файл абаронены паролем, яго немагчыма адкрыць.", - "SSE.Controllers.Main.errorFileRequest": "Вонкавая памылка.
    Памылка запыту файла. Калі памылка паўтараецца, калі ласка, звярніцеся ў службу падтрымкі.", - "SSE.Controllers.Main.errorFileSizeExceed": "Памер файла перавышае ліміт, вызначаны для вашага сервера.
    Звярніцеся да адміністратара сервера дакументаў за дадатковымі звесткамі.", - "SSE.Controllers.Main.errorFileVKey": "Вонкавая памылка.
    Хібны ключ бяспекі. Калі памылка паўтараецца, калі ласка, звярніцеся ў службу падтрымкі.", - "SSE.Controllers.Main.errorFillRange": "Немагчыма запоўніць абраны дыяпазон ячэек.
    Усе аб’яднаныя ячэйкі мусяць быць аднаго памеру.", - "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.errorInvalidRef": "Увядзіце прыдатную назву для дыяпазону альбо прыдатную спасылку для пераходу.", - "SSE.Controllers.Main.errorKeyEncrypt": "Невядомы дэскрыптар ключа", - "SSE.Controllers.Main.errorKeyExpire": "Тэрмін дзеяння дэскрыптара ключа сышоў", - "SSE.Controllers.Main.errorLockedAll": "Аперацыя не можа быць выкананая, бо аркуш заблакаваны іншым карыстальнікам.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "На дадзены момант немагчыма змяніць назву аркуша, бо яе змяняе іншы карыстальнік", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Не атрымалася загрузіць. Абярыце іншы файл.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Не атрымалася аб’яднаць.", - "SSE.Controllers.Main.errorMaxPoints": "Максімальная колькасць кропак у шэрагу для дыяграмы - 4096.", - "SSE.Controllers.Main.errorMoveRange": "Немагчыма змяніць частку аб’яднанай ячэйкі", - "SSE.Controllers.Main.errorMultiCellFormula": "У табліцах забаронена выкарыстанне формул масіву з некалькімі ячэйкамі.", - "SSE.Controllers.Main.errorOpensource": "Выкарыстоўваючы бясплатную версію вы можаце адкрываць дакументы толькі для прагляду. Для доступу да мабільных сеціўных рэдактараў патрабуецца камерцыйная ліцэнзія.", - "SSE.Controllers.Main.errorOpenWarning": "Даўжыня адной з формул у файле перасягнула 8192 сімвалы.
    Формула была выдаленая.", - "SSE.Controllers.Main.errorOperandExpected": "Сінтаксіс уведзенай функцыі хібны. Праверце, ці не мінутая адна з дужак.", - "SSE.Controllers.Main.errorPasteMaxRange": "Вобласці капіявання і ўстаўкі адрозніваюцца.
    Каб уставіць скапіяваныя ячэйкі вылучыце вобласць таго ж памеру альбо пстрыкніце па першай ячэйцы ў радку.", - "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.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.leavePageText": "У дакуменце засталіся незахаваныя змены. Націсніце \"Застацца на старонцы\", каб дачакацца аўтазахавання дакумента. Націсніце \"Сысці са старонкі\", каб адкінуць змены.", - "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.loadingDocumentTextText": "Загрузка табліцы…", - "SSE.Controllers.Main.loadingDocumentTitleText": "Загрузка табліцы", - "SSE.Controllers.Main.mailMergeLoadFileText": "Загрузка крыніцы даных…", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Загрузка крыніцы даных", - "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.savePreparingText": "Падрыхтоўка да захавання", - "SSE.Controllers.Main.savePreparingTitle": "Падрыхтоўка да захавання. Калі ласка, пачакайце…", - "SSE.Controllers.Main.saveTextText": "Захаванне дакумента…", - "SSE.Controllers.Main.saveTitleText": "Захаванне дакумента", - "SSE.Controllers.Main.scriptLoadError": "Занадта павольнае злучэнне, не ўсе кампаненты атрымалася загрузіць. Калі ласка, абнавіце старонку.", - "SSE.Controllers.Main.sendMergeText": "Адпраўленне вынікаў аб’яднання…", - "SSE.Controllers.Main.sendMergeTitle": "Адпраўленне вынікаў аб’яднання", - "SSE.Controllers.Main.textAnonymous": "Ананімны карыстальнік", - "SSE.Controllers.Main.textBack": "Назад", - "SSE.Controllers.Main.textBuyNow": "Наведаць сайт", - "SSE.Controllers.Main.textCancel": "Скасаваць", - "SSE.Controllers.Main.textClose": "Закрыць", - "SSE.Controllers.Main.textContactUs": "Аддзел продажаў", - "SSE.Controllers.Main.textCustomLoader": "Звярніце ўвагу, што па ўмовах ліцэнзіі вы не можаце змяняць экран загрузкі.
    Калі ласка, звярніцеся ў аддзел продажу.", - "SSE.Controllers.Main.textDone": "Завершана", - "SSE.Controllers.Main.textGuest": "Госць", - "SSE.Controllers.Main.textHasMacros": "Файл змяшчае макрасы з аўтазапускам.
    Хочаце запусціць макрасы?", - "SSE.Controllers.Main.textLoadingDocument": "Загрузка табліцы", - "SSE.Controllers.Main.textNo": "Не", - "SSE.Controllers.Main.textNoLicenseTitle": "Ліцэнзійнае абмежаванне", - "SSE.Controllers.Main.textOK": "Добра", - "SSE.Controllers.Main.textPaidFeature": "Платная функцыя", - "SSE.Controllers.Main.textPassword": "Пароль", - "SSE.Controllers.Main.textPreloader": "Загрузка…", - "SSE.Controllers.Main.textRemember": "Запомніць мой выбар", - "SSE.Controllers.Main.textShape": "Фігура", - "SSE.Controllers.Main.textStrict": "Строгі рэжым", - "SSE.Controllers.Main.textTryUndoRedo": "Функцыі скасавання і паўтору дзеянняў выключаныя ў хуткім рэжыме сумеснага рэдагавання.
    Націсніце кнопку \"Строгі рэжым\", каб пераключыцца ў строгі рэжым сумеснага рэдагавання, каб рэдагаваць файл без іншых карыстальнікаў і адпраўляць змены толькі пасля іх захавання. Пераключацца паміж рэжымамі сумеснага рэдагавання можна з дапамогай дадатковых налад рэдактара.", - "SSE.Controllers.Main.textUsername": "Імя карыстальніка", - "SSE.Controllers.Main.textYes": "Так", - "SSE.Controllers.Main.titleLicenseExp": "Тэрмін дзеяння ліцэнзіі сышоў", - "SSE.Controllers.Main.titleServerVersion": "Рэдактар абноўлены", - "SSE.Controllers.Main.titleUpdateVersion": "Версія змянілася", - "SSE.Controllers.Main.txtAccent": "Акцэнт", - "SSE.Controllers.Main.txtArt": "Увядзіце ваш тэкст", - "SSE.Controllers.Main.txtBasicShapes": "Асноўныя фігуры", - "SSE.Controllers.Main.txtButtons": "Кнопкі", - "SSE.Controllers.Main.txtCallouts": "Удакладненні", - "SSE.Controllers.Main.txtCharts": "Схемы", - "SSE.Controllers.Main.txtDelimiter": "Падзяляльнік", - "SSE.Controllers.Main.txtDiagramTitle": "Загаловак дыяграмы", - "SSE.Controllers.Main.txtEditingMode": "Актывацыя рэжыму рэдагавання…", - "SSE.Controllers.Main.txtEncoding": "Кадаванне", - "SSE.Controllers.Main.txtErrorLoadHistory": "Не атрымалася загрузіць гісторыю", - "SSE.Controllers.Main.txtFiguredArrows": "Фігурныя стрэлкі", - "SSE.Controllers.Main.txtLines": "Лініі", - "SSE.Controllers.Main.txtMath": "Матэматычныя знакі", - "SSE.Controllers.Main.txtProtected": "Калі вы ўвядзеце пароль і адкрыеце файл, бягучы пароль да файла скінецца", - "SSE.Controllers.Main.txtRectangles": "Прамавугольнікі", - "SSE.Controllers.Main.txtSeries": "Шэраг", - "SSE.Controllers.Main.txtSpace": "Прагал", - "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.txtXAxis": "Вось Х", - "SSE.Controllers.Main.txtYAxis": "Вось Y", - "SSE.Controllers.Main.unknownErrorText": "Невядомая памылка.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браўзер не падтрымліваецца.", - "SSE.Controllers.Main.uploadImageExtMessage": "Невядомы фармат выявы.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Выяў не запампавана.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Перасягнуты максімальны памер выявы", - "SSE.Controllers.Main.uploadImageTextText": "Запампоўванне выявы…", - "SSE.Controllers.Main.uploadImageTitleText": "Запампоўванне выявы", - "SSE.Controllers.Main.waitText": "Калі ласка, пачакайце...", - "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.Гэты дакумент будзе адкрыты для прагляду.
    Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Вы дасягнулі абмежавання па адначасовай колькасці падлучэнняў да рэдактараў %1.
    Напішыце ў аддзел продажу %1,каб абмеркаваць асабістыя ўмовы ліцэнзіявання.", - "SSE.Controllers.Main.warnProcessRightsChange": "Вам адмоўлена ў правах на рэдагаванне гэтага файла.", - "SSE.Controllers.Search.textNoTextFound": "Тэкст не знойдзены", - "SSE.Controllers.Search.textReplaceAll": "Замяніць усе", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Увага", - "SSE.Controllers.Settings.txtDe": "Нямецкая", - "SSE.Controllers.Settings.txtEn": "Англійская", - "SSE.Controllers.Settings.txtEs": "Іспанская", - "SSE.Controllers.Settings.txtFr": "Французская", - "SSE.Controllers.Settings.txtIt": "Італьянская", - "SSE.Controllers.Settings.txtPl": "Польская", - "SSE.Controllers.Settings.txtRu": "Расійская", - "SSE.Controllers.Settings.warnDownloadAs": "Калі вы працягнеце захаванне ў гэты фармат, усе функцыі, апроч тэксту страцяцца.
    Сапраўды хочаце працягнуць?", - "SSE.Controllers.Statusbar.cancelButtonText": "Скасаваць", - "SSE.Controllers.Statusbar.errNameExists": "Аркуш з такой назвай ужо існуе.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Назва не можа змяшчаць сімвалы: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Назва аркуша не можа быць пустой", - "SSE.Controllers.Statusbar.errorLastSheet": "Працоўная кніга мусіць утрымліваць не менш за адзін бачны аркуш.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Не атрымалася выдаліць аркуш.", - "SSE.Controllers.Statusbar.menuDelete": "Выдаліць", - "SSE.Controllers.Statusbar.menuDuplicate": "Дубляваць", - "SSE.Controllers.Statusbar.menuHide": "Схаваць", - "SSE.Controllers.Statusbar.menuMore": "Больш", - "SSE.Controllers.Statusbar.menuRename": "Змяніць назву", - "SSE.Controllers.Statusbar.menuUnhide": "Паказаць", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Увага", - "SSE.Controllers.Statusbar.strRenameSheet": "Змяніць назву аркуша", - "SSE.Controllers.Statusbar.strSheet": "Аркуш", - "SSE.Controllers.Statusbar.strSheetName": "Назва аркуша", - "SSE.Controllers.Statusbar.textExternalLink": "Вонкавая спасылка", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Аркуш можа змяшчаць даныя. Працягнуць аперацыю?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "У дакуменце засталіся незахаваныя змены. Націсніце \"Застацца на старонцы\", каб дачакацца аўтазахавання дакумента. Націсніце \"Сысці са старонкі\", каб адкінуць змены.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Вы выходзіце з праграмы", - "SSE.Controllers.Toolbar.leaveButtonText": "Сысці са старонкі", - "SSE.Controllers.Toolbar.stayButtonText": "Застацца на старонцы", - "SSE.Views.AddFunction.sCatDateAndTime": "Дата і час", - "SSE.Views.AddFunction.sCatEngineering": "Інжынерныя", - "SSE.Views.AddFunction.sCatFinancial": "Фінансавыя", - "SSE.Views.AddFunction.sCatInformation": "Інфармацыйныя", - "SSE.Views.AddFunction.sCatLogical": "Лагічныя", - "SSE.Views.AddFunction.sCatLookupAndReference": "Агляд і спасылкі", - "SSE.Views.AddFunction.sCatMathematic": "Матэматычныя", - "SSE.Views.AddFunction.sCatStatistical": "Статыстычныя", - "SSE.Views.AddFunction.sCatTextAndData": "Тэкст і даныя", - "SSE.Views.AddFunction.textBack": "Назад", - "SSE.Views.AddFunction.textGroups": "Катэгорыі", - "SSE.Views.AddLink.textAddLink": "Дадаць спасылку", - "SSE.Views.AddLink.textAddress": "Адрас", - "SSE.Views.AddLink.textDisplay": "Паказваць", - "SSE.Views.AddLink.textExternalLink": "Вонкавая спасылка", - "SSE.Views.AddLink.textInsert": "Уставіць", - "SSE.Views.AddLink.textInternalLink": "Унутраны дыяпазон даных", - "SSE.Views.AddLink.textLink": "Спасылка", - "SSE.Views.AddLink.textLinkType": "Тып спасылкі", - "SSE.Views.AddLink.textRange": "Дыяпазон", - "SSE.Views.AddLink.textRequired": "Патрабуецца", - "SSE.Views.AddLink.textSelectedRange": "Абраны дыяпазон", - "SSE.Views.AddLink.textSheet": "Аркуш", - "SSE.Views.AddLink.textTip": "Падказка", - "SSE.Views.AddOther.textAddComment": "Дадаць каментар", - "SSE.Views.AddOther.textAddress": "Адрас", - "SSE.Views.AddOther.textBack": "Назад", - "SSE.Views.AddOther.textComment": "Каментар", - "SSE.Views.AddOther.textDone": "Завершана", - "SSE.Views.AddOther.textFilter": "Фільтр", - "SSE.Views.AddOther.textFromLibrary": "Выява з бібліятэкі", - "SSE.Views.AddOther.textFromURL": "Выява па URL", - "SSE.Views.AddOther.textImageURL": "URL выявы", - "SSE.Views.AddOther.textInsert": "Уставіць", - "SSE.Views.AddOther.textInsertImage": "Уставіць выяву", - "SSE.Views.AddOther.textLink": "Спасылка", - "SSE.Views.AddOther.textLinkSettings": "Налады спасылкі", - "SSE.Views.AddOther.textSort": "Парадкаванне і фільтрацыя", - "SSE.Views.EditCell.textAccounting": "Фінансавы", - "SSE.Views.EditCell.textAddCustomColor": "Дадаць адвольны колер", - "SSE.Views.EditCell.textAlignBottom": "Выраўнаваць па ніжняму краю", - "SSE.Views.EditCell.textAlignCenter": "Выраўнаваць па цэнтры", - "SSE.Views.EditCell.textAlignLeft": "Выраўнаваць па леваму краю", - "SSE.Views.EditCell.textAlignMiddle": "Па сярэдзіне", - "SSE.Views.EditCell.textAlignRight": "Выраўнаваць па праваму краю", - "SSE.Views.EditCell.textAlignTop": "Выраўнаваць па верхняму краю", - "SSE.Views.EditCell.textAllBorders": "Усе межы", - "SSE.Views.EditCell.textAngleClockwise": "Тэкст па гадзіннікавай стрэлцы", - "SSE.Views.EditCell.textAngleCounterclockwise": "Тэкст супраць гадзіннікавай стрэлкі", - "SSE.Views.EditCell.textBack": "Назад", - "SSE.Views.EditCell.textBorderStyle": "Стыль межаў", - "SSE.Views.EditCell.textBottomBorder": "Ніжняя мяжа", - "SSE.Views.EditCell.textCellStyle": "Стылі ячэек", - "SSE.Views.EditCell.textCharacterBold": "Т", - "SSE.Views.EditCell.textCharacterItalic": "К", - "SSE.Views.EditCell.textCharacterUnderline": "П", - "SSE.Views.EditCell.textColor": "Колер", - "SSE.Views.EditCell.textCurrency": "Грашовы", - "SSE.Views.EditCell.textCustomColor": "Адвольны колер", - "SSE.Views.EditCell.textDate": "Дата", - "SSE.Views.EditCell.textDiagDownBorder": "Дыяганальная мяжа зверху ўніз", - "SSE.Views.EditCell.textDiagUpBorder": "Дыяганальная мяжа знізу ўверх", - "SSE.Views.EditCell.textDollar": "Даляр", - "SSE.Views.EditCell.textEuro": "Еўра", - "SSE.Views.EditCell.textFillColor": "Колер запаўнення", - "SSE.Views.EditCell.textFonts": "Шрыфты", - "SSE.Views.EditCell.textFormat": "Фармат", - "SSE.Views.EditCell.textGeneral": "Агульны", - "SSE.Views.EditCell.textHorizontalText": "Гарызантальны тэкст", - "SSE.Views.EditCell.textInBorders": "Унутраныя межы", - "SSE.Views.EditCell.textInHorBorder": "Унутраная гарызантальная мяжа", - "SSE.Views.EditCell.textInteger": "Цэлы лік", - "SSE.Views.EditCell.textInVertBorder": "Унутраная вертыкальная мяжа", - "SSE.Views.EditCell.textJustified": "Па шырыні", - "SSE.Views.EditCell.textLeftBorder": "Левая мяжа", - "SSE.Views.EditCell.textMedium": "Сярэднія", - "SSE.Views.EditCell.textNoBorder": "Без межаў", - "SSE.Views.EditCell.textNumber": "Лічбавы", - "SSE.Views.EditCell.textPercentage": "У адсотках", - "SSE.Views.EditCell.textPound": "Фунт", - "SSE.Views.EditCell.textRightBorder": "Правая мяжа", - "SSE.Views.EditCell.textRotateTextDown": "Павярнуць тэкст уніз", - "SSE.Views.EditCell.textRotateTextUp": "Павярнуць тэкст уверх", - "SSE.Views.EditCell.textRouble": "Рубель", - "SSE.Views.EditCell.textScientific": "Навуковы", - "SSE.Views.EditCell.textSize": "Памер", - "SSE.Views.EditCell.textText": "Тэкст", - "SSE.Views.EditCell.textTextColor": "Колер тэксту", - "SSE.Views.EditCell.textTextFormat": "Фармат тэксту", - "SSE.Views.EditCell.textTextOrientation": "Арыентацыя тэксту", - "SSE.Views.EditCell.textThick": "Тоўстыя", - "SSE.Views.EditCell.textThin": "Тонкія", - "SSE.Views.EditCell.textTime": "Час", - "SSE.Views.EditCell.textTopBorder": "Верхняя мяжа", - "SSE.Views.EditCell.textVerticalText": "Вертыкальны тэкст ", - "SSE.Views.EditCell.textWrapText": "Перанос тэксту", - "SSE.Views.EditCell.textYen": "Ена", - "SSE.Views.EditChart.textAddCustomColor": "Дадаць адвольны колер", - "SSE.Views.EditChart.textAuto": "Аўта", - "SSE.Views.EditChart.textAxisCrosses": "Перасячэнне з воссю", - "SSE.Views.EditChart.textAxisOptions": "Параметры восі", - "SSE.Views.EditChart.textAxisPosition": "Пазіцыя восі", - "SSE.Views.EditChart.textAxisTitle": "Назва восі", - "SSE.Views.EditChart.textBack": "Назад", - "SSE.Views.EditChart.textBackward": "Перамясціць назад", - "SSE.Views.EditChart.textBorder": "Мяжа", - "SSE.Views.EditChart.textBottom": "Знізу", - "SSE.Views.EditChart.textChart": "Дыяграма", - "SSE.Views.EditChart.textChartTitle": "Загаловак дыяграмы", - "SSE.Views.EditChart.textColor": "Колер", - "SSE.Views.EditChart.textCrossesValue": "Значэнне", - "SSE.Views.EditChart.textCustomColor": "Адвольны колер", - "SSE.Views.EditChart.textDataLabels": "Адмеціны даных", - "SSE.Views.EditChart.textDesign": "Выгляд", - "SSE.Views.EditChart.textDisplayUnits": "Адзінкі адлюстравання", - "SSE.Views.EditChart.textFill": "Заліўка", - "SSE.Views.EditChart.textForward": "Перамясціць уперад", - "SSE.Views.EditChart.textGridlines": "Лініі сеткі", - "SSE.Views.EditChart.textHorAxis": "Гарызантальная вось", - "SSE.Views.EditChart.textHorizontal": "Гарызантальна", - "SSE.Views.EditChart.textLabelOptions": "Параметры адмеціны", - "SSE.Views.EditChart.textLabelPos": "Пазіцыя адмеціны", - "SSE.Views.EditChart.textLayout": "Макет", - "SSE.Views.EditChart.textLeft": "Злева", - "SSE.Views.EditChart.textLeftOverlay": "Накладанне злева", - "SSE.Views.EditChart.textLegend": "Легенда", - "SSE.Views.EditChart.textMajor": "Асноўныя", - "SSE.Views.EditChart.textMajorMinor": "Асноўныя і дадатковыя", - "SSE.Views.EditChart.textMajorType": "Асноўны тып", - "SSE.Views.EditChart.textMaxValue": "Максімальнае значэнне", - "SSE.Views.EditChart.textMinor": "Дадатковыя", - "SSE.Views.EditChart.textMinorType": "Дадатковы тып", - "SSE.Views.EditChart.textMinValue": "Мінімальнае значэнне", - "SSE.Views.EditChart.textNone": "Няма", - "SSE.Views.EditChart.textNoOverlay": "Без накладання", - "SSE.Views.EditChart.textOverlay": "Накладанне", - "SSE.Views.EditChart.textRemoveChart": "Выдаліць дыяграму", - "SSE.Views.EditChart.textReorder": "Перапарадкаваць", - "SSE.Views.EditChart.textRight": "Справа", - "SSE.Views.EditChart.textRightOverlay": "Накладанне справа", - "SSE.Views.EditChart.textRotated": "Павернута", - "SSE.Views.EditChart.textSize": "Памер", - "SSE.Views.EditChart.textStyle": "Стыль", - "SSE.Views.EditChart.textTickOptions": "Параметры падзелаў", - "SSE.Views.EditChart.textToBackground": "Перамясціць у фон", - "SSE.Views.EditChart.textToForeground": "Перанесці на пярэдні план", - "SSE.Views.EditChart.textTop": "Уверсе", - "SSE.Views.EditChart.textType": "Тып", - "SSE.Views.EditChart.textValReverseOrder": " Значэнне ў адваротным парадку", - "SSE.Views.EditChart.textVerAxis": "Вертыкальная вось", - "SSE.Views.EditChart.textVertical": "Вертыкальна", - "SSE.Views.EditHyperlink.textBack": "Назад", - "SSE.Views.EditHyperlink.textDisplay": "Паказваць", - "SSE.Views.EditHyperlink.textEditLink": "Рэдагаваць спасылку", - "SSE.Views.EditHyperlink.textExternalLink": "Вонкавая спасылка", - "SSE.Views.EditHyperlink.textInternalLink": "Унутраны дыяпазон даных", - "SSE.Views.EditHyperlink.textLink": "Спасылка", - "SSE.Views.EditHyperlink.textLinkType": "Тып спасылкі", - "SSE.Views.EditHyperlink.textRange": "Дыяпазон", - "SSE.Views.EditHyperlink.textRemoveLink": "Выдаліць спасылку", - "SSE.Views.EditHyperlink.textScreenTip": "Падказка", - "SSE.Views.EditHyperlink.textSheet": "Аркуш", - "SSE.Views.EditImage.textAddress": "Адрас", - "SSE.Views.EditImage.textBack": "Назад", - "SSE.Views.EditImage.textBackward": "Перамясціць назад", - "SSE.Views.EditImage.textDefault": "Актуальны памер", - "SSE.Views.EditImage.textForward": "Перамясціць уперад", - "SSE.Views.EditImage.textFromLibrary": "Выява з бібліятэкі", - "SSE.Views.EditImage.textFromURL": "Выява па URL", - "SSE.Views.EditImage.textImageURL": "URL выявы", - "SSE.Views.EditImage.textLinkSettings": "Налады спасылкі", - "SSE.Views.EditImage.textRemove": "Выдаліць выяву", - "SSE.Views.EditImage.textReorder": "Перапарадкаваць", - "SSE.Views.EditImage.textReplace": "Замяніць", - "SSE.Views.EditImage.textReplaceImg": "Замяніць выяву", - "SSE.Views.EditImage.textToBackground": "Перамясціць у фон", - "SSE.Views.EditImage.textToForeground": "Перанесці на пярэдні план", - "SSE.Views.EditShape.textAddCustomColor": "Дадаць адвольны колер", - "SSE.Views.EditShape.textBack": "Назад", - "SSE.Views.EditShape.textBackward": "Перамясціць назад", - "SSE.Views.EditShape.textBorder": "Мяжа", - "SSE.Views.EditShape.textColor": "Колер", - "SSE.Views.EditShape.textCustomColor": "Адвольны колер", - "SSE.Views.EditShape.textEffects": "Эфекты", - "SSE.Views.EditShape.textFill": "Заліўка", - "SSE.Views.EditShape.textForward": "Перамясціць уперад", - "SSE.Views.EditShape.textOpacity": "Непразрыстасць", - "SSE.Views.EditShape.textRemoveShape": "Выдаліць фігуру", - "SSE.Views.EditShape.textReorder": "Перапарадкаваць", - "SSE.Views.EditShape.textReplace": "Замяніць", - "SSE.Views.EditShape.textSize": "Памер", - "SSE.Views.EditShape.textStyle": "Стыль", - "SSE.Views.EditShape.textToBackground": "Перамясціць у фон", - "SSE.Views.EditShape.textToForeground": "Перанесці на пярэдні план", - "SSE.Views.EditText.textAddCustomColor": "Дадаць адвольны колер", - "SSE.Views.EditText.textBack": "Назад", - "SSE.Views.EditText.textCharacterBold": "Т", - "SSE.Views.EditText.textCharacterItalic": "К", - "SSE.Views.EditText.textCharacterUnderline": "П", - "SSE.Views.EditText.textCustomColor": "Адвольны колер", - "SSE.Views.EditText.textFillColor": "Колер запаўнення", - "SSE.Views.EditText.textFonts": "Шрыфты", - "SSE.Views.EditText.textSize": "Памер", - "SSE.Views.EditText.textTextColor": "Колер тэксту", - "SSE.Views.FilterOptions.textClearFilter": "Ачысціць фільтр", - "SSE.Views.FilterOptions.textDeleteFilter": "Выдаліць фільтр", - "SSE.Views.FilterOptions.textFilter": "Параметры фільтра", - "SSE.Views.Search.textByColumns": "Па слупках", - "SSE.Views.Search.textByRows": "Па радках", - "SSE.Views.Search.textDone": "Завершана", - "SSE.Views.Search.textFind": "Пошук", - "SSE.Views.Search.textFindAndReplace": "Пошук і замена", - "SSE.Views.Search.textFormulas": "Формулы", - "SSE.Views.Search.textHighlightRes": "Падсвятліць вынікі", - "SSE.Views.Search.textLookIn": "Шукаць у", - "SSE.Views.Search.textMatchCase": "Зважаць на рэгістр", - "SSE.Views.Search.textMatchCell": "Супастаўленне ячэек", - "SSE.Views.Search.textReplace": "Замяніць", - "SSE.Views.Search.textSearch": "Пошук", - "SSE.Views.Search.textSearchBy": "Пошук", - "SSE.Views.Search.textSearchIn": "Месца пошуку", - "SSE.Views.Search.textSheet": "Аркуш", - "SSE.Views.Search.textValues": "Значэнні", - "SSE.Views.Search.textWorkbook": "Кніга", - "SSE.Views.Settings.textAbout": "Пра праграму", - "SSE.Views.Settings.textAddress": "адрас", - "SSE.Views.Settings.textApplication": "Праграма", - "SSE.Views.Settings.textApplicationSettings": "Налады праграмы", - "SSE.Views.Settings.textAuthor": "Аўтар", - "SSE.Views.Settings.textBack": "Назад", - "SSE.Views.Settings.textBottom": "Знізу", - "SSE.Views.Settings.textCentimeter": "Сантыметр", - "SSE.Views.Settings.textCollaboration": "Сумесная праца", - "SSE.Views.Settings.textColorSchemes": "Каляровыя схемы", - "SSE.Views.Settings.textComment": "Каментар", - "SSE.Views.Settings.textCommentingDisplay": "Адлюстраванне каментароў", - "SSE.Views.Settings.textCreated": "Створаны", - "SSE.Views.Settings.textCreateDate": "Дата стварэння", - "SSE.Views.Settings.textCustom": "Адвольны", - "SSE.Views.Settings.textCustomSize": "Адвольны памер", - "SSE.Views.Settings.textDisableAll": "Адключыць усе", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Адключыць усе макрасы з апавяшчэннем", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Адключыць усе макрасы без апавяшчэння", - "SSE.Views.Settings.textDisplayComments": "Каментары", - "SSE.Views.Settings.textDisplayResolvedComments": "Вырашаныя каментары", - "SSE.Views.Settings.textDocInfo": "Інфармацыя аб табліцы", - "SSE.Views.Settings.textDocTitle": "Назва табліцы", - "SSE.Views.Settings.textDone": "Завершана", - "SSE.Views.Settings.textDownload": "Спампаваць", - "SSE.Views.Settings.textDownloadAs": "Спампаваць як...", - "SSE.Views.Settings.textEditDoc": "Рэдагаваць дакумент", - "SSE.Views.Settings.textEmail": "электронная пошта", - "SSE.Views.Settings.textEnableAll": "Уключыць усе", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Уключыць усе макрасы без апавяшчэння", - "SSE.Views.Settings.textExample": "Прыклад", - "SSE.Views.Settings.textFind": "Пошук", - "SSE.Views.Settings.textFindAndReplace": "Пошук і замена", - "SSE.Views.Settings.textFormat": "Фармат", - "SSE.Views.Settings.textFormulaLanguage": "Мова формул", - "SSE.Views.Settings.textHelp": "Даведка", - "SSE.Views.Settings.textHideGridlines": "Схаваць лініі сеткі", - "SSE.Views.Settings.textHideHeadings": "Схаваць загалоўкі", - "SSE.Views.Settings.textInch": "Цаля", - "SSE.Views.Settings.textLandscape": "Альбомная", - "SSE.Views.Settings.textLastModified": "Апошняя змена", - "SSE.Views.Settings.textLastModifiedBy": "Аўтар апошняй змены", - "SSE.Views.Settings.textLeft": "Злева", - "SSE.Views.Settings.textLoading": "Загрузка…", - "SSE.Views.Settings.textLocation": "Размяшчэнне", - "SSE.Views.Settings.textMacrosSettings": "Налады макрасаў", - "SSE.Views.Settings.textMargins": "Палі", - "SSE.Views.Settings.textOrientation": "Арыентацыя", - "SSE.Views.Settings.textOwner": "Уладальнік", - "SSE.Views.Settings.textPoint": "Пункт", - "SSE.Views.Settings.textPortrait": "Кніжная", - "SSE.Views.Settings.textPoweredBy": "Распрацавана", - "SSE.Views.Settings.textPrint": "Друк", - "SSE.Views.Settings.textR1C1Style": "Стыль спасылак R1C1", - "SSE.Views.Settings.textRegionalSettings": "Рэгіянальныя налады", - "SSE.Views.Settings.textRight": "Справа", - "SSE.Views.Settings.textSettings": "Налады", - "SSE.Views.Settings.textShowNotification": "Паказваць апавяшчэнне", - "SSE.Views.Settings.textSpreadsheetFormats": "Фарматы табліцы", - "SSE.Views.Settings.textSpreadsheetSettings": "Налады табліцы", - "SSE.Views.Settings.textSubject": "Тэма", - "SSE.Views.Settings.textTel": "Тэлефон", - "SSE.Views.Settings.textTitle": "Назва", - "SSE.Views.Settings.textTop": "Уверсе", - "SSE.Views.Settings.textUnitOfMeasurement": "Адзінкі вымярэння", - "SSE.Views.Settings.textUploaded": "Запампавана", - "SSE.Views.Settings.textVersion": "Версія", - "SSE.Views.Settings.unknownText": "Невядома", - "SSE.Views.Toolbar.textBack": "Назад" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index 94a1878ce..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -1,600 +1,637 @@ { - "Common.Controllers.Collaboration.textEditUser": "Понастоящем документът се редактира от няколко потребители.", - "Common.UI.ThemeColorPalette.textCustomColors": "Цветове по избор", - "Common.UI.ThemeColorPalette.textStandartColors": "Стандартни цветове", - "Common.UI.ThemeColorPalette.textThemeColors": "Цветовете на темата", - "Common.Utils.Metric.txtCm": "см", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textBack": "Обратно", - "Common.Views.Collaboration.textCollaboration": "Сътрудничество", - "Common.Views.Collaboration.textEditUsers": "Потребители", - "Common.Views.Collaboration.textNoComments": "Тази електронна таблица не съдържа коментари", - "Common.Views.Collaboration.textСomments": "Коментари", - "SSE.Controllers.AddChart.txtDiagramTitle": "Заглавие на диаграмата", - "SSE.Controllers.AddChart.txtSeries": "Серия", - "SSE.Controllers.AddChart.txtXAxis": "X ос", - "SSE.Controllers.AddChart.txtYAxis": "Y ос", - "SSE.Controllers.AddContainer.textChart": "Диаграма", - "SSE.Controllers.AddContainer.textFormula": "Функция", - "SSE.Controllers.AddContainer.textImage": "Изображение", - "SSE.Controllers.AddContainer.textOther": "Друг", - "SSE.Controllers.AddContainer.textShape": "Форма", - "SSE.Controllers.AddLink.textInvalidRange": "ГРЕШКА! Невалиден диапазон от клетки", - "SSE.Controllers.AddLink.txtNotUrl": "Това поле трябва да е URL адрес във формат „http://www.example.com“", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", - "SSE.Controllers.AddOther.txtNotUrl": "Това поле трябва да е URL адрес във формат „http://www.example.com“", - "SSE.Controllers.DocumentHolder.menuAddLink": "Добавяне на връзка", - "SSE.Controllers.DocumentHolder.menuCell": "Клетка", - "SSE.Controllers.DocumentHolder.menuCopy": "Копие", - "SSE.Controllers.DocumentHolder.menuCut": "Разрез", - "SSE.Controllers.DocumentHolder.menuDelete": "Изтрий", - "SSE.Controllers.DocumentHolder.menuEdit": "Редактиране", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Фиксирай прозорците", - "SSE.Controllers.DocumentHolder.menuHide": "Скрий", - "SSE.Controllers.DocumentHolder.menuMerge": "Сливам", - "SSE.Controllers.DocumentHolder.menuMore": "Повече", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Отвори линк", - "SSE.Controllers.DocumentHolder.menuPaste": "Паста", - "SSE.Controllers.DocumentHolder.menuShow": "Покажи ", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Размразете панелите", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Разделяне", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Отварям", - "SSE.Controllers.DocumentHolder.menuWrap": "Обвивка", - "SSE.Controllers.DocumentHolder.sheetCancel": "Отказ", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Действия за копиране, изтегляне и поставяне", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Не показвай отново", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Само данните от горната лява клетка ще останат в обединената клетка.
    Наистина ли искате да продължите?", - "SSE.Controllers.EditCell.textAuto": "Автоматичен", - "SSE.Controllers.EditCell.textFonts": "Шрифт", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ГРЕШКА! Максималният брой поредици данни за диаграма е 255.", - "SSE.Controllers.EditChart.errorStockChart": "Неправилен ред на ред. За изграждане на борсова карта поставете данните на листа в следния ред:
    цена на отваряне, максимална цена, мин. цена, цена на затваряне.", - "SSE.Controllers.EditChart.textAuto": "Автоматичен", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Между отметки с отметки", - "SSE.Controllers.EditChart.textBillions": "Милиарди", - "SSE.Controllers.EditChart.textBottom": "Дъно", - "SSE.Controllers.EditChart.textCenter": "Център", - "SSE.Controllers.EditChart.textCross": "Крос", - "SSE.Controllers.EditChart.textCustom": "Персонализиран", - "SSE.Controllers.EditChart.textFit": "В ширина", - "SSE.Controllers.EditChart.textFixed": "Определен", - "SSE.Controllers.EditChart.textHigh": "Висок", - "SSE.Controllers.EditChart.textHorizontal": "Хоризонтален", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Стотици", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "В", - "SSE.Controllers.EditChart.textInnerBottom": "Вътрешно дъно", - "SSE.Controllers.EditChart.textInnerTop": "Вътрешен връх", - "SSE.Controllers.EditChart.textLeft": "Наляво", - "SSE.Controllers.EditChart.textLeftOverlay": "Ляво наслагване", - "SSE.Controllers.EditChart.textLow": "Нисък", - "SSE.Controllers.EditChart.textManual": "Наръчник", - "SSE.Controllers.EditChart.textMaxValue": "Максимална стойност", - "SSE.Controllers.EditChart.textMillions": "Милиони", - "SSE.Controllers.EditChart.textMinValue": "Минимална стойност", - "SSE.Controllers.EditChart.textNextToAxis": "До ос", - "SSE.Controllers.EditChart.textNone": "Нито един", - "SSE.Controllers.EditChart.textNoOverlay": "Няма наслагване", - "SSE.Controllers.EditChart.textOnTickMarks": "Отбелязани марки", - "SSE.Controllers.EditChart.textOut": "От", - "SSE.Controllers.EditChart.textOuterTop": "Външен връх", - "SSE.Controllers.EditChart.textOverlay": "Настилка", - "SSE.Controllers.EditChart.textRight": "Прав", - "SSE.Controllers.EditChart.textRightOverlay": "Право наслагване", - "SSE.Controllers.EditChart.textRotated": "Въртя", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Хиляди", - "SSE.Controllers.EditChart.textTop": "Отгоре", - "SSE.Controllers.EditChart.textTrillions": "Трилиони", - "SSE.Controllers.EditChart.textValue": "Стойност", - "SSE.Controllers.EditContainer.textCell": "Клетка", - "SSE.Controllers.EditContainer.textChart": "Диаграма", - "SSE.Controllers.EditContainer.textHyperlink": "Хипервръзка", - "SSE.Controllers.EditContainer.textImage": "Изображение", - "SSE.Controllers.EditContainer.textSettings": "Настройки", - "SSE.Controllers.EditContainer.textShape": "Форма", - "SSE.Controllers.EditContainer.textTable": "Таблица", - "SSE.Controllers.EditContainer.textText": "Текст", - "SSE.Controllers.EditHyperlink.textDefault": "Избрана област", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Трябва да посочите URL адреса на изображението.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Външен линк", - "SSE.Controllers.EditHyperlink.textInternalLink": "Вътрешен диапазон от данни", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Невалиден диапазон от клетки", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Това поле трябва да бъде URL адрес във формат \"http://www.example.com\"", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Заготовки}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Трябва да изберете поне една стойност", - "SSE.Controllers.FilterOptions.textErrorTitle": "Внимание", - "SSE.Controllers.FilterOptions.textSelectAll": "Избери всички", - "SSE.Controllers.Main.advCSVOptions": "Изберете Опции за CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Въведете паролата си:", - "SSE.Controllers.Main.advDRMOptions": "Защитен файл", - "SSE.Controllers.Main.advDRMPassword": "Парола", - "SSE.Controllers.Main.applyChangesTextText": "Данните се зареждат ...", - "SSE.Controllers.Main.applyChangesTitleText": "Зареждане на данни", - "SSE.Controllers.Main.closeButtonText": "Затвори файла", - "SSE.Controllers.Main.convertationTimeoutText": "Превишава се времето на изтичане на реализациите.", - "SSE.Controllers.Main.criticalErrorExtText": "Натиснете 'OK', за да се върнете към списъка с документи.", - "SSE.Controllers.Main.criticalErrorTitle": "Грешка", - "SSE.Controllers.Main.downloadErrorText": "Изтеглянето се провали.", - "SSE.Controllers.Main.downloadMergeText": "Изтегля се ...", - "SSE.Controllers.Main.downloadMergeTitle": "Изтеглянето", - "SSE.Controllers.Main.downloadTextText": "Електронната таблица се изтегля ...", - "SSE.Controllers.Main.downloadTitleText": "Изтегляне на електронна таблица", - "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.errorChangeArray": "Не можете да променяте част от масив.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Връзката със сървъра е загубена. Документът не може да бъде редактиран в момента.", - "SSE.Controllers.Main.errorConnectToServer": "Документът не може да бъде запасен. Моля, проверете настройките за връзка или се свържете с администратора си.
    Когато щракнете върху бутона 'OK', ще бъдете подканени да изтеглите документа.", - "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.errorDefaultMessage": "Код на грешка: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Възникна грешка по време на работата с документа.
    Използвайте опцията 'Download', за да запишете архивното копие на файла на твърдия диск на компютъра.", - "SSE.Controllers.Main.errorFilePassProtect": "Файлът е защитен с парола и не може да бъде отворен.", - "SSE.Controllers.Main.errorFileRequest": "Външна грешка.
    Грешка в заявката за файл. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.", - "SSE.Controllers.Main.errorFileSizeExceed": "Размерът на файла надвишава ограничението, зададено за вашия сървър.
    Моля, свържете се с вашия администратор на Document Server за подробности.", - "SSE.Controllers.Main.errorFileVKey": "Външна грешка.
    Неправилен ключ за защита. Моля, свържете се с екипа за поддръжка, в случай че грешката продължава.", - "SSE.Controllers.Main.errorFillRange": "Избраният диапазон от клетки не може да се запълни.
    Всички обединени клетки трябва да са с еднакъв размер.", - "SSE.Controllers.Main.errorFormulaName": "Грешка във въведената формула.
    Използва се неправилно име на формула.", - "SSE.Controllers.Main.errorFormulaParsing": "Вътрешна грешка при анализиране на формулата.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Текстовите стойности във формули са ограничени до 255 знака.
    Използвайте функцията CONCATENATE или оператора за свързване (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Функцията се отнася за лист, който не съществува.
    Моля, проверете данните и опитайте отново.", - "SSE.Controllers.Main.errorInvalidRef": "Въведете правилно име за избора или валидна референция, към която да отидете.", - "SSE.Controllers.Main.errorKeyEncrypt": "Дескриптор на неизвестен ключ", - "SSE.Controllers.Main.errorKeyExpire": "Дескрипторът на ключовете е изтекъл", - "SSE.Controllers.Main.errorLockedAll": "Операцията не може да се извърши, тъй като листа е заключен от друг потребител.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "Листът не може да бъде преименуван в момента, тъй като се преименува от друг потребител", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Неуспешно зареждане", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Сливането не бе успешно.", - "SSE.Controllers.Main.errorMaxPoints": "Максималният брой точки в серия на графиката е 4096.", - "SSE.Controllers.Main.errorMoveRange": "Не може да се промени част от обединена клетка", - "SSE.Controllers.Main.errorMultiCellFormula": "Формулирайте с множество клетки, които не са позволени в таблиците.", - "SSE.Controllers.Main.errorOpenWarning": "Дължината на една от формулите във файла надвишава разрешения брой знаци и е премахната.", - "SSE.Controllers.Main.errorOperandExpected": "Въведеният синтаксис на функцията не е правилен. Моля, проверете дали липсва една от скобите - '(' или ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Областта за копиране и поставяне не съвпада.
    Моля, изберете област със същия размер или кликнете върху първата клетка в ред, за да поставите копираните клетки.", - "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.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.leavePageText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", - "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.loadingDocumentTextText": "Електронната таблица се зарежда ...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Електронната таблица се зарежда", - "SSE.Controllers.Main.mailMergeLoadFileText": "Зареждане на източника на данни ...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Зареждане на източника на данни", - "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.savePreparingText": "Подготовка за запазване", - "SSE.Controllers.Main.savePreparingTitle": "Подготовка за запазване. Моля Изчакай...", - "SSE.Controllers.Main.saveTextText": "Документът се запазва ...", - "SSE.Controllers.Main.saveTitleText": "Запазване на документ", - "SSE.Controllers.Main.scriptLoadError": "Връзката е твърде бавна, някои от компонентите не могат да бъдат заредени. Моля, презаредете страницата.", - "SSE.Controllers.Main.sendMergeText": "Сливането се изпраща ...", - "SSE.Controllers.Main.sendMergeTitle": "Изпращане на обединяване", - "SSE.Controllers.Main.textAnonymous": "Анонимен", - "SSE.Controllers.Main.textBack": "Обратно", - "SSE.Controllers.Main.textBuyNow": "Посетете уебсайта", - "SSE.Controllers.Main.textCancel": "Отказ", - "SSE.Controllers.Main.textClose": "Затвори", - "SSE.Controllers.Main.textContactUs": "Търговски отдел", - "SSE.Controllers.Main.textCustomLoader": "Моля, имайте предвид, че според условията на лиценза нямате право да сменяте товарача.
    Моля, свържете се с нашия отдел Продажби, за да получите оферта.", - "SSE.Controllers.Main.textDone": "Завършен", - "SSE.Controllers.Main.textLoadingDocument": "Електронната таблица се зарежда", - "SSE.Controllers.Main.textNoLicenseTitle": "%1 Ограничение за връзка", - "SSE.Controllers.Main.textOK": "Добре", - "SSE.Controllers.Main.textPaidFeature": "Платена функция", - "SSE.Controllers.Main.textPassword": "Парола", - "SSE.Controllers.Main.textPreloader": "Зареждане... ", - "SSE.Controllers.Main.textShape": "Форма", - "SSE.Controllers.Main.textStrict": "Строг режим", - "SSE.Controllers.Main.textTryUndoRedo": "Функциите за отмяна/възстановяване са деактивирани за режима Бързо съвместно редактиране.
    Кликнете върху бутона „Строг режим“, за да превключите в режим на стриктно съвместно редактиране, за да редактирате файла без намеса на други потребители и да изпращате промените само след като ги запазите тях. Можете да превключвате между режимите за съвместно редактиране с помощта на редактора Разширени настройки.", - "SSE.Controllers.Main.textUsername": "Потребител", - "SSE.Controllers.Main.titleLicenseExp": "Лицензът е изтекъл", - "SSE.Controllers.Main.titleServerVersion": "Редакторът е актуализиран", - "SSE.Controllers.Main.titleUpdateVersion": "Версията е променена", - "SSE.Controllers.Main.txtAccent": "Акцент", - "SSE.Controllers.Main.txtArt": "Вашият текст тук", - "SSE.Controllers.Main.txtBasicShapes": "Основни форми", - "SSE.Controllers.Main.txtButtons": "Бутони", - "SSE.Controllers.Main.txtCallouts": "Допълнителните описания", - "SSE.Controllers.Main.txtCharts": "Диаграми", - "SSE.Controllers.Main.txtDelimiter": "Разделител", - "SSE.Controllers.Main.txtDiagramTitle": "Заглавие на диаграмата", - "SSE.Controllers.Main.txtEditingMode": "Задаване на режим на редактиране ...", - "SSE.Controllers.Main.txtEncoding": "Кодиране", - "SSE.Controllers.Main.txtErrorLoadHistory": "Историята на зареждането не бе успешна", - "SSE.Controllers.Main.txtFiguredArrows": "Фигурни стрели", - "SSE.Controllers.Main.txtLines": "Линии", - "SSE.Controllers.Main.txtMath": "Математик", - "SSE.Controllers.Main.txtProtected": "След като въведете паролата и отворите файла, текущата парола за файла ще бъде нулирана", - "SSE.Controllers.Main.txtRectangles": "Правоъгълници", - "SSE.Controllers.Main.txtSeries": "Серия", - "SSE.Controllers.Main.txtSpace": "Пространство", - "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.txtXAxis": "X ос", - "SSE.Controllers.Main.txtYAxis": "Y ос", - "SSE.Controllers.Main.unknownErrorText": "Неизвестна грешка.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Вашият браузър не се поддържа.", - "SSE.Controllers.Main.uploadImageExtMessage": "Неизвестен формат на изображението.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Няма качени изображения.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Превишено е максималното ограничение на размера на изображението.", - "SSE.Controllers.Main.uploadImageTextText": "Качва се изображението ...", - "SSE.Controllers.Main.uploadImageTitleText": "Качване на изображение", - "SSE.Controllers.Main.waitText": "Моля, изчакайте...", - "SSE.Controllers.Main.warnLicenseExceeded": "Броят на едновременните връзки към сървъра за документи е превишен и документът ще бъде отворен само за преглед.
    За повече информация се обърнете към администратора.", - "SSE.Controllers.Main.warnLicenseExp": "Вашият лиценз е изтекъл.
    Моля, актуализирайте лиценза си и опреснете страницата.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Броят на едновременните потребители е надхвърлен и документът ще бъде отворен само за преглед.
    За повече информация се свържете с администратора си.", - "SSE.Controllers.Main.warnNoLicense": "Тази версия на редакторите на %1 има някои ограничения за едновременни връзки към сървъра за документи.
    Ако имате нужда от повече, моля обмислете закупуването на търговски лиценз.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Тази версия на редакторите на %1 има някои ограничения за едновременни потребители.
    Ако имате нужда от повече, моля обмислете закупуването на търговски лиценз.", - "SSE.Controllers.Main.warnProcessRightsChange": "На вас е отказано правото да редактирате файла.", - "SSE.Controllers.Search.textNoTextFound": "Текстът не е намерен", - "SSE.Controllers.Search.textReplaceAll": "Замяна на всички", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Внимание", - "SSE.Controllers.Settings.txtDe": "Немски", - "SSE.Controllers.Settings.txtEn": "Английски", - "SSE.Controllers.Settings.txtEs": "Испански", - "SSE.Controllers.Settings.txtFr": "Френски", - "SSE.Controllers.Settings.txtIt": "Италиански", - "SSE.Controllers.Settings.txtPl": "Полски", - "SSE.Controllers.Settings.txtRu": "Руски", - "SSE.Controllers.Settings.warnDownloadAs": "Ако продължите да записвате в този формат, всички функции, с изключение на текста, ще бъдат загубени.
    Сигурни ли сте, че искате да продължите?", - "SSE.Controllers.Statusbar.cancelButtonText": "Отказ", - "SSE.Controllers.Statusbar.errNameExists": "Работният лист с такова име вече съществува.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Името на листа не може да съдържа символи:/, *,?, [,],:", - "SSE.Controllers.Statusbar.errNotEmpty": "Името на листа не трябва да е празно", - "SSE.Controllers.Statusbar.errorLastSheet": "Работната книга трябва да има поне един видим работен лист.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Работният лист не може да се изтрие.", - "SSE.Controllers.Statusbar.menuDelete": "Изтрий", - "SSE.Controllers.Statusbar.menuDuplicate": "Дубликат", - "SSE.Controllers.Statusbar.menuHide": "Скрий", - "SSE.Controllers.Statusbar.menuRename": "Преименувам", - "SSE.Controllers.Statusbar.menuUnhide": "Разкрий", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Внимание", - "SSE.Controllers.Statusbar.strRenameSheet": "Преименуване на лист", - "SSE.Controllers.Statusbar.strSheet": "Лист", - "SSE.Controllers.Statusbar.strSheetName": "Име на листа", - "SSE.Controllers.Statusbar.textExternalLink": "Външен линк", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Работният лист може да има данни. Продължете операцията?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Имате незапазени промени в този документ. Кликнете върху „Остани на тази страница“, за да изчакате за автоматично запаметяване на документа. Кликнете върху „Оставете тази страница“, за да отхвърлите всички незапазени промени.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Оставяте заявлението", - "SSE.Controllers.Toolbar.leaveButtonText": "Излезете от тази страница", - "SSE.Controllers.Toolbar.stayButtonText": "Остани на тази страница", - "SSE.Views.AddFunction.sCatDateAndTime": "Дата и час", - "SSE.Views.AddFunction.sCatEngineering": "Инженерство", - "SSE.Views.AddFunction.sCatFinancial": "Финансов", - "SSE.Views.AddFunction.sCatInformation": "Информация", - "SSE.Views.AddFunction.sCatLogical": "Логичен", - "SSE.Views.AddFunction.sCatLookupAndReference": "Търсене и справка", - "SSE.Views.AddFunction.sCatMathematic": "Математика и тригонометрия", - "SSE.Views.AddFunction.sCatStatistical": "Статистически", - "SSE.Views.AddFunction.sCatTextAndData": "Текст и данни", - "SSE.Views.AddFunction.textBack": "Обратно", - "SSE.Views.AddFunction.textGroups": "Категории", - "SSE.Views.AddLink.textAddLink": "Добавяне на връзка", - "SSE.Views.AddLink.textAddress": "Адрес", - "SSE.Views.AddLink.textDisplay": "Показ", - "SSE.Views.AddLink.textExternalLink": "Външен линк", - "SSE.Views.AddLink.textInsert": "Вмъкни", - "SSE.Views.AddLink.textInternalLink": "Вътрешен диапазон от данни", - "SSE.Views.AddLink.textLink": "Връзка", - "SSE.Views.AddLink.textLinkType": "Тип на връзката", - "SSE.Views.AddLink.textRange": "Диапазон", - "SSE.Views.AddLink.textRequired": "Длъжен", - "SSE.Views.AddLink.textSelectedRange": "Избрана област", - "SSE.Views.AddLink.textSheet": "Лист", - "SSE.Views.AddLink.textTip": "Съвет на екрана", - "SSE.Views.AddOther.textAddress": "Адрес", - "SSE.Views.AddOther.textBack": "Обратно", - "SSE.Views.AddOther.textFilter": "Филтър", - "SSE.Views.AddOther.textFromLibrary": "Картина от библиотеката", - "SSE.Views.AddOther.textFromURL": "Картина от URL адрес", - "SSE.Views.AddOther.textImageURL": "URL адрес на изображение", - "SSE.Views.AddOther.textInsert": "Вмъкни", - "SSE.Views.AddOther.textInsertImage": "Вмъкване на изображение", - "SSE.Views.AddOther.textLink": "Връзка", - "SSE.Views.AddOther.textLinkSettings": "Настройки на връзката", - "SSE.Views.AddOther.textSort": "Сортиране и филтриране", - "SSE.Views.EditCell.textAccounting": "Счетоводство", - "SSE.Views.EditCell.textAddCustomColor": "Добавяне на цвят по избор", - "SSE.Views.EditCell.textAlignBottom": "Подравняване отдолу", - "SSE.Views.EditCell.textAlignCenter": "Подравняване в центъра", - "SSE.Views.EditCell.textAlignLeft": "Подравняване вляво", - "SSE.Views.EditCell.textAlignMiddle": "Подравняване на средата", - "SSE.Views.EditCell.textAlignRight": "Подравняване надясно", - "SSE.Views.EditCell.textAlignTop": "Подравняване отгоре", - "SSE.Views.EditCell.textAllBorders": "Всички граници", - "SSE.Views.EditCell.textBack": "Обратно", - "SSE.Views.EditCell.textBorderStyle": "Стил на границата", - "SSE.Views.EditCell.textBottomBorder": "Долна граница", - "SSE.Views.EditCell.textCellStyle": "Стил на клетката", - "SSE.Views.EditCell.textCharacterBold": "П", - "SSE.Views.EditCell.textCharacterItalic": "К", - "SSE.Views.EditCell.textCharacterUnderline": "У", - "SSE.Views.EditCell.textColor": "Цвят", - "SSE.Views.EditCell.textCurrency": "Валута", - "SSE.Views.EditCell.textCustomColor": "Цвят по избор", - "SSE.Views.EditCell.textDate": "Дата", - "SSE.Views.EditCell.textDiagDownBorder": "Диагонална надолу граница", - "SSE.Views.EditCell.textDiagUpBorder": "Диагонална граница нагоре", - "SSE.Views.EditCell.textDollar": "Долар", - "SSE.Views.EditCell.textEuro": "Евро", - "SSE.Views.EditCell.textFillColor": "Цвят на запълване", - "SSE.Views.EditCell.textFonts": "Шрифт", - "SSE.Views.EditCell.textFormat": "Формат", - "SSE.Views.EditCell.textGeneral": "Общ", - "SSE.Views.EditCell.textInBorders": "Вътрешни граници", - "SSE.Views.EditCell.textInHorBorder": "Хоризонтална граница", - "SSE.Views.EditCell.textInteger": "Цяло число", - "SSE.Views.EditCell.textInVertBorder": "Вътрешна вертикална граница", - "SSE.Views.EditCell.textJustified": "Двустранно", - "SSE.Views.EditCell.textLeftBorder": "Лявата граница", - "SSE.Views.EditCell.textMedium": "Среда", - "SSE.Views.EditCell.textNoBorder": "Няма граница", - "SSE.Views.EditCell.textNumber": "Номер", - "SSE.Views.EditCell.textPercentage": "Процент", - "SSE.Views.EditCell.textPound": "Паунд", - "SSE.Views.EditCell.textRightBorder": "Дясна граница", - "SSE.Views.EditCell.textRouble": "Рубла", - "SSE.Views.EditCell.textScientific": "Научен", - "SSE.Views.EditCell.textSize": "Размер", - "SSE.Views.EditCell.textText": "Текст", - "SSE.Views.EditCell.textTextColor": "Цвят на текста", - "SSE.Views.EditCell.textTextFormat": "Текстов формат", - "SSE.Views.EditCell.textThick": "Дебел", - "SSE.Views.EditCell.textThin": "Тънък", - "SSE.Views.EditCell.textTime": "Път", - "SSE.Views.EditCell.textTopBorder": "Горна граница", - "SSE.Views.EditCell.textWrapText": "Преливане на текст", - "SSE.Views.EditCell.textYen": "Йена", - "SSE.Views.EditChart.textAddCustomColor": "Добавяне на цвят по избор", - "SSE.Views.EditChart.textAuto": "Автоматичен", - "SSE.Views.EditChart.textAxisCrosses": "Ос Кръстове", - "SSE.Views.EditChart.textAxisOptions": "Опции за ос", - "SSE.Views.EditChart.textAxisPosition": "Позиция на ос", - "SSE.Views.EditChart.textAxisTitle": "Заглавие на ос", - "SSE.Views.EditChart.textBack": "Обратно", - "SSE.Views.EditChart.textBackward": "Преместване назад", - "SSE.Views.EditChart.textBorder": "Граница", - "SSE.Views.EditChart.textBottom": "Дъно", - "SSE.Views.EditChart.textChart": "Диаграма", - "SSE.Views.EditChart.textChartTitle": "Заглавие на диаграмата", - "SSE.Views.EditChart.textColor": "Цвят", - "SSE.Views.EditChart.textCrossesValue": "Пресича стойност", - "SSE.Views.EditChart.textCustomColor": "Цвят по избор", - "SSE.Views.EditChart.textDataLabels": "Етикети за данни", - "SSE.Views.EditChart.textDesign": "Дизайн", - "SSE.Views.EditChart.textDisplayUnits": "Дисплейни единици", - "SSE.Views.EditChart.textFill": "Напълнете", - "SSE.Views.EditChart.textForward": "Продължавай напред", - "SSE.Views.EditChart.textGridlines": "Мрежови линии", - "SSE.Views.EditChart.textHorAxis": "Хоризонтална ос", - "SSE.Views.EditChart.textHorizontal": "Хоризонтален", - "SSE.Views.EditChart.textLabelOptions": "Опции за етикети", - "SSE.Views.EditChart.textLabelPos": "Позиция на етикета", - "SSE.Views.EditChart.textLayout": "Оформление", - "SSE.Views.EditChart.textLeft": "Наляво", - "SSE.Views.EditChart.textLeftOverlay": "Ляво наслагване", - "SSE.Views.EditChart.textLegend": "Легенда", - "SSE.Views.EditChart.textMajor": "Голям", - "SSE.Views.EditChart.textMajorMinor": "Майор и Мала", - "SSE.Views.EditChart.textMajorType": "Основен тип", - "SSE.Views.EditChart.textMaxValue": "Максимална стойност", - "SSE.Views.EditChart.textMinor": "Незначителен", - "SSE.Views.EditChart.textMinorType": "Малък тип", - "SSE.Views.EditChart.textMinValue": "Минимална стойност", - "SSE.Views.EditChart.textNone": "Нито един", - "SSE.Views.EditChart.textNoOverlay": "Няма наслагване", - "SSE.Views.EditChart.textOverlay": "Настилка", - "SSE.Views.EditChart.textRemoveChart": "Премахване на диаграмата", - "SSE.Views.EditChart.textReorder": "Пренареждане", - "SSE.Views.EditChart.textRight": "Прав", - "SSE.Views.EditChart.textRightOverlay": "Право наслагване", - "SSE.Views.EditChart.textRotated": "Въртя", - "SSE.Views.EditChart.textSize": "Размер", - "SSE.Views.EditChart.textStyle": "Стил", - "SSE.Views.EditChart.textTickOptions": "Отметнете Опции", - "SSE.Views.EditChart.textToBackground": "Изпращане до фона", - "SSE.Views.EditChart.textToForeground": "Доведете до преден план", - "SSE.Views.EditChart.textTop": "Отгоре", - "SSE.Views.EditChart.textType": "Тип", - "SSE.Views.EditChart.textValReverseOrder": "Стойности в обратен ред", - "SSE.Views.EditChart.textVerAxis": "Вертикална ос", - "SSE.Views.EditChart.textVertical": "Вертикален", - "SSE.Views.EditHyperlink.textBack": "Обратно", - "SSE.Views.EditHyperlink.textDisplay": "Показ", - "SSE.Views.EditHyperlink.textEditLink": "Редактиране на връзката", - "SSE.Views.EditHyperlink.textExternalLink": "Външен линк", - "SSE.Views.EditHyperlink.textInternalLink": "Вътрешен диапазон от данни", - "SSE.Views.EditHyperlink.textLink": "Връзка", - "SSE.Views.EditHyperlink.textLinkType": "Тип на връзката", - "SSE.Views.EditHyperlink.textRange": "Диапазон", - "SSE.Views.EditHyperlink.textRemoveLink": "Премахване на връзката", - "SSE.Views.EditHyperlink.textScreenTip": "Съвет на екрана", - "SSE.Views.EditHyperlink.textSheet": "Лист", - "SSE.Views.EditImage.textAddress": "Адрес", - "SSE.Views.EditImage.textBack": "Обратно", - "SSE.Views.EditImage.textBackward": "Преместване назад", - "SSE.Views.EditImage.textDefault": "Действителен размер", - "SSE.Views.EditImage.textForward": "Продължавай напред", - "SSE.Views.EditImage.textFromLibrary": "Картина от библиотеката", - "SSE.Views.EditImage.textFromURL": "Картина от URL адрес", - "SSE.Views.EditImage.textImageURL": "URL адрес на изображение", - "SSE.Views.EditImage.textLinkSettings": "Настройки на връзката", - "SSE.Views.EditImage.textRemove": "Премахване на изображението", - "SSE.Views.EditImage.textReorder": "Пренареждане", - "SSE.Views.EditImage.textReplace": "Заменете", - "SSE.Views.EditImage.textReplaceImg": "Замяна на изображението", - "SSE.Views.EditImage.textToBackground": "Изпращане до фона", - "SSE.Views.EditImage.textToForeground": "Доведете до преден план", - "SSE.Views.EditShape.textAddCustomColor": "Добавяне на цвят по избор", - "SSE.Views.EditShape.textBack": "Обратно", - "SSE.Views.EditShape.textBackward": "Преместване назад", - "SSE.Views.EditShape.textBorder": "Граница", - "SSE.Views.EditShape.textColor": "Цвят", - "SSE.Views.EditShape.textCustomColor": "Цвят по избор", - "SSE.Views.EditShape.textEffects": "Ефекти", - "SSE.Views.EditShape.textFill": "Напълнете", - "SSE.Views.EditShape.textForward": "Продължавай напред", - "SSE.Views.EditShape.textOpacity": "Непрозрачност", - "SSE.Views.EditShape.textRemoveShape": "Премахване на формата", - "SSE.Views.EditShape.textReorder": "Пренареждане", - "SSE.Views.EditShape.textReplace": "Заменете", - "SSE.Views.EditShape.textSize": "Размер", - "SSE.Views.EditShape.textStyle": "Стил", - "SSE.Views.EditShape.textToBackground": "Изпращане до фона", - "SSE.Views.EditShape.textToForeground": "Доведете до преден план", - "SSE.Views.EditText.textAddCustomColor": "Добавяне на цвят по избор", - "SSE.Views.EditText.textBack": "Обратно", - "SSE.Views.EditText.textCharacterBold": "П", - "SSE.Views.EditText.textCharacterItalic": "К", - "SSE.Views.EditText.textCharacterUnderline": "У", - "SSE.Views.EditText.textCustomColor": "Цвят по избор", - "SSE.Views.EditText.textFillColor": "Цвят на запълване", - "SSE.Views.EditText.textFonts": "Шрифт", - "SSE.Views.EditText.textSize": "Размер", - "SSE.Views.EditText.textTextColor": "Цвят на текста", - "SSE.Views.FilterOptions.textClearFilter": "Изчистване на филтъра", - "SSE.Views.FilterOptions.textDeleteFilter": "Изчистване на филтър", - "SSE.Views.FilterOptions.textFilter": "Опции на филтър", - "SSE.Views.Search.textByColumns": "По колони", - "SSE.Views.Search.textByRows": "По редове", - "SSE.Views.Search.textDone": "Завършен", - "SSE.Views.Search.textFind": "Намирам", - "SSE.Views.Search.textFindAndReplace": "Намерете и заменете", - "SSE.Views.Search.textFormulas": "Формули", - "SSE.Views.Search.textHighlightRes": "Осветляване на резултатите", - "SSE.Views.Search.textLookIn": "Погледни в", - "SSE.Views.Search.textMatchCase": "Случай на съвпадение", - "SSE.Views.Search.textMatchCell": "Съвпадение на клетката", - "SSE.Views.Search.textReplace": "Заменете", - "SSE.Views.Search.textSearch": "Търсене", - "SSE.Views.Search.textSearchBy": "Търсене", - "SSE.Views.Search.textSearchIn": "Търсене в", - "SSE.Views.Search.textSheet": "Лист", - "SSE.Views.Search.textValues": "Стойности", - "SSE.Views.Search.textWorkbook": "Работна книга", - "SSE.Views.Settings.textAbout": "Относно", - "SSE.Views.Settings.textAddress": "адрес", - "SSE.Views.Settings.textApplication": "Приложение", - "SSE.Views.Settings.textApplicationSettings": "Настройки на приложението", - "SSE.Views.Settings.textAuthor": "Автор", - "SSE.Views.Settings.textBack": "Обратно", - "SSE.Views.Settings.textBottom": "Отдоло", - "SSE.Views.Settings.textCentimeter": "Сантиметър", - "SSE.Views.Settings.textCollaboration": "Сътрудничество", - "SSE.Views.Settings.textColorSchemes": "Цветова схема", - "SSE.Views.Settings.textComment": "Коментар", - "SSE.Views.Settings.textCommentingDisplay": "Дисплей с коментари", - "SSE.Views.Settings.textCreated": "Създаден", - "SSE.Views.Settings.textCreateDate": "Дата на създаване", - "SSE.Views.Settings.textCustom": "Персонализиран", - "SSE.Views.Settings.textCustomSize": "Потребителски размер", - "SSE.Views.Settings.textDisplayComments": "Коментари", - "SSE.Views.Settings.textDisplayResolvedComments": "Решени коментари", - "SSE.Views.Settings.textDocInfo": "Информация за електронна таблица", - "SSE.Views.Settings.textDocTitle": "Заглавие на електронната таблица", - "SSE.Views.Settings.textDone": "Завършен", - "SSE.Views.Settings.textDownload": "Изтегли", - "SSE.Views.Settings.textDownloadAs": "Изтеглете като ...", - "SSE.Views.Settings.textEditDoc": "Редактиране на документ", - "SSE.Views.Settings.textEmail": "електронна поща", - "SSE.Views.Settings.textExample": "Пример", - "SSE.Views.Settings.textFind": "Намирам", - "SSE.Views.Settings.textFindAndReplace": "Намерете и заменете", - "SSE.Views.Settings.textFormat": "формат", - "SSE.Views.Settings.textFormulaLanguage": "Език на формулата", - "SSE.Views.Settings.textHelp": "Помощ ", - "SSE.Views.Settings.textHideGridlines": "Скриване на решетки", - "SSE.Views.Settings.textHideHeadings": "Скриване на заглавията", - "SSE.Views.Settings.textInch": "Инч", - "SSE.Views.Settings.textLandscape": "Пейзаж", - "SSE.Views.Settings.textLastModified": "Последно модифициран", - "SSE.Views.Settings.textLastModifiedBy": "Последно модифициран от", - "SSE.Views.Settings.textLeft": "Наляво", - "SSE.Views.Settings.textLoading": "Зареждане...", - "SSE.Views.Settings.textLocation": "местоположение", - "SSE.Views.Settings.textMargins": "Допустими Граници", - "SSE.Views.Settings.textOrientation": "Ориентация", - "SSE.Views.Settings.textOwner": "собственик", - "SSE.Views.Settings.textPoint": "Точка", - "SSE.Views.Settings.textPortrait": "Портрет", - "SSE.Views.Settings.textPoweredBy": "Задвижвани от", - "SSE.Views.Settings.textPrint": "Печат", - "SSE.Views.Settings.textR1C1Style": "R1C1 Референтен стил", - "SSE.Views.Settings.textRegionalSettings": "Регионални настройки", - "SSE.Views.Settings.textRight": "Дясно", - "SSE.Views.Settings.textSettings": "Настройки", - "SSE.Views.Settings.textSpreadsheetFormats": "Формати на електронни таблици", - "SSE.Views.Settings.textSpreadsheetSettings": "Настройки на електронната таблица", - "SSE.Views.Settings.textSubject": "Относно", - "SSE.Views.Settings.textTel": "тел", - "SSE.Views.Settings.textTitle": "Заглавие", - "SSE.Views.Settings.textTop": "Отгоре", - "SSE.Views.Settings.textUnitOfMeasurement": "Единица за измерване", - "SSE.Views.Settings.textUploaded": "Качено", - "SSE.Views.Settings.textVersion": "Версия", - "SSE.Views.Settings.unknownText": "Неизвестен", - "SSE.Views.Toolbar.textBack": "Обратно" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index fe4cd222a..757f8d11b 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -73,8 +73,35 @@ "notcriticalErrorTitle": "Advertiment", "SDK": { "txtAccent": "Accent", + "txtAll": "(Tots)", "txtArt": "El seu text aquí", + "txtBlank": "(en blanc)", + "txtByField": "%1 de %2", + "txtClearFilter": "Netejar el filtre (Alt+C)", + "txtColLbls": "Etiquetes de Columnes", + "txtColumn": "Columna", + "txtConfidential": "Confidencial", + "txtDate": "Data", + "txtDays": "Dies", "txtDiagramTitle": "Títol del Gràfic", + "txtFile": "Fitxer", + "txtGrandTotal": "Total General", + "txtGroup": "Grup", + "txtHours": "Hores", + "txtMinutes": "Minuts", + "txtMonths": "Mesos", + "txtMultiSelect": "Selecció Múltiple (Alt+S)", + "txtOr": "%1 o %2", + "txtPage": "Pàgina", + "txtPageOf": "Pàgina %1 de %2", + "txtPages": "Pàgines", + "txtPreparedBy": "Preparat per", + "txtPrintArea": "Àrea d'Impressió", + "txtQuarter": "Tri", + "txtQuarters": "Trimestres", + "txtRow": "Fila", + "txtRowLbls": "Etiquetes de Fila", + "txtSeconds": "Segons", "txtSeries": "Sèrie", "txtStyle_Bad": "Dolent", "txtStyle_Calculation": "Càlcul", @@ -97,8 +124,13 @@ "txtStyle_Title": "Nom", "txtStyle_Total": "Total", "txtStyle_Warning_Text": "Text d'Advertència", + "txtTab": "Pestanya", + "txtTable": "Taula", + "txtTime": "Hora", + "txtValues": "Valors", "txtXAxis": "Eix X", - "txtYAxis": "Eix Y" + "txtYAxis": "Eix Y", + "txtYears": "Anys" }, "textAnonymous": "Anònim", "textBuyNow": "Visitar lloc web", @@ -270,6 +302,7 @@ "textAddLink": "Afegir Enllaç", "textAddress": "Adreça", "textBack": "Enrere", + "textCancel": "Cancel·lar", "textChart": "Gràfic", "textComment": "Comentari", "textDisplay": "Mostrar", @@ -296,7 +329,11 @@ "textShape": "Forma", "textSheet": "Full", "textSortAndFilter": "Ordenar i Filtrar", - "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"" + "txtExpand": "Expandir i ordenar", + "txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. Voleu ampliar la selecció per incloure les dades adjacents o continuar amb l'ordenació de les cel·les actualment seleccionades?", + "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "txtSorting": "Ordenació", + "txtSortSelected": "Ordenar els objectes seleccionats" }, "Edit": { "notcriticalErrorTitle": "Advertiment", @@ -474,7 +511,9 @@ "textVerticalText": "Text Vertical", "textWrapText": "Ajustar el text", "textYen": "Yen", - "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"" + "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "txtSortHigh2Low": "Ordenar de Major a Menor", + "txtSortLow2High": "Ordenar de Menor a Major" }, "Settings": { "advCSVOptions": "Trieu les opcions CSV", @@ -568,6 +607,28 @@ "txtEncoding": "Codificació", "txtIncorrectPwd": "La contrasenya és incorrecta", "txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer", + "txtScheme1": "Oficina", + "txtScheme10": "Mitjana", + "txtScheme11": "Metro", + "txtScheme12": "Mòdul", + "txtScheme13": "Opulent", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Paper", + "txtScheme17": "Solstici", + "txtScheme18": "Tècnic", + "txtScheme19": "Excursió", + "txtScheme2": "Escala de grisos", + "txtScheme20": "Urbà", + "txtScheme21": "Empenta", + "txtScheme22": "Nova Oficina", + "txtScheme3": "Vèrtex", + "txtScheme4": "Aspecte", + "txtScheme5": "Cívic", + "txtScheme6": "Concurs", + "txtScheme7": "Patrimoni net", + "txtScheme8": "Flux", + "txtScheme9": "Fosa", "txtSpace": "Espai", "txtTab": "Pestanya", "warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les característiques, excepte el text.
    Esteu segur que voleu continuar?" diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 548514308..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -1,646 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Přidat odpověď", - "Common.Controllers.Collaboration.textCancel": "Zrušit", - "Common.Controllers.Collaboration.textDeleteComment": "Smazat komentář", - "Common.Controllers.Collaboration.textDeleteReply": "Smazat odpověď", - "Common.Controllers.Collaboration.textDone": "Hotovo", - "Common.Controllers.Collaboration.textEdit": "Upravit", - "Common.Controllers.Collaboration.textEditUser": "Uživatelé, kteří soubor právě upravují:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Opravdu chcete smazat tento komentář?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Opravdu chcete smazat tuto odpověď?", - "Common.Controllers.Collaboration.textReopen": "Znovu otevřít", - "Common.Controllers.Collaboration.textResolve": "Vyřešit", - "Common.Controllers.Collaboration.textYes": "Ano", - "Common.UI.ThemeColorPalette.textCustomColors": "Uživatelsky určené barvy", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardní barvy", - "Common.UI.ThemeColorPalette.textThemeColors": "Barvy tématu", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Přidat odpověď", - "Common.Views.Collaboration.textBack": "Zpět", - "Common.Views.Collaboration.textCancel": "Zrušit", - "Common.Views.Collaboration.textCollaboration": "Spolupráce", - "Common.Views.Collaboration.textDone": "Hotovo", - "Common.Views.Collaboration.textEditReply": "Upravit odpověď", - "Common.Views.Collaboration.textEditUsers": "Uživatelé", - "Common.Views.Collaboration.textEditСomment": "Upravit komentář", - "Common.Views.Collaboration.textNoComments": "Tento list neobsahuje komentáře.", - "Common.Views.Collaboration.textСomments": "Komentáře", - "SSE.Controllers.AddChart.txtDiagramTitle": "Nadpis grafu", - "SSE.Controllers.AddChart.txtSeries": "Řady", - "SSE.Controllers.AddChart.txtXAxis": "Osa X", - "SSE.Controllers.AddChart.txtYAxis": "Osa Y", - "SSE.Controllers.AddContainer.textChart": "Graf", - "SSE.Controllers.AddContainer.textFormula": "Funkce", - "SSE.Controllers.AddContainer.textImage": "Obrázek", - "SSE.Controllers.AddContainer.textOther": "Ostatní", - "SSE.Controllers.AddContainer.textShape": "Tvar", - "SSE.Controllers.AddLink.textInvalidRange": "CHYBA! Nesprávný rozsah buňek", - "SSE.Controllers.AddLink.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'", - "SSE.Controllers.AddOther.textCancel": "Zrušit", - "SSE.Controllers.AddOther.textContinue": "Pokračovat", - "SSE.Controllers.AddOther.textDelete": "Smazat", - "SSE.Controllers.AddOther.textDeleteDraft": "Opravdu chcete návrh smazat?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Musíte upřesnit URL obrázku.", - "SSE.Controllers.AddOther.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Akce kopírovat, vyjmout a vložit použitím kontextové nabídky budou prováděny pouze v rámci právě otevřeného souboru.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Přidat komentář", - "SSE.Controllers.DocumentHolder.menuAddLink": "Přidat odkaz", - "SSE.Controllers.DocumentHolder.menuCell": "Buňka", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopírovat", - "SSE.Controllers.DocumentHolder.menuCut": "Vyjmout", - "SSE.Controllers.DocumentHolder.menuDelete": "Odstranit", - "SSE.Controllers.DocumentHolder.menuEdit": "Upravit", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Ukotvit příčky", - "SSE.Controllers.DocumentHolder.menuHide": "Skrýt", - "SSE.Controllers.DocumentHolder.menuMerge": "Spojit", - "SSE.Controllers.DocumentHolder.menuMore": "Více", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Otevřít odkaz", - "SSE.Controllers.DocumentHolder.menuPaste": "Vložit", - "SSE.Controllers.DocumentHolder.menuShow": "Zobrazit", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Zrušit ukotvení příček", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Rozdělit", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Rozbalit", - "SSE.Controllers.DocumentHolder.menuViewComment": "Zobrazit komentář", - "SSE.Controllers.DocumentHolder.menuWrap": "Zabalit", - "SSE.Controllers.DocumentHolder.sheetCancel": "Zrušit", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Akce kopírovat, vyjmout a vložit", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Znovu už nezobrazovat", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Pouze data z levé horní buňky zůstanou ve sloučené buňce.
    Opravdu chcete pokračovat?", - "SSE.Controllers.EditCell.textAuto": "Automaticky", - "SSE.Controllers.EditCell.textFonts": "Fonty", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "CHYBA! Maximální počet datových řad v grafu je 255.", - "SSE.Controllers.EditChart.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:
    otevírací cena, maximální cena, minimální cena, uzavírací cena.", - "SSE.Controllers.EditChart.textAuto": "Automaticky", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Mezi značkami", - "SSE.Controllers.EditChart.textBillions": "Miliardy", - "SSE.Controllers.EditChart.textBottom": "Dole", - "SSE.Controllers.EditChart.textCenter": "Střed", - "SSE.Controllers.EditChart.textCross": "Kříž", - "SSE.Controllers.EditChart.textCustom": "Vlastní", - "SSE.Controllers.EditChart.textFit": "Přizpůsobit šířku", - "SSE.Controllers.EditChart.textFixed": "Fixní", - "SSE.Controllers.EditChart.textHigh": "Vysoký", - "SSE.Controllers.EditChart.textHorizontal": "Horizontálně", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Stovky", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "Uvnitř", - "SSE.Controllers.EditChart.textInnerBottom": "Uvnitř dole", - "SSE.Controllers.EditChart.textInnerTop": "Uvnitř nahoře", - "SSE.Controllers.EditChart.textLeft": "Vlevo", - "SSE.Controllers.EditChart.textLeftOverlay": "Levé překrytí", - "SSE.Controllers.EditChart.textLow": "Nízký", - "SSE.Controllers.EditChart.textManual": "Manuál", - "SSE.Controllers.EditChart.textMaxValue": "Maximální hodnota", - "SSE.Controllers.EditChart.textMillions": "Milióny", - "SSE.Controllers.EditChart.textMinValue": "Minimální hodnota", - "SSE.Controllers.EditChart.textNextToAxis": "Vedle osy", - "SSE.Controllers.EditChart.textNone": "Žádný", - "SSE.Controllers.EditChart.textNoOverlay": "Bez překrytí", - "SSE.Controllers.EditChart.textOnTickMarks": "Na značkách", - "SSE.Controllers.EditChart.textOut": "Vně", - "SSE.Controllers.EditChart.textOuterTop": "Vně nahoře", - "SSE.Controllers.EditChart.textOverlay": "Překrytí", - "SSE.Controllers.EditChart.textRight": "Vpravo", - "SSE.Controllers.EditChart.textRightOverlay": "Pravé překrytí", - "SSE.Controllers.EditChart.textRotated": "Otočený", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Tisíce", - "SSE.Controllers.EditChart.textTop": "Nahoře", - "SSE.Controllers.EditChart.textTrillions": "Biliony", - "SSE.Controllers.EditChart.textValue": "Hodnota", - "SSE.Controllers.EditContainer.textCell": "Buňka", - "SSE.Controllers.EditContainer.textChart": "Graf", - "SSE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz", - "SSE.Controllers.EditContainer.textImage": "Obrázek", - "SSE.Controllers.EditContainer.textSettings": "Nastavení", - "SSE.Controllers.EditContainer.textShape": "Tvar", - "SSE.Controllers.EditContainer.textTable": "Tabulka", - "SSE.Controllers.EditContainer.textText": "Text", - "SSE.Controllers.EditHyperlink.textDefault": "Vybraný rozsah", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Musíte upřesnit URL obrázku.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Externí odkaz", - "SSE.Controllers.EditHyperlink.textInternalLink": "Vnitřní rozsah dat", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Neplatný rozsah buňky", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Toto pole by mělo obsahovat adresu URL ve formátu \"http://www.example.com\"", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Je třeba zvolit alespoň jednu hodnotu", - "SSE.Controllers.FilterOptions.textErrorTitle": "Varování", - "SSE.Controllers.FilterOptions.textSelectAll": "Vybrat vše", - "SSE.Controllers.Main.advCSVOptions": "Vyberte možnosti CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Zadejte vaše heslo:", - "SSE.Controllers.Main.advDRMOptions": "Chráněný soubor", - "SSE.Controllers.Main.advDRMPassword": "Heslo", - "SSE.Controllers.Main.applyChangesTextText": "Načítání dat...", - "SSE.Controllers.Main.applyChangesTitleText": "Načítání dat", - "SSE.Controllers.Main.closeButtonText": "Zavřít soubor", - "SSE.Controllers.Main.convertationTimeoutText": "Vypršel čas konverze.", - "SSE.Controllers.Main.criticalErrorExtText": "Stisknutím tlačítka \"OK\" se vrátíte do seznamu dokumentů.", - "SSE.Controllers.Main.criticalErrorTitle": "Chyba", - "SSE.Controllers.Main.downloadErrorText": "Stahování selhalo.", - "SSE.Controllers.Main.downloadMergeText": "Stahování...", - "SSE.Controllers.Main.downloadMergeTitle": "Stahuji", - "SSE.Controllers.Main.downloadTextText": "Stahování sešitu…", - "SSE.Controllers.Main.downloadTitleText": "Stahování sešitu", - "SSE.Controllers.Main.errorAccessDeny": "Pokoušíte se provést akci, na kterou nemáte oprávnění.
    Prosím, kontaktujte administrátora vašeho Dokumentového serveru.", - "SSE.Controllers.Main.errorArgsRange": "Chyba v zadaném vzorci.
    Použitý nesprávný rozsah argumentu.", - "SSE.Controllers.Main.errorAutoFilterChange": "Operace není povolena, protože se pokouší posunout buňky v tabulce ve vašem pracovním listu.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operaci nelze provést pro vybrané buňky, protože nelze přesunout část tabulky.
    Vyberte jinou oblast dat tak, aby byla celá tabulka byla posunuta a zkuste to znovu.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Operaci nelze provést pro zvolený rozsah buněk.
    Vyberte jednotnou oblast dat odlišnou od již existující a zkuste to znovu.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operaci nelze provést, protože oblast obsahuje filtrované buňky.
    Prosím, odkryjte filtrované prvky a zkuste to znovu.", - "SSE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávná", - "SSE.Controllers.Main.errorChangeArray": "Nemůžete měnit část žádného pole.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Spojení se serverem ztraceno. Dokument nyní nelze upravovat.", - "SSE.Controllers.Main.errorConnectToServer": "Dokument nelze uložit. Prosím, zkontrolujte nastavení vašeho připojení nebo kontaktujte vašeho administrátora.
    Při kliknutí na tlačítko \"OK\" budete vyzváni ke stažení dokumentu.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Tento příkaz nelze použít s více výběry.
    Vyberte jeden z rozsahů a zkuste to znovu.", - "SSE.Controllers.Main.errorCountArg": "Chyba v zadaném vzorci.
    Použitý neprávný počet argumentů.", - "SSE.Controllers.Main.errorCountArgExceed": "Chyba v zadaném vzorci.
    Překročen počet argumentů.", - "SSE.Controllers.Main.errorCreateDefName": "Stávající pojmenované rozsahy nelze měnit a nové nyní nemůžou být vytvořeny, protože některé z nich jsou upravovány.", - "SSE.Controllers.Main.errorDatabaseConnection": "Externí chyba.
    Chyba spojení s databází. Prosím kontaktujte podporu, pokud chyba přetrvává.", - "SSE.Controllers.Main.errorDataEncrypted": "Obdrženy šifrované změny – bez hesla je není možné zobrazit.", - "SSE.Controllers.Main.errorDataRange": "Nesprávný datový rozsah.", - "SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Při práci na dokumentu došlo k chybě.
    Použijte volbu „Stáhnout“ a uložte si soubor jako zálohu na svůj počítač.", - "SSE.Controllers.Main.errorFilePassProtect": "Soubor je chráněn heslem, bez kterého jej nelze otevřít.", - "SSE.Controllers.Main.errorFileRequest": "Externí chyba.
    Chyba souborového požadavku. Obraťte se prosím na podporu v případě, že chyba přetrvává.", - "SSE.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.", - "SSE.Controllers.Main.errorFileVKey": "Externí chyba.
    Nesprávný bezpečnostní klíč. Obraťte se prosím na podporu v případě, že chyba přetrvává.", - "SSE.Controllers.Main.errorFillRange": "Nelze vyplnit vybranou oblast buněk.
    Všechny sloučené buňky musí být stejně velké.", - "SSE.Controllers.Main.errorFormulaName": "Chyba v zadaném vzorci.
    Použité nesprávné jméno vzorce.", - "SSE.Controllers.Main.errorFormulaParsing": "Interní chyba při analýze vzorce.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Délka textové hodnoty ve vzorcích je omezena na 255 znaků.
    Použijte funkci SPOJIT nebo spojovací operátor (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkce odkazuje na list, který neexistuje.
    Prosím, zkontrolujte data a zkuste to znovu.", - "SSE.Controllers.Main.errorInvalidRef": "Zadejte správný název pro výběr nebo platnou referenci.", - "SSE.Controllers.Main.errorKeyEncrypt": "Neznámý klíč deskriptoru", - "SSE.Controllers.Main.errorKeyExpire": "Klíč deskriptoru vypršel", - "SSE.Controllers.Main.errorLockedAll": "Operace nemůže být provedena, protože list byl uzamčen jiným uživatelem.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "V tuto chvíli list nelze přejmenovat, protože je přejmenováván jiným uživatelem", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Načítání dokumentu se nezdařilo. Vyberte jiný soubor.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Spojování selhalo.", - "SSE.Controllers.Main.errorMaxPoints": "Nejvyšší možný počet bodů za sebou v grafu je 4096.", - "SSE.Controllers.Main.errorMoveRange": "Nelze změnit část sloučené buňky", - "SSE.Controllers.Main.errorMultiCellFormula": "V tabulkách nejsou dovoleny vzorce pro pole s vícero buňkami", - "SSE.Controllers.Main.errorOpensource": "Použitím volné komunitní verze můžete otevřít dokumenty pouze pro čtení. Pro přístup k mobilním editorům je vyžadována komerční licence.", - "SSE.Controllers.Main.errorOpenWarning": "Délka jednoho ze vzorců v souboru překročila
    povolený počet znaků, tudíž byl vzorec odstraněn.", - "SSE.Controllers.Main.errorOperandExpected": "Zadaná funkce syntaxe není správná. Prosím, zkontrolujte zda nechybí jedna ze závorek - '(' or ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Kopírovaná oblast a oblast pro vložení nejsou odpovídající.
    Prosím, vyberte oblast se stejnou velikosti nebo klikněte na první buňku v řádku a vložte zkopírované buňky.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužel, v aktuální verzi programu není možné vytisknout více jak 1500 stránek najednou.
    Toto omezení bude nadcházejících vydáních odstraněno.", - "SSE.Controllers.Main.errorProcessSaveResult": "Ukládání selhalo", - "SSE.Controllers.Main.errorServerVersion": "Verze editoru byla aktualizována. Stránka bude znovu načtena, aby se provedly změny.", - "SSE.Controllers.Main.errorSessionAbsolute": "Úprava editace dokumentu vypršela. Prosím, znovu načtěte stránku.", - "SSE.Controllers.Main.errorSessionIdle": "Dokument nebyl po dlouhou dobu upravován. Prosím, znovu načtěte stránku.", - "SSE.Controllers.Main.errorSessionToken": "Připojení k serveru bylo přerušeno. Prosím, znovu načtěte stránku.", - "SSE.Controllers.Main.errorStockChart": "Nespravné pořadí řádků. Chcete-li vytvořit burzovní graf umístěte data na list v následujícím pořadí:
    otevírací cena, maximální cena, minimální cena, uzavírací cena.", - "SSE.Controllers.Main.errorToken": "Dokument zabezpečení tokenu má chybný formát.
    Prosím, kontaktujte administrátora vašeho Dokumentového serveru.", - "SSE.Controllers.Main.errorTokenExpire": "Dokument bezpečnostního tokenu vypršel.
    Prosím, kontaktujte administrátora vašeho Dokumentového serveru.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Externí chyba.
    Neočekávané GUID. Obraťte se prosím na podporu v případě, že chyba přetrvává.", - "SSE.Controllers.Main.errorUpdateVersion": "Verze souboru byla změněna. Stránka bude znovu načtena.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Připojení k Internetu bylo obnoveno a verze souboru byla změněna.
    Než budete moci pokračovat v práci, bude třeba si soubor stáhnout nebo si zkopírovat jeho obsah, abyste si zajistili, že se nic neztratí a až poté tuto stránku znovu načtěte.", - "SSE.Controllers.Main.errorUserDrop": "Tento soubor není nyní přístupný.", - "SSE.Controllers.Main.errorUsersExceed": "Počet uživatelů povolených cenovým plánem byl překročen", - "SSE.Controllers.Main.errorViewerDisconnect": "Spojení je přerušeno. Stále můžete zobrazit dokument,
    ale nebudete moci stahovat, dokud neobnovíte připojení.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadaném vzorci.
    Použitý nesprávný počet závorek.", - "SSE.Controllers.Main.errorWrongOperator": "Chyba v zadaném vzorci.Použitý nesprávný operátor.
    Prosím, opravte chybu.", - "SSE.Controllers.Main.leavePageText": "V tomto dokumentu máte neuložené změny. Pokud o ně nechcete přijít, klikněte na „Zůstat na této stránce“, poté vyčkejte na automatické uložení dokumentu. V opačném případě klikněte na „Opustit tuto stránku“ a všechny neuložené změny budou zahozeny.", - "SSE.Controllers.Main.loadFontsTextText": "Načítání dat...", - "SSE.Controllers.Main.loadFontsTitleText": "Načítání dat", - "SSE.Controllers.Main.loadFontTextText": "Načítání dat...", - "SSE.Controllers.Main.loadFontTitleText": "Načítání dat", - "SSE.Controllers.Main.loadImagesTextText": "Načítání obrázků...", - "SSE.Controllers.Main.loadImagesTitleText": "Načítání obrázků", - "SSE.Controllers.Main.loadImageTextText": "Načítání obrázku...", - "SSE.Controllers.Main.loadImageTitleText": "Načítání obrázku", - "SSE.Controllers.Main.loadingDocumentTextText": "Načítání sešitu...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Načítání sešitu", - "SSE.Controllers.Main.mailMergeLoadFileText": "Načítání datového zdroje...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Načítání datového zdroje", - "SSE.Controllers.Main.notcriticalErrorTitle": "Varování", - "SSE.Controllers.Main.openErrorText": "Při otevírání souboru došlo k chybě.", - "SSE.Controllers.Main.openTextText": "Otevírání dokumentu...", - "SSE.Controllers.Main.openTitleText": "Otevírání dokumentu", - "SSE.Controllers.Main.pastInMergeAreaError": "Nelze změnit část sloučené buňky", - "SSE.Controllers.Main.printTextText": "Tisknutí dokumentu...", - "SSE.Controllers.Main.printTitleText": "Tisknutí dokumentu", - "SSE.Controllers.Main.reloadButtonText": "Znovu načíst stránku", - "SSE.Controllers.Main.requestEditFailedMessageText": "Někdo právě upravuje tento dokument. Prosím zkuste to znovu později.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Přístup zamítnut", - "SSE.Controllers.Main.saveErrorText": "Během ukládání souboru došlo k chybě.", - "SSE.Controllers.Main.savePreparingText": "Příprava na ukládání", - "SSE.Controllers.Main.savePreparingTitle": "Příprava ukládání. Prosím čekejte...", - "SSE.Controllers.Main.saveTextText": "Ukládání dokumentu...", - "SSE.Controllers.Main.saveTitleText": "Ukládání dokumentu", - "SSE.Controllers.Main.scriptLoadError": "Připojení je příliš pomalé, některé součásti se nepodařilo načíst. Načtěte stránku znovu.", - "SSE.Controllers.Main.sendMergeText": "Odesílaní hromadné zprávy...", - "SSE.Controllers.Main.sendMergeTitle": "Odesílaní hromadné zprávy", - "SSE.Controllers.Main.textAnonymous": "Anonymní", - "SSE.Controllers.Main.textBack": "Zpět", - "SSE.Controllers.Main.textBuyNow": "Navštívit webovou stránku", - "SSE.Controllers.Main.textCancel": "Zrušit", - "SSE.Controllers.Main.textClose": "Zavřít", - "SSE.Controllers.Main.textContactUs": "Obchodní oddělení", - "SSE.Controllers.Main.textCustomLoader": "Mějte na paměti, že dle podmínek licence nejste oprávněni měnit načítač.
    Pro získání nabídky se obraťte na naše obchodní oddělení.", - "SSE.Controllers.Main.textDone": "Hotovo", - "SSE.Controllers.Main.textHasMacros": "Soubor obsahuje automatická makra.
    Chcete spustit makra?", - "SSE.Controllers.Main.textLoadingDocument": "Načítání sešitu", - "SSE.Controllers.Main.textNo": "Ne", - "SSE.Controllers.Main.textNoLicenseTitle": "omezení na %1 spojení", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Placená funkce", - "SSE.Controllers.Main.textPassword": "Heslo", - "SSE.Controllers.Main.textPreloader": "Nahrávám...", - "SSE.Controllers.Main.textRemember": "Zapamatovat mou volbu", - "SSE.Controllers.Main.textShape": "Tvar", - "SSE.Controllers.Main.textStrict": "Statický réžim", - "SSE.Controllers.Main.textTryUndoRedo": "Funkce zpět/zopakovat jsou vypnuty pro Automatický co-editační režim.
    Klikněte na tlačítko \"Statický režim\", abyste přešli do přísného co-editačního režimu a abyste upravovali soubor bez rušení ostatních uživatelů a odeslali vaše změny jen po jejich uložení. Pomocí Rozšířeného nastavení editoru můžete přepínat mezi co-editačními režimy.", - "SSE.Controllers.Main.textUsername": "Uživatelské jméno ", - "SSE.Controllers.Main.textYes": "Ano", - "SSE.Controllers.Main.titleLicenseExp": "Platnost licence vypršela", - "SSE.Controllers.Main.titleServerVersion": "Editor byl aktualizován", - "SSE.Controllers.Main.titleUpdateVersion": "Verze změněna", - "SSE.Controllers.Main.txtAccent": "Akcent", - "SSE.Controllers.Main.txtArt": "Zde napište text", - "SSE.Controllers.Main.txtBasicShapes": "Základní tvary", - "SSE.Controllers.Main.txtButtons": "Tlačítka", - "SSE.Controllers.Main.txtCallouts": "Bubliny", - "SSE.Controllers.Main.txtCharts": "Grafy", - "SSE.Controllers.Main.txtDelimiter": "Oddělovač", - "SSE.Controllers.Main.txtDiagramTitle": "Nadpis grafu", - "SSE.Controllers.Main.txtEditingMode": "Nastavit editační režim...", - "SSE.Controllers.Main.txtEncoding": "Kódování", - "SSE.Controllers.Main.txtErrorLoadHistory": "Načítání historie selhalo", - "SSE.Controllers.Main.txtFiguredArrows": "Orientační šipky", - "SSE.Controllers.Main.txtLines": "Čáry", - "SSE.Controllers.Main.txtMath": "Matematika", - "SSE.Controllers.Main.txtProtected": "Jakmile zadáte heslo a soubor otevřete, stávající heslo k souboru bude resetováno", - "SSE.Controllers.Main.txtRectangles": "Obdelníky", - "SSE.Controllers.Main.txtSeries": "Řady", - "SSE.Controllers.Main.txtSpace": "Prostor", - "SSE.Controllers.Main.txtStarsRibbons": "Hvězdy a stuhy", - "SSE.Controllers.Main.txtStyle_Bad": "Špatný", - "SSE.Controllers.Main.txtStyle_Calculation": "Výpočet", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Zkontrolujte buňku", - "SSE.Controllers.Main.txtStyle_Comma": "Čárka", - "SSE.Controllers.Main.txtStyle_Currency": "Měna", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Vysvětlující text", - "SSE.Controllers.Main.txtStyle_Good": "Dobrý", - "SSE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4", - "SSE.Controllers.Main.txtStyle_Input": "Vstup", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Spojená buňka", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutrální", - "SSE.Controllers.Main.txtStyle_Normal": "Normální", - "SSE.Controllers.Main.txtStyle_Note": "Poznámka", - "SSE.Controllers.Main.txtStyle_Output": "Výstup", - "SSE.Controllers.Main.txtStyle_Percent": "Procento", - "SSE.Controllers.Main.txtStyle_Title": "Titulek", - "SSE.Controllers.Main.txtStyle_Total": "Celkem", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Varovný text", - "SSE.Controllers.Main.txtTab": "Tabulátory", - "SSE.Controllers.Main.txtXAxis": "Osa X", - "SSE.Controllers.Main.txtYAxis": "Osa Y", - "SSE.Controllers.Main.unknownErrorText": "Neznámá chyba.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Váš prohlížeč není podporován.", - "SSE.Controllers.Main.uploadImageExtMessage": "Neznámý formát obrázku.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Žádné obrázky nenahrány.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Překročení maximální velikost obrázku.", - "SSE.Controllers.Main.uploadImageTextText": "Nahrávání obrázku...", - "SSE.Controllers.Main.uploadImageTitleText": "Nahrávání obrázku", - "SSE.Controllers.Main.waitText": "Čekejte prosím ...", - "SSE.Controllers.Main.warnLicenseExceeded": "Počet souběžných spojení na dokumentový server byl překročen a dokument bude otevřen pouze pro prohlížení.
    Ohledně podrobností se obraťte na svého správce.", - "SSE.Controllers.Main.warnLicenseExp": "Platnost vaší licence vypršela.
    Prosím, aktualizujte vaší licenci a obnovte stránku.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Počet souběžných uživatelů byl překročen a dokument bude otevřen pouze pro čtení.
    Ohledně podrobností se obraťte na svého správce.", - "SSE.Controllers.Main.warnNoLicense": "Používáte verzi open source %1. Verze má omezení pro souběžné připojení k dokumentovému serveru (20 připojení najednou).
    Pokud budete potřebovat více, tak prosím zvažte koupi komerční licence.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Tato verze editorů %1 má určitá omezení ohledně souběžně připojených uživatelů.
    Pokud potřebujete více, zvažte zakoupení komerční licence.", - "SSE.Controllers.Main.warnProcessRightsChange": "Bylo Vám odebráno právo upravovat tento soubor.", - "SSE.Controllers.Search.textNoTextFound": "Text nebyl nalezen", - "SSE.Controllers.Search.textReplaceAll": "Nahradit vše", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Varování", - "SSE.Controllers.Settings.txtDe": "Němčina", - "SSE.Controllers.Settings.txtEn": "Angličtina", - "SSE.Controllers.Settings.txtEs": "Španělština", - "SSE.Controllers.Settings.txtFr": "Francouzština", - "SSE.Controllers.Settings.txtIt": "italština", - "SSE.Controllers.Settings.txtPl": "Polština", - "SSE.Controllers.Settings.txtRu": "Ruština", - "SSE.Controllers.Settings.warnDownloadAs": "Pokud budete pokračovat v ukládání v tomto formátu, vše kromě textu bude ztraceno.
    Opravdu chcete pokračovat?", - "SSE.Controllers.Statusbar.cancelButtonText": "Zrušit", - "SSE.Controllers.Statusbar.errNameExists": "Sešit s takovým názvem už existuje.", - "SSE.Controllers.Statusbar.errNameWrongChar": "List nemůže obsahovat znaky: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "List je třeba nějak nazvat", - "SSE.Controllers.Statusbar.errorLastSheet": "Je třeba, aby sešit měl alespoň jeden viditelný list.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Nelze odstranit pracovní list.", - "SSE.Controllers.Statusbar.menuDelete": "Odstranit", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplikát", - "SSE.Controllers.Statusbar.menuHide": "Skrýt", - "SSE.Controllers.Statusbar.menuMore": "Více", - "SSE.Controllers.Statusbar.menuRename": "Přejmenovat", - "SSE.Controllers.Statusbar.menuUnhide": "Odkrýt", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Varování", - "SSE.Controllers.Statusbar.strRenameSheet": "Přejmenovat list", - "SSE.Controllers.Statusbar.strSheet": "List", - "SSE.Controllers.Statusbar.strSheetName": "Název listu", - "SSE.Controllers.Statusbar.textExternalLink": "Externí odkaz", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovní list možná obsahuje data. Pokračovat v operaci?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumentu máte neuložené změny. Pokud o ně nechcete přijít, klikněte na „Zůstat na této stránce“, poté vyčkejte na automatické uložení dokumentu. V opačném případě klikněte na „Opustit tuto stránku“ a všechny neuložené změny budou zahozeny.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Opouštíte aplikaci", - "SSE.Controllers.Toolbar.leaveButtonText": "Opustit tuto stránku", - "SSE.Controllers.Toolbar.stayButtonText": "Zůstat na této stránce", - "SSE.Views.AddFunction.sCatDateAndTime": "Datum a čas", - "SSE.Views.AddFunction.sCatEngineering": "Strojírenské", - "SSE.Views.AddFunction.sCatFinancial": "Finanční", - "SSE.Views.AddFunction.sCatInformation": "Informace", - "SSE.Views.AddFunction.sCatLogical": "Logický", - "SSE.Views.AddFunction.sCatLookupAndReference": "Hledání a reference", - "SSE.Views.AddFunction.sCatMathematic": "Matematika a trigonometrie", - "SSE.Views.AddFunction.sCatStatistical": "Statistické", - "SSE.Views.AddFunction.sCatTextAndData": "Text a data", - "SSE.Views.AddFunction.textBack": "Zpět", - "SSE.Views.AddFunction.textGroups": "Kategorie", - "SSE.Views.AddLink.textAddLink": "Přidat odkaz", - "SSE.Views.AddLink.textAddress": "Adresa", - "SSE.Views.AddLink.textDisplay": "Zobrazit", - "SSE.Views.AddLink.textExternalLink": "Externí odkaz", - "SSE.Views.AddLink.textInsert": "Vložit", - "SSE.Views.AddLink.textInternalLink": "Vnitřní rozsah dat", - "SSE.Views.AddLink.textLink": "Odkaz", - "SSE.Views.AddLink.textLinkType": "Typ odkazu", - "SSE.Views.AddLink.textRange": "Rozsah", - "SSE.Views.AddLink.textRequired": "Požadovaný", - "SSE.Views.AddLink.textSelectedRange": "Vybraný rozsah", - "SSE.Views.AddLink.textSheet": "List", - "SSE.Views.AddLink.textTip": "Nápověda", - "SSE.Views.AddOther.textAddComment": "Přidat komentář", - "SSE.Views.AddOther.textAddress": "Adresa", - "SSE.Views.AddOther.textBack": "Zpět", - "SSE.Views.AddOther.textComment": "Komentář", - "SSE.Views.AddOther.textDone": "Hotovo", - "SSE.Views.AddOther.textFilter": "Filtr", - "SSE.Views.AddOther.textFromLibrary": "Obrázek z knihovny", - "SSE.Views.AddOther.textFromURL": "Obrázek z adresy URL", - "SSE.Views.AddOther.textImageURL": "URL obrázku", - "SSE.Views.AddOther.textInsert": "Vložit", - "SSE.Views.AddOther.textInsertImage": "Vložit obrázek", - "SSE.Views.AddOther.textLink": "Odkaz", - "SSE.Views.AddOther.textLinkSettings": "Nastavení odkazů", - "SSE.Views.AddOther.textSort": "Setřídit a filtrovat", - "SSE.Views.EditCell.textAccounting": "Účetnictví", - "SSE.Views.EditCell.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "SSE.Views.EditCell.textAlignBottom": "Zarovnat dolů", - "SSE.Views.EditCell.textAlignCenter": "Zarovnat na střed", - "SSE.Views.EditCell.textAlignLeft": "Zarovnat vlevo", - "SSE.Views.EditCell.textAlignMiddle": "Zarovnat na střed", - "SSE.Views.EditCell.textAlignRight": "Zarovnat vpravo", - "SSE.Views.EditCell.textAlignTop": "Zarovnat nahoru", - "SSE.Views.EditCell.textAllBorders": "Všechny ohraničení", - "SSE.Views.EditCell.textAngleClockwise": "Otočit ve směru hodinových ručiček", - "SSE.Views.EditCell.textAngleCounterclockwise": "Otočit proti směru hodinových ručiček", - "SSE.Views.EditCell.textBack": "Zpět", - "SSE.Views.EditCell.textBorderStyle": "Styl ohraničení", - "SSE.Views.EditCell.textBottomBorder": "Dolní ohraničení", - "SSE.Views.EditCell.textCellStyle": "Styly buňky", - "SSE.Views.EditCell.textCharacterBold": "T", - "SSE.Views.EditCell.textCharacterItalic": "S", - "SSE.Views.EditCell.textCharacterUnderline": "PO", - "SSE.Views.EditCell.textColor": "Barva", - "SSE.Views.EditCell.textCurrency": "Měna", - "SSE.Views.EditCell.textCustomColor": "Uživatelsky určená barva", - "SSE.Views.EditCell.textDate": "Datum", - "SSE.Views.EditCell.textDiagDownBorder": "Ohraničení diagonálně dolů", - "SSE.Views.EditCell.textDiagUpBorder": "Ohraničení diagonálně nahoru", - "SSE.Views.EditCell.textDollar": "Dollar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Vyplňte barvu", - "SSE.Views.EditCell.textFonts": "Fonty", - "SSE.Views.EditCell.textFormat": "Formát", - "SSE.Views.EditCell.textGeneral": "Obecný", - "SSE.Views.EditCell.textHorizontalText": "Vodorovný text", - "SSE.Views.EditCell.textInBorders": "Vložit ohraničení", - "SSE.Views.EditCell.textInHorBorder": "Vnitřní vodorovné ohraničení", - "SSE.Views.EditCell.textInteger": "Celé číslo", - "SSE.Views.EditCell.textInVertBorder": "Vnitřní svislé ohraničení", - "SSE.Views.EditCell.textJustified": "Do bloku", - "SSE.Views.EditCell.textLeftBorder": "Levé ohraničení", - "SSE.Views.EditCell.textMedium": "Střední", - "SSE.Views.EditCell.textNoBorder": "Žádné ohraničení", - "SSE.Views.EditCell.textNumber": "Číslo", - "SSE.Views.EditCell.textPercentage": "Procento", - "SSE.Views.EditCell.textPound": "Libra", - "SSE.Views.EditCell.textRightBorder": "Pravé ohraničení", - "SSE.Views.EditCell.textRotateTextDown": "Otočit text dolů", - "SSE.Views.EditCell.textRotateTextUp": "Otočit text nahoru", - "SSE.Views.EditCell.textRouble": "Rubl", - "SSE.Views.EditCell.textScientific": "Vědecké", - "SSE.Views.EditCell.textSize": "Velikost", - "SSE.Views.EditCell.textText": "Text", - "SSE.Views.EditCell.textTextColor": "Barva textu", - "SSE.Views.EditCell.textTextFormat": "Formát textu", - "SSE.Views.EditCell.textTextOrientation": "Orientace textu", - "SSE.Views.EditCell.textThick": "Silný", - "SSE.Views.EditCell.textThin": "Tenký", - "SSE.Views.EditCell.textTime": "Čas", - "SSE.Views.EditCell.textTopBorder": "Horní ohraničení", - "SSE.Views.EditCell.textVerticalText": "Svislý text", - "SSE.Views.EditCell.textWrapText": "Zalamovat text", - "SSE.Views.EditCell.textYen": "Jen", - "SSE.Views.EditChart.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "SSE.Views.EditChart.textAuto": "Automaticky", - "SSE.Views.EditChart.textAxisCrosses": "Křížení os", - "SSE.Views.EditChart.textAxisOptions": "Možnosti os", - "SSE.Views.EditChart.textAxisPosition": "Umístění osy", - "SSE.Views.EditChart.textAxisTitle": "Název osy", - "SSE.Views.EditChart.textBack": "Zpět", - "SSE.Views.EditChart.textBackward": "Posunout zpět", - "SSE.Views.EditChart.textBorder": "Ohraničení", - "SSE.Views.EditChart.textBottom": "Dole", - "SSE.Views.EditChart.textChart": "Graf", - "SSE.Views.EditChart.textChartTitle": "Nadpis grafu", - "SSE.Views.EditChart.textColor": "Barva", - "SSE.Views.EditChart.textCrossesValue": "Překročená hodnota", - "SSE.Views.EditChart.textCustomColor": "Uživatelsky určená barva", - "SSE.Views.EditChart.textDataLabels": "Popisky dat", - "SSE.Views.EditChart.textDesign": "Design", - "SSE.Views.EditChart.textDisplayUnits": "Zobrazit jednotky", - "SSE.Views.EditChart.textFill": "Výplň", - "SSE.Views.EditChart.textForward": "Posunout vpřed", - "SSE.Views.EditChart.textGridlines": "Mřížky", - "SSE.Views.EditChart.textHorAxis": "Vodorovná osa", - "SSE.Views.EditChart.textHorizontal": "Horizontálně", - "SSE.Views.EditChart.textLabelOptions": "Možnosti popisků", - "SSE.Views.EditChart.textLabelPos": "Umístění popisků", - "SSE.Views.EditChart.textLayout": "Rozložení", - "SSE.Views.EditChart.textLeft": "Vlevo", - "SSE.Views.EditChart.textLeftOverlay": "Levé překrytí", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Hlavní", - "SSE.Views.EditChart.textMajorMinor": "Hlavní a vedlejší", - "SSE.Views.EditChart.textMajorType": "Hlavní značky", - "SSE.Views.EditChart.textMaxValue": "Maximální hodnota", - "SSE.Views.EditChart.textMinor": "Vedlejší", - "SSE.Views.EditChart.textMinorType": "Vedlejší značky", - "SSE.Views.EditChart.textMinValue": "Minimální hodnota", - "SSE.Views.EditChart.textNone": "Žádný", - "SSE.Views.EditChart.textNoOverlay": "Bez překrytí", - "SSE.Views.EditChart.textOverlay": "Překrytí", - "SSE.Views.EditChart.textRemoveChart": "Odstranit graf", - "SSE.Views.EditChart.textReorder": "Přerovnat", - "SSE.Views.EditChart.textRight": "Vpravo", - "SSE.Views.EditChart.textRightOverlay": "Pravé překrytí", - "SSE.Views.EditChart.textRotated": "Otočený", - "SSE.Views.EditChart.textSize": "Velikost", - "SSE.Views.EditChart.textStyle": "Styl", - "SSE.Views.EditChart.textTickOptions": "Možnosti značek", - "SSE.Views.EditChart.textToBackground": "Přesunout do pozadí", - "SSE.Views.EditChart.textToForeground": "Přenést do popředí", - "SSE.Views.EditChart.textTop": "Nahoře", - "SSE.Views.EditChart.textType": "Typ", - "SSE.Views.EditChart.textValReverseOrder": "Hodnoty v obráceném pořádí", - "SSE.Views.EditChart.textVerAxis": "Svislá osa", - "SSE.Views.EditChart.textVertical": "Svislé", - "SSE.Views.EditHyperlink.textBack": "Zpět", - "SSE.Views.EditHyperlink.textDisplay": "Zobrazit", - "SSE.Views.EditHyperlink.textEditLink": "Upravit odkaz", - "SSE.Views.EditHyperlink.textExternalLink": "Externí odkaz", - "SSE.Views.EditHyperlink.textInternalLink": "Vnitřní rozsah dat", - "SSE.Views.EditHyperlink.textLink": "Odkaz", - "SSE.Views.EditHyperlink.textLinkType": "Typ odkazu", - "SSE.Views.EditHyperlink.textRange": "Rozsah", - "SSE.Views.EditHyperlink.textRemoveLink": "Odstranit odkaz", - "SSE.Views.EditHyperlink.textScreenTip": "Nápověda", - "SSE.Views.EditHyperlink.textSheet": "List", - "SSE.Views.EditImage.textAddress": "Adresa", - "SSE.Views.EditImage.textBack": "Zpět", - "SSE.Views.EditImage.textBackward": "Posunout zpět", - "SSE.Views.EditImage.textDefault": "Skutečná velikost", - "SSE.Views.EditImage.textForward": "Posunout vpřed", - "SSE.Views.EditImage.textFromLibrary": "Obrázek z knihovny", - "SSE.Views.EditImage.textFromURL": "Obrázek z adresy URL", - "SSE.Views.EditImage.textImageURL": "URL obrázku", - "SSE.Views.EditImage.textLinkSettings": "Nastavení odkazů", - "SSE.Views.EditImage.textRemove": "Odstranit obrázek", - "SSE.Views.EditImage.textReorder": "Přerovnat", - "SSE.Views.EditImage.textReplace": "Nahradit", - "SSE.Views.EditImage.textReplaceImg": "Nahradit obrázek", - "SSE.Views.EditImage.textToBackground": "Přesunout do pozadí", - "SSE.Views.EditImage.textToForeground": "Přenést do popředí", - "SSE.Views.EditShape.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "SSE.Views.EditShape.textBack": "Zpět", - "SSE.Views.EditShape.textBackward": "Posunout zpět", - "SSE.Views.EditShape.textBorder": "Ohraničení", - "SSE.Views.EditShape.textColor": "Barva", - "SSE.Views.EditShape.textCustomColor": "Uživatelsky určená barva", - "SSE.Views.EditShape.textEffects": "Efekty", - "SSE.Views.EditShape.textFill": "Výplň", - "SSE.Views.EditShape.textForward": "Posunout vpřed", - "SSE.Views.EditShape.textOpacity": "Průhlednost", - "SSE.Views.EditShape.textRemoveShape": "Odstranit formu", - "SSE.Views.EditShape.textReorder": "Přerovnat", - "SSE.Views.EditShape.textReplace": "Nahradit", - "SSE.Views.EditShape.textSize": "Velikost", - "SSE.Views.EditShape.textStyle": "Styl", - "SSE.Views.EditShape.textToBackground": "Přesunout do pozadí", - "SSE.Views.EditShape.textToForeground": "Přenést do popředí", - "SSE.Views.EditText.textAddCustomColor": "Přidat uživatelsky určenou barvu", - "SSE.Views.EditText.textBack": "Zpět", - "SSE.Views.EditText.textCharacterBold": "T", - "SSE.Views.EditText.textCharacterItalic": "S", - "SSE.Views.EditText.textCharacterUnderline": "PO", - "SSE.Views.EditText.textCustomColor": "Uživatelsky určená barva", - "SSE.Views.EditText.textFillColor": "Vyplňte barvu", - "SSE.Views.EditText.textFonts": "Fonty", - "SSE.Views.EditText.textSize": "Velikost", - "SSE.Views.EditText.textTextColor": "Barva textu", - "SSE.Views.FilterOptions.textClearFilter": "Vymazat filtr", - "SSE.Views.FilterOptions.textDeleteFilter": "Smazat filtr", - "SSE.Views.FilterOptions.textFilter": "Předvolby filtru", - "SSE.Views.Search.textByColumns": "Po sloupcích", - "SSE.Views.Search.textByRows": "Po řádcích", - "SSE.Views.Search.textDone": "Hotovo", - "SSE.Views.Search.textFind": "Najít", - "SSE.Views.Search.textFindAndReplace": "Najít a nahradit", - "SSE.Views.Search.textFormulas": "Vzorce", - "SSE.Views.Search.textHighlightRes": "Zvýraznit výsledky", - "SSE.Views.Search.textLookIn": "Hledat v", - "SSE.Views.Search.textMatchCase": "Shodný případ", - "SSE.Views.Search.textMatchCell": "Přizpůsobit buňku", - "SSE.Views.Search.textReplace": "Nahradit", - "SSE.Views.Search.textSearch": "Hledat", - "SSE.Views.Search.textSearchBy": "Hledat", - "SSE.Views.Search.textSearchIn": "Hledat v", - "SSE.Views.Search.textSheet": "List", - "SSE.Views.Search.textValues": "Hodnoty", - "SSE.Views.Search.textWorkbook": "Sešit", - "SSE.Views.Settings.textAbout": "O", - "SSE.Views.Settings.textAddress": "Adresa", - "SSE.Views.Settings.textApplication": "Aplikace", - "SSE.Views.Settings.textApplicationSettings": "Nastavení aplikace", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Zpět", - "SSE.Views.Settings.textBottom": "Dole", - "SSE.Views.Settings.textCentimeter": "Centimetr", - "SSE.Views.Settings.textCollaboration": "Spolupráce", - "SSE.Views.Settings.textColorSchemes": "Schémata barev", - "SSE.Views.Settings.textComment": "Komentář", - "SSE.Views.Settings.textCommentingDisplay": "Zobrazování komentářů", - "SSE.Views.Settings.textCreated": "Vytvořeno", - "SSE.Views.Settings.textCreateDate": "Datum vytvoření", - "SSE.Views.Settings.textCustom": "Uživatelsky určené", - "SSE.Views.Settings.textCustomSize": "Uživatelsky určená velikost", - "SSE.Views.Settings.textDisableAll": "Vypnout vše", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Vypnout všechna makra s oznámením", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Vypnout všechna makra bez oznámení", - "SSE.Views.Settings.textDisplayComments": "Komentáře", - "SSE.Views.Settings.textDisplayResolvedComments": "Vyřešené komentáře", - "SSE.Views.Settings.textDocInfo": "Info tabulky", - "SSE.Views.Settings.textDocTitle": "Nadpis sešitu", - "SSE.Views.Settings.textDone": "Hotovo", - "SSE.Views.Settings.textDownload": "Stáhnout", - "SSE.Views.Settings.textDownloadAs": "Stáhnout jako...", - "SSE.Views.Settings.textEditDoc": "Upravit dokument", - "SSE.Views.Settings.textEmail": "E-mail", - "SSE.Views.Settings.textEnableAll": "Zapnout vše", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Zapnout všechna makra bez notifikace", - "SSE.Views.Settings.textExample": "Ukázka", - "SSE.Views.Settings.textFind": "Najít", - "SSE.Views.Settings.textFindAndReplace": "Najít a nahradit", - "SSE.Views.Settings.textFormat": "Formát", - "SSE.Views.Settings.textFormulaLanguage": "Jazyk vzorce", - "SSE.Views.Settings.textHelp": "Nápověda", - "SSE.Views.Settings.textHideGridlines": "Skrýt mřížku", - "SSE.Views.Settings.textHideHeadings": "Skrýt záhlaví", - "SSE.Views.Settings.textInch": "Palec", - "SSE.Views.Settings.textLandscape": "Na šířku", - "SSE.Views.Settings.textLastModified": "Naposledy upraveno", - "SSE.Views.Settings.textLastModifiedBy": "Naposledy upravil(a)", - "SSE.Views.Settings.textLeft": "Vlevo", - "SSE.Views.Settings.textLoading": "Nahrávám...", - "SSE.Views.Settings.textLocation": "Umístění", - "SSE.Views.Settings.textMacrosSettings": "Nastavení maker", - "SSE.Views.Settings.textMargins": "Okraje", - "SSE.Views.Settings.textOrientation": "Orientace", - "SSE.Views.Settings.textOwner": "Vlastník", - "SSE.Views.Settings.textPoint": "Bod", - "SSE.Views.Settings.textPortrait": "Na výšku", - "SSE.Views.Settings.textPoweredBy": "Poháněno", - "SSE.Views.Settings.textPrint": "Tisk", - "SSE.Views.Settings.textR1C1Style": "Styl R1C1 reference", - "SSE.Views.Settings.textRegionalSettings": "Místní nastavení", - "SSE.Views.Settings.textRight": "Vpravo", - "SSE.Views.Settings.textSettings": "Nastavení", - "SSE.Views.Settings.textShowNotification": "Zobrazit oznámení", - "SSE.Views.Settings.textSpreadsheetFormats": "Formáty sešitu", - "SSE.Views.Settings.textSpreadsheetSettings": "Nastavení listu", - "SSE.Views.Settings.textSubject": "Předmět", - "SSE.Views.Settings.textTel": "Sdělit", - "SSE.Views.Settings.textTitle": "Nadpis", - "SSE.Views.Settings.textTop": "Nahoře", - "SSE.Views.Settings.textUnitOfMeasurement": "Měřit v jednotkách", - "SSE.Views.Settings.textUploaded": "Nahráno", - "SSE.Views.Settings.textVersion": "Verze", - "SSE.Views.Settings.unknownText": "Neznámý", - "SSE.Views.Toolbar.textBack": "Zpět" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index a4555508c..2ff5762a4 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -73,8 +73,35 @@ "notcriticalErrorTitle": "Warnung", "SDK": { "txtAccent": "Akzent", + "txtAll": "(Alle)", "txtArt": "Text hier eingeben", + "txtBlank": "(leer)", + "txtByField": "%1 von %2", + "txtClearFilter": "Filter löschen (Alt+C)", + "txtColLbls": "Rubrikbezeichnung", + "txtColumn": "Rubrik", + "txtConfidential": "Vertraulich", + "txtDate": "Datum", + "txtDays": "Tage", "txtDiagramTitle": "Diagrammtitel", + "txtFile": "Datei", + "txtGrandTotal": "Gesamtsumme", + "txtGroup": "Gruppe", + "txtHours": "Öffnungszeiten", + "txtMinutes": "Minuten", + "txtMonths": "Monate", + "txtMultiSelect": "Mehrfachauswahl (Alt+S)", + "txtOr": "%1 oder %2", + "txtPage": "Seite", + "txtPageOf": "Seite %1 von %2", + "txtPages": "Seiten", + "txtPreparedBy": "Vorbereitet von", + "txtPrintArea": "Druckbereich", + "txtQuarter": "Quartal", + "txtQuarters": "Quartal", + "txtRow": "Zeile", + "txtRowLbls": "Zeilenbeschriftungen", + "txtSeconds": "Sekunden", "txtSeries": "Reihen", "txtStyle_Bad": "Schlecht", "txtStyle_Calculation": "Berechnung", @@ -97,8 +124,13 @@ "txtStyle_Title": "Titel", "txtStyle_Total": "Insgesamt", "txtStyle_Warning_Text": "Warnungstext", + "txtTab": "Tab", + "txtTable": "Tabelle", + "txtTime": "Zeit", + "txtValues": "Werte", "txtXAxis": "Achse X", - "txtYAxis": "Achse Y" + "txtYAxis": "Achse Y", + "txtYears": "Jahre" }, "textAnonymous": "Anonym", "textBuyNow": "Webseite besuchen", @@ -270,6 +302,7 @@ "textAddLink": "Link hinzufügen", "textAddress": "Adresse", "textBack": "Zurück", + "textCancel": "Abbrechen", "textChart": "Diagramm", "textComment": "Kommentar", "textDisplay": "Anzeigen", @@ -296,7 +329,11 @@ "textShape": "Form", "textSheet": "Blatt", "textSortAndFilter": "Sortieren und Filtern", - "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein." + "txtExpand": "Erweitern und sortieren", + "txtExpandSort": "Die Daten neben der Auswahl werden nicht sortiert. Möchten Sie die Auswahl um die angrenzenden Daten erweitern oder nur mit der Sortierung der aktuell ausgewählten Zellen fortfahren?", + "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "txtSorting": "Sortierung", + "txtSortSelected": "Ausgewählte sortieren" }, "Edit": { "notcriticalErrorTitle": "Warnung", @@ -474,7 +511,9 @@ "textVerticalText": "Vertikaler Text", "textWrapText": "Zeilenumbruch", "textYen": "Yen", - "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein." + "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "txtSortHigh2Low": "Absteigend sortieren", + "txtSortLow2High": "Aufsteigend sortieren" }, "Settings": { "advCSVOptions": "CSV-Optionen auswählen", @@ -568,6 +607,28 @@ "txtEncoding": "Codierung ", "txtIncorrectPwd": "Passwort ist falsch", "txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Reichhaltig", + "txtScheme14": "Erker", + "txtScheme15": "Herkunft", + "txtScheme16": "Papier", + "txtScheme17": "Sonnenwende", + "txtScheme18": "Technik", + "txtScheme19": "Wanderung", + "txtScheme2": "Graustufe", + "txtScheme20": "Rhea", + "txtScheme21": "Telesto", + "txtScheme22": "Neues Office", + "txtScheme3": "Apex", + "txtScheme4": "Bildseitenverhältnis", + "txtScheme5": "bürgerlich", + "txtScheme6": "Halle", + "txtScheme7": "Kapital", + "txtScheme8": "Fluss", + "txtScheme9": "Gießerei", "txtSpace": "Leerzeichen", "txtTab": "Tab", "warnDownloadAs": "Wenn Sie mit dem Speichern in diesem Format fortsetzen, werden alle Objekte außer Text verloren gehen.
    Möchten Sie wirklich fortsetzen?" diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 90a58670b..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -1,661 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Προσθήκη απάντησης", - "Common.Controllers.Collaboration.textCancel": "Ακύρωση", - "Common.Controllers.Collaboration.textDeleteComment": "Διαγραφή σχολίου", - "Common.Controllers.Collaboration.textDeleteReply": "Διαγραφή απάντησης", - "Common.Controllers.Collaboration.textDone": "Ολοκληρώθηκε", - "Common.Controllers.Collaboration.textEdit": "Επεξεργασία", - "Common.Controllers.Collaboration.textEditUser": "Οι χρήστες που επεξεργάζονται το αρχείο:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Θέλετε πραγματικά να διαγράψετε αυτό το σχόλιο;", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Θέλετε πραγματικά να διαγράψετε αυτήν την απάντηση;", - "Common.Controllers.Collaboration.textReopen": "Άνοιγμα ξανά", - "Common.Controllers.Collaboration.textResolve": "Επίλυση", - "Common.Controllers.Collaboration.textYes": "Ναι", - "Common.UI.ThemeColorPalette.textCustomColors": "Προσαρμοσμένα χρώματα", - "Common.UI.ThemeColorPalette.textStandartColors": "Τυπικά χρώματα", - "Common.UI.ThemeColorPalette.textThemeColors": "Χρώματα θέματος", - "Common.Utils.Metric.txtCm": "εκ", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Προσθήκη Απάντησης", - "Common.Views.Collaboration.textBack": "Πίσω", - "Common.Views.Collaboration.textCancel": "Ακύρωση", - "Common.Views.Collaboration.textCollaboration": "Συνεργασία", - "Common.Views.Collaboration.textDone": "Ολοκληρώθηκε", - "Common.Views.Collaboration.textEditReply": "Επεξεργασία απάντησης", - "Common.Views.Collaboration.textEditUsers": "Χρήστες", - "Common.Views.Collaboration.textEditСomment": "Επεξεργασία σχολίου", - "Common.Views.Collaboration.textNoComments": "Αυτό το λογιστικό φύλλο δεν περιέχει σχόλια", - "Common.Views.Collaboration.textСomments": "Σχόλια", - "SSE.Controllers.AddChart.txtDiagramTitle": "Τίτλος διαγράμματος", - "SSE.Controllers.AddChart.txtSeries": "Σειρά", - "SSE.Controllers.AddChart.txtXAxis": "Άξονας Χ", - "SSE.Controllers.AddChart.txtYAxis": "Άξονας Υ", - "SSE.Controllers.AddContainer.textChart": "Διάγραμμα", - "SSE.Controllers.AddContainer.textFormula": "Συνάρτηση", - "SSE.Controllers.AddContainer.textImage": "Εικόνα", - "SSE.Controllers.AddContainer.textOther": "Άλλο", - "SSE.Controllers.AddContainer.textShape": "Σχήμα", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Προειδοποίηση", - "SSE.Controllers.AddLink.textInvalidRange": "ΣΦΑΛΜΑ! Μη έγκυρο εύρος κελιών", - "SSE.Controllers.AddLink.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση με τη μορφή «http://www.example.com»", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Προειδοποίηση", - "SSE.Controllers.AddOther.textCancel": "Ακύρωση", - "SSE.Controllers.AddOther.textContinue": "Συνέχεια", - "SSE.Controllers.AddOther.textDelete": "Διαγραφή", - "SSE.Controllers.AddOther.textDeleteDraft": "Θέλετε πραγματικά να διαγράψετε το πρόχειρο;", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", - "SSE.Controllers.AddOther.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση με τη μορφή «http://www.example.com»", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Οι ενέργειες αντιγραφής, αποκοπής και επικόλλησης χρησιμοποιώντας το μενού περιβάλλοντος θα εκτελούνται μόνο στο τρέχον αρχείο.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "Η παραπομπή του συνδέσμου δεν υπάρχει. Παρακαλούμε διορθώστε τον σύνδεσμο ή διαγράψτε τον.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Προσθήκη σχολίου", - "SSE.Controllers.DocumentHolder.menuAddLink": "Προσθήκη συνδέσμου", - "SSE.Controllers.DocumentHolder.menuCell": "Κελί", - "SSE.Controllers.DocumentHolder.menuCopy": "Αντιγραφή", - "SSE.Controllers.DocumentHolder.menuCut": "Αποκοπή", - "SSE.Controllers.DocumentHolder.menuDelete": "Διαγραφή", - "SSE.Controllers.DocumentHolder.menuEdit": "Επεξεργασία", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Παγώστε τα παράθυρα", - "SSE.Controllers.DocumentHolder.menuHide": "Απόκρυψη", - "SSE.Controllers.DocumentHolder.menuMerge": "Συγχώνευση", - "SSE.Controllers.DocumentHolder.menuMore": "Περισσότερα", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Άνοιγμα συνδέσμου", - "SSE.Controllers.DocumentHolder.menuPaste": "Επικόλληση", - "SSE.Controllers.DocumentHolder.menuShow": "Εμφάνιση", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Απελευθέρωσε τα παράθυρα", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Αποσυγχώνευση", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Αναίρεση Αναδίπλωσης", - "SSE.Controllers.DocumentHolder.menuViewComment": "Προβολή σχολίου", - "SSE.Controllers.DocumentHolder.menuWrap": "Αναδίπλωση", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Προειδοποίηση", - "SSE.Controllers.DocumentHolder.sheetCancel": "Ακύρωση", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Ενέργειες αντιγραφής, αποκοπής και επικόλλησης", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Να μην εμφανίζεται ξανά", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Μόνο τα δεδομένα από το επάνω αριστερό κελί θα παραμείνουν στο συγχωνευμένο κελί.
    Είστε σίγουροι ότι θέλετε να συνεχίσετε;", - "SSE.Controllers.EditCell.textAuto": "Αυτόματα", - "SSE.Controllers.EditCell.textFonts": "Γραμματοσειρές", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ΣΦΑΛΜΑ! Ο μέγιστος αριθμός σειρών δεδομένων ανά γράφημα είναι 255.", - "SSE.Controllers.EditChart.errorStockChart": "Λανθασμένη σειρά της γραμμής. Για να δημιουργήσετε ένα γράφημα μετοχών τοποθετήστε τα δεδομένα στο φύλλο με την ακόλουθη σειρά:
    τιμή ανοίγματος, μέγιστη τιμή, ελάχιστη τιμή, τιμή κλεισίματος.", - "SSE.Controllers.EditChart.textAuto": "Αυτόματα", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Μεταξύ διαβαθμίσεις", - "SSE.Controllers.EditChart.textBillions": "Δισεκατομμύρια", - "SSE.Controllers.EditChart.textBottom": "Κάτω", - "SSE.Controllers.EditChart.textCenter": "Κέντρο", - "SSE.Controllers.EditChart.textCross": "Διασταύρωση", - "SSE.Controllers.EditChart.textCustom": "Προσαρμοσμένο", - "SSE.Controllers.EditChart.textFit": "Προσαρμογή στο πλάτος", - "SSE.Controllers.EditChart.textFixed": "Σταθερό", - "SSE.Controllers.EditChart.textHigh": "Υψηλό", - "SSE.Controllers.EditChart.textHorizontal": "Οριζόντια", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Εκατοντάδες", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "Ιν", - "SSE.Controllers.EditChart.textInnerBottom": "Εσωτερικό κάτω μέρος", - "SSE.Controllers.EditChart.textInnerTop": "Εσωτερικό πάνω μέρος", - "SSE.Controllers.EditChart.textLeft": "Αριστερά", - "SSE.Controllers.EditChart.textLeftOverlay": "Αριστερή επικάλυψη", - "SSE.Controllers.EditChart.textLow": "Χαμηλό", - "SSE.Controllers.EditChart.textManual": "Χειροκίνητα", - "SSE.Controllers.EditChart.textMaxValue": "Μέγιστη τιμή", - "SSE.Controllers.EditChart.textMillions": "Εκατομμύρια", - "SSE.Controllers.EditChart.textMinValue": "Ελάχιστη τιμή", - "SSE.Controllers.EditChart.textNextToAxis": "Δίπλα στον άξονα", - "SSE.Controllers.EditChart.textNone": "Κανένα", - "SSE.Controllers.EditChart.textNoOverlay": "Χωρίς επικάλυψη", - "SSE.Controllers.EditChart.textOnTickMarks": "Επί των Διαβαθμίσεων", - "SSE.Controllers.EditChart.textOut": "Έξω", - "SSE.Controllers.EditChart.textOuterTop": "Εξωτερικό επάνω", - "SSE.Controllers.EditChart.textOverlay": "Επικάλυψη", - "SSE.Controllers.EditChart.textRight": "Δεξιά", - "SSE.Controllers.EditChart.textRightOverlay": "Δεξιά επικάλυψη", - "SSE.Controllers.EditChart.textRotated": "Περιστραμμένος", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Χιλιάδες", - "SSE.Controllers.EditChart.textTop": "Επάνω", - "SSE.Controllers.EditChart.textTrillions": "Τρισεκατομμύρια", - "SSE.Controllers.EditChart.textValue": "Τιμή", - "SSE.Controllers.EditContainer.textCell": "Κελί", - "SSE.Controllers.EditContainer.textChart": "Διάγραμμα", - "SSE.Controllers.EditContainer.textHyperlink": "Υπερσύνδεσμος", - "SSE.Controllers.EditContainer.textImage": "Εικόνα", - "SSE.Controllers.EditContainer.textSettings": "Ρυθμίσεις", - "SSE.Controllers.EditContainer.textShape": "Σχήμα", - "SSE.Controllers.EditContainer.textTable": "Πίνακας", - "SSE.Controllers.EditContainer.textText": "Κείμενο", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Προειδοποίηση", - "SSE.Controllers.EditHyperlink.textDefault": "Επιλεγμένο εύρος", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Εξωτερικός σύνδεσμος", - "SSE.Controllers.EditHyperlink.textInternalLink": "Εσωτερικό εύρος δεδομένων", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Μη έγκυρο εύρος κελιών", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι μια διεύθυνση URL με τη μορφή «http://www.example.com»", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Προειδοποίηση", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Πρέπει να καθορίσετε τη διεύθυνση URL της εικόνας.", - "SSE.Controllers.EditImage.txtNotUrl": "Αυτό το πεδίο πρέπει να είναι διεύθυνση URL της μορφής 'http://www.example.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Πρέπει να επιλέξετε τουλάχιστον μία τιμή", - "SSE.Controllers.FilterOptions.textErrorTitle": "Προειδοποίηση", - "SSE.Controllers.FilterOptions.textSelectAll": "Επιλογή όλων ", - "SSE.Controllers.Main.advCSVOptions": "Επιλέξτε CSV επιλογές", - "SSE.Controllers.Main.advDRMEnterPassword": "Εισάγετε το συνθηματικό σας:", - "SSE.Controllers.Main.advDRMOptions": "Προστατευμένο αρχείο", - "SSE.Controllers.Main.advDRMPassword": "Συνθηματικό", - "SSE.Controllers.Main.applyChangesTextText": "Γίνεται φόρτωση δεδομένων...", - "SSE.Controllers.Main.applyChangesTitleText": "Γίνεται φόρτωση δεδομένων", - "SSE.Controllers.Main.closeButtonText": "Κλείσιμο αρχείου", - "SSE.Controllers.Main.convertationTimeoutText": "Υπέρβαση χρονικού ορίου μετατροπής.", - "SSE.Controllers.Main.criticalErrorExtText": "Πατήστε «OK» για να επιστρέψετε στη λίστα εγγράφων.", - "SSE.Controllers.Main.criticalErrorTitle": "Σφάλμα", - "SSE.Controllers.Main.downloadErrorText": "Αποτυχία λήψης.", - "SSE.Controllers.Main.downloadMergeText": "Γίνεται λήψη...", - "SSE.Controllers.Main.downloadMergeTitle": "Γίνεται λήψη", - "SSE.Controllers.Main.downloadTextText": "Γίνεται λήψη λογιστικού φύλλου...", - "SSE.Controllers.Main.downloadTitleText": "Λήψη λογιστικού φύλλου", - "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": "Εσφαλμένος σύνδεσμος εικόνας", - "SSE.Controllers.Main.errorChangeArray": "Δεν μπορείτε να αλλάξετε μέρος ενός πίνακα.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Χάθηκε η σύνδεση με τον εξυπηρετητή. Δεν μπορείτε να επεξεργαστείτε το έγγραφο αυτή τη στιγμή.", - "SSE.Controllers.Main.errorConnectToServer": "Δεν ήταν δυνατή η αποθήκευση του εγγράφου. Παρακαλούμε ελέγξτε τις ρυθμίσεις σύνδεσης ή επικοινωνήστε με τον διαχειριστή σας.
    Όταν κάνετε κλικ στο κουμπί «OK», θα σας ζητηθεί να πραγματοποιήσετε λήψη του εγγράφου.", - "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.errorEditingDownloadas": "Παρουσιάστηκε σφάλμα κατά την εργασία με το έγγραφο.
    Χρησιμοποιήστε την επιλογή «Λήψη» για να αποθηκεύσετε το αντίγραφο ασφαλείας του αρχείου στον σκληρό δίσκο του υπολογιστή σας.", - "SSE.Controllers.Main.errorFilePassProtect": "Το αρχείο προστατεύεται με συνθηματικό και δεν μπορεί να ανοίξει.", - "SSE.Controllers.Main.errorFileRequest": "Εξωτερικό σφάλμα.
    Σφάλμα αιτήματος αρχείου. Επικοινωνήστε με την υποστήριξη σε περίπτωση που το σφάλμα παραμένει.", - "SSE.Controllers.Main.errorFileSizeExceed": "Το μέγεθος του αρχείου υπερβαίνει το όριο που έχει οριστεί για τον διακομιστή σας.
    Παρακαλούμε επικοινωνήστε με τον διαχειριστή του διακομιστή εγγράφων για λεπτομέρειες.", - "SSE.Controllers.Main.errorFileVKey": "Εξωτερικό σφάλμα.
    Λανθασμένο κλειδί ασφαλείας. Παρακαλούμε επικοινωνήστε με την υποστήριξη σε περίπτωση που το σφάλμα παραμένει.", - "SSE.Controllers.Main.errorFillRange": "Δεν ήταν δυνατή η συμπλήρωση του επιλεγμένου εύρους κελιών.
    Όλα τα συγχωνευμένα κελιά πρέπει να έχουν το ίδιο μέγεθος.", - "SSE.Controllers.Main.errorFormulaName": "Υπάρχει σφάλμα στον καταχωρημένο τύπο.
    Χρησιμοποιείται εσφαλμένο όνομα τύπου.", - "SSE.Controllers.Main.errorFormulaParsing": "Εσωτερικό σφάλμα κατά την ανάλυση του τύπου.", - "SSE.Controllers.Main.errorFrmlMaxLength": "Ο μαθηματικός τύπος ξεπερνά το όριο των 8192 χαρακτήρων.
    Παρακαλούμε επεξεργαστείτε τον και δοκιμάστε ξανά.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Δεν μπορείτε να εισαγάγετε αυτόν τον τύπο επειδή έχει πάρα πολλές τιμές,
    αναφορές κελιού ή/και ονόματα.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Οι τιμές κειμένου στους τύπους περιορίζονται σε 255 χαρακτήρες.
    Χρησιμοποιήστε τη συνάρτηση CONCATENATE ή τον τελεστή συνένωσης (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Η συνάρτηση αναφέρεται σε ένα φύλλο που δεν υπάρχει.
    Παρακαλούμε ελέγξτε τα δεδομένα και δοκιμάστε ξανά.", - "SSE.Controllers.Main.errorInvalidRef": "Εισαγάγετε ένα σωστό όνομα για την επιλογή ή μια έγκυρη αναφορά για να μεταβείτε.", - "SSE.Controllers.Main.errorKeyEncrypt": "Άγνωστος περιγραφέας κλειδιού", - "SSE.Controllers.Main.errorKeyExpire": "Ο περιγραφέας κλειδιού έχει λήξει", - "SSE.Controllers.Main.errorLockedAll": "Η λειτουργία δεν μπόρεσε να γίνει καθώς το φύλλο έχει κλειδωθεί από άλλο χρήστη.", - "SSE.Controllers.Main.errorLockedCellPivot": "Δεν είναι δυνατή η τροποποίηση δεδομένων εντός ενός συγκεντρωτικού πίνακα", - "SSE.Controllers.Main.errorLockedWorksheetRename": "Το φύλλο δεν μπορεί να μετονομαστεί προς το παρόν καθώς μετονομάζεται από άλλο χρήστη", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Η φόρτωση του εγγράφου απέτυχε. Παρακαλούμε επιλέξτε ένα διαφορετικό αρχείο.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Η συγχώνευση απέτυχε.", - "SSE.Controllers.Main.errorMaxPoints": "Ο μέγιστος αριθμός σημείων σε σειρά ανά γράφημα είναι 4096.", - "SSE.Controllers.Main.errorMoveRange": "Αδυναμία αλλαγής μέρους ενός συγχωνευμένου κελιού", - "SSE.Controllers.Main.errorMultiCellFormula": "Οι τύποι συστοιχιών πολλών κελιών δεν επιτρέπονται στους πίνακες.", - "SSE.Controllers.Main.errorOpensource": "Με τη δωρεάν έκδοση Κοινότητας μπορείτε μόνο να διαβάσετε τα έγγραφα. Η πρόσβαση σε επεξεργαστές εγγράφων μέσω δικτύου κινητής απαιτεί εμπορική άδεια.", - "SSE.Controllers.Main.errorOpenWarning": "Ένας από τους τύπους του αρχείων ξεπέρασε το όριο των 8192 χαρακτήρων.
    Ο τύπος καταργήθηκε.", - "SSE.Controllers.Main.errorOperandExpected": "Η σύνταξη της εισαγόμενης συνάρτησης δεν είναι σωστή. Παρακαλούμε ελέγξτε αν λείπει μία από τις παρενθέσεις - «(» ή «)».", - "SSE.Controllers.Main.errorPasteMaxRange": "Η περιοχή αντιγραφής και επικόλλησης δεν ταιριάζει.
    Παρακαλούμε επιλέξτε μια περιοχή με το ίδιο μέγεθος ή κάντε κλικ στο πρώτο κελί της σειράς για να επικολλήσετε τα αντιγραμμένα κελιά.", - "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.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.leavePageText": "Έχετε μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο. Κάντε κλικ στο «Παραμονή σε αυτήν τη σελίδα» για να περιμένετε την αυτόματη αποθήκευση του εγγράφου. Κάντε κλικ στο «Έξοδος από τη σελίδα» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", - "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.loadingDocumentTextText": "Γίνεται φόρτωση λογιστικού φύλλου...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Γίνεται φόρτωση λογιστικού φύλλου", - "SSE.Controllers.Main.mailMergeLoadFileText": "Γίνεται φόρτωση πηγαίων δεδομένων...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Γίνεται φόρτωση πηγαίων δεδομένων", - "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.savePreparingText": "Προετοιμασία για αποθήκευση", - "SSE.Controllers.Main.savePreparingTitle": "Προετοιμασία για αποθήκευση. Παρακαλούμε περιμένετε...", - "SSE.Controllers.Main.saveTextText": "Γίνεται αποθήκευση εγγράφου...", - "SSE.Controllers.Main.saveTitleText": "Αποθήκευση εγγράφου", - "SSE.Controllers.Main.scriptLoadError": "Η σύνδεση είναι πολύ αργή, δεν ήταν δυνατή η φόρτωση ορισμένων στοιχείων. Φορτώστε ξανά τη σελίδα.", - "SSE.Controllers.Main.sendMergeText": "Αποστολή Συγχώνευσης...", - "SSE.Controllers.Main.sendMergeTitle": "Αποστολή Συγχώνευσης", - "SSE.Controllers.Main.textAnonymous": "Ανώνυμος", - "SSE.Controllers.Main.textBack": "Πίσω", - "SSE.Controllers.Main.textBuyNow": "Επισκεφθείτε την ιστοσελίδα", - "SSE.Controllers.Main.textCancel": "Ακύρωση", - "SSE.Controllers.Main.textClose": "Κλείσιμο", - "SSE.Controllers.Main.textContactUs": "Επικοινωνήστε με τις πωλήσεις", - "SSE.Controllers.Main.textCustomLoader": "Παρακαλούμε λάβετε υπόψη ότι σύμφωνα με τους όρους της άδειας δεν δικαιούστε αλλαγή του φορτωτή.
    Παρακαλούμε επικοινωνήστε με το Τμήμα Πωλήσεων για να λάβετε μια προσφορά.", - "SSE.Controllers.Main.textDone": "Ολοκληρώθηκε", - "SSE.Controllers.Main.textGuest": "Επισκέπτης", - "SSE.Controllers.Main.textHasMacros": "Το αρχείο περιέχει αυτόματες μακροεντολές.
    Θέλετε να εκτελέσετε μακροεντολές;", - "SSE.Controllers.Main.textLoadingDocument": "Γίνεται φόρτωση λογιστικού φύλλου", - "SSE.Controllers.Main.textNo": "Όχι", - "SSE.Controllers.Main.textNoLicenseTitle": "Το όριο άδειας συμπληρώθηκε.", - "SSE.Controllers.Main.textOK": "Εντάξει", - "SSE.Controllers.Main.textPaidFeature": "Δυνατότητα επί πληρωμή", - "SSE.Controllers.Main.textPassword": "Συνθηματικό", - "SSE.Controllers.Main.textPreloader": "Φόρτωση ...", - "SSE.Controllers.Main.textRemember": "Να θυμάσαι την επιλογή μου για όλα τα αρχεία", - "SSE.Controllers.Main.textShape": "Σχήμα", - "SSE.Controllers.Main.textStrict": "Αυστηρή κατάσταση", - "SSE.Controllers.Main.textTryUndoRedo": "Οι λειτουργίες Αναίρεση/Επανάληψη είναι απενεργοποιημένες στην κατάσταση Γρήγορης συν-επεξεργασίας.
    Κάντε κλικ στο κουμπί 'Αυστηρή κατάσταση' για να μεταβείτε στην Αυστηρή κατάσταση συν-επεξεργασίας όπου επεξεργάζεστε το αρχείο χωρίς παρέμβαση άλλων χρηστών και στέλνετε τις αλλαγές σας αφού τις αποθηκεύσετε. Η μετάβαση μεταξύ των δύο καταστάσεων γίνεται μέσω των Ρυθμίσεων για Προχωρημένους.", - "SSE.Controllers.Main.textUsername": "Όνομα χρήστη", - "SSE.Controllers.Main.textYes": "Ναι", - "SSE.Controllers.Main.titleLicenseExp": "Η άδεια έληξε", - "SSE.Controllers.Main.titleServerVersion": "Ο επεξεργαστής ενημερώθηκε", - "SSE.Controllers.Main.titleUpdateVersion": "Η έκδοση άλλαξε", - "SSE.Controllers.Main.txtAccent": "Έμφαση", - "SSE.Controllers.Main.txtArt": "Το κείμενό σας εδώ", - "SSE.Controllers.Main.txtBasicShapes": "Βασικά σχήματα", - "SSE.Controllers.Main.txtButtons": "Κουμπιά", - "SSE.Controllers.Main.txtCallouts": "Επεξηγήσεις", - "SSE.Controllers.Main.txtCharts": "Διαγράμματα", - "SSE.Controllers.Main.txtDelimiter": "Διαχωριστικό", - "SSE.Controllers.Main.txtDiagramTitle": "Τίτλος διαγράμματος", - "SSE.Controllers.Main.txtEditingMode": "Ορισμός λειτουργίας επεξεργασίας...", - "SSE.Controllers.Main.txtEncoding": "Κωδικοποίηση", - "SSE.Controllers.Main.txtErrorLoadHistory": "Η φόρτωση του ιστορικού απέτυχε", - "SSE.Controllers.Main.txtFiguredArrows": "Βέλη", - "SSE.Controllers.Main.txtLines": "Γραμμές", - "SSE.Controllers.Main.txtMath": "Μαθηματικά", - "SSE.Controllers.Main.txtProtected": "Μόλις εισαγάγετε το συνθηματικό και ανοίξετε το αρχείο, θα γίνει επαναφορά του τρέχοντος συνθηματικού του αρχείου", - "SSE.Controllers.Main.txtRectangles": "Ορθογώνια", - "SSE.Controllers.Main.txtSeries": "Σειρά", - "SSE.Controllers.Main.txtSpace": "Κενό", - "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.txtXAxis": "Άξονας Χ", - "SSE.Controllers.Main.txtYAxis": "Άξονας Υ", - "SSE.Controllers.Main.unknownErrorText": "Άγνωστο σφάλμα.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ο περιηγητής σας δεν υποστηρίζεται.", - "SSE.Controllers.Main.uploadImageExtMessage": "Άγνωστη μορφή εικόνας.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Δεν μεταφορτώθηκαν εικόνες.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Ξεπεράστηκε το μέγιστο μέγεθος εικόνας.", - "SSE.Controllers.Main.uploadImageTextText": "Γίνεται μεταφόρτωση εικόνας...", - "SSE.Controllers.Main.uploadImageTitleText": "Μεταφόρτωση εικόνας", - "SSE.Controllers.Main.waitText": "Παρακαλούμε, περιμένετε...", - "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 επεξεργαστές. Αυτό το έγγραφο θα ανοίχτεί μόνο για προβολή.​​
    Παρακαλούμε επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Έχετε φτάσει το όριο χρήστη για %1 επεξεργαστές.
    Παρακαλούμε επικοινωνήστε με την ομάδα πωλήσεων %1 για προσωπικούς όρους αναβάθμισης.", - "SSE.Controllers.Main.warnProcessRightsChange": "Σας έχει απαγορευτεί το δικαίωμα επεξεργασίας του αρχείου.", - "SSE.Controllers.Search.textNoTextFound": "Δεν βρέθηκε κείμενο", - "SSE.Controllers.Search.textReplaceAll": "Αντικατάσταση Όλων", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Προειδοποίηση", - "SSE.Controllers.Settings.txtDe": "Γερμανικά", - "SSE.Controllers.Settings.txtEn": "Αγγλικά", - "SSE.Controllers.Settings.txtEs": "Ισπανικά", - "SSE.Controllers.Settings.txtFr": "Γαλλικά", - "SSE.Controllers.Settings.txtIt": "Ιταλικά", - "SSE.Controllers.Settings.txtPl": "Πολωνικά", - "SSE.Controllers.Settings.txtRu": "Ρώσικα", - "SSE.Controllers.Settings.warnDownloadAs": "Εάν συνεχίσετε να αποθηκεύετε σε αυτήν τη μορφή, όλες οι λειτουργίες εκτός από το κείμενο θα χαθούν.
    Είστε βέβαιοι ότι θέλετε να συνεχίσετε;", - "SSE.Controllers.Statusbar.cancelButtonText": "Ακύρωση", - "SSE.Controllers.Statusbar.errNameExists": "Το φύλλο εργασίας με τέτοιο όνομα υπάρχει ήδη.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Ένα όνομα φύλλου δεν μπορεί να περιέχει τους χαρακτήρες: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Το όνομα του φύλλου δεν πρέπει να είναι κενό", - "SSE.Controllers.Statusbar.errorLastSheet": "Το βιβλίο εργασίας πρέπει να έχει τουλάχιστον ένα ορατό φύλλο εργασίας.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Δεν είναι δυνατή η διαγραφή του φύλλου εργασίας.", - "SSE.Controllers.Statusbar.menuDelete": "Διαγραφή", - "SSE.Controllers.Statusbar.menuDuplicate": "Αντίγραφο", - "SSE.Controllers.Statusbar.menuHide": "Απόκρυψη", - "SSE.Controllers.Statusbar.menuMore": "Περισσότερα", - "SSE.Controllers.Statusbar.menuRename": "Μετονομασία", - "SSE.Controllers.Statusbar.menuUnhide": "Αναίρεση απόκρυψης", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Προειδοποίηση", - "SSE.Controllers.Statusbar.strRenameSheet": "Μετονομασία φύλλου", - "SSE.Controllers.Statusbar.strSheet": "Φύλλο", - "SSE.Controllers.Statusbar.strSheetName": "Όνομα φύλλου", - "SSE.Controllers.Statusbar.textExternalLink": "Εξωτερικός σύνδεσμος", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Τα επιλεγμένα φύλλα εργασίας ενδέχεται να περιέχουν δεδομένα. Είστε βέβαιοι ότι θέλετε να συνεχίσετε;", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Έχετε μη αποθηκευμένες αλλαγές σε αυτό το έγγραφο. Κάντε κλικ στο «Παραμονή σε αυτήν τη σελίδα» για να περιμένετε την αυτόματη αποθήκευση του εγγράφου. Κάντε κλικ στο «Έξοδος από τη σελίδα» για να απορρίψετε όλες τις μη αποθηκευμένες αλλαγές.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Έξοδος από την εφαρμογή", - "SSE.Controllers.Toolbar.leaveButtonText": "Έξοδος από τη σελίδα", - "SSE.Controllers.Toolbar.stayButtonText": "Παραμονή σε αυτήν τη σελίδα", - "SSE.Views.AddFunction.sCatDateAndTime": "Ημερομηνία και ώρα", - "SSE.Views.AddFunction.sCatEngineering": "Μηχανική", - "SSE.Views.AddFunction.sCatFinancial": "Χρηματοοικονομικά", - "SSE.Views.AddFunction.sCatInformation": "Πληροφορίες", - "SSE.Views.AddFunction.sCatLogical": "Λογικό", - "SSE.Views.AddFunction.sCatLookupAndReference": "Αναζήτηση και Παραπομπή", - "SSE.Views.AddFunction.sCatMathematic": "Μαθηματικά και τριγωνομετρία", - "SSE.Views.AddFunction.sCatStatistical": "Στατιστική", - "SSE.Views.AddFunction.sCatTextAndData": "Κείμενο και δεδομένα", - "SSE.Views.AddFunction.textBack": "Πίσω", - "SSE.Views.AddFunction.textGroups": "Κατηγορίες", - "SSE.Views.AddLink.textAddLink": "Προσθήκη συνδέσμου", - "SSE.Views.AddLink.textAddress": "Διεύθυνση", - "SSE.Views.AddLink.textDisplay": "Προβολή", - "SSE.Views.AddLink.textExternalLink": "Εξωτερικός σύνδεσμος", - "SSE.Views.AddLink.textInsert": "Εισαγωγή", - "SSE.Views.AddLink.textInternalLink": "Εσωτερικό εύρος δεδομένων", - "SSE.Views.AddLink.textLink": "Σύνδεσμος", - "SSE.Views.AddLink.textLinkType": "Τύπος συνδέσμου", - "SSE.Views.AddLink.textRange": "Εύρος", - "SSE.Views.AddLink.textRequired": "Απαιτείται", - "SSE.Views.AddLink.textSelectedRange": "Επιλεγμένο εύρος", - "SSE.Views.AddLink.textSheet": "Φύλλο", - "SSE.Views.AddLink.textTip": "Συμβουλή οθόνης", - "SSE.Views.AddOther.textAddComment": "Προσθήκη σχολίου", - "SSE.Views.AddOther.textAddress": "Διεύθυνση", - "SSE.Views.AddOther.textBack": "Πίσω", - "SSE.Views.AddOther.textComment": "Σχόλιο", - "SSE.Views.AddOther.textDone": "Ολοκληρώθηκε", - "SSE.Views.AddOther.textFilter": "Φίλτρο", - "SSE.Views.AddOther.textFromLibrary": "Εικόνα από τη βιβλιοθήκη", - "SSE.Views.AddOther.textFromURL": "Εικόνα από σύνδεσμο", - "SSE.Views.AddOther.textImageURL": "Διεύθυνση εικόνας", - "SSE.Views.AddOther.textInsert": "Εισαγωγή", - "SSE.Views.AddOther.textInsertImage": "Εισαγωγή εικόνας", - "SSE.Views.AddOther.textLink": "Σύνδεσμος", - "SSE.Views.AddOther.textLinkSettings": "Ρυθμίσεις συνδέσμου", - "SSE.Views.AddOther.textSort": "Ταξινόμηση και φίλτρο", - "SSE.Views.EditCell.textAccounting": "Λογιστική", - "SSE.Views.EditCell.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "SSE.Views.EditCell.textAlignBottom": "Σοίχιση κάτω", - "SSE.Views.EditCell.textAlignCenter": "Στοίχιση στο κέντρο", - "SSE.Views.EditCell.textAlignLeft": "Στοίχιση αριστερά", - "SSE.Views.EditCell.textAlignMiddle": "Σοίχιση στη μέση", - "SSE.Views.EditCell.textAlignRight": "Στοίχιση δεξιά", - "SSE.Views.EditCell.textAlignTop": "Στοίχιση επάνω", - "SSE.Views.EditCell.textAllBorders": "Όλα τα περιγράμματα", - "SSE.Views.EditCell.textAngleClockwise": "Γωνία Δεξιόστροφα", - "SSE.Views.EditCell.textAngleCounterclockwise": "Γωνία Αριστερόστροφα", - "SSE.Views.EditCell.textBack": "Πίσω", - "SSE.Views.EditCell.textBorderStyle": "Τεχνοτροπία περιγράμματος", - "SSE.Views.EditCell.textBottomBorder": "Κάτω περίγραμμα", - "SSE.Views.EditCell.textCellStyle": "Στυλ κελιού", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Χρώμα", - "SSE.Views.EditCell.textCurrency": "Νόμισμα", - "SSE.Views.EditCell.textCustomColor": "Προσαρμοσμένο χρώμα", - "SSE.Views.EditCell.textDate": "Ημερομηνία", - "SSE.Views.EditCell.textDiagDownBorder": "Διαγώνιο κάτω όριο", - "SSE.Views.EditCell.textDiagUpBorder": "Διαγώνιο επάνω όριο", - "SSE.Views.EditCell.textDollar": "Δολάριο", - "SSE.Views.EditCell.textEuro": "Ευρώ", - "SSE.Views.EditCell.textFillColor": "Χρώμα γεμίσματος", - "SSE.Views.EditCell.textFonts": "Γραμματοσειρές", - "SSE.Views.EditCell.textFormat": "Μορφή", - "SSE.Views.EditCell.textGeneral": "Γενικά", - "SSE.Views.EditCell.textHorizontalText": "Οριζόντιο κείμενο", - "SSE.Views.EditCell.textInBorders": "Εσωτερικό όριο", - "SSE.Views.EditCell.textInHorBorder": "Εσωτερικό οριζόντιο όριο", - "SSE.Views.EditCell.textInteger": "Ακέραιος αριθμός", - "SSE.Views.EditCell.textInVertBorder": "Εσωτερικό κάθετο όριο", - "SSE.Views.EditCell.textJustified": "Πλήρης στοίχιση", - "SSE.Views.EditCell.textLeftBorder": "Αριστερό περίγραμμα", - "SSE.Views.EditCell.textMedium": "Μεσαίο", - "SSE.Views.EditCell.textNoBorder": "Χωρίς περίγραμμα", - "SSE.Views.EditCell.textNumber": "Αριθμός", - "SSE.Views.EditCell.textPercentage": "Ποσοστό", - "SSE.Views.EditCell.textPound": "Λίβρα", - "SSE.Views.EditCell.textRightBorder": "Δεξί περίγραμμα", - "SSE.Views.EditCell.textRotateTextDown": "Περιστροφή Κειμένου Κάτω", - "SSE.Views.EditCell.textRotateTextUp": "Περιστροφή Κειμένου Πάνω", - "SSE.Views.EditCell.textRouble": "Ρούβλι", - "SSE.Views.EditCell.textScientific": "Επιστημονικό", - "SSE.Views.EditCell.textSize": "Μέγεθος", - "SSE.Views.EditCell.textText": "Κείμενο", - "SSE.Views.EditCell.textTextColor": "Χρώμα κειμένου", - "SSE.Views.EditCell.textTextFormat": "Μορφή κειμένου", - "SSE.Views.EditCell.textTextOrientation": "Προσανατολισμός κειμένου", - "SSE.Views.EditCell.textThick": "Παχιά", - "SSE.Views.EditCell.textThin": "Λεπτή", - "SSE.Views.EditCell.textTime": "Ώρα", - "SSE.Views.EditCell.textTopBorder": "Επάνω περίγραμμα", - "SSE.Views.EditCell.textVerticalText": "Κάθετο κείμενο", - "SSE.Views.EditCell.textWrapText": "Αναδίπλωση κειμένου", - "SSE.Views.EditCell.textYen": "Γιέν", - "SSE.Views.EditChart.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "SSE.Views.EditChart.textAuto": "Αυτόματα", - "SSE.Views.EditChart.textAxisCrosses": "Διασχίσεις άξονα", - "SSE.Views.EditChart.textAxisOptions": "Επιλογές αξόνων", - "SSE.Views.EditChart.textAxisPosition": "Θέση αξόνων", - "SSE.Views.EditChart.textAxisTitle": "Τίτλος αξόνων", - "SSE.Views.EditChart.textBack": "Πίσω", - "SSE.Views.EditChart.textBackward": "Μετακίνηση προς τα πίσω", - "SSE.Views.EditChart.textBorder": "Περίγραμμα", - "SSE.Views.EditChart.textBottom": "Κάτω", - "SSE.Views.EditChart.textChart": "Διάγραμμα", - "SSE.Views.EditChart.textChartTitle": "Τίτλος διαγράμματος", - "SSE.Views.EditChart.textColor": "Χρώμα", - "SSE.Views.EditChart.textCrossesValue": "Διασταυρούμενες τιμές", - "SSE.Views.EditChart.textCustomColor": "Προσαρμοσμένο χρώμα", - "SSE.Views.EditChart.textDataLabels": "Ετικέτες δεδομένων", - "SSE.Views.EditChart.textDesign": "Σχεδίαση", - "SSE.Views.EditChart.textDisplayUnits": "Μονάδες εμφάνισης", - "SSE.Views.EditChart.textFill": "Γέμισμα", - "SSE.Views.EditChart.textForward": "Μετακίνηση προς τα εμπρός", - "SSE.Views.EditChart.textGridlines": "Γραμμές πλέγματος", - "SSE.Views.EditChart.textHorAxis": "Οριζόντιος άξονας", - "SSE.Views.EditChart.textHorizontal": "Οριζόντια", - "SSE.Views.EditChart.textLabelOptions": "Επιλογές ετικέτας", - "SSE.Views.EditChart.textLabelPos": "Θέση ετικέτας", - "SSE.Views.EditChart.textLayout": "Διάταξη", - "SSE.Views.EditChart.textLeft": "Αριστερά", - "SSE.Views.EditChart.textLeftOverlay": "Αριστερή επικάλυψη", - "SSE.Views.EditChart.textLegend": "Υπόμνημα", - "SSE.Views.EditChart.textMajor": "Βασικές", - "SSE.Views.EditChart.textMajorMinor": "Βασικές και δευτερεύουσες", - "SSE.Views.EditChart.textMajorType": "Κύριος Τύπος", - "SSE.Views.EditChart.textMaxValue": "Μέγιστη τιμή", - "SSE.Views.EditChart.textMinor": "Ελάσσων", - "SSE.Views.EditChart.textMinorType": "Δευτερεύων τύπος", - "SSE.Views.EditChart.textMinValue": "Ελάχιστη τιμή", - "SSE.Views.EditChart.textNone": "Κανένα", - "SSE.Views.EditChart.textNoOverlay": "Χωρίς επικάλυψη", - "SSE.Views.EditChart.textOverlay": "Επικάλυψη", - "SSE.Views.EditChart.textRemoveChart": "Αφαίρεση διαγράμματος", - "SSE.Views.EditChart.textReorder": "Επανατακτοποίηση", - "SSE.Views.EditChart.textRight": "Δεξιά", - "SSE.Views.EditChart.textRightOverlay": "Δεξιά επικάλυψη", - "SSE.Views.EditChart.textRotated": "Περιστραμμένος", - "SSE.Views.EditChart.textSize": "Μέγεθος", - "SSE.Views.EditChart.textStyle": "Τεχνοτροπία", - "SSE.Views.EditChart.textTickOptions": "Επιλογές διαβαθμίσεων", - "SSE.Views.EditChart.textToBackground": "Μεταφορά στο Παρασκήνιο", - "SSE.Views.EditChart.textToForeground": "Μεταφορά στο προσκήνιο", - "SSE.Views.EditChart.textTop": "Επάνω", - "SSE.Views.EditChart.textType": "Τύπος", - "SSE.Views.EditChart.textValReverseOrder": "Τιμές σε Αντίστροφη Σειρά", - "SSE.Views.EditChart.textVerAxis": "Κάθετος άξονας", - "SSE.Views.EditChart.textVertical": "Κατακόρυφος", - "SSE.Views.EditHyperlink.textBack": "Πίσω", - "SSE.Views.EditHyperlink.textDisplay": "Προβολή", - "SSE.Views.EditHyperlink.textEditLink": "Επεξεργασία συνδέσμου", - "SSE.Views.EditHyperlink.textExternalLink": "Εξωτερικός σύνδεσμος", - "SSE.Views.EditHyperlink.textInternalLink": "Εσωτερικό εύρος δεδομένων", - "SSE.Views.EditHyperlink.textLink": "Σύνδεσμος", - "SSE.Views.EditHyperlink.textLinkType": "Τύπος συνδέσμου", - "SSE.Views.EditHyperlink.textRange": "Εύρος", - "SSE.Views.EditHyperlink.textRemoveLink": "Αφαίρεση συνδέσμου", - "SSE.Views.EditHyperlink.textScreenTip": "Συμβουλή οθόνης", - "SSE.Views.EditHyperlink.textSheet": "Φύλλο", - "SSE.Views.EditImage.textAddress": "Διεύθυνση", - "SSE.Views.EditImage.textBack": "Πίσω", - "SSE.Views.EditImage.textBackward": "Μετακίνηση προς τα πίσω", - "SSE.Views.EditImage.textDefault": "Πλήρες μέγεθος", - "SSE.Views.EditImage.textForward": "Μετακίνηση προς τα εμπρός", - "SSE.Views.EditImage.textFromLibrary": "Εικόνα από τη βιβλιοθήκη", - "SSE.Views.EditImage.textFromURL": "Εικόνα από σύνδεσμο", - "SSE.Views.EditImage.textImageURL": "Διεύθυνση εικόνας", - "SSE.Views.EditImage.textLinkSettings": "Ρυθμίσεις συνδέσμου", - "SSE.Views.EditImage.textRemove": "Αφαίρεση εικόνας", - "SSE.Views.EditImage.textReorder": "Επανατακτοποίηση", - "SSE.Views.EditImage.textReplace": "Αντικατάσταση", - "SSE.Views.EditImage.textReplaceImg": "Αντικατάσταση Εικόνας", - "SSE.Views.EditImage.textToBackground": "Μεταφορά στο Παρασκήνιο", - "SSE.Views.EditImage.textToForeground": "Μεταφορά στο προσκήνιο", - "SSE.Views.EditShape.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "SSE.Views.EditShape.textBack": "Πίσω", - "SSE.Views.EditShape.textBackward": "Μετακίνηση προς τα πίσω", - "SSE.Views.EditShape.textBorder": "Περίγραμμα", - "SSE.Views.EditShape.textColor": "Χρώμα", - "SSE.Views.EditShape.textCustomColor": "Προσαρμοσμένο χρώμα", - "SSE.Views.EditShape.textEffects": "Εφέ", - "SSE.Views.EditShape.textFill": "Γέμισμα", - "SSE.Views.EditShape.textForward": "Μετακίνηση προς τα εμπρός", - "SSE.Views.EditShape.textOpacity": "Αδιαφάνεια", - "SSE.Views.EditShape.textRemoveShape": "Αφαίρεση σχήματος", - "SSE.Views.EditShape.textReorder": "Επανατακτοποίηση", - "SSE.Views.EditShape.textReplace": "Αντικατάσταση", - "SSE.Views.EditShape.textSize": "Μέγεθος", - "SSE.Views.EditShape.textStyle": "Τεχνοτροπία", - "SSE.Views.EditShape.textToBackground": "Μεταφορά στο Παρασκήνιο", - "SSE.Views.EditShape.textToForeground": "Μεταφορά στο προσκήνιο", - "SSE.Views.EditText.textAddCustomColor": "Προσθήκη προσαρμοσμένου χρώματος", - "SSE.Views.EditText.textBack": "Πίσω", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Προσαρμοσμένο χρώμα", - "SSE.Views.EditText.textFillColor": "Χρώμα γεμίσματος", - "SSE.Views.EditText.textFonts": "Γραμματοσειρές", - "SSE.Views.EditText.textSize": "Μέγεθος", - "SSE.Views.EditText.textTextColor": "Χρώμα κειμένου", - "SSE.Views.FilterOptions.textClearFilter": "Εκκαθάριση φίλτρου", - "SSE.Views.FilterOptions.textDeleteFilter": "Διαγραφή φίλτρου", - "SSE.Views.FilterOptions.textFilter": "Επιλογές φίλτρου", - "SSE.Views.Search.textByColumns": "Κατά στήλες", - "SSE.Views.Search.textByRows": "Κατά γραμμές", - "SSE.Views.Search.textDone": "Ολοκληρώθηκε", - "SSE.Views.Search.textFind": "Εύρεση", - "SSE.Views.Search.textFindAndReplace": "Εύρεση και Αντικατάσταση", - "SSE.Views.Search.textFormulas": "Τύποι", - "SSE.Views.Search.textHighlightRes": "Επισημάνετε τα αποτελέσματα", - "SSE.Views.Search.textLookIn": "Ψάξε στο", - "SSE.Views.Search.textMatchCase": "Ταίριασμα πεζών-κεφαλαίων", - "SSE.Views.Search.textMatchCell": "Ταίριασμα κελιού", - "SSE.Views.Search.textReplace": "Αντικατάσταση", - "SSE.Views.Search.textSearch": "Αναζήτηση", - "SSE.Views.Search.textSearchBy": "Αναζήτηση", - "SSE.Views.Search.textSearchIn": "Αναζήτηση σε", - "SSE.Views.Search.textSheet": "Φύλλο", - "SSE.Views.Search.textValues": "Τιμές", - "SSE.Views.Search.textWorkbook": "Αρχειοθήκη", - "SSE.Views.Settings.textAbout": "Περί", - "SSE.Views.Settings.textAddress": "διεύθυνση", - "SSE.Views.Settings.textApplication": "Εφαρμογή", - "SSE.Views.Settings.textApplicationSettings": "Ρυθμίσεις εφαρμογής", - "SSE.Views.Settings.textAuthor": "Συγγραφέας", - "SSE.Views.Settings.textBack": "Πίσω", - "SSE.Views.Settings.textBottom": "Κάτω", - "SSE.Views.Settings.textCentimeter": "Εκατοστό", - "SSE.Views.Settings.textCollaboration": "Συνεργασία", - "SSE.Views.Settings.textColorSchemes": "Χρωματικός συνδυασμός", - "SSE.Views.Settings.textComment": "Σχόλιο", - "SSE.Views.Settings.textCommentingDisplay": "Εμφάνιση σχολίων", - "SSE.Views.Settings.textCreated": "Δημιουργήθηκε", - "SSE.Views.Settings.textCreateDate": "Ημερομηνία δημιουργίας", - "SSE.Views.Settings.textCustom": "Προσαρμοσμένο", - "SSE.Views.Settings.textCustomSize": "Προσαρμοσμένο μέγεθος", - "SSE.Views.Settings.textDisableAll": "Απενεργοποίηση όλων", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Απενεργοποίηση όλων των μακροεντολών με μια ειδοποίηση", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Απενεργοποίηση όλων των μακροεντολών χωρίς ειδοποίηση", - "SSE.Views.Settings.textDisplayComments": "Σχόλια", - "SSE.Views.Settings.textDisplayResolvedComments": "Επίλυση σχολίων", - "SSE.Views.Settings.textDocInfo": "Πληροφορίες λογιστικού φύλλου", - "SSE.Views.Settings.textDocTitle": "Τίτλος λογιστικού φύλλου", - "SSE.Views.Settings.textDone": "Ολοκληρώθηκε", - "SSE.Views.Settings.textDownload": "Λήψη", - "SSE.Views.Settings.textDownloadAs": "Λήψη ως...", - "SSE.Views.Settings.textEditDoc": "Επεξεργασία εγγράφου", - "SSE.Views.Settings.textEmail": "ηλεκτρονική διεύθυνση", - "SSE.Views.Settings.textEnableAll": "Ενεργοποίηση όλων", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Ενεργοποίηση όλων των μακροεντολών χωρίς προειδοποίηση", - "SSE.Views.Settings.textExample": "Παράδειγμα", - "SSE.Views.Settings.textFind": "Εύρεση", - "SSE.Views.Settings.textFindAndReplace": "Εύρεση και Αντικατάσταση", - "SSE.Views.Settings.textFormat": "Μορφή", - "SSE.Views.Settings.textFormulaLanguage": "Γλώσσα τύπου", - "SSE.Views.Settings.textHelp": "Βοήθεια", - "SSE.Views.Settings.textHideGridlines": "Απόκρυψη γραμμών πλέγματος", - "SSE.Views.Settings.textHideHeadings": "Απόκρυψη επικεφαλίδων", - "SSE.Views.Settings.textInch": "Ίντσα", - "SSE.Views.Settings.textLandscape": "Οριζόντια", - "SSE.Views.Settings.textLastModified": "Τελευταία τροποποίηση", - "SSE.Views.Settings.textLastModifiedBy": "Τελευταία τροποποίηση από", - "SSE.Views.Settings.textLeft": "Αριστερά", - "SSE.Views.Settings.textLoading": "Φόρτωση ...", - "SSE.Views.Settings.textLocation": "Τοποθεσία", - "SSE.Views.Settings.textMacrosSettings": "Ρυθμίσεις μακροεντολών", - "SSE.Views.Settings.textMargins": "Περιθώρια", - "SSE.Views.Settings.textOrientation": "Προσανατολισμός", - "SSE.Views.Settings.textOwner": "Ιδιοκτήτης", - "SSE.Views.Settings.textPoint": "Σημείο", - "SSE.Views.Settings.textPortrait": "Κατακόρυφα", - "SSE.Views.Settings.textPoweredBy": "Υποστηρίζεται από", - "SSE.Views.Settings.textPrint": "Εκτύπωση", - "SSE.Views.Settings.textR1C1Style": "Τεχνοτροπία Παραπομπών R1C1", - "SSE.Views.Settings.textRegionalSettings": "Τοπικές ρυθμίσεις", - "SSE.Views.Settings.textRight": "Δεξιά", - "SSE.Views.Settings.textSettings": "Ρυθμίσεις", - "SSE.Views.Settings.textShowNotification": "Εμφάνιση ειδοποίησης", - "SSE.Views.Settings.textSpreadsheetFormats": "Μορφές υπολογιστικών φύλλων", - "SSE.Views.Settings.textSpreadsheetSettings": "Ρυθμίσεις λογιστιού φύλλου", - "SSE.Views.Settings.textSubject": "Θέμα", - "SSE.Views.Settings.textTel": "τηλ", - "SSE.Views.Settings.textTitle": "Τίτλος", - "SSE.Views.Settings.textTop": "Επάνω", - "SSE.Views.Settings.textUnitOfMeasurement": "Μονάδα μέτρησης", - "SSE.Views.Settings.textUploaded": "Μεταφορτώθηκε", - "SSE.Views.Settings.textVersion": "Έκδοση", - "SSE.Views.Settings.unknownText": "Άγνωστο", - "SSE.Views.Toolbar.textBack": "Πίσω" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index c3f3e706d..9211947d1 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -1,576 +1,650 @@ { - "About": { - "textAbout": "About", - "textAddress": "Address", - "textBack": "Back", - "textEmail": "Email", - "textPoweredBy": "Powered By", - "textTel": "Tel", - "textVersion": "Version" - }, - "Common": { - "Collaboration": { - "notcriticalErrorTitle": "Warning", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", - "textBack": "Back", - "textCancel": "Cancel", - "textCollaboration": "Collaboration", - "textComments": "Comments", - "textDeleteComment": "Delete Comment", - "textDeleteReply": "Delete Reply", - "textDone": "Done", - "textEdit": "Edit", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply", - "textEditUser": "Users who are editing the file:", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textNoComments": "This document doesn't contain comments", - "textReopen": "Reopen", - "textResolve": "Resolve", - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" }, - "ThemeColorPalette": { - "textCustomColors": "Custom Colors", - "textStandartColors": "Standard Colors", - "textThemeColors": "Theme Colors" - } - }, - "ContextMenu": { - "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", - "menuCancel": "Cancel", - "menuCell": "Cell", - "menuDelete": "Delete", - "menuEdit": "Edit", - "menuFreezePanes": "Freeze Panes", - "menuHide": "Hide", - "menuMerge": "Merge", - "menuMore": "More", - "menuOpenLink": "Open Link", - "menuShow": "Show", - "menuUnfreezePanes": "Unfreeze Panes", - "menuUnmerge": "Unmerge", - "menuUnwrap": "Unwrap", - "menuViewComment": "View Comment", - "menuWrap": "Wrap", - "notcriticalErrorTitle": "Warning", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" - }, - "Controller": { - "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", - "errorProcessSaveResult": "Saving is failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", - "SDK": { - "txtAccent": "Accent", - "txtArt": "Your text here", - "txtDiagramTitle": "Chart Title", - "txtSeries": "Series", - "txtStyle_Bad": "Bad", - "txtStyle_Calculation": "Calculation", - "txtStyle_Check_Cell": "Check Cell", - "txtStyle_Comma": "Comma", - "txtStyle_Currency": "Currency", - "txtStyle_Explanatory_Text": "Explanatory Text", - "txtStyle_Good": "Good", - "txtStyle_Heading_1": "Heading 1", - "txtStyle_Heading_2": "Heading 2", - "txtStyle_Heading_3": "Heading 3", - "txtStyle_Heading_4": "Heading 4", - "txtStyle_Input": "Input", - "txtStyle_Linked_Cell": "Linked Cell", - "txtStyle_Neutral": "Neutral", - "txtStyle_Normal": "Normal", - "txtStyle_Note": "Note", - "txtStyle_Output": "Output", - "txtStyle_Percent": "Percent", - "txtStyle_Title": "Title", - "txtStyle_Total": "Total", - "txtStyle_Warning_Text": "Warning Text", - "txtXAxis": "X Axis", - "txtYAxis": "Y Axis" - }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file." - } - }, - "Error": { - "convertationTimeoutText": "Conversion timeout exceeded.", - "criticalErrorExtText": "Press 'OK' to back to the document list.", - "criticalErrorTitle": "Error", - "downloadErrorText": "Download failed.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", - "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", - "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", - "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", - "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", - "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", - "errorBadImageUrl": "Image url is incorrect", - "errorChangeArray": "You cannot change part of an array.", - "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", - "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", - "errorCountArg": "An error in the formula.
    Invalid number of arguments.", - "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", - "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", - "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorDataRange": "Incorrect data range.", - "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", - "errorDefaultMessage": "Error code: %1", - "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "errorFileRequest": "External error.
    File Request. Please, contact support.", - "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", - "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", - "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", - "errorFormulaName": "An error in the formula.
    Incorrect formula name.", - "errorFormulaParsing": "Internal error while the formula parsing.", - "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", - "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", - "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", - "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", - "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "errorLockedCellPivot": "You cannot change data inside a pivot table.", - "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "errorMoveRange": "Cann't change a part of a merged cell", - "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", - "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", - "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", - "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", - "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", - "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", - "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", - "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", - "errorUserDrop": "The file cannot be accessed right now.", - "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", - "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", - "notcriticalErrorTitle": "Warning", - "openErrorText": "An error has occurred while opening the file", - "pastInMergeAreaError": "Cannot change a part of a merged cell", - "saveErrorText": "An error has occurred while saving the file", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", - "unknownErrorText": "Unknown error.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." - }, - "LongActions": { - "applyChangesTextText": "Loading data...", - "applyChangesTitleText": "Loading Data", - "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", - "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", - "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", - "downloadTextText": "Downloading document...", - "downloadTitleText": "Downloading Document", - "loadFontsTextText": "Loading data...", - "loadFontsTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadFontTitleText": "Loading Data", - "loadImagesTextText": "Loading images...", - "loadImagesTitleText": "Loading Images", - "loadImageTextText": "Loading image...", - "loadImageTitleText": "Loading Image", - "loadingDocumentTextText": "Loading document...", - "loadingDocumentTitleText": "Loading document", - "notcriticalErrorTitle": "Warning", - "openTextText": "Opening document...", - "openTitleText": "Opening Document", - "printTextText": "Printing document...", - "printTitleText": "Printing Document", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "saveTextText": "Saving document...", - "saveTitleText": "Saving Document", - "textLoadingDocument": "Loading document", - "textNo": "No", - "textOk": "Ok", - "textYes": "Yes", - "txtEditingMode": "Set editing mode...", - "uploadImageTextText": "Uploading image...", - "uploadImageTitleText": "Uploading Image", - "waitText": "Please, wait..." - }, - "Statusbar": { - "notcriticalErrorTitle": "Warning", - "textCancel": "Cancel", - "textDelete": "Delete", - "textDuplicate": "Duplicate", - "textErrNameExists": "Worksheet with this name already exists.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", - "textErrNotEmpty": "Sheet name must not be empty", - "textErrorLastSheet": "The workbook must have at least one visible worksheet.", - "textErrorRemoveSheet": "Can't delete the worksheet.", - "textHide": "Hide", - "textMore": "More", - "textRename": "Rename", - "textRenameSheet": "Rename Sheet", - "textSheet": "Sheet", - "textSheetName": "Sheet Name", - "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" - }, - "Toolbar": { - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "dlgLeaveTitleText": "You leave the application", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" - }, - "View": { - "Add": { - "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", - "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", - "notcriticalErrorTitle": "Warning", - "sCatDateAndTime": "Date and time", - "sCatEngineering": "Engineering", - "sCatFinancial": "Financial", - "sCatInformation": "Information", - "sCatLogical": "Logical", - "sCatLookupAndReference": "Lookup and Reference", - "sCatMathematic": "Math and trigonometry", - "sCatStatistical": "Statistical", - "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", - "textBack": "Back", - "textChart": "Chart", - "textComment": "Comment", - "textDisplay": "Display", - "textEmptyImgUrl": "You need to specify the image URL.", - "textExternalLink": "External Link", - "textFilter": "Filter", - "textFunction": "Function", - "textGroups": "CATEGORIES", - "textImage": "Image", - "textImageURL": "Image URL", - "textInsert": "Insert", - "textInsertImage": "Insert Image", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "ERROR! Invalid cells range", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textOther": "Other", - "textPictureFromLibrary": "Picture from library", - "textPictureFromURL": "Picture from URL", - "textRange": "Range", - "textRequired": "Required", - "textScreenTip": "Screen Tip", - "textShape": "Shape", - "textSheet": "Sheet", - "textSortAndFilter": "Sort and Filter", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } }, - "Edit": { - "notcriticalErrorTitle": "Warning", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", - "textAngleClockwise": "Angle Clockwise", - "textAngleCounterclockwise": "Angle Counterclockwise", - "textAuto": "Auto", - "textAxisCrosses": "Axis Crosses", - "textAxisOptions": "Axis Options", - "textAxisPosition": "Axis Position", - "textAxisTitle": "Axis Title", - "textBack": "Back", - "textBetweenTickMarks": "Between Tick Marks", - "textBillions": "Billions", - "textBorder": "Border", - "textBorderStyle": "Border Style", - "textBottom": "Bottom", - "textBottomBorder": "Bottom Border", - "textBringToForeground": "Bring to Foreground", - "textCell": "Cell", - "textCellStyles": "Cell Styles", - "textCenter": "Center", - "textChart": "Chart", - "textChartTitle": "Chart Title", - "textClearFilter": "Clear Filter", - "textColor": "Color", - "textCross": "Cross", - "textCrossesValue": "Crosses Value", - "textCurrency": "Currency", - "textCustomColor": "Custom Color", - "textDataLabels": "Data Labels", - "textDate": "Date", - "textDefault": "Selected range", - "textDeleteFilter": "Delete Filter", - "textDesign": "Design", - "textDiagonalDownBorder": "Diagonal Down Border", - "textDiagonalUpBorder": "Diagonal Up Border", - "textDisplay": "Display", - "textDisplayUnits": "Display Units", - "textDollar": "Dollar", - "textEditLink": "Edit Link", - "textEffects": "Effects", - "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", - "textErrorMsg": "You must choose at least one value", - "textErrorTitle": "Warning", - "textEuro": "Euro", - "textExternalLink": "External Link", - "textFill": "Fill", - "textFillColor": "Fill Color", - "textFilterOptions": "Filter Options", - "textFit": "Fit Width", - "textFonts": "Fonts", - "textFormat": "Format", - "textFraction": "Fraction", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textGeneral": "General", - "textGridlines": "Gridlines", - "textHigh": "High", - "textHorizontal": "Horizontal", - "textHorizontalAxis": "Horizontal Axis", - "textHorizontalText": "Horizontal Text", - "textHundredMil": "100 000 000", - "textHundreds": "Hundreds", - "textHundredThousands": "100 000", - "textHyperlink": "Hyperlink", - "textImage": "Image", - "textImageURL": "Image URL", - "textIn": "In", - "textInnerBottom": "Inner Bottom", - "textInnerTop": "Inner Top", - "textInsideBorders": "Inside Borders", - "textInsideHorizontalBorder": "Inside Horizontal Border", - "textInsideVerticalBorder": "Inside Vertical Border", - "textInteger": "Integer", - "textInternalDataRange": "Internal Data Range", - "textInvalidRange": "Invalid cells range", - "textJustified": "Justified", - "textLabelOptions": "Label Options", - "textLabelPosition": "Label Position", - "textLayout": "Layout", - "textLeft": "Left", - "textLeftBorder": "Left Border", - "textLeftOverlay": "Left Overlay", - "textLegend": "Legend", - "textLink": "Link", - "textLinkSettings": "Link Settings", - "textLinkType": "Link Type", - "textLow": "Low", - "textMajor": "Major", - "textMajorAndMinor": "Major And Minor", - "textMajorType": "Major Type", - "textMaximumValue": "Maximum Value", - "textMedium": "Medium", - "textMillions": "Millions", - "textMinimumValue": "Minimum Value", - "textMinor": "Minor", - "textMinorType": "Minor Type", - "textMoveBackward": "Move Backward", - "textMoveForward": "Move Forward", - "textNextToAxis": "Next to Axis", - "textNoBorder": "No Border", - "textNone": "None", - "textNoOverlay": "No Overlay", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textNumber": "Number", - "textOnTickMarks": "On Tick Marks", - "textOpacity": "Opacity", - "textOut": "Out", - "textOuterTop": "Outer Top", - "textOutsideBorders": "Outside Borders", - "textOverlay": "Overlay", - "textPercentage": "Percentage", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textPound": "Pound", - "textPt": "pt", - "textRange": "Range", - "textRemoveChart": "Remove Chart", - "textRemoveImage": "Remove Image", - "textRemoveLink": "Remove Link", - "textRemoveShape": "Remove Shape", - "textReorder": "Reorder", - "textReplace": "Replace", - "textReplaceImage": "Replace Image", - "textRequired": "Required", - "textRight": "Right", - "textRightBorder": "Right Border", - "textRightOverlay": "Right Overlay", - "textRotated": "Rotated", - "textRotateTextDown": "Rotate Text Down", - "textRotateTextUp": "Rotate Text Up", - "textRouble": "Rouble", - "textScientific": "Scientific", - "textScreenTip": "Screen Tip", - "textSelectAll": "Select All", - "textSelectObjectToEdit": "Select object to edit", - "textSendToBackground": "Send to Background", - "textSettings": "Settings", - "textShape": "Shape", - "textSheet": "Sheet", - "textSize": "Size", - "textStyle": "Style", - "textTenMillions": "10 000 000", - "textTenThousands": "10 000", - "textText": "Text", - "textTextColor": "Text Color", - "textTextFormat": "Text Format", - "textTextOrientation": "Text Orientation", - "textThick": "Thick", - "textThin": "Thin", - "textThousands": "Thousands", - "textTickOptions": "Tick Options", - "textTime": "Time", - "textTop": "Top", - "textTopBorder": "Top Border", - "textTrillions": "Trillions", - "textType": "Type", - "textValue": "Value", - "textValuesInReverseOrder": "Values in Reverse Order", - "textVertical": "Vertical", - "textVerticalAxis": "Vertical Axis", - "textVerticalText": "Vertical Text", - "textWrapText": "Wrap Text", - "textYen": "Yen", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"" + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" }, - "Settings": { - "advCSVOptions": "Choose CSV options", - "advDRMEnterPassword": "Your password, please:", - "advDRMOptions": "Protected File", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "notcriticalErrorTitle": "Warning", - "textAbout": "About", - "textAddress": "Address", - "textApplication": "Application", - "textApplicationSettings": "Application Settings", - "textAuthor": "Author", - "textBack": "Back", - "textBottom": "Bottom", - "textByColumns": "By columns", - "textByRows": "By rows", - "textCancel": "Cancel", - "textCentimeter": "Centimeter", - "textCollaboration": "Collaboration", - "textColorSchemes": "Color Schemes", - "textComment": "Comment", - "textCommentingDisplay": "Commenting Display", - "textComments": "Comments", - "textCreated": "Created", - "textCustomSize": "Custom Size", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithNotification": "Disable all macros with a notification", - "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", - "textDone": "Done", - "textDownload": "Download", - "textDownloadAs": "Download As", - "textEmail": "Email", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", - "textFind": "Find", - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textFormat": "Format", - "textFormulaLanguage": "Formula Language", - "textFormulas": "Formulas", - "textHelp": "Help", - "textHideGridlines": "Hide Gridlines", - "textHideHeadings": "Hide Headings", - "textHighlightRes": "Highlight results", - "textInch": "Inch", - "textLandscape": "Landscape", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textLeft": "Left", - "textLocation": "Location", - "textLookIn": "Look In", - "textMacrosSettings": "Macros Settings", - "textMargins": "Margins", - "textMatchCase": "Match Case", - "textMatchCell": "Match Cell", - "textNoTextFound": "Text not found", - "textOpenFile": "Enter a password to open the file", - "textOrientation": "Orientation", - "textOwner": "Owner", - "textPoint": "Point", - "textPortrait": "Portrait", - "textPoweredBy": "Powered By", - "textPrint": "Print", - "textR1C1Style": "R1C1 Reference Style", - "textRegionalSettings": "Regional Settings", - "textReplace": "Replace", - "textReplaceAll": "Replace All", - "textResolvedComments": "Resolved Comments", - "textRight": "Right", - "textSearch": "Search", - "textSearchBy": "Search", - "textSearchIn": "Search In", - "textSettings": "Settings", - "textSheet": "Sheet", - "textShowNotification": "Show Notification", - "textSpreadsheetFormats": "Spreadsheet Formats", - "textSpreadsheetInfo": "Spreadsheet Info", - "textSpreadsheetSettings": "Spreadsheet Settings", - "textSpreadsheetTitle": "Spreadsheet Title", - "textSubject": "Subject", - "textTel": "Tel", - "textTitle": "Title", - "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", - "textUploaded": "Uploaded", - "textValues": "Values", - "textVersion": "Version", - "textWorkbook": "Workbook", - "txtDelimiter": "Delimiter", - "txtEncoding": "Encoding", - "txtIncorrectPwd": "Password is incorrect", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "txtSpace": "Space", - "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected", + "txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
    Do you wish to continue with the current selection?", + "txtYes": "Yes", + "txtNo": "No" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?", + "textChooseCsvOptions": "Choose CSV Options", + "txtDownloadCsv": "Download CSV", + "textDelimeter": "Delimeter", + "textEncoding": "Encoding", + "textChooseEncoding": "Choose Encoding", + "textChooseDelimeter": "Choose Delimeter", + "txtComma": "Comma", + "txtSemicolon": "Semicolon", + "txtColon": "Colon", + "txtOk": "Ok" + } } - } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 92de7a254..17eda1b13 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -73,8 +73,35 @@ "notcriticalErrorTitle": "Advertencia", "SDK": { "txtAccent": "Énfasis", + "txtAll": "(Todos)", "txtArt": "Su texto aquí", + "txtBlank": "(en blanco)", + "txtByField": "%1 de %2", + "txtClearFilter": "Borrar filtro (Alt+C)", + "txtColLbls": "Etiquetas de columna", + "txtColumn": "Columna", + "txtConfidential": "Confidencial", + "txtDate": "Fecha", + "txtDays": "Días", "txtDiagramTitle": "Título del gráfico", + "txtFile": "Archivo", + "txtGrandTotal": "Total general", + "txtGroup": "Agrupar", + "txtHours": "Horas", + "txtMinutes": "Minutos", + "txtMonths": "Meses", + "txtMultiSelect": "Selección múltiple (Alt+S)", + "txtOr": "%1 o %2", + "txtPage": "Página", + "txtPageOf": "Página %1 de %2", + "txtPages": "Páginas", + "txtPreparedBy": "Preparado por", + "txtPrintArea": "Área_de_impresión", + "txtQuarter": "Trim.", + "txtQuarters": "Trimestres", + "txtRow": "Fila", + "txtRowLbls": "Etiquetas de fila", + "txtSeconds": "Segundos", "txtSeries": "Serie", "txtStyle_Bad": "Malo", "txtStyle_Calculation": "Cálculo", @@ -97,8 +124,13 @@ "txtStyle_Title": "Título", "txtStyle_Total": "Total", "txtStyle_Warning_Text": "Texto de advertencia", + "txtTab": "Pestaña", + "txtTable": "Tabla", + "txtTime": "Hora", + "txtValues": "Valores", "txtXAxis": "Eje X", - "txtYAxis": "Eje Y" + "txtYAxis": "Eje Y", + "txtYears": "Años" }, "textAnonymous": "Anónimo", "textBuyNow": "Visitar sitio web", @@ -270,6 +302,7 @@ "textAddLink": "Añadir enlace ", "textAddress": "Dirección", "textBack": "Atrás", + "textCancel": "Cancelar", "textChart": "Gráfico", "textComment": "Comentario", "textDisplay": "Mostrar", @@ -296,7 +329,11 @@ "textShape": "Forma", "textSheet": "Hoja", "textSortAndFilter": "Ordenar y filtrar", - "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"" + "txtExpand": "Expandir y ordenar", + "txtExpandSort": "Los datos al lado del rango seleccionado no serán ordenados. ¿Quiere Usted expandir el rango seleccionado para incluir datos de las celdas adyacentes o continuar la ordenación del rango seleccionado?", + "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", + "txtSorting": "Ordenación", + "txtSortSelected": "Ordenar los objetos seleccionados" }, "Edit": { "notcriticalErrorTitle": "Advertencia", @@ -474,7 +511,9 @@ "textVerticalText": "Texto vertical", "textWrapText": "Ajustar texto", "textYen": "Yen", - "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"" + "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", + "txtSortHigh2Low": "Ordenar de mayor a menor", + "txtSortLow2High": "Ordenar de menor a mayor " }, "Settings": { "advCSVOptions": "Elegir los parámetros de CSV", @@ -568,6 +607,28 @@ "txtEncoding": "Codificación", "txtIncorrectPwd": "La contraseña es incorrecta", "txtProtected": "Una vez que se ha introducido la contraseña y abierto el archivo, la contraseña actual del archivo se restablecerá", + "txtScheme1": "Oficina", + "txtScheme10": "Medio", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Mirador", + "txtScheme15": "Origen", + "txtScheme16": "Papel", + "txtScheme17": "Solsticio", + "txtScheme18": "Técnico", + "txtScheme19": "Viajes", + "txtScheme2": "Escala de grises", + "txtScheme20": "Urbano", + "txtScheme21": "Brío", + "txtScheme22": "Nueva oficina", + "txtScheme3": "Vértice", + "txtScheme4": "Aspecto", + "txtScheme5": "Civil", + "txtScheme6": "Concurrencia", + "txtScheme7": "Equidad ", + "txtScheme8": "Flujo", + "txtScheme9": "Fundición", "txtSpace": "Espacio", "txtTab": "Pestaña", "warnDownloadAs": "Si sigue guardando en este formato, todas las características a excepción del texto se perderán.
    ¿Está seguro de que desea continuar?" diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 131af14cd..1c9978e43 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -1,49 +1,342 @@ { "About": { - "textAbout": "A propos", + "textAbout": "À propos", "textAddress": "Adresse", - "textBack": "Retour" + "textBack": "Retour", + "textEmail": "E-mail", + "textPoweredBy": "Réalisation", + "textTel": "Tél.", + "textVersion": "Version" }, "Common": { "Collaboration": { + "notcriticalErrorTitle": "Avertissement", "textAddComment": "Ajouter un commentaire", "textAddReply": "Ajouter une réponse", - "textBack": "Retour" + "textBack": "Retour", + "textCancel": "Annuler", + "textCollaboration": "Collaboration", + "textComments": "Commentaires", + "textDeleteComment": "Supprimer commentaire", + "textDeleteReply": "Supprimer réponse", + "textDone": "Terminé", + "textEdit": "Modifier", + "textEditComment": "Modifier le commentaire", + "textEditReply": "Modifier la réponse", + "textEditUser": "Le document est en cours de modification par les utilisateurs suivants:", + "textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire?", + "textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse?", + "textNoComments": "Il n'y a pas de commentaires dans ce document", + "textReopen": "Rouvrir", + "textResolve": "Résoudre", + "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", + "textUsers": "Utilisateurs" + }, + "ThemeColorPalette": { + "textCustomColors": "Couleurs personnalisées", + "textStandartColors": "Couleurs standard", + "textThemeColors": "Couleurs de thème" } }, "ContextMenu": { + "errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", "menuAddComment": "Ajouter un commentaire", - "menuAddLink": "Ajouter un lien" + "menuAddLink": "Ajouter un lien", + "menuCancel": "Annuler", + "menuCell": "Cellule", + "menuDelete": "Supprimer", + "menuEdit": "Modifier", + "menuFreezePanes": "Verrouiller les volets", + "menuHide": "Masquer", + "menuMerge": "Fusionner", + "menuMore": "Plus", + "menuOpenLink": "Ouvrir le lien", + "menuShow": "Afficher", + "menuUnfreezePanes": "Libérer les volets", + "menuUnmerge": "Annuler la fusion", + "menuUnwrap": "Annuler le renvoi", + "menuViewComment": "Voir le commentaire", + "menuWrap": "Renvoi à la ligne", + "notcriticalErrorTitle": "Avertissement", + "textCopyCutPasteActions": "Fonctions de Copier, Couper et Coller", + "textDoNotShowAgain": "Ne plus afficher", + "warnMergeLostData": "Cette procédure peut détruire les données dans les cellules sélectionnées. Voulez-vous quand même continuer?" }, "Controller": { "Main": { + "criticalErrorTitle": "Erreur", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", + "errorProcessSaveResult": "Échec de l‘enregistrement.", + "errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", + "errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", + "leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "notcriticalErrorTitle": "Avertissement", "SDK": { "txtAccent": "Accentuation", - "txtStyle_Bad": "Incorrect" + "txtAll": "(Tous)", + "txtArt": "Votre texte ici", + "txtBlank": "(vide)", + "txtByField": "%1 de %2", + "txtClearFilter": "Annuler les filtres (Alt+C)", + "txtColLbls": "Étiquettes de colonnes", + "txtColumn": "Colonne", + "txtConfidential": "Confidentiel", + "txtDate": "Date", + "txtDays": "Jours", + "txtDiagramTitle": "Titre du graphique", + "txtFile": "Fichier", + "txtGrandTotal": "Total général", + "txtGroup": "Grouper", + "txtHours": "Heures", + "txtMinutes": "Minutes", + "txtMonths": "Mois", + "txtMultiSelect": "Sélection multiple (Alt+S)", + "txtOr": "%1 ou %2", + "txtPage": "Page", + "txtPageOf": "Page %1 de %2", + "txtPages": "Pages", + "txtPreparedBy": "Préparé par", + "txtPrintArea": "Zone_d'impression", + "txtQuarter": "Trim", + "txtQuarters": "Trimestres", + "txtRow": "Ligne", + "txtRowLbls": "Etiquettes de ligne", + "txtSeconds": "Secondes", + "txtSeries": "Série", + "txtStyle_Bad": "Incorrect", + "txtStyle_Calculation": "Calcul", + "txtStyle_Check_Cell": "Vérifier la cellule", + "txtStyle_Comma": "Virgule", + "txtStyle_Currency": "Monétaire", + "txtStyle_Explanatory_Text": "Texte d'explication", + "txtStyle_Good": "Correct", + "txtStyle_Heading_1": "Titre 1", + "txtStyle_Heading_2": "Titre 2", + "txtStyle_Heading_3": "Titre 3", + "txtStyle_Heading_4": "Titre 4", + "txtStyle_Input": "Entrée", + "txtStyle_Linked_Cell": "Cellule liée", + "txtStyle_Neutral": "Neutre", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Remarque", + "txtStyle_Output": "Sortie", + "txtStyle_Percent": "Pour cent", + "txtStyle_Title": "Titre", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Texte d'avertissement", + "txtTab": "Tabulation", + "txtTable": "Tableau", + "txtTime": "Heure", + "txtValues": "Valeurs", + "txtXAxis": "Axe X", + "txtYAxis": "Axe Y", + "txtYears": "Années" }, - "textAnonymous": "Anonyme" + "textAnonymous": "Anonyme", + "textBuyNow": "Visiter le site web", + "textClose": "Fermer", + "textContactUs": "Contacter l'équipe de ventes", + "textCustomLoader": "Désolé, vous n'êtes pas autorisé à changer le chargeur. Veuillez contacter notre Service de Ventes pour obtenir le devis.", + "textGuest": "Invité", + "textHasMacros": "Le fichier contient des macros automatiques.
    Voulez-vous exécuter les macros?", + "textNo": "Non", + "textNoLicenseTitle": "La limite de la licence est atteinte", + "textPaidFeature": "Fonction payante", + "textRemember": "Se souvenir de mon choix", + "textYes": "Oui", + "titleServerVersion": "L'éditeur est mis à jour", + "titleUpdateVersion": "La version a été modifiée", + "warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Pour en savoir plus, contactez votre administrateur.", + "warnLicenseLimitedNoAccess": "La licence est expirée. Vous n'avez plus d'accès aux outils d'édition. Veuillez contacter votre administrateur.", + "warnLicenseLimitedRenewed": "Il est indispensable de renouveler la licence. Vous avez un accès limité aux outils d'édition des documents.
    Veuillez contacter votre administrateur pour obtenir un accès complet", + "warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Pour en savoir plus, contactez votre administrateur.", + "warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert en lecture seule. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnNoLicenseUsers": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", + "warnProcessRightsChange": "Vous n'avez pas la permission de modifier ce fichier." } }, "Error": { + "convertationTimeoutText": "Délai de conversion expiré.", + "criticalErrorExtText": "Appuyez sur OK pour revenir à la liste de documents", + "criticalErrorTitle": "Erreur", + "downloadErrorText": "Échec du téléchargement.", + "errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter votre administrateur.", "errorArgsRange": "Il y a une erreur dans la formule : Plage d'arguments incorrecte.", + "errorAutoFilterChange": "L'opération n'est pas autorisée car elle tente de déplacer les cellules d'un tableau de votre feuille de calcul.", + "errorAutoFilterChangeFormatTable": "Impossible de réaliser l'opération sur les cellules sélectionnées car vous ne pouvez pas déplacer une partie du tableau.
    Sélectionnez une autre plage de données afin que tout le tableau soit déplacé et essayez à nouveau.", + "errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
    Sélectionnez une plage uniforme de données dans le tableau ou hors du tableau différente et réessayez.", + "errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
    Veuillez supprimer les filtres et réessayez.", + "errorBadImageUrl": "L'URL de l'image est incorrecte", + "errorChangeArray": "Impossible de modifier une partie de matrice.", + "errorConnectToServer": "Impossible d'enregistrer ce document. Veuillez vérifier vos paramètres de connexion ou contactez l'administrateur.
    Lorsque vous cliquez sur le bouton 'OK', vous serez invité à télécharger le document.", + "errorCopyMultiselectArea": "Impossible d'exécuter cette commande sur des sélections multiples.
    Sélectionnez une seule plage et essayez à nouveau.", "errorCountArg": "Il y a une erreur dans la formule : nombre d'arguments incorrecte.", "errorCountArgExceed": "Il y a une erreur dans la formule : Nombre maximal d'arguments dépassé.", + "errorCreateDefName": "Actuellement, des plages nommées existantes ne peuvent pas être modifiées et les nouvelles ne peuvent pas être créées,
    car certaines d'entre eux sont en cours de modification.", + "errorDatabaseConnection": "Erreur externe.
    Erreur de connexion à la base de données. Contactez le support.", + "errorDataEncrypted": "Les modifications chiffrées ont été reçues, mais ne peuvent pas être déchiffrées.", + "errorDataRange": "Plage de données incorrecte.", + "errorDataValidate": "La valeur saisie est incorrecte.
    Un utilisateur a restreint les valeurs pouvant être saisies dans cette cellule.", + "errorDefaultMessage": "Code d'erreur: %1", + "errorEditingDownloadas": "Une erreur s'est produite pendant le travail sur le document. Utilisez l'option \"Télécharger\" pour enregistrer une sauvegarde locale", + "errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut être ouvert.", + "errorFileRequest": "Erreur externe.
    Erreur de demande du fichier. Contactez l'assistance technique.", + "errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Pour en savoir plus, veuillez contacter votre administrateur. ", + "errorFileVKey": "Erreur externe.
    Clé de sécurité incorrecte. Contactez l'assistance technique.", + "errorFillRange": "Il est impossible de remplir la plage de cellules sélectionnée.
    Toutes les cellules unies doivent être de la même taille.", "errorFormulaName": "Il y a une erreur dans la formule : nom de la formule incorrecte.", + "errorFormulaParsing": "Une erreur interne lors de l'analyse de la formule.", + "errorFrmlMaxLength": "Vous ne pouvez pas ajouter cette formule car sa longueur dépasse le nombre de caractères autorisés.
    Modifiez la formule et réessayer.", + "errorFrmlMaxReference": "Vous ne pouvez pas saisir cette formule parce qu'elle est trop longues, ou contient
    références de cellules, et/ou noms. ", + "errorFrmlMaxTextLength": "Les valeurs de texte dans les formules sont limitées à 255 caractères.
    Utilisez la fonction CONCATENER ou l’opérateur de concaténation (&).", + "errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas.
    Veuillez vérifier les données et réessayer.", + "errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable à laquelle aller.", + "errorKeyEncrypt": "Descripteur de clé inconnu", + "errorKeyExpire": "Descripteur de clés expiré", + "errorLockedAll": "L'opération ne peut pas être réalisée car la feuille a été verrouillée par un autre utilisateur.", + "errorLockedCellPivot": "Impossible de modifier les données d'un tableau croisé dynamique.", + "errorLockedWorksheetRename": "La feuille ne peut pas être renommée pour le moment car elle est en train d'être renommée par un autre utilisateur", + "errorMaxPoints": "Maximum de 4096 points en série par graphique.", + "errorMoveRange": "Impossible de modifier une partie d'une cellule fusionnée", + "errorMultiCellFormula": "Formules de tableau plusieurs cellules ne sont pas autorisées dans les classeurs.", + "errorOpenWarning": "La longueur de l'une des formules dans le fichier a dépassé
    le nombre de caractères autorisé, et la formule a été supprimée.", + "errorOperandExpected": "La syntaxe de la saisie est incorrecte. Veuillez vérifier si l'une des parenthèses - '(' ou ')' est manquante.", + "errorPasteMaxRange": "La zone de copie ne correspond pas à la zone de collage.
    Sélectionnez une zone avec la même taille ou cliquez sur la première cellule d'une ligne pour coller les cellules sélectionnées.", + "errorPrintMaxPagesCount": "Malheureusement, il n’est pas possible d’imprimer plus de 1500 pages à la fois sous version actuelle.
    Cette restriction sera supprimée dans une version future.", + "errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", + "errorSessionIdle": "Le document n'a pas été modifié depuis trop longtemps. Veuillez recharger la page.", + "errorSessionToken": "La connexion au serveur a été interrompue. Veuillez recharger la page.", + "errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "errorUnexpectedGuid": "Erreur externe.
    GUID non prévue. Contactez l'assistance technique.", + "errorUpdateVersionOnDisconnect": "La connexion internet a été rétablie, la version du fichier est modifiée.
    Avant de continuer, téléchargez le fichier ou copiez le contenu pour vous assurer que tous les changements ont été enregistrés. Rechargez la page.", + "errorUserDrop": "Impossible d'accéder au fichier.", + "errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", + "errorViewerDisconnect": "La connexion a été perdue. Vous pouvez toujours afficher le document,
    mais ne pouvez pas le télécharger jusqu'à ce que la connexion soit rétablie et que la page soit rafraichit.", "errorWrongBracketsCount": "Il y a une erreur dans la formule : Mauvais nombre de parenthèses.", "errorWrongOperator": "Une erreur dans la formule. L'opérateur n'est pas valide. Corriger l'erreur ou presser Echap pour annuler l'édition de la formule.", + "notcriticalErrorTitle": "Avertissement", "openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier", - "saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier" + "pastInMergeAreaError": "Impossible de modifier une partie d'une cellule fusionnée", + "saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier", + "scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", + "unknownErrorText": "Erreur inconnue.", + "uploadImageExtMessage": "Format d'image inconnu.", + "uploadImageFileCountMessage": "Aucune image chargée.", + "uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo." + }, + "LongActions": { + "applyChangesTextText": "Chargement des données en cours...", + "applyChangesTitleText": "Chargement des données", + "confirmMoveCellRange": "La plage de cellules finale peut contenir des données.Voulez-vous continuer?", + "confirmPutMergeRange": "Les données source contiennent des cellules fusionnées.
    La fusion sera annuléé avant le collage dans le tableau.", + "confirmReplaceFormulaInTable": "Les formules de la ligne en-tête seront supprimées et transformées en texte statique.
    Voulez-vous continuer?", + "downloadTextText": "Téléchargement du document...", + "downloadTitleText": "Téléchargement du document", + "loadFontsTextText": "Chargement des données en cours...", + "loadFontsTitleText": "Chargement des données", + "loadFontTextText": "Chargement des données en cours...", + "loadFontTitleText": "Chargement des données", + "loadImagesTextText": "Chargement des images en cours...", + "loadImagesTitleText": "Chargement des images", + "loadImageTextText": "Chargement d'une image en cours...", + "loadImageTitleText": "Chargement d'une image", + "loadingDocumentTextText": "Chargement du document...", + "loadingDocumentTitleText": "Chargement du document", + "notcriticalErrorTitle": "Avertissement", + "openTextText": "Ouverture du document...", + "openTitleText": "Ouverture du document", + "printTextText": "Impression du document...", + "printTitleText": "Impression du document", + "savePreparingText": "Préparation à l'enregistrement ", + "savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...", + "saveTextText": "Enregistrement du document...", + "saveTitleText": "Enregistrement du document", + "textLoadingDocument": "Chargement du document", + "textNo": "Non", + "textOk": "OK", + "textYes": "Oui", + "txtEditingMode": "Réglage mode d'édition...", + "uploadImageTextText": "Chargement d'une image en cours...", + "uploadImageTitleText": "Chargement d'une image", + "waitText": "Veuillez patienter..." }, "Statusbar": { - "textErrNameWrongChar": "Un nom de feuille ne peut pas contenir les caractères suivants : \\, /, *, ?, [, ], :" + "notcriticalErrorTitle": "Avertissement", + "textCancel": "Annuler", + "textDelete": "Supprimer", + "textDuplicate": "Dupliquer", + "textErrNameExists": "Une feuille de calcul avec le même nom existe déjà.", + "textErrNameWrongChar": "Un nom de feuille ne peut pas contenir les caractères suivants : \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Le nom de feuille ne peut pas être vide. ", + "textErrorLastSheet": "Un classeur doit avoir au moins une feuille de calcul visible.", + "textErrorRemoveSheet": "Impossible de supprimer la feuille de calcul.", + "textHide": "Masquer", + "textMore": "Plus", + "textRename": "Renommer", + "textRenameSheet": "Renommer la feuille", + "textSheet": "Feuille", + "textSheetName": "Nom de la feuille", + "textUnhide": "Afficher", + "textWarnDeleteSheet": "La feuille de calcul peut contenir des données. Êtes-vous sûr de vouloir continuer?" + }, + "Toolbar": { + "dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur Rester sur cette page et attendez l'enregistrement automatique. Cliquez sur Quitter cette page pour annuler toutes les modifications non enregistrées.", + "dlgLeaveTitleText": "Vous quittez l'application", + "leaveButtonText": "Quitter cette page", + "stayButtonText": "Rester sur cette page" }, "View": { "Add": { + "errorMaxRows": "ERREUR! Le nombre maximal de séries de données par diagramme est 255.", + "errorStockChart": "Ordre des lignes est incorrect. Pour créer un graphique boursier organisez vos données sur la feuille de calcul dans l'ordre suivant:
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", + "notcriticalErrorTitle": "Avertissement", + "sCatDateAndTime": "Date et heure", + "sCatEngineering": "Ingénierie", + "sCatFinancial": "Financier", + "sCatInformation": "Information", + "sCatLogical": "Logique", + "sCatLookupAndReference": "Recherche et référence", + "sCatMathematic": "Maths et trigonométrie", + "sCatStatistical": "Statistiques", + "sCatTextAndData": "Texte et données", "textAddLink": "Ajouter un lien", "textAddress": "Adresse", - "textBack": "Retour" + "textBack": "Retour", + "textCancel": "Annuler", + "textChart": "Graphique", + "textComment": "Commentaire", + "textDisplay": "Afficher", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", + "textExternalLink": "Lien externe", + "textFilter": "Filtre", + "textFunction": "Fonction", + "textGroups": "CATÉGORIES", + "textImage": "Image", + "textImageURL": "URL d'image", + "textInsert": "Insérer", + "textInsertImage": "Insérer une image", + "textInternalDataRange": "Plage de données interne", + "textInvalidRange": "ERREUR! La plage de cellules n'est pas valide", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkType": "Type de lien", + "textOther": "Autre", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image à partir d'une URL", + "textRange": "Plage", + "textRequired": "Requis", + "textScreenTip": "Info-bulle", + "textShape": "Forme", + "textSheet": "Feuille", + "textSortAndFilter": "Trier et filtrer", + "txtExpand": "Développer et trier", + "txtExpandSort": "Les données situées à côté de la sélection ne seront pas triées. Souhaitez-vous développer la sélection pour inclure les données adjacentes ou souhaitez-vous continuer à trier iniquement les cellules sélectionnées ?", + "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "txtSorting": "Tri", + "txtSortSelected": "Trier l'objet sélectionné " }, "Edit": { + "notcriticalErrorTitle": "Avertissement", "textAccounting": "Comptabilité", "textActualSize": "Taille par défaut", "textAddCustomColor": "Ajouter une couleur personnalisée", @@ -56,23 +349,289 @@ "textAlignRight": "Aligner à droite", "textAlignTop": "Aligner en haut", "textAllBorders": "Toutes les bordures", + "textAngleClockwise": "Rotation dans le sens des aiguilles d'une montre", + "textAngleCounterclockwise": "Rotation dans le sens inverse des aiguilles d'une montre", + "textAuto": "Auto", + "textAxisCrosses": "Intersection de l'axe", + "textAxisOptions": "Options de l'axe", + "textAxisPosition": "Position de l'axe", + "textAxisTitle": "Titre de l'axe", "textBack": "Retour", + "textBetweenTickMarks": "Entre graduations", "textBillions": "Milliards", "textBorder": "Bordure", "textBorderStyle": "Style de bordure", + "textBottom": "En bas", + "textBottomBorder": "Bordure inférieure", + "textBringToForeground": "Mettre au premier plan", + "textCell": "Cellule", + "textCellStyles": "Styles cellule", + "textCenter": "Au centre", + "textChart": "Graphique", + "textChartTitle": "Titre du graphique", + "textClearFilter": "Effacer le filtre", + "textColor": "Couleur", + "textCross": "Sur l'axe", + "textCrossesValue": "Valeur de croisement", + "textCurrency": "Monétaire", + "textCustomColor": "Couleur personnalisée", + "textDataLabels": "Étiquettes de données", + "textDate": "Date", + "textDefault": "Plage sélectionnée", + "textDeleteFilter": "Supprimer filtre", + "textDesign": "Stylique", + "textDiagonalDownBorder": "Bordure diagonale bas", + "textDiagonalUpBorder": "Bordure diagonale haut", + "textDisplay": "Afficher", + "textDisplayUnits": "Unités d'affichage", + "textDollar": "Dollar", + "textEditLink": "Modifier le lien", + "textEffects": "Effets", + "textEmptyImgUrl": "Spécifiez l'URL de l'image", "textEmptyItem": "{Blancs}", + "textErrorMsg": "Vous devez choisir au moins une valeur", + "textErrorTitle": "Avertissement", + "textEuro": "Euro", + "textExternalLink": "Lien externe", + "textFill": "Remplissage", + "textFillColor": "Couleur de remplissage", + "textFilterOptions": "Options filtre", + "textFit": "Ajuster au largeur", + "textFonts": "Polices", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Image depuis la bibliothèque", + "textFromURL": "Image à partir d'une URL", + "textGeneral": "Général", + "textGridlines": "Quadrillage", + "textHigh": "Haut", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Axe horizontal", + "textHorizontalText": "Texte horizontal", "textHundredMil": "100000000", + "textHundreds": "Centaines", "textHundredThousands": "100000", + "textHyperlink": "Lien hypertexte", + "textImage": "Image", + "textImageURL": "URL d'image", + "textIn": "Dans", + "textInnerBottom": "En bas à l'intérieur", + "textInnerTop": "En haut à l'intérieur", + "textInsideBorders": "Bordures intérieures", + "textInsideHorizontalBorder": "Bordure intérieure horizontale", + "textInsideVerticalBorder": "Bordure intérieure verticale", + "textInteger": "Entier", + "textInternalDataRange": "Plage de données interne", + "textInvalidRange": "Plage de cellules non valide", + "textJustified": "Justifié", + "textLabelOptions": "Options d'étiquettes", + "textLabelPosition": "Position de l'étiquette", + "textLayout": "Mise en page", + "textLeft": "A gauche", + "textLeftBorder": "Bordure gauche", + "textLeftOverlay": "Superposition à gauche", + "textLegend": "Légende", + "textLink": "Lien", + "textLinkSettings": "Paramètres de lien", + "textLinkType": "Type de lien", + "textLow": "En bas", + "textMajor": "Principaux", + "textMajorAndMinor": "Principaux et secondaires ", + "textMajorType": "Type principal", + "textMaximumValue": "Valeur maximale", + "textMedium": "Moyen", + "textMillions": "Millions", + "textMinimumValue": "Valeur minimale", + "textMinor": "Secondaires", + "textMinorType": "Type secondaire", + "textMoveBackward": "Déplacer vers l'arrière", + "textMoveForward": "Avancer", + "textNextToAxis": "À côté de l'axe", + "textNoBorder": "Sans bordures", + "textNone": "Aucun", + "textNoOverlay": "Sans superposition", + "textNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "textNumber": "Nombre", + "textOnTickMarks": "Graduations", + "textOpacity": "Opacité", + "textOut": "À l'extérieur", + "textOuterTop": "En haut à l'extérieur", + "textOutsideBorders": "Bordures extérieures", + "textOverlay": "Superposition", + "textPercentage": "Pourcentage", + "textPictureFromLibrary": "Image depuis la bibliothèque", + "textPictureFromURL": "Image à partir d'une URL", + "textPound": "Livre", + "textPt": "pt", + "textRange": "Plage", + "textRemoveChart": "Supprimer le graphique", + "textRemoveImage": "Supprimer l'image", + "textRemoveLink": "Supprimer le lien", + "textRemoveShape": "Supprimer la forme", + "textReorder": "Réorganiser", + "textReplace": "Remplacer", + "textReplaceImage": "Remplacer l’image", + "textRequired": "Requis", + "textRight": "À droite", + "textRightBorder": "Bordure droite", + "textRightOverlay": "Superposition à droite", + "textRotated": "Incliné", + "textRotateTextDown": "Rotation du texte vers le bas", + "textRotateTextUp": "Rotation du texte vers le haut", + "textRouble": "Rouble", + "textScientific": "Scientifique", + "textScreenTip": "Info-bulle", + "textSelectAll": "Sélectionner tout", + "textSelectObjectToEdit": "Sélectionnez l'objet à modifier", + "textSendToBackground": "Mettre en arrière-plan", + "textSettings": "Paramètres", + "textShape": "Forme", + "textSheet": "Feuille", + "textSize": "Taille", + "textStyle": "Style", "textTenMillions": "10000000", - "textTenThousands": "10000" + "textTenThousands": "10000", + "textText": "Texte", + "textTextColor": "Couleur du texte", + "textTextFormat": "Format du texte", + "textTextOrientation": "Orientation du texte", + "textThick": "Épais", + "textThin": "Mince", + "textThousands": "Milliers", + "textTickOptions": "Options de graduations", + "textTime": "Heure", + "textTop": "En haut", + "textTopBorder": "Bordure supérieure", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Valeur", + "textValuesInReverseOrder": "Valeurs en ordre inverse", + "textVertical": "Vertical", + "textVerticalAxis": "Axe vertical", + "textVerticalText": "Texte vertical", + "textWrapText": "Renvoyer à la ligne", + "textYen": "Yen", + "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", + "txtSortHigh2Low": "Trier du plus élevé au plus bas", + "txtSortLow2High": "Trier le plus bas au plus élevé" }, "Settings": { - "textAbout": "A propos", + "advCSVOptions": "Choisir les options CSV", + "advDRMEnterPassword": "Veuillez saisir votre mot de passe:", + "advDRMOptions": "Fichier protégé", + "advDRMPassword": "Mot de passe", + "closeButtonText": "Fermer le fichier", + "notcriticalErrorTitle": "Avertissement", + "textAbout": "À propos", "textAddress": "Adresse", "textApplication": "Application", "textApplicationSettings": "Paramètres de l'application", "textAuthor": "Auteur", - "textBack": "Retour" + "textBack": "Retour", + "textBottom": "En bas", + "textByColumns": "Par colonnes", + "textByRows": "Par lignes", + "textCancel": "Annuler", + "textCentimeter": "Centimètre", + "textCollaboration": "Collaboration", + "textColorSchemes": "Jeux de couleurs", + "textComment": "Commentaire", + "textCommentingDisplay": "Affichage des commentaires ", + "textComments": "Commentaires", + "textCreated": "Créé", + "textCustomSize": "Taille personnalisée", + "textDisableAll": "Désactiver tout", + "textDisableAllMacrosWithNotification": "Désactiver toutes les macros avec notification", + "textDisableAllMacrosWithoutNotification": "Désactiver toutes les macros sans notification", + "textDone": "Terminé", + "textDownload": "Télécharger", + "textDownloadAs": "Télécharger comme", + "textEmail": "E-mail", + "textEnableAll": "Activer tout", + "textEnableAllMacrosWithoutNotification": "Activer toutes les macros sans notification", + "textFind": "Recherche", + "textFindAndReplace": "Rechercher et remplacer", + "textFindAndReplaceAll": "Rechercher et remplacer tout", + "textFormat": "Format", + "textFormulaLanguage": "Langage de formule", + "textFormulas": "Formules", + "textHelp": "Aide", + "textHideGridlines": "Masquer le quadrillage", + "textHideHeadings": "Masquer les en-têtes", + "textHighlightRes": "Surligner les résultats", + "textInch": "Pouce", + "textLandscape": "Paysage", + "textLastModified": "Dernière modification", + "textLastModifiedBy": "Dernière modification par", + "textLeft": "À gauche", + "textLocation": "Emplacement", + "textLookIn": "Rechercher dans", + "textMacrosSettings": "Réglages macros", + "textMargins": "Marges", + "textMatchCase": "Respecter la casse", + "textMatchCell": "Respecter la cellule", + "textNoTextFound": "Le texte est introuvable", + "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", + "textOrientation": "Orientation", + "textOwner": "Propriétaire", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Réalisation", + "textPrint": "Imprimer", + "textR1C1Style": "Style de référence L1C1", + "textRegionalSettings": "Paramètres régionaux", + "textReplace": "Remplacer", + "textReplaceAll": "Remplacer tout", + "textResolvedComments": "Commentaires résolus", + "textRight": "À droite", + "textSearch": "Rechercher", + "textSearchBy": "Rechercher", + "textSearchIn": "Rechercher dans", + "textSettings": "Paramètres", + "textSheet": "Feuille", + "textShowNotification": "Montrer la notification", + "textSpreadsheetFormats": "Formats de feuille de calcul", + "textSpreadsheetInfo": "Infos sur classeur", + "textSpreadsheetSettings": "Paramètres de feuille de calcul", + "textSpreadsheetTitle": "Titre du classeur", + "textSubject": "Sujet", + "textTel": "Tél.", + "textTitle": "Titre", + "textTop": "En haut", + "textUnitOfMeasurement": "Unité de mesure", + "textUploaded": "Chargé", + "textValues": "Valeurs", + "textVersion": "Version", + "textWorkbook": "Classeur", + "txtDelimiter": "Délimiteur", + "txtEncoding": "Codage ", + "txtIncorrectPwd": "Mot de passe incorrect", + "txtProtected": "Une fois le mot de passe saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", + "txtScheme1": "Office", + "txtScheme10": "Médian", + "txtScheme11": "Métro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origine", + "txtScheme16": "Papier", + "txtScheme17": "Solstice", + "txtScheme18": "Technique", + "txtScheme19": "Promenade", + "txtScheme2": "Nuances de gris", + "txtScheme20": "Urbain", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civil", + "txtScheme6": "Rotonde", + "txtScheme7": "Capitaux", + "txtScheme8": "Flux", + "txtScheme9": "Fonderie", + "txtSpace": "Espace", + "txtTab": "Tabulation", + "warnDownloadAs": "Si vous continuez à enregistrer dans ce format toutes les fonctions sauf le texte seront perdues.
    Êtes-vous sûr de vouloir continuer?" } } } diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 7c6abbafe..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -1,659 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Válasz hozzáadása", - "Common.Controllers.Collaboration.textCancel": "Mégsem", - "Common.Controllers.Collaboration.textDeleteComment": "Hozzászólás törlése", - "Common.Controllers.Collaboration.textDeleteReply": "Válasz törlése", - "Common.Controllers.Collaboration.textDone": "Kész", - "Common.Controllers.Collaboration.textEdit": "Szerkesztés", - "Common.Controllers.Collaboration.textEditUser": "A fájlt szerkesztő felhasználók:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Biztosan töröljük a hozzászólást?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Biztosan töröljük a választ?", - "Common.Controllers.Collaboration.textReopen": "Újranyitás", - "Common.Controllers.Collaboration.textResolve": "Felold", - "Common.Controllers.Collaboration.textYes": "Igen", - "Common.UI.ThemeColorPalette.textCustomColors": "Egyéni színek", - "Common.UI.ThemeColorPalette.textStandartColors": "Sztenderd színek", - "Common.UI.ThemeColorPalette.textThemeColors": "Téma színek", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Válasz hozzáadása", - "Common.Views.Collaboration.textBack": "Vissza", - "Common.Views.Collaboration.textCancel": "Mégsem", - "Common.Views.Collaboration.textCollaboration": "Együttműködés", - "Common.Views.Collaboration.textDone": "Kész", - "Common.Views.Collaboration.textEditReply": "Válasz szerkesztése", - "Common.Views.Collaboration.textEditUsers": "Felhasználók", - "Common.Views.Collaboration.textEditСomment": "Hozzászólás szerkesztése", - "Common.Views.Collaboration.textNoComments": "Ebben a táblázatban nincsenek hozzászólások", - "Common.Views.Collaboration.textСomments": "Hozzászólások", - "SSE.Controllers.AddChart.txtDiagramTitle": "Diagram címe", - "SSE.Controllers.AddChart.txtSeries": "Sorozatok", - "SSE.Controllers.AddChart.txtXAxis": "X tengely", - "SSE.Controllers.AddChart.txtYAxis": "Y tengely", - "SSE.Controllers.AddContainer.textChart": "Diagram", - "SSE.Controllers.AddContainer.textFormula": "Funkció", - "SSE.Controllers.AddContainer.textImage": "Kép", - "SSE.Controllers.AddContainer.textOther": "Egyéb", - "SSE.Controllers.AddContainer.textShape": "Alakzat", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Figyelmeztetés", - "SSE.Controllers.AddLink.textInvalidRange": "HIBA! Érvénytelen cellatartomány", - "SSE.Controllers.AddLink.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Figyelmeztetés", - "SSE.Controllers.AddOther.textCancel": "Mégsem", - "SSE.Controllers.AddOther.textContinue": "Folytatás", - "SSE.Controllers.AddOther.textDelete": "Törlés", - "SSE.Controllers.AddOther.textDeleteDraft": "Biztosan töröljük a vázlatot?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", - "SSE.Controllers.AddOther.txtNotUrl": "A mező URL-címének a 'http://www.example.com' formátumban kell lennie", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "A másolás, kivágás és beillesztés a helyi menü segítségével csak az aktuális fájlon belül történik.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "A hivatkozás nem létezik. Kérjük, javítsa ki a hivatkozást, vagy törölje azt.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Hozzászólás hozzáadása", - "SSE.Controllers.DocumentHolder.menuAddLink": "Link hozzáadása", - "SSE.Controllers.DocumentHolder.menuCell": "Cella", - "SSE.Controllers.DocumentHolder.menuCopy": "Másol", - "SSE.Controllers.DocumentHolder.menuCut": "Kivág", - "SSE.Controllers.DocumentHolder.menuDelete": "Töröl", - "SSE.Controllers.DocumentHolder.menuEdit": "Szerkeszt", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Panelek rögzítése", - "SSE.Controllers.DocumentHolder.menuHide": "Elrejt", - "SSE.Controllers.DocumentHolder.menuMerge": "Összevon", - "SSE.Controllers.DocumentHolder.menuMore": "Még", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Link megnyitása", - "SSE.Controllers.DocumentHolder.menuPaste": "Beilleszt", - "SSE.Controllers.DocumentHolder.menuShow": "Mutat", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Rögzítés eltávolítása", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Szétválaszt", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Tördelés megszüntetése", - "SSE.Controllers.DocumentHolder.menuViewComment": "Hozzászólás megtekintése", - "SSE.Controllers.DocumentHolder.menuWrap": "Tördel", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Figyelmeztetés", - "SSE.Controllers.DocumentHolder.sheetCancel": "Mégse", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Másolás, kivágás és beillesztés", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne mutassa újra", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Csak a bal felső cellából származó adatok maradnak az egyesített cellában.
    Biztosan folytatni szeretné?", - "SSE.Controllers.EditCell.textAuto": "Auto", - "SSE.Controllers.EditCell.textFonts": "Betűtípusok", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "HIBA! Az adatsorok maximális száma diagramonként 255.", - "SSE.Controllers.EditChart.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
    nyitó ár, maximum ár, minimum ár, záró ár.", - "SSE.Controllers.EditChart.textAuto": "Auto", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Tengely osztások között", - "SSE.Controllers.EditChart.textBillions": "Milliárdok", - "SSE.Controllers.EditChart.textBottom": "Alsó", - "SSE.Controllers.EditChart.textCenter": "Közép", - "SSE.Controllers.EditChart.textCross": "Kereszt", - "SSE.Controllers.EditChart.textCustom": "Egyéni", - "SSE.Controllers.EditChart.textFit": "Szélességben igazít", - "SSE.Controllers.EditChart.textFixed": "Rögzített", - "SSE.Controllers.EditChart.textHigh": "Magas", - "SSE.Controllers.EditChart.textHorizontal": "Vízszintes", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Száz", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "-ben", - "SSE.Controllers.EditChart.textInnerBottom": "Alul belül", - "SSE.Controllers.EditChart.textInnerTop": "Felül belül", - "SSE.Controllers.EditChart.textLeft": "Bal", - "SSE.Controllers.EditChart.textLeftOverlay": "Bal átfedés", - "SSE.Controllers.EditChart.textLow": "Alacsony", - "SSE.Controllers.EditChart.textManual": "Kézi", - "SSE.Controllers.EditChart.textMaxValue": "Maximum érték", - "SSE.Controllers.EditChart.textMillions": "Milliók", - "SSE.Controllers.EditChart.textMinValue": "Minimum érték", - "SSE.Controllers.EditChart.textNextToAxis": "Tengely mellett", - "SSE.Controllers.EditChart.textNone": "nincs", - "SSE.Controllers.EditChart.textNoOverlay": "Nincs átfedés", - "SSE.Controllers.EditChart.textOnTickMarks": "Tengely osztásokon", - "SSE.Controllers.EditChart.textOut": "Ki", - "SSE.Controllers.EditChart.textOuterTop": "Kívül fent", - "SSE.Controllers.EditChart.textOverlay": "Átfedés", - "SSE.Controllers.EditChart.textRight": "Jobb", - "SSE.Controllers.EditChart.textRightOverlay": "Jobb átfedés", - "SSE.Controllers.EditChart.textRotated": "Elforgatott", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Ezrek", - "SSE.Controllers.EditChart.textTop": "Felső", - "SSE.Controllers.EditChart.textTrillions": "Billió", - "SSE.Controllers.EditChart.textValue": "Érték", - "SSE.Controllers.EditContainer.textCell": "Cella", - "SSE.Controllers.EditContainer.textChart": "Diagram", - "SSE.Controllers.EditContainer.textHyperlink": "Hivatkozás", - "SSE.Controllers.EditContainer.textImage": "Kép", - "SSE.Controllers.EditContainer.textSettings": "Beállítások", - "SSE.Controllers.EditContainer.textShape": "Alakzat", - "SSE.Controllers.EditContainer.textTable": "Táblázat", - "SSE.Controllers.EditContainer.textText": "Szöveg", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Figyelmeztetés", - "SSE.Controllers.EditHyperlink.textDefault": "Kiválasztott tartomány", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Meg kell adni a kép URL linkjét.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Külső hivatkozás", - "SSE.Controllers.EditHyperlink.textInternalLink": "Belső adattartomány", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Érvénytelen cellatartomány", - "SSE.Controllers.EditHyperlink.txtNotUrl": "A mező URL-címének a \"http://www.example.com\" formátumban kell lennie", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Figyelmeztetés", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Meg kell adni a kép hivatkozását.", - "SSE.Controllers.EditImage.txtNotUrl": "A mező hivatkozásának 'http://www.example.com' formátumban kellene lennie", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Legalább egy értéket ki kell választania", - "SSE.Controllers.FilterOptions.textErrorTitle": "Figyelmeztetés", - "SSE.Controllers.FilterOptions.textSelectAll": "Összes kiválasztása", - "SSE.Controllers.Main.advCSVOptions": "Válasszon a CSV beállítások közül", - "SSE.Controllers.Main.advDRMEnterPassword": "Adja meg a jelszavát:", - "SSE.Controllers.Main.advDRMOptions": "Védett fájl", - "SSE.Controllers.Main.advDRMPassword": "Jelszó", - "SSE.Controllers.Main.applyChangesTextText": "Adatok betöltése...", - "SSE.Controllers.Main.applyChangesTitleText": "Adatok betöltése", - "SSE.Controllers.Main.closeButtonText": "Fájl bezárása", - "SSE.Controllers.Main.convertationTimeoutText": "Időtúllépés az átalakítás során.", - "SSE.Controllers.Main.criticalErrorExtText": "Nyomja meg az \"OK\"-t a dokumentumok listájához.", - "SSE.Controllers.Main.criticalErrorTitle": "Hiba", - "SSE.Controllers.Main.downloadErrorText": "Sikertelen letöltés.", - "SSE.Controllers.Main.downloadMergeText": "Letöltés...", - "SSE.Controllers.Main.downloadMergeTitle": "Letöltés", - "SSE.Controllers.Main.downloadTextText": "Munkafüzet letöltése...", - "SSE.Controllers.Main.downloadTitleText": "Munkafüzet letöltése", - "SSE.Controllers.Main.errorAccessDeny": "Olyan műveletet próbál végrehajtani, melyre nincs jogosultsága.
    Vegye fel a kapcsolatot a Document Server adminisztrátorával.", - "SSE.Controllers.Main.errorArgsRange": "Hiba a megadott képletben.
    Helytelen argumentumtartomány került alkalmazásra.", - "SSE.Controllers.Main.errorAutoFilterChange": "A művelet nem megengedett, mivel megpróbálja a cellákat a munkalapon lévő táblázatban eltolni.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "A műveletet nem lehetett elvégezni a kiválasztott cellák esetében, mivel nem tudunk mozgatni a táblázat egy részét.
    Válasszon másik adattartományt, hogy az egész asztal eltolódjon, és próbálja újra.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "A műveletet nem lehetett elvégezni a kiválasztott cellatartományban.
    Válasszon egy egységes adattartományt, amely eltér a meglévő cellától, és próbálja újra.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "A műveletet nem lehet végrehajtani, mert a terület szűrt cellákat tartalmaz.
    Szüntesse meg a szűrt elemeket, és próbálja újra.", - "SSE.Controllers.Main.errorBadImageUrl": "Hibás kép URL", - "SSE.Controllers.Main.errorChangeArray": "Nem módosíthatja a tömb egy részét.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Elveszett a kapcsolat a szerverrel. A dokumentum jelenleg nem szerkeszthető.", - "SSE.Controllers.Main.errorConnectToServer": "A dokumentum mentése nem lehetséges. Kérjük ellenőrizze a kapcsolódási beállításokat vagy lépjen kapcsolatba a rendszer adminisztrátorral.
    Ha az 'OK'-ra kattint letöltheti a dokumentumot.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Ez a parancs nem használható többes kiválasztással.
    Válasszon ki egy tartományt és próbálja újra.", - "SSE.Controllers.Main.errorCountArg": "Hiba a megadott képletben.
    Nem megfelelő számú argumentum használata.", - "SSE.Controllers.Main.errorCountArgExceed": "Hiba a megadott képletben.
    Az argumentumok száma túllépve.", - "SSE.Controllers.Main.errorCreateDefName": "A meglévő tartományok nem szerkeszthetők, és az újakat nem lehet létrehozni
    jelenleg némely szerkesztés alatt áll.", - "SSE.Controllers.Main.errorDatabaseConnection": "Külső hiba.
    Adatbázis-kapcsolati hiba. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a rendszer támogatással.", - "SSE.Controllers.Main.errorDataEncrypted": "Titkosított változások érkeztek, melyek feloldása sikertelen.", - "SSE.Controllers.Main.errorDataRange": "Hibás adattartomány.", - "SSE.Controllers.Main.errorDefaultMessage": "Hibakód: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Hiba történt a dokumentummal végzett munka során.
    Használja a 'Letölt' opciót, hogy elmentse a fájl biztonsági másolatát a számítógép merevlemezére.", - "SSE.Controllers.Main.errorFilePassProtect": "A dokumentum jelszóval védett, és nem nyitható meg.", - "SSE.Controllers.Main.errorFileRequest": "Külső hiba.
    Fájl kérési hiba. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", - "SSE.Controllers.Main.errorFileSizeExceed": "A fájlméret meghaladja a szerverre beállított korlátozást.
    Kérjük, forduljon a Document Server rendszergazdájához a részletekért.", - "SSE.Controllers.Main.errorFileVKey": "Külső hiba.
    Helytelen biztonsági kulcs. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", - "SSE.Controllers.Main.errorFillRange": "Nem sikerült kitölteni a kiválasztott cellatartományt.
    Minden egyesített cellának azonos méretűnek kell lennie.", - "SSE.Controllers.Main.errorFormulaName": "Hiba a bevitt képletben.
    Helytelen képletnév.", - "SSE.Controllers.Main.errorFormulaParsing": "Belső hiba a képlet elemzése közben.", - "SSE.Controllers.Main.errorFrmlMaxLength": "A képlet hossza meghaladja a 8192 karakteres korlátot.
    Kérjük, módosítsa és próbálja újra.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Nem adhatja meg ezt a képletet, mert túl sok értéke,
    cellahivatkozása és/vagy neve van.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "A képletekben a szövegértékek legfeljebb 255 karakterre korlátozódhatnak.
    Használja a CONCATENATE funkciót vagy az összefűző operátort (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "A függvény nem létező munkalapra vonatkozik.
    Kérjük, ellenőrizze az adatokat és próbálja újra.", - "SSE.Controllers.Main.errorInvalidRef": "Adjon meg egy helyes nevet a kijelöléshez, vagy érvényes hivatkozást.", - "SSE.Controllers.Main.errorKeyEncrypt": "Ismeretlen kulcsleíró", - "SSE.Controllers.Main.errorKeyExpire": "Lejárt kulcsleíró", - "SSE.Controllers.Main.errorLockedAll": "A műveletet nem lehetett végrehajtani, mivel a munkalapot egy másik felhasználó zárolta.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "A lapot nem lehet átnevezni, egy másik felhasználó éppen átnevezte azt", - "SSE.Controllers.Main.errorMailMergeLoadFile": "A dokumentum megnyitása sikertelen. Kérjük, válasszon egy másik fájlt.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Sikertelen összevonás.", - "SSE.Controllers.Main.errorMaxPoints": "A soronkénti maximális pontszám diagramonként 4096.", - "SSE.Controllers.Main.errorMoveRange": "Nem lehet módosítani az egyesített cellák egy részét", - "SSE.Controllers.Main.errorMultiCellFormula": "A multi-cella tömb függvények nem engedélyezettek a táblázatokban.", - "SSE.Controllers.Main.errorOpensource": "Az ingyenes közösségi verzió használatával dokumentumokat csak megtekintésre nyithat meg. A mobil webszerkesztőkhöz való hozzáféréshez kereskedelmi licensz szükséges.", - "SSE.Controllers.Main.errorOpenWarning": "Az egyik fájlképlet meghaladja a 8192 karakteres korlátot.
    A képletet eltávolítottuk.", - "SSE.Controllers.Main.errorOperandExpected": "A bevitt függvényszintaxis nem megfelelő. Kérjük, ellenőrizze, hogy hiányzik-e az egyik zárójel - '(' vagy ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "A másolási és beillesztési terület nem egyezik.
    Válasszon ki egy azonos méretű területet, vagy kattintson a sorban lévő első cellára a másolt cellák beillesztéséhez.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Sajnos nem lehet több mint 1500 oldalt egyszerre kinyomtatni az aktuális programverzióban.
    Ez a korlátozás eltávolításra kerül a következő kiadásokban.", - "SSE.Controllers.Main.errorProcessSaveResult": "Sikertelen mentés", - "SSE.Controllers.Main.errorServerVersion": "A szerkesztő verziója frissült. Az oldal újratöltésre kerül a módosítások alkalmazásához.", - "SSE.Controllers.Main.errorSessionAbsolute": "A dokumentumszerkesztési munkamenet lejárt. Kérjük, töltse be újra az oldalt.", - "SSE.Controllers.Main.errorSessionIdle": "A dokumentumot sokáig nem szerkesztették. Kérjük, töltse be újra az oldalt.", - "SSE.Controllers.Main.errorSessionToken": "A szerverrel való kapcsolat megszakadt. Töltse be újra az oldalt.", - "SSE.Controllers.Main.errorStockChart": "Helytelen sor sorrend. Tőzsdei diagram létrehozásához az adatokat az alábbi sorrendben vigye fel:
    nyitó ár, maximum ár, minimum ár, záró ár.", - "SSE.Controllers.Main.errorToken": "A dokumentum biztonsági tokenje nem megfelelő.
    Kérjük, lépjen kapcsolatba a Dokumentumszerver rendszergazdájával.", - "SSE.Controllers.Main.errorTokenExpire": "A dokumentum biztonsági tokenje lejárt.
    Kérjük, lépjen kapcsolatba a dokumentumszerver rendszergazdájával.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Külső hiba.
    Váratlan GUID. Ha a hiba továbbra is fennáll, lépjen kapcsolatba a támogatással.", - "SSE.Controllers.Main.errorUpdateVersion": "A dokumentum verziója megváltozott. Az oldal újratöltődik.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Az internet kapcsolat helyreállt, és a fájl verziója megváltozott.
    Mielőtt folytatná a munkát, töltse le a fájlt, vagy másolja vágólapra annak tartalmát, hogy megbizonyosodjon arról, hogy semmi nem veszik el, majd töltse újra az oldalt.", - "SSE.Controllers.Main.errorUserDrop": "A dokumentum jelenleg nem elérhető", - "SSE.Controllers.Main.errorUsersExceed": "Túllépte a csomagja által engedélyezett felhasználók számát", - "SSE.Controllers.Main.errorViewerDisconnect": "A kapcsolat megszakadt. Továbbra is megtekinthető a dokumentum,
    de a kapcsolat helyreálltáig és az oldal újratöltéséig nem lehet letölteni.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Hiba a bevitt képletben.
    A zárójelek száma hibás.", - "SSE.Controllers.Main.errorWrongOperator": "Hiba a megadott képletben. Hibás operátor használata.
    Kérjük, javítsa ki a hibát.", - "SSE.Controllers.Main.leavePageText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", - "SSE.Controllers.Main.loadFontsTextText": "Adatok betöltése...", - "SSE.Controllers.Main.loadFontsTitleText": "Adatok betöltése", - "SSE.Controllers.Main.loadFontTextText": "Adatok betöltése...", - "SSE.Controllers.Main.loadFontTitleText": "Adatok betöltése", - "SSE.Controllers.Main.loadImagesTextText": "Képek betöltése...", - "SSE.Controllers.Main.loadImagesTitleText": "Képek betöltése", - "SSE.Controllers.Main.loadImageTextText": "Kép betöltése...", - "SSE.Controllers.Main.loadImageTitleText": "Kép betöltése", - "SSE.Controllers.Main.loadingDocumentTextText": "Munkafüzet betöltése...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Munkafüzet betöltése", - "SSE.Controllers.Main.mailMergeLoadFileText": "Adatforrás betöltése...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Adatforrás betöltése", - "SSE.Controllers.Main.notcriticalErrorTitle": "Figyelmeztetés", - "SSE.Controllers.Main.openErrorText": "Hiba történt a fájl megnyitásakor", - "SSE.Controllers.Main.openTextText": "Dokumentum megnyitása...", - "SSE.Controllers.Main.openTitleText": "Dokumentum megnyitása", - "SSE.Controllers.Main.pastInMergeAreaError": "Nem lehet módosítani az egyesített cellák egy részét", - "SSE.Controllers.Main.printTextText": "Dokumentum nyomtatása...", - "SSE.Controllers.Main.printTitleText": "Dokumentum nyomtatása", - "SSE.Controllers.Main.reloadButtonText": "Oldal újratöltése", - "SSE.Controllers.Main.requestEditFailedMessageText": "Jelenleg valaki más szerkeszti ezt a dokumentumot. Próbálja újra később.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Hozzáférés megtagadva", - "SSE.Controllers.Main.saveErrorText": "Hiba történt a fájl mentése során.", - "SSE.Controllers.Main.savePreparingText": "Felkészülés mentésre", - "SSE.Controllers.Main.savePreparingTitle": "Felkészülés a mentésre. Kérem várjon...", - "SSE.Controllers.Main.saveTextText": "Dokumentum mentése...", - "SSE.Controllers.Main.saveTitleText": "Dokumentum mentése", - "SSE.Controllers.Main.scriptLoadError": "A kapcsolat túl lassú, néhány komponens nem töltődött be. Frissítse az oldalt.", - "SSE.Controllers.Main.sendMergeText": "Összevont küldés...", - "SSE.Controllers.Main.sendMergeTitle": "Összevont küldés", - "SSE.Controllers.Main.textAnonymous": "Névtelen", - "SSE.Controllers.Main.textBack": "Vissza", - "SSE.Controllers.Main.textBuyNow": "Weboldalt meglátogat", - "SSE.Controllers.Main.textCancel": "Mégse", - "SSE.Controllers.Main.textClose": "Bezár", - "SSE.Controllers.Main.textContactUs": "Értékesítési osztály", - "SSE.Controllers.Main.textCustomLoader": "Kérjük, vegye figyelembe, hogy az engedély feltételei szerint nem jogosult a betöltő cseréjére.
    Kérjük, forduljon értékesítési osztályunkhoz, hogy árajánlatot kapjon.", - "SSE.Controllers.Main.textDone": "Kész", - "SSE.Controllers.Main.textGuest": "Vendég", - "SSE.Controllers.Main.textHasMacros": "A fájl automatikus makrókat tartalmaz.
    Szeretne makrókat futtatni?", - "SSE.Controllers.Main.textLoadingDocument": "Munkafüzet betöltése", - "SSE.Controllers.Main.textNo": "Nem", - "SSE.Controllers.Main.textNoLicenseTitle": "Elérte a licenckorlátot", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Fizetett funkció", - "SSE.Controllers.Main.textPassword": "Jelszó", - "SSE.Controllers.Main.textPreloader": "Betöltés...", - "SSE.Controllers.Main.textRemember": "Emlékezzen a választásomra minden fájlhoz", - "SSE.Controllers.Main.textShape": "Alakzat", - "SSE.Controllers.Main.textStrict": "Biztonságos mód", - "SSE.Controllers.Main.textTryUndoRedo": "A Visszavonás / Újra funkciók le vannak tiltva a Gyors együttes szerkesztés módban.
    A \"Biztonságos mód\" gombra kattintva válthat a Biztonságos együttes szerkesztés módra, hogy a dokumentumot más felhasználókkal való interferencia nélkül tudja szerkeszteni, mentés után küldve el a módosításokat. A szerkesztési módok között a Speciális beállítások segítségével válthat.", - "SSE.Controllers.Main.textUsername": "Felhasználói név", - "SSE.Controllers.Main.textYes": "Igen", - "SSE.Controllers.Main.titleLicenseExp": "Lejárt licenc", - "SSE.Controllers.Main.titleServerVersion": "Szerkesztő frissítve", - "SSE.Controllers.Main.titleUpdateVersion": "A verzió megváltozott", - "SSE.Controllers.Main.txtAccent": "Ékezet", - "SSE.Controllers.Main.txtArt": "Írja a szöveget ide", - "SSE.Controllers.Main.txtBasicShapes": "Egyszerű alakzatok", - "SSE.Controllers.Main.txtButtons": "Gombok", - "SSE.Controllers.Main.txtCallouts": "Feliratok", - "SSE.Controllers.Main.txtCharts": "Diagramok", - "SSE.Controllers.Main.txtDelimiter": "Határolójel", - "SSE.Controllers.Main.txtDiagramTitle": "Diagram címe", - "SSE.Controllers.Main.txtEditingMode": "Szerkesztési mód beállítása...", - "SSE.Controllers.Main.txtEncoding": "Kódol", - "SSE.Controllers.Main.txtErrorLoadHistory": "A napló betöltése sikertelen", - "SSE.Controllers.Main.txtFiguredArrows": "Nyíl formák", - "SSE.Controllers.Main.txtLines": "Vonalak", - "SSE.Controllers.Main.txtMath": "Matematika", - "SSE.Controllers.Main.txtProtected": "Amint beírásra került a kód és megnyílt a fájl, a fájl jelenlegi kódja visszaállítódik.", - "SSE.Controllers.Main.txtRectangles": "Négyszögek", - "SSE.Controllers.Main.txtSeries": "Sorozatok", - "SSE.Controllers.Main.txtSpace": "Hely", - "SSE.Controllers.Main.txtStarsRibbons": "Csillagok és szalagok", - "SSE.Controllers.Main.txtStyle_Bad": "Hibás", - "SSE.Controllers.Main.txtStyle_Calculation": "Számítás", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Cellák ellenőrzése", - "SSE.Controllers.Main.txtStyle_Comma": "Vessző", - "SSE.Controllers.Main.txtStyle_Currency": "Pénznem", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Magyarázó szöveg", - "SSE.Controllers.Main.txtStyle_Good": "Jó", - "SSE.Controllers.Main.txtStyle_Heading_1": "Címsor 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Címsor 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Címsor 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Címsor 4", - "SSE.Controllers.Main.txtStyle_Input": "Bemenet", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Kapcsolt cella", - "SSE.Controllers.Main.txtStyle_Neutral": "Semleges", - "SSE.Controllers.Main.txtStyle_Normal": "Normál", - "SSE.Controllers.Main.txtStyle_Note": "Jegyzet", - "SSE.Controllers.Main.txtStyle_Output": "Eredmény", - "SSE.Controllers.Main.txtStyle_Percent": "Százalék", - "SSE.Controllers.Main.txtStyle_Title": "Cím", - "SSE.Controllers.Main.txtStyle_Total": "Összesen", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Figyelmeztető szöveg", - "SSE.Controllers.Main.txtTab": "Lap", - "SSE.Controllers.Main.txtXAxis": "X tengely", - "SSE.Controllers.Main.txtYAxis": "Y tengely", - "SSE.Controllers.Main.unknownErrorText": "Ismeretlen hiba.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "A böngészője nem támogatott.", - "SSE.Controllers.Main.uploadImageExtMessage": "Ismeretlen képformátum.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Nincs kép feltöltve.", - "SSE.Controllers.Main.uploadImageSizeMessage": "A maximális képmérethatár túllépve.", - "SSE.Controllers.Main.uploadImageTextText": "Kép feltöltése...", - "SSE.Controllers.Main.uploadImageTitleText": "Kép feltöltése", - "SSE.Controllers.Main.waitText": "Kérjük várjon...", - "SSE.Controllers.Main.warnLicenseExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
    További információért forduljon rendszergazdájához.", - "SSE.Controllers.Main.warnLicenseExp": "A licence lejárt.
    Kérem frissítse a licencét, majd az oldalt.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "A licenc lejárt.
    Nincs hozzáférése a dokumentumszerkesztő funkciókhoz.
    Kérjük, lépjen kapcsolatba a rendszergazdával.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "A licencet meg kell újítani.
    Korlátozott hozzáférése van a dokumentumszerkesztési funkciókhoz.
    A teljes hozzáférésért forduljon rendszergazdájához", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. További információért forduljon rendszergazdájához.", - "SSE.Controllers.Main.warnNoLicense": "Elérte a(z) %1 szerkesztőhöz tartozó egyidejű csatlakozás korlátját. Ez a dokumentum csak megtekintésre nyílik meg.
    Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Elérte a(z) %1 szerkesztőhöz tartozó felhasználói korlátját. Vegye fel a kapcsolatot a(z) %1 értékesítési csapattal a személyes frissítési feltételekért.", - "SSE.Controllers.Main.warnProcessRightsChange": "Nincs joga szerkeszteni a fájl-t.", - "SSE.Controllers.Search.textNoTextFound": "A szöveg nem található", - "SSE.Controllers.Search.textReplaceAll": "Mindent cserél", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Figyelmeztetés", - "SSE.Controllers.Settings.txtDe": "Német", - "SSE.Controllers.Settings.txtEn": "Angol", - "SSE.Controllers.Settings.txtEs": "Spanyol", - "SSE.Controllers.Settings.txtFr": "Francia", - "SSE.Controllers.Settings.txtIt": "Olasz", - "SSE.Controllers.Settings.txtPl": "Lengyel", - "SSE.Controllers.Settings.txtRu": "Orosz", - "SSE.Controllers.Settings.warnDownloadAs": "Ha ebbe a formátumba ment, a nyers szövegen kívül minden elveszik.
    Biztos benne, hogy folytatni akarja?", - "SSE.Controllers.Statusbar.cancelButtonText": "Mégse", - "SSE.Controllers.Statusbar.errNameExists": "Az ilyen nevű munkalap már létezik.", - "SSE.Controllers.Statusbar.errNameWrongChar": "A lap neve nem tartalmazhatja az alábbi karaktereket: /, *,?, [,],:", - "SSE.Controllers.Statusbar.errNotEmpty": "A mukalap neve nem lehet üres", - "SSE.Controllers.Statusbar.errorLastSheet": "A munkafüzetnek legalább egy látható munkalapot kell tartalmaznia.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Nem törölhető a munkalap.", - "SSE.Controllers.Statusbar.menuDelete": "Töröl", - "SSE.Controllers.Statusbar.menuDuplicate": "Kettőzés", - "SSE.Controllers.Statusbar.menuHide": "Elrejt", - "SSE.Controllers.Statusbar.menuMore": "Több", - "SSE.Controllers.Statusbar.menuRename": "Név változtatása", - "SSE.Controllers.Statusbar.menuUnhide": "Megmutat", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Figyelmeztetés", - "SSE.Controllers.Statusbar.strRenameSheet": "Munkalap átnevezése", - "SSE.Controllers.Statusbar.strSheet": "Munkalap", - "SSE.Controllers.Statusbar.strSheetName": "Munkalap név", - "SSE.Controllers.Statusbar.textExternalLink": "Külső hivatkozás", - "SSE.Controllers.Statusbar.warnDeleteSheet": "A munkalapon lehetnek adatok. Folytassa a műveletet?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "El nem mentett változások vannak a dokumentumban. Kattintson a 'Maradás az oldalon'-ra hogy megvárja a dokumentum automatikus mentését. Kattintson a 'Az oldal elhagyása'-ra, a nem mentett változások elvetéséhez. ", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Bezárja az alkalmazást", - "SSE.Controllers.Toolbar.leaveButtonText": "Oldal elhagyása", - "SSE.Controllers.Toolbar.stayButtonText": "Maradni az oldalon", - "SSE.Views.AddFunction.sCatDateAndTime": "Dátum és idő", - "SSE.Views.AddFunction.sCatEngineering": "Mérnöki", - "SSE.Views.AddFunction.sCatFinancial": "Pénzügyi", - "SSE.Views.AddFunction.sCatInformation": "Információ", - "SSE.Views.AddFunction.sCatLogical": "Logikai", - "SSE.Views.AddFunction.sCatLookupAndReference": "Keresés és hivatkozás", - "SSE.Views.AddFunction.sCatMathematic": "Matematika és trigonometria", - "SSE.Views.AddFunction.sCatStatistical": "Statisztikai", - "SSE.Views.AddFunction.sCatTextAndData": "Szöveg és adat", - "SSE.Views.AddFunction.textBack": "Vissza", - "SSE.Views.AddFunction.textGroups": "Kategóriák", - "SSE.Views.AddLink.textAddLink": "Link hozzáadása", - "SSE.Views.AddLink.textAddress": "Cím", - "SSE.Views.AddLink.textDisplay": "Megjelenít", - "SSE.Views.AddLink.textExternalLink": "Külső hivatkozás", - "SSE.Views.AddLink.textInsert": "Beszúr", - "SSE.Views.AddLink.textInternalLink": "Belső adattartomány", - "SSE.Views.AddLink.textLink": "Link", - "SSE.Views.AddLink.textLinkType": "Link típusa", - "SSE.Views.AddLink.textRange": "Tartomány", - "SSE.Views.AddLink.textRequired": "Szükséges", - "SSE.Views.AddLink.textSelectedRange": "Kiválasztott tartomány", - "SSE.Views.AddLink.textSheet": "Munkalap", - "SSE.Views.AddLink.textTip": "Gyorstipp", - "SSE.Views.AddOther.textAddComment": "Hozzászólás hozzáadása", - "SSE.Views.AddOther.textAddress": "Cím", - "SSE.Views.AddOther.textBack": "Vissza", - "SSE.Views.AddOther.textComment": "Hozzászólás", - "SSE.Views.AddOther.textDone": "Kész", - "SSE.Views.AddOther.textFilter": "Szűrő", - "SSE.Views.AddOther.textFromLibrary": "Kép a galériából", - "SSE.Views.AddOther.textFromURL": "Kép URL-en keresztül", - "SSE.Views.AddOther.textImageURL": "Kép URL", - "SSE.Views.AddOther.textInsert": "Beszúr", - "SSE.Views.AddOther.textInsertImage": "Kép beszúrása", - "SSE.Views.AddOther.textLink": "Link", - "SSE.Views.AddOther.textLinkSettings": "Hivatkozás beállítások", - "SSE.Views.AddOther.textSort": "Rendezés és szűrés", - "SSE.Views.EditCell.textAccounting": "Könyvelés", - "SSE.Views.EditCell.textAddCustomColor": "Egyéni szín hozzáadása", - "SSE.Views.EditCell.textAlignBottom": "Alulra rendez", - "SSE.Views.EditCell.textAlignCenter": "Középre rendez", - "SSE.Views.EditCell.textAlignLeft": "Balra rendez", - "SSE.Views.EditCell.textAlignMiddle": "Középre rendez", - "SSE.Views.EditCell.textAlignRight": "Jobbra rendez", - "SSE.Views.EditCell.textAlignTop": "Felfelé rendez", - "SSE.Views.EditCell.textAllBorders": "Jobb szegély", - "SSE.Views.EditCell.textAngleClockwise": "Óramutató járásával megegyező irányba", - "SSE.Views.EditCell.textAngleCounterclockwise": "Óramutató járásával ellentétes irányba", - "SSE.Views.EditCell.textBack": "Vissza", - "SSE.Views.EditCell.textBorderStyle": "Szegély stílus", - "SSE.Views.EditCell.textBottomBorder": "Alsó szegély", - "SSE.Views.EditCell.textCellStyle": "Cella stílusok", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Szín", - "SSE.Views.EditCell.textCurrency": "Pénznem", - "SSE.Views.EditCell.textCustomColor": "Egyéni szín", - "SSE.Views.EditCell.textDate": "Dátum", - "SSE.Views.EditCell.textDiagDownBorder": "Átlós szegély lefelé", - "SSE.Views.EditCell.textDiagUpBorder": "Átlós szegély felfelé", - "SSE.Views.EditCell.textDollar": "Dollár", - "SSE.Views.EditCell.textEuro": "Euró", - "SSE.Views.EditCell.textFillColor": "Kitöltőszín", - "SSE.Views.EditCell.textFonts": "Betűtípusok", - "SSE.Views.EditCell.textFormat": "Formátum", - "SSE.Views.EditCell.textGeneral": "Általános", - "SSE.Views.EditCell.textHorizontalText": "Vízszintes szöveg", - "SSE.Views.EditCell.textInBorders": "Belső szegélyek", - "SSE.Views.EditCell.textInHorBorder": "Belső vízszintes szegély", - "SSE.Views.EditCell.textInteger": "Egész szám", - "SSE.Views.EditCell.textInVertBorder": "Belső függőleges szegély", - "SSE.Views.EditCell.textJustified": "Sorkizárt", - "SSE.Views.EditCell.textLeftBorder": "Bal szegély", - "SSE.Views.EditCell.textMedium": "Közepes", - "SSE.Views.EditCell.textNoBorder": "Nincs szegély", - "SSE.Views.EditCell.textNumber": "Szám", - "SSE.Views.EditCell.textPercentage": "Százalék", - "SSE.Views.EditCell.textPound": "Font", - "SSE.Views.EditCell.textRightBorder": "Jobb szegély", - "SSE.Views.EditCell.textRotateTextDown": "Szöveg forgatása lefelé", - "SSE.Views.EditCell.textRotateTextUp": "Szöveg forgatása felfelé", - "SSE.Views.EditCell.textRouble": "Rubel", - "SSE.Views.EditCell.textScientific": "Tudományos", - "SSE.Views.EditCell.textSize": "Méret", - "SSE.Views.EditCell.textText": "Szöveg", - "SSE.Views.EditCell.textTextColor": "Szöveg szín", - "SSE.Views.EditCell.textTextFormat": "Szövegformátum", - "SSE.Views.EditCell.textTextOrientation": "Szövegirány", - "SSE.Views.EditCell.textThick": "Vastag", - "SSE.Views.EditCell.textThin": "Vékony", - "SSE.Views.EditCell.textTime": "Idő", - "SSE.Views.EditCell.textTopBorder": "Felső szegély", - "SSE.Views.EditCell.textVerticalText": "Függőleges szöveg", - "SSE.Views.EditCell.textWrapText": "Szövegtördelés", - "SSE.Views.EditCell.textYen": "Jen", - "SSE.Views.EditChart.textAddCustomColor": "Egyéni szín hozzáadása", - "SSE.Views.EditChart.textAuto": "Auto", - "SSE.Views.EditChart.textAxisCrosses": "Tengelykeresztek", - "SSE.Views.EditChart.textAxisOptions": "Tengely beállítások", - "SSE.Views.EditChart.textAxisPosition": "Tengely pozíció", - "SSE.Views.EditChart.textAxisTitle": "Tengely jelölés", - "SSE.Views.EditChart.textBack": "Vissza", - "SSE.Views.EditChart.textBackward": "Hátra mozgat", - "SSE.Views.EditChart.textBorder": "Szegély", - "SSE.Views.EditChart.textBottom": "Alsó", - "SSE.Views.EditChart.textChart": "Diagram", - "SSE.Views.EditChart.textChartTitle": "Diagram címe", - "SSE.Views.EditChart.textColor": "Szín", - "SSE.Views.EditChart.textCrossesValue": "Érték", - "SSE.Views.EditChart.textCustomColor": "Egyéni szín", - "SSE.Views.EditChart.textDataLabels": "Adatcímkék", - "SSE.Views.EditChart.textDesign": "Dizájn", - "SSE.Views.EditChart.textDisplayUnits": "Egységek mutatása", - "SSE.Views.EditChart.textFill": "Kitölt", - "SSE.Views.EditChart.textForward": "Előre mozgat", - "SSE.Views.EditChart.textGridlines": "Rácsvonalak", - "SSE.Views.EditChart.textHorAxis": "Vízszintes tengely", - "SSE.Views.EditChart.textHorizontal": "Vízszintes", - "SSE.Views.EditChart.textLabelOptions": "Címke beállítások", - "SSE.Views.EditChart.textLabelPos": "Címke pozíció", - "SSE.Views.EditChart.textLayout": "Elrendezés", - "SSE.Views.EditChart.textLeft": "Bal", - "SSE.Views.EditChart.textLeftOverlay": "Bal átfedés", - "SSE.Views.EditChart.textLegend": "Jelmagyarázat", - "SSE.Views.EditChart.textMajor": "Jelentősebb", - "SSE.Views.EditChart.textMajorMinor": "Jelentősebb és kisebb", - "SSE.Views.EditChart.textMajorType": "Főbb típusú", - "SSE.Views.EditChart.textMaxValue": "Maximum érték", - "SSE.Views.EditChart.textMinor": "Kisebb", - "SSE.Views.EditChart.textMinorType": "Kisebb típusú", - "SSE.Views.EditChart.textMinValue": "Minimum érték", - "SSE.Views.EditChart.textNone": "nincs", - "SSE.Views.EditChart.textNoOverlay": "Nincs átfedés", - "SSE.Views.EditChart.textOverlay": "Átfedés", - "SSE.Views.EditChart.textRemoveChart": "Diagram eltávolítása", - "SSE.Views.EditChart.textReorder": "Újrarendez", - "SSE.Views.EditChart.textRight": "Jobb", - "SSE.Views.EditChart.textRightOverlay": "Jobb átfedés", - "SSE.Views.EditChart.textRotated": "Elforgatott", - "SSE.Views.EditChart.textSize": "Méret", - "SSE.Views.EditChart.textStyle": "Stílus", - "SSE.Views.EditChart.textTickOptions": "Jelölés beállítások", - "SSE.Views.EditChart.textToBackground": "Háttérbe küld", - "SSE.Views.EditChart.textToForeground": "Elölre hoz", - "SSE.Views.EditChart.textTop": "Felső", - "SSE.Views.EditChart.textType": "Típus", - "SSE.Views.EditChart.textValReverseOrder": "Értékek fordított sorrendben", - "SSE.Views.EditChart.textVerAxis": "Függőleges tengely", - "SSE.Views.EditChart.textVertical": "Függőleges", - "SSE.Views.EditHyperlink.textBack": "Vissza", - "SSE.Views.EditHyperlink.textDisplay": "Megjelenít", - "SSE.Views.EditHyperlink.textEditLink": "Hivatkozás szerkesztése", - "SSE.Views.EditHyperlink.textExternalLink": "Külső hivatkozás", - "SSE.Views.EditHyperlink.textInternalLink": "Belső adattartomány", - "SSE.Views.EditHyperlink.textLink": "Link", - "SSE.Views.EditHyperlink.textLinkType": "Link típusa", - "SSE.Views.EditHyperlink.textRange": "Tartomány", - "SSE.Views.EditHyperlink.textRemoveLink": "Link eltávolítása", - "SSE.Views.EditHyperlink.textScreenTip": "Gyorstipp", - "SSE.Views.EditHyperlink.textSheet": "Munkalap", - "SSE.Views.EditImage.textAddress": "Cím", - "SSE.Views.EditImage.textBack": "Vissza", - "SSE.Views.EditImage.textBackward": "Hátra mozgat", - "SSE.Views.EditImage.textDefault": "Valódi méret", - "SSE.Views.EditImage.textForward": "Előre mozgat", - "SSE.Views.EditImage.textFromLibrary": "Kép a galériából", - "SSE.Views.EditImage.textFromURL": "Kép URL-en keresztül", - "SSE.Views.EditImage.textImageURL": "Kép URL", - "SSE.Views.EditImage.textLinkSettings": "Link beállítások", - "SSE.Views.EditImage.textRemove": "Kép eltávolítása", - "SSE.Views.EditImage.textReorder": "Újrarendez", - "SSE.Views.EditImage.textReplace": "Cserél", - "SSE.Views.EditImage.textReplaceImg": "Képet cserél", - "SSE.Views.EditImage.textToBackground": "Háttérbe küld", - "SSE.Views.EditImage.textToForeground": "Elölre hoz", - "SSE.Views.EditShape.textAddCustomColor": "Egyéni szín hozzáadása", - "SSE.Views.EditShape.textBack": "Vissza", - "SSE.Views.EditShape.textBackward": "Hátra mozgat", - "SSE.Views.EditShape.textBorder": "Szegély", - "SSE.Views.EditShape.textColor": "Szín", - "SSE.Views.EditShape.textCustomColor": "Egyéni szín", - "SSE.Views.EditShape.textEffects": "Effektek", - "SSE.Views.EditShape.textFill": "Kitölt", - "SSE.Views.EditShape.textForward": "Előre mozgat", - "SSE.Views.EditShape.textOpacity": "Átlátszóság", - "SSE.Views.EditShape.textRemoveShape": "Alakzat eltávolítása", - "SSE.Views.EditShape.textReorder": "Újrarendez", - "SSE.Views.EditShape.textReplace": "Cserél", - "SSE.Views.EditShape.textSize": "Méret", - "SSE.Views.EditShape.textStyle": "Stílus", - "SSE.Views.EditShape.textToBackground": "Háttérbe küld", - "SSE.Views.EditShape.textToForeground": "Elölre hoz", - "SSE.Views.EditText.textAddCustomColor": "Egyéni szín hozzáadása", - "SSE.Views.EditText.textBack": "Vissza", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Egyéni szín", - "SSE.Views.EditText.textFillColor": "Kitöltőszín", - "SSE.Views.EditText.textFonts": "Betűtípusok", - "SSE.Views.EditText.textSize": "Méret", - "SSE.Views.EditText.textTextColor": "Szöveg szín", - "SSE.Views.FilterOptions.textClearFilter": "Szűrő törlése", - "SSE.Views.FilterOptions.textDeleteFilter": "Szűrő törlése", - "SSE.Views.FilterOptions.textFilter": "Szűrő beállítások", - "SSE.Views.Search.textByColumns": "Oszlopoktól", - "SSE.Views.Search.textByRows": "Soroktól", - "SSE.Views.Search.textDone": "Kész", - "SSE.Views.Search.textFind": "Keres", - "SSE.Views.Search.textFindAndReplace": "Keres és cserél", - "SSE.Views.Search.textFormulas": "Képletek", - "SSE.Views.Search.textHighlightRes": "Eredmények kiemelése", - "SSE.Views.Search.textLookIn": "Keres", - "SSE.Views.Search.textMatchCase": "Egyezés esete", - "SSE.Views.Search.textMatchCell": "Egyező cella", - "SSE.Views.Search.textReplace": "Cserél", - "SSE.Views.Search.textSearch": "Keresés", - "SSE.Views.Search.textSearchBy": "Keresés", - "SSE.Views.Search.textSearchIn": "Keresés", - "SSE.Views.Search.textSheet": "Munkalap", - "SSE.Views.Search.textValues": "Értékek", - "SSE.Views.Search.textWorkbook": "Munkafüzet", - "SSE.Views.Settings.textAbout": "Névjegy", - "SSE.Views.Settings.textAddress": "Cím", - "SSE.Views.Settings.textApplication": "Alkalmazás", - "SSE.Views.Settings.textApplicationSettings": "Alkalmazás beállítások", - "SSE.Views.Settings.textAuthor": "Szerző", - "SSE.Views.Settings.textBack": "Vissza", - "SSE.Views.Settings.textBottom": "Alsó", - "SSE.Views.Settings.textCentimeter": "Centiméter", - "SSE.Views.Settings.textCollaboration": "Együttműködés", - "SSE.Views.Settings.textColorSchemes": "Szín sémák", - "SSE.Views.Settings.textComment": "Hozzászólás", - "SSE.Views.Settings.textCommentingDisplay": "Hozzászólások megjelenítése", - "SSE.Views.Settings.textCreated": "Létrehozva", - "SSE.Views.Settings.textCreateDate": "Létrehozás dátuma", - "SSE.Views.Settings.textCustom": "Egyéni", - "SSE.Views.Settings.textCustomSize": "Egyéni méret", - "SSE.Views.Settings.textDisableAll": "Összes letiltása", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Minden értesítéssel rendelkező makró letiltása", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Minden értesítés nélküli makró letiltása", - "SSE.Views.Settings.textDisplayComments": "Hozzászólások", - "SSE.Views.Settings.textDisplayResolvedComments": "Lezárt hozzászólások", - "SSE.Views.Settings.textDocInfo": "Munkafüzet infó", - "SSE.Views.Settings.textDocTitle": "Munkafüzet cím", - "SSE.Views.Settings.textDone": "Kész", - "SSE.Views.Settings.textDownload": "Letöltés", - "SSE.Views.Settings.textDownloadAs": "Letöltés mint...", - "SSE.Views.Settings.textEditDoc": "Dokumentum szerkesztése", - "SSE.Views.Settings.textEmail": "Email", - "SSE.Views.Settings.textEnableAll": "Összes engedélyezése", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Minden értesítés nélküli makró engedélyezése", - "SSE.Views.Settings.textExample": "Példa", - "SSE.Views.Settings.textFind": "Keres", - "SSE.Views.Settings.textFindAndReplace": "Keres és cserél", - "SSE.Views.Settings.textFormat": "Formátum", - "SSE.Views.Settings.textFormulaLanguage": "Képlet nyelve", - "SSE.Views.Settings.textHelp": "Súgó", - "SSE.Views.Settings.textHideGridlines": "Rácsvonalak elrejtése", - "SSE.Views.Settings.textHideHeadings": "Fejlécek elrejtése", - "SSE.Views.Settings.textInch": "Hüvelyk", - "SSE.Views.Settings.textLandscape": "Fekvő", - "SSE.Views.Settings.textLastModified": "Utoljára módosított", - "SSE.Views.Settings.textLastModifiedBy": "Utoljára módosította", - "SSE.Views.Settings.textLeft": "Bal", - "SSE.Views.Settings.textLoading": "Betöltés...", - "SSE.Views.Settings.textLocation": "Hely", - "SSE.Views.Settings.textMacrosSettings": "Makró beállítások", - "SSE.Views.Settings.textMargins": "Margók", - "SSE.Views.Settings.textOrientation": "Tájolás", - "SSE.Views.Settings.textOwner": "Tulajdonos", - "SSE.Views.Settings.textPoint": "Pont", - "SSE.Views.Settings.textPortrait": "Álló", - "SSE.Views.Settings.textPoweredBy": "Powered by", - "SSE.Views.Settings.textPrint": "Nyomtat", - "SSE.Views.Settings.textR1C1Style": "R1C1 Reference Style", - "SSE.Views.Settings.textRegionalSettings": "Területi beállítások", - "SSE.Views.Settings.textRight": "Jobb", - "SSE.Views.Settings.textSettings": "Beállítások", - "SSE.Views.Settings.textShowNotification": "Értesítés mutatása", - "SSE.Views.Settings.textSpreadsheetFormats": "Munkafüzet formátumok", - "SSE.Views.Settings.textSpreadsheetSettings": "Munkafüzet beállításai", - "SSE.Views.Settings.textSubject": "Tárgy", - "SSE.Views.Settings.textTel": "Tel.", - "SSE.Views.Settings.textTitle": "Cím", - "SSE.Views.Settings.textTop": "Felső", - "SSE.Views.Settings.textUnitOfMeasurement": "Mérési egység", - "SSE.Views.Settings.textUploaded": "Feltöltve", - "SSE.Views.Settings.textVersion": "Verzió", - "SSE.Views.Settings.unknownText": "Ismeretlen", - "SSE.Views.Toolbar.textBack": "Vissza" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index b1038fc13..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -1,661 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Aggiungi risposta", - "Common.Controllers.Collaboration.textCancel": "Annulla", - "Common.Controllers.Collaboration.textDeleteComment": "Elimina commento", - "Common.Controllers.Collaboration.textDeleteReply": "Elimina risposta", - "Common.Controllers.Collaboration.textDone": "Fine", - "Common.Controllers.Collaboration.textEdit": "Modifica", - "Common.Controllers.Collaboration.textEditUser": "Utenti che stanno modificando il file:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Sei sicuro di voler eliminare questo commento?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Sei sicuro di voler eliminare questa risposta?", - "Common.Controllers.Collaboration.textReopen": "Riapri", - "Common.Controllers.Collaboration.textResolve": "Risolvi", - "Common.Controllers.Collaboration.textYes": "Sì", - "Common.UI.ThemeColorPalette.textCustomColors": "Colori personalizzati", - "Common.UI.ThemeColorPalette.textStandartColors": "Colori standard", - "Common.UI.ThemeColorPalette.textThemeColors": "Colori del tema", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Aggiungi risposta", - "Common.Views.Collaboration.textBack": "Indietro", - "Common.Views.Collaboration.textCancel": "Annulla", - "Common.Views.Collaboration.textCollaboration": "Collaborazione", - "Common.Views.Collaboration.textDone": "Fine", - "Common.Views.Collaboration.textEditReply": "Modifica risposta", - "Common.Views.Collaboration.textEditUsers": "Utenti", - "Common.Views.Collaboration.textEditСomment": "Modifica commento", - "Common.Views.Collaboration.textNoComments": "Questo foglio di calcolo non contiene commenti", - "Common.Views.Collaboration.textСomments": "Сommenti", - "SSE.Controllers.AddChart.txtDiagramTitle": "Titolo del grafico", - "SSE.Controllers.AddChart.txtSeries": "Serie", - "SSE.Controllers.AddChart.txtXAxis": "Asse X", - "SSE.Controllers.AddChart.txtYAxis": "Asse Y", - "SSE.Controllers.AddContainer.textChart": "Grafico", - "SSE.Controllers.AddContainer.textFormula": "Funzione", - "SSE.Controllers.AddContainer.textImage": "Immagine", - "SSE.Controllers.AddContainer.textOther": "Altro", - "SSE.Controllers.AddContainer.textShape": "Forma", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Avviso", - "SSE.Controllers.AddLink.textInvalidRange": "ERRORE! Intervallo di celle non valido", - "SSE.Controllers.AddLink.txtNotUrl": "Questo campo deve essere un URL nel formato 'http://www.example.com'", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Avviso", - "SSE.Controllers.AddOther.textCancel": "Annulla", - "SSE.Controllers.AddOther.textContinue": "Continua", - "SSE.Controllers.AddOther.textDelete": "Elimina", - "SSE.Controllers.AddOther.textDeleteDraft": "Sei sicuro di voler eliminare la bozza?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Specifica l'URL dell'immagine.", - "SSE.Controllers.AddOther.txtNotUrl": "Questo campo deve essere un URL nel formato 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Le azioni di copia, taglia e incolla utilizzando il menù di scelta rapida verranno eseguite solo all'interno del file corrente.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "Il collegamento a cui si fa riferimento non esiste. Correggere il collegamento oppure si prega di rimuoverlo.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Aggiungi commento", - "SSE.Controllers.DocumentHolder.menuAddLink": "Aggiungi collegamento", - "SSE.Controllers.DocumentHolder.menuCell": "Cella", - "SSE.Controllers.DocumentHolder.menuCopy": "Copia", - "SSE.Controllers.DocumentHolder.menuCut": "Taglia", - "SSE.Controllers.DocumentHolder.menuDelete": "Elimina", - "SSE.Controllers.DocumentHolder.menuEdit": "Modifica", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Blocca riquadri", - "SSE.Controllers.DocumentHolder.menuHide": "Nascondi", - "SSE.Controllers.DocumentHolder.menuMerge": "Unisci", - "SSE.Controllers.DocumentHolder.menuMore": "Altro", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Apri collegamento", - "SSE.Controllers.DocumentHolder.menuPaste": "Incolla", - "SSE.Controllers.DocumentHolder.menuShow": "Mostra", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Sblocca i riquadri", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Dissocia", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Scarta", - "SSE.Controllers.DocumentHolder.menuViewComment": "Visualizza commento", - "SSE.Controllers.DocumentHolder.menuWrap": "Racchiudi", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Avviso", - "SSE.Controllers.DocumentHolder.sheetCancel": "Annulla", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Azioni copia/taglia/incolla", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Non visualizzare più", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Solo i dati dalla cella sinistra superiore rimangono nella cella unita.
    Sei sicuro di voler continuare?", - "SSE.Controllers.EditCell.textAuto": "Automatico", - "SSE.Controllers.EditCell.textFonts": "Caratteri", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ERRORE! Il numero massimo di serie di dati per grafico è di 255.", - "SSE.Controllers.EditChart.errorStockChart": "Righe ordinate in modo errato. Per creare un grafico azionario si prega di posizionare i dati nel seguente ordine:
    prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", - "SSE.Controllers.EditChart.textAuto": "Automatico", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Tra segni di spunta", - "SSE.Controllers.EditChart.textBillions": "Miliardi", - "SSE.Controllers.EditChart.textBottom": "Pulsante", - "SSE.Controllers.EditChart.textCenter": "Al centro", - "SSE.Controllers.EditChart.textCross": "Interseca", - "SSE.Controllers.EditChart.textCustom": "Personalizzato", - "SSE.Controllers.EditChart.textFit": "Adatta larghezza", - "SSE.Controllers.EditChart.textFixed": "Bloccato", - "SSE.Controllers.EditChart.textHigh": "Alto", - "SSE.Controllers.EditChart.textHorizontal": "Orizzontale", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Centinaia", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "in", - "SSE.Controllers.EditChart.textInnerBottom": "Basso interno", - "SSE.Controllers.EditChart.textInnerTop": "Alto interno", - "SSE.Controllers.EditChart.textLeft": "A sinistra", - "SSE.Controllers.EditChart.textLeftOverlay": "Sovrapposizione a sinistra", - "SSE.Controllers.EditChart.textLow": "Basso", - "SSE.Controllers.EditChart.textManual": "Manuale", - "SSE.Controllers.EditChart.textMaxValue": "Valore massimo", - "SSE.Controllers.EditChart.textMillions": "Milioni", - "SSE.Controllers.EditChart.textMinValue": "Valore minimo", - "SSE.Controllers.EditChart.textNextToAxis": "Vicine all'asse", - "SSE.Controllers.EditChart.textNone": "Nessuno", - "SSE.Controllers.EditChart.textNoOverlay": "Nessuna sovrapposizione", - "SSE.Controllers.EditChart.textOnTickMarks": "sui segni di demarcazione", - "SSE.Controllers.EditChart.textOut": "All'esterno", - "SSE.Controllers.EditChart.textOuterTop": "Alto esterno", - "SSE.Controllers.EditChart.textOverlay": "Sovrapposizione", - "SSE.Controllers.EditChart.textRight": "A destra", - "SSE.Controllers.EditChart.textRightOverlay": "Sovrapposizione a destra", - "SSE.Controllers.EditChart.textRotated": "Ruotato", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Migliaia", - "SSE.Controllers.EditChart.textTop": "In alto", - "SSE.Controllers.EditChart.textTrillions": "Trilioni", - "SSE.Controllers.EditChart.textValue": "Valore", - "SSE.Controllers.EditContainer.textCell": "Cella", - "SSE.Controllers.EditContainer.textChart": "Grafico", - "SSE.Controllers.EditContainer.textHyperlink": "Collegamento ipertestuale", - "SSE.Controllers.EditContainer.textImage": "Immagine", - "SSE.Controllers.EditContainer.textSettings": "Impostazioni", - "SSE.Controllers.EditContainer.textShape": "Forma", - "SSE.Controllers.EditContainer.textTable": "Tabella", - "SSE.Controllers.EditContainer.textText": "Testo", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Avviso", - "SSE.Controllers.EditHyperlink.textDefault": "Intervallo selezionato", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Specifica l'URL dell'immagine.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Collegamento esterno", - "SSE.Controllers.EditHyperlink.textInternalLink": "Intervallo di dati interno", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Intervallo di celle non valido", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Questo campo deve essere un URL nel formato \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Avviso", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Devi specificare la URL dell'immagine", - "SSE.Controllers.EditImage.txtNotUrl": "Questo campo deve essere un URL nel formato 'http://www.example.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Spazi vuoti}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Devi selezionare almeno un valore", - "SSE.Controllers.FilterOptions.textErrorTitle": "Avviso", - "SSE.Controllers.FilterOptions.textSelectAll": "Seleziona tutto", - "SSE.Controllers.Main.advCSVOptions": "Scegli opzioni CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Inserisci la tua password:", - "SSE.Controllers.Main.advDRMOptions": "File protetto", - "SSE.Controllers.Main.advDRMPassword": "Password", - "SSE.Controllers.Main.applyChangesTextText": "Caricamento dei dati in corso...", - "SSE.Controllers.Main.applyChangesTitleText": "Caricamento dei dati", - "SSE.Controllers.Main.closeButtonText": "Chiudi File", - "SSE.Controllers.Main.convertationTimeoutText": "È stato superato il tempo massimo per la conversione.", - "SSE.Controllers.Main.criticalErrorExtText": "Premere 'OK' per tornare all'elenco dei documenti.", - "SSE.Controllers.Main.criticalErrorTitle": "Errore", - "SSE.Controllers.Main.downloadErrorText": "Scaricamento fallito.", - "SSE.Controllers.Main.downloadMergeText": "Scaricamento in corso...", - "SSE.Controllers.Main.downloadMergeTitle": "Scaricamento", - "SSE.Controllers.Main.downloadTextText": "Scaricamento del foglio di calcolo in corso...", - "SSE.Controllers.Main.downloadTitleText": "Scaricamento del foglio di calcolo", - "SSE.Controllers.Main.errorAccessDeny": "Stai tentando di eseguire un'azione per la quale non disponi di permessi sufficienti.
    Si prega di contattare l'amministratore del Document Server.", - "SSE.Controllers.Main.errorArgsRange": "Un errore nella formula inserita.
    È stato utilizzato un intervallo di argomenti non corretto.", - "SSE.Controllers.Main.errorAutoFilterChange": "Operazione non consentita. Si sta tentando di spostare le celle nella tabella del tuo foglio di lavoro.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Impossibile effettuare questa operazione per le celle selezionate perché è impossibile spostare una parte della tabella.
    Seleziona un altro intervallo dati per spostare tutta la tabella e riprova.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Impossibile eseguire l'operazione sull'intervallo celle selezionato.
    Selezionare un intervallo di dati uniforme diverso da quello esistente e riprovare.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'operazione non può essere eseguita perché l'area contiene celle filtrate
    Scopri gli elementi filtrati e riprova.", - "SSE.Controllers.Main.errorBadImageUrl": "URL dell'immagine non corretta", - "SSE.Controllers.Main.errorChangeArray": "Non è possibile modificare parte di un vettore.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Connessione al server persa. Il documento non può essere modificato in questo momento.", - "SSE.Controllers.Main.errorConnectToServer": "Il documento non può essere salvato. Controllare le impostazioni di rete o contattare l'Amministratore.
    Quando fai clic sul pulsante 'OK', ti verrà richiesto di scaricare il documento.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Questo comando non può essere applicato a selezioni multiple.
    Seleziona un intervallo singolo e riprova.", - "SSE.Controllers.Main.errorCountArg": "Un errore nella formula inserita.
    È stato utilizzato un numero di argomento non corretto.", - "SSE.Controllers.Main.errorCountArgExceed": "C'è un errore nella formula inserita.
    È stato superato il numero di argomenti.", - "SSE.Controllers.Main.errorCreateDefName": "Gli intervalli denominati esistenti non possono essere modificati e quelli nuovi non possono essere creati
    al momento alcuni di essi sono in fase di modifica.", - "SSE.Controllers.Main.errorDatabaseConnection": "Errore esterno.
    Errore di connessione al database. Si prega di contattare l'assistenza nel caso in cui l'errore persista.", - "SSE.Controllers.Main.errorDataEncrypted": "Le modifiche crittografate sono state ricevute, non possono essere decifrate.", - "SSE.Controllers.Main.errorDataRange": "Intervallo di dati non corretto.", - "SSE.Controllers.Main.errorDataValidate": "Il valore inserito non è valido.
    Un utente ha valori limitati che possono essere inseriti in questa cella.", - "SSE.Controllers.Main.errorDefaultMessage": "Codice errore: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Si è verificato un errore mentre si lavorava sul documento.
    Utilizzare l'opzione 'Scarica' per salvare la copia di backup del file sul disco locale del computer.", - "SSE.Controllers.Main.errorFilePassProtect": "Il file è protetto da password e non può essere aperto.", - "SSE.Controllers.Main.errorFileRequest": "Errore esterno.
    Errore di richiesta file. Si prega di contattare l'assistenza nel caso in cui l'errore persista.", - "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 il supporto 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.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.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Non puoi accedere a questa formula perché ha troppi valori,
    riferimenti di cella, e/o nomi.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "I valori di testo nelle formule sono limitati a 255 caratteri.
    Utilizzare la funzione CONCATENATE o l'operatore di concatenazione(&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "La funzione si riferisce a un foglio inesistente.
    Verifica i dati e riprova.", - "SSE.Controllers.Main.errorInvalidRef": "Immettere un nome corretto per la selezione o un riferimento valido a cui accedere.", - "SSE.Controllers.Main.errorKeyEncrypt": "Descrittore della chiave sconosciuto", - "SSE.Controllers.Main.errorKeyExpire": "Il descrittore della chiave è scaduto", - "SSE.Controllers.Main.errorLockedAll": "L'operazione non può essere portata a termine fino a che il foglio è bloccato da un altro utente.", - "SSE.Controllers.Main.errorLockedCellPivot": "Non è possibile modificare i dati all'interno di una tabella pivot.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "Il foglio non può essere rinominato al momento in quanto viene rinominato da un altro utente.", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Caricamento del documento non riuscito. Si prega di selezionare un file differente.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Unione non riuscita", - "SSE.Controllers.Main.errorMaxPoints": "Il numero massimo di punti in serie per grafico è di 4096.", - "SSE.Controllers.Main.errorMoveRange": "Impossibile modificare una parte della cella unita", - "SSE.Controllers.Main.errorMultiCellFormula": "Le formule di matrice multi-cella non sono consentite nelle tabelle.", - "SSE.Controllers.Main.errorOpensource": "Con la versione gratuita Community puoi aprire i documenti in sola visualizzazione. Per accedere agli editor web mobile, è richiesta una licenza commerciale.", - "SSE.Controllers.Main.errorOpenWarning": "La lunghezza di una delle formule nel file ha superato
    il numero consentito di caratteri ed è stato rimossa.", - "SSE.Controllers.Main.errorOperandExpected": "La sintassi per la funzione inserita non è corretta. Controlla se hai dimenticato una delle parentesi - '(' oppure ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "L'area di copia-incolla non coincide.
    Selezionare un'area con le stesse dimensioni o fare click sulla prima cella in una riga per incollare le celle copiate.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Purtroppo non è possibile stampare più di 1500 pagine alla volta con la versione attuale del programma.
    Questa limitazione sarà rimossa nelle prossime versioni del programma.", - "SSE.Controllers.Main.errorProcessSaveResult": "Salvataggio non riuscito", - "SSE.Controllers.Main.errorServerVersion": "La versione dell'editor è stata aggiornata. La pagina verrà ricaricata per applicare le modifiche.", - "SSE.Controllers.Main.errorSessionAbsolute": "La sessione di modifica del documento è scaduta. Si prega di ricaricare la pagina.", - "SSE.Controllers.Main.errorSessionIdle": "È passato troppo tempo dall'ultima modifica apportata al documento. Si prega di ricaricare la pagina.", - "SSE.Controllers.Main.errorSessionToken": "La connessione al server è stata interrotta. Si prega di ricaricare la pagina.", - "SSE.Controllers.Main.errorStockChart": "Righe ordinate in modo errato. Per creare un grafico azionario posizionare i dati sul foglio nel seguente ordine:
    prezzo di apertura, prezzo massimo, prezzo minimo, prezzo di chiusura.", - "SSE.Controllers.Main.errorToken": "Il token di sicurezza del documento non è stato creato correttamente.
    Si prega di contattare l'amministratore del Documeent Server.", - "SSE.Controllers.Main.errorTokenExpire": "Il token di sicurezza del documento è scaduto.
    Si prega di contattare l'amministratore del Document Server.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Errore esterno.
    GUID inaspettato. Si prega di contattare il supporto nel caso in cui l'errore persista.", - "SSE.Controllers.Main.errorUpdateVersion": "La versione del file è stata modificata. La pagina verrà ricaricata.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.
    Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, quindi ricaricare questa pagina.", - "SSE.Controllers.Main.errorUserDrop": "Impossibile accedere al file in questo momento.", - "SSE.Controllers.Main.errorUsersExceed": "È stato superato il numero di utenti consentito dal piano tariffario", - "SSE.Controllers.Main.errorViewerDisconnect": "Connessione assente. È ancora possibile visualizzare il documento,
    ma non sarà possibile scaricarlo fino a che la connessione verrà ristabilita e la pagina verrà ricaricata.", - "SSE.Controllers.Main.errorWrongBracketsCount": "C'è un errore nella formula inserita.
    È stato utilizzato un numero errato tra parentesi.", - "SSE.Controllers.Main.errorWrongOperator": "Un errore nella formula inserita. È stato utilizzato un operatore errato.
    Correggere per continuare.", - "SSE.Controllers.Main.leavePageText": "Ci sono delle modifiche non salvate in questo documento. Clicca su 'Rimani in questa pagina, in attesa del salvataggio automatico del documento. Clicca su 'Lascia questa pagina' per annullare le modifiche.", - "SSE.Controllers.Main.loadFontsTextText": "Caricamento dei dati in corso...", - "SSE.Controllers.Main.loadFontsTitleText": "Caricamento dei dati", - "SSE.Controllers.Main.loadFontTextText": "Caricamento dei dati in corso...", - "SSE.Controllers.Main.loadFontTitleText": "Caricamento dei dati", - "SSE.Controllers.Main.loadImagesTextText": "Caricamento delle immagini in corso...", - "SSE.Controllers.Main.loadImagesTitleText": "Caricamento delle immagini", - "SSE.Controllers.Main.loadImageTextText": "Caricamento dell'immagine in corso...", - "SSE.Controllers.Main.loadImageTitleText": "Caricamento dell'immagine", - "SSE.Controllers.Main.loadingDocumentTextText": "Caricamento del foglio di calcolo in corso...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Caricamento del foglio di calcolo", - "SSE.Controllers.Main.mailMergeLoadFileText": "Caricamento origine dati in corso...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Caricamento origine dati", - "SSE.Controllers.Main.notcriticalErrorTitle": "Avviso", - "SSE.Controllers.Main.openErrorText": "Si è verificato un errore durante l'apertura del file", - "SSE.Controllers.Main.openTextText": "Apertura del documento in corso...", - "SSE.Controllers.Main.openTitleText": "Apertura del documento", - "SSE.Controllers.Main.pastInMergeAreaError": "Impossibile modificare una parte della cella unita", - "SSE.Controllers.Main.printTextText": "Stampa del documento in corso...", - "SSE.Controllers.Main.printTitleText": "Stampa del documento", - "SSE.Controllers.Main.reloadButtonText": "Ricarica la pagina", - "SSE.Controllers.Main.requestEditFailedMessageText": "Qualcuno sta modificando questo documento in questo momento. Si prega di provare più tardi.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Accesso negato", - "SSE.Controllers.Main.saveErrorText": "Si è verificato un errore durante il salvataggio del file", - "SSE.Controllers.Main.savePreparingText": "Preparazione al salvataggio ", - "SSE.Controllers.Main.savePreparingTitle": "Preparazione al salvataggio. Attendere prego...", - "SSE.Controllers.Main.saveTextText": "Salvataggio del documento in corso...", - "SSE.Controllers.Main.saveTitleText": "Salvataggio del documento", - "SSE.Controllers.Main.scriptLoadError": "La connessione è troppo lenta, alcuni componenti non possono essere caricati. Si prega di ricaricare la pagina.", - "SSE.Controllers.Main.sendMergeText": "Invio unione in corso...", - "SSE.Controllers.Main.sendMergeTitle": "Invio unione", - "SSE.Controllers.Main.textAnonymous": "Anonimo", - "SSE.Controllers.Main.textBack": "Indietro", - "SSE.Controllers.Main.textBuyNow": "Visita il sito web", - "SSE.Controllers.Main.textCancel": "Annulla", - "SSE.Controllers.Main.textClose": "Chiudi", - "SSE.Controllers.Main.textContactUs": "Contatta il reparto vendite.", - "SSE.Controllers.Main.textCustomLoader": "Si prega di notare che, in base ai termini della licenza, non si ha il diritto di modificare il caricatore.
    Si prega di contattare il nostro reparto vendite per ottenere un preventivo.", - "SSE.Controllers.Main.textDone": "Fatto", - "SSE.Controllers.Main.textGuest": "Ospite", - "SSE.Controllers.Main.textHasMacros": "Il file contiene delle macro automatiche.
    Vuoi eseguirle?", - "SSE.Controllers.Main.textLoadingDocument": "Caricamento del foglio di calcolo", - "SSE.Controllers.Main.textNo": "No", - "SSE.Controllers.Main.textNoLicenseTitle": "Il limite della licenza è stato raggiunto", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Funzionalità a pagamento", - "SSE.Controllers.Main.textPassword": "Password", - "SSE.Controllers.Main.textPreloader": "Caricamento in corso...", - "SSE.Controllers.Main.textRemember": "Ricorda la mia scelta per tutti i file", - "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.", - "SSE.Controllers.Main.textUsername": "Nome utente", - "SSE.Controllers.Main.textYes": "Sì", - "SSE.Controllers.Main.titleLicenseExp": "La licenza è scaduta", - "SSE.Controllers.Main.titleServerVersion": "L'editor è stato aggiornato", - "SSE.Controllers.Main.titleUpdateVersion": "Versione Modificata", - "SSE.Controllers.Main.txtAccent": "Accento", - "SSE.Controllers.Main.txtArt": "Il tuo testo qui", - "SSE.Controllers.Main.txtBasicShapes": "Forme di base", - "SSE.Controllers.Main.txtButtons": "Pulsanti", - "SSE.Controllers.Main.txtCallouts": "Didascalia", - "SSE.Controllers.Main.txtCharts": "Grafici", - "SSE.Controllers.Main.txtDelimiter": "Delimitatore", - "SSE.Controllers.Main.txtDiagramTitle": "Titolo del grafico", - "SSE.Controllers.Main.txtEditingMode": "Imposta la modalità di modifica...", - "SSE.Controllers.Main.txtEncoding": "Codifica", - "SSE.Controllers.Main.txtErrorLoadHistory": "Caricamento della cronologia fallito", - "SSE.Controllers.Main.txtFiguredArrows": "Frecce figurate", - "SSE.Controllers.Main.txtLines": "Linee", - "SSE.Controllers.Main.txtMath": "Matematica", - "SSE.Controllers.Main.txtProtected": "Una volta inserita la password e aperto il file, verrà ripristinata la password corrente sul file", - "SSE.Controllers.Main.txtRectangles": "Rettangoli", - "SSE.Controllers.Main.txtSeries": "Serie", - "SSE.Controllers.Main.txtSpace": "Spazio", - "SSE.Controllers.Main.txtStarsRibbons": "Stelle e nastri", - "SSE.Controllers.Main.txtStyle_Bad": "Rovinato", - "SSE.Controllers.Main.txtStyle_Calculation": "Calcolo", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Controlla cella", - "SSE.Controllers.Main.txtStyle_Comma": "Virgola", - "SSE.Controllers.Main.txtStyle_Currency": "Valuta", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Testo esplicativo", - "SSE.Controllers.Main.txtStyle_Good": "Ottimo", - "SSE.Controllers.Main.txtStyle_Heading_1": "Titolo 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Titolo 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Titolo 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Titolo 4", - "SSE.Controllers.Main.txtStyle_Input": "Input", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Cella collegata", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutro", - "SSE.Controllers.Main.txtStyle_Normal": "Normale", - "SSE.Controllers.Main.txtStyle_Note": "Nota", - "SSE.Controllers.Main.txtStyle_Output": "Output", - "SSE.Controllers.Main.txtStyle_Percent": "Percentuale", - "SSE.Controllers.Main.txtStyle_Title": "Titolo", - "SSE.Controllers.Main.txtStyle_Total": "Totale", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Testo di Avviso", - "SSE.Controllers.Main.txtTab": "Tabulazione", - "SSE.Controllers.Main.txtXAxis": "Asse X", - "SSE.Controllers.Main.txtYAxis": "Asse Y", - "SSE.Controllers.Main.unknownErrorText": "Errore sconosciuto.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", - "SSE.Controllers.Main.uploadImageExtMessage": "Formato immagine sconosciuto.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Nessuna immagine caricata.", - "SSE.Controllers.Main.uploadImageSizeMessage": "È stata superata la dimensione massima dell'immagine.", - "SSE.Controllers.Main.uploadImageTextText": "Caricamento dell'immagine in corso...", - "SSE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine", - "SSE.Controllers.Main.waitText": "Attendere prego...", - "SSE.Controllers.Main.warnLicenseExceeded": "Hai raggiunto il limite per le connessioni simultanee per gli editor %1. Questo documento verrà aperto in sola lettura.
    Contatta l’amministratore per saperne di più.", - "SSE.Controllers.Main.warnLicenseExp": "La tua licenza è scaduta.
    Si prega di aggiornare la licenza e ricaricare la pagina.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licenza scaduta.
    Tu non hai accesso alla funzionalità di modifica del presente documento.
    Per favore, contatta il tuo amministratore.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "La licenza deve essere rinnovata.
    Hai un accesso limitato alle funzioni di modifica del documento.
    Per favore contatta l'amministratore per avere l'accesso completo.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Hai raggiunto il limite per gli utenti con accesso agli editor %1. Contatta l’amministratore per saperne di più.", - "SSE.Controllers.Main.warnNoLicense": "Hai raggiunto il limite per le connessioni simultanee per gli editor %1. Questo documento verrà aperto in sola lettura.
    Contatta il team di vendita di %1 per i termini di aggiornamento personali.", - "SSE.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.", - "SSE.Controllers.Main.warnProcessRightsChange": "Ti è stato negato il diritto per modificare il file.", - "SSE.Controllers.Search.textNoTextFound": "Testo non trovato", - "SSE.Controllers.Search.textReplaceAll": "Sostituisci tutto", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Avviso", - "SSE.Controllers.Settings.txtDe": "Tedesco", - "SSE.Controllers.Settings.txtEn": "Inglese", - "SSE.Controllers.Settings.txtEs": "Spagnolo", - "SSE.Controllers.Settings.txtFr": "Francese", - "SSE.Controllers.Settings.txtIt": "Italiano", - "SSE.Controllers.Settings.txtPl": "Polacco", - "SSE.Controllers.Settings.txtRu": "Russo", - "SSE.Controllers.Settings.warnDownloadAs": "Se si procede a salvare in questo formato il presente file tutte le funzioni tranne il testo possono andare perse.
    Sei sicuro di voler continuare?", - "SSE.Controllers.Statusbar.cancelButtonText": "Annulla", - "SSE.Controllers.Statusbar.errNameExists": "Esiste già un foglio di lavoro con questo nome.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Il nome di un foglio non può contenere i seguenti caratteri:\\,/,*,?,[,],:", - "SSE.Controllers.Statusbar.errNotEmpty": "Il nome del foglio non può essere lasciato vuoto", - "SSE.Controllers.Statusbar.errorLastSheet": "La cartella di lavoro deve contenere almeno un foglio di lavoro visibile.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Impossibile cancellare il foglio di lavoro", - "SSE.Controllers.Statusbar.menuDelete": "Elimina", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplica", - "SSE.Controllers.Statusbar.menuHide": "Nascondi", - "SSE.Controllers.Statusbar.menuMore": "Altro", - "SSE.Controllers.Statusbar.menuRename": "Rinomina", - "SSE.Controllers.Statusbar.menuUnhide": "Scopri", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Avviso", - "SSE.Controllers.Statusbar.strRenameSheet": "Rinomina foglio", - "SSE.Controllers.Statusbar.strSheet": "Foglio", - "SSE.Controllers.Statusbar.strSheetName": "Nome foglio", - "SSE.Controllers.Statusbar.textExternalLink": "Collegamento esterno", - "SSE.Controllers.Statusbar.warnDeleteSheet": "I fogli di lavoro selezionati potrebbero contenere dati. Sei sicuro di voler procedere?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Ci sono delle modifiche non salvate in questo documento. Clicca su 'Rimani in questa pagina, in attesa del salvataggio automatico del documento. Clicca su 'Lascia questa pagina' per annullare le modifiche.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Lascia l'applicazione", - "SSE.Controllers.Toolbar.leaveButtonText": "Lascia questa pagina", - "SSE.Controllers.Toolbar.stayButtonText": "Rimani su questa pagina", - "SSE.Views.AddFunction.sCatDateAndTime": "Data e ora", - "SSE.Views.AddFunction.sCatEngineering": "Ingegneria", - "SSE.Views.AddFunction.sCatFinancial": "Finanziario", - "SSE.Views.AddFunction.sCatInformation": "Informazioni", - "SSE.Views.AddFunction.sCatLogical": "Logico", - "SSE.Views.AddFunction.sCatLookupAndReference": "Ricerca e Riferimento", - "SSE.Views.AddFunction.sCatMathematic": "Matematiche e trigonometriche", - "SSE.Views.AddFunction.sCatStatistical": "statistico", - "SSE.Views.AddFunction.sCatTextAndData": "Testo e dati", - "SSE.Views.AddFunction.textBack": "Indietro", - "SSE.Views.AddFunction.textGroups": "Categorie", - "SSE.Views.AddLink.textAddLink": "Aggiungi collegamento", - "SSE.Views.AddLink.textAddress": "Indirizzo", - "SSE.Views.AddLink.textDisplay": "Visualizza", - "SSE.Views.AddLink.textExternalLink": "Collegamento esterno", - "SSE.Views.AddLink.textInsert": "Inserisci", - "SSE.Views.AddLink.textInternalLink": "Intervallo di dati interno", - "SSE.Views.AddLink.textLink": "Collegamento", - "SSE.Views.AddLink.textLinkType": "Tipo collegamento", - "SSE.Views.AddLink.textRange": "Intervallo", - "SSE.Views.AddLink.textRequired": "Richiesto", - "SSE.Views.AddLink.textSelectedRange": "Intervallo selezionato", - "SSE.Views.AddLink.textSheet": "Foglio", - "SSE.Views.AddLink.textTip": "Suggerimento ", - "SSE.Views.AddOther.textAddComment": "Aggiungi commento", - "SSE.Views.AddOther.textAddress": "Indirizzo", - "SSE.Views.AddOther.textBack": "Indietro", - "SSE.Views.AddOther.textComment": "Commento", - "SSE.Views.AddOther.textDone": "Fine", - "SSE.Views.AddOther.textFilter": "Filtro", - "SSE.Views.AddOther.textFromLibrary": "Immagine dalla Raccolta", - "SSE.Views.AddOther.textFromURL": "Immagine da URL", - "SSE.Views.AddOther.textImageURL": "URL dell'immagine", - "SSE.Views.AddOther.textInsert": "Inserisci", - "SSE.Views.AddOther.textInsertImage": "Inserisci immagine", - "SSE.Views.AddOther.textLink": "Collegamento", - "SSE.Views.AddOther.textLinkSettings": "Impostazioni collegamento", - "SSE.Views.AddOther.textSort": "Ordina e filtra", - "SSE.Views.EditCell.textAccounting": "Contabilità", - "SSE.Views.EditCell.textAddCustomColor": "Aggiungi colore personalizzato", - "SSE.Views.EditCell.textAlignBottom": "Allinea in basso", - "SSE.Views.EditCell.textAlignCenter": "Allinea al centro", - "SSE.Views.EditCell.textAlignLeft": "Allinea a sinistra", - "SSE.Views.EditCell.textAlignMiddle": "Allinea in mezzo", - "SSE.Views.EditCell.textAlignRight": "Allinea a destra", - "SSE.Views.EditCell.textAlignTop": "Allinea in alto", - "SSE.Views.EditCell.textAllBorders": "Tutti i bordi", - "SSE.Views.EditCell.textAngleClockwise": "Angolo in senso orario", - "SSE.Views.EditCell.textAngleCounterclockwise": "Angolo in senso antiorario", - "SSE.Views.EditCell.textBack": "Indietro", - "SSE.Views.EditCell.textBorderStyle": "Stile del bordo", - "SSE.Views.EditCell.textBottomBorder": "Bordo inferiore", - "SSE.Views.EditCell.textCellStyle": "Stili cella", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Colore", - "SSE.Views.EditCell.textCurrency": "Valuta", - "SSE.Views.EditCell.textCustomColor": "Colore personalizzato", - "SSE.Views.EditCell.textDate": "Data", - "SSE.Views.EditCell.textDiagDownBorder": "Bordo diagonale inferiore", - "SSE.Views.EditCell.textDiagUpBorder": "Bordo diagonale superiore", - "SSE.Views.EditCell.textDollar": "Dollaro", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Colore di riempimento", - "SSE.Views.EditCell.textFonts": "Caratteri", - "SSE.Views.EditCell.textFormat": "Formato", - "SSE.Views.EditCell.textGeneral": "Generale", - "SSE.Views.EditCell.textHorizontalText": "Testo orizzontale", - "SSE.Views.EditCell.textInBorders": "Bordi interni", - "SSE.Views.EditCell.textInHorBorder": "Bordo orizzontale interno", - "SSE.Views.EditCell.textInteger": "Numero intero", - "SSE.Views.EditCell.textInVertBorder": "Bordo verticale interno", - "SSE.Views.EditCell.textJustified": "Giustificato", - "SSE.Views.EditCell.textLeftBorder": "Bordo sinistro", - "SSE.Views.EditCell.textMedium": "Medio", - "SSE.Views.EditCell.textNoBorder": "Senza bordo", - "SSE.Views.EditCell.textNumber": "Numero", - "SSE.Views.EditCell.textPercentage": "Percentuale", - "SSE.Views.EditCell.textPound": "Sterlina", - "SSE.Views.EditCell.textRightBorder": "Bordo destro", - "SSE.Views.EditCell.textRotateTextDown": "Ruota testo verso il basso", - "SSE.Views.EditCell.textRotateTextUp": "Ruota testo verso l'alto", - "SSE.Views.EditCell.textRouble": "Rublo", - "SSE.Views.EditCell.textScientific": "Scientifico", - "SSE.Views.EditCell.textSize": "Dimensione", - "SSE.Views.EditCell.textText": "Testo", - "SSE.Views.EditCell.textTextColor": "Colore del testo", - "SSE.Views.EditCell.textTextFormat": "Formato del testo", - "SSE.Views.EditCell.textTextOrientation": "Orientamento del testo", - "SSE.Views.EditCell.textThick": "Spesso", - "SSE.Views.EditCell.textThin": "Sottile", - "SSE.Views.EditCell.textTime": "Ora", - "SSE.Views.EditCell.textTopBorder": "Bordo superiore", - "SSE.Views.EditCell.textVerticalText": "Testo verticale", - "SSE.Views.EditCell.textWrapText": "Disponi testo", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Aggiungi colore personalizzato", - "SSE.Views.EditChart.textAuto": "Auto", - "SSE.Views.EditChart.textAxisCrosses": "Intersezione asse", - "SSE.Views.EditChart.textAxisOptions": "Opzioni assi", - "SSE.Views.EditChart.textAxisPosition": "Posizione dell' asse", - "SSE.Views.EditChart.textAxisTitle": "Titolo Asse", - "SSE.Views.EditChart.textBack": "Indietro", - "SSE.Views.EditChart.textBackward": "Sposta indietro", - "SSE.Views.EditChart.textBorder": "Bordo", - "SSE.Views.EditChart.textBottom": "Pulsante", - "SSE.Views.EditChart.textChart": "Grafico", - "SSE.Views.EditChart.textChartTitle": "Titolo del grafico", - "SSE.Views.EditChart.textColor": "Colore", - "SSE.Views.EditChart.textCrossesValue": "Incrocia valore", - "SSE.Views.EditChart.textCustomColor": "Colore personalizzato", - "SSE.Views.EditChart.textDataLabels": "Etichette dati", - "SSE.Views.EditChart.textDesign": "Design", - "SSE.Views.EditChart.textDisplayUnits": "Mostra unità", - "SSE.Views.EditChart.textFill": "Riempimento", - "SSE.Views.EditChart.textForward": "Sposta avanti", - "SSE.Views.EditChart.textGridlines": "Griglia", - "SSE.Views.EditChart.textHorAxis": "Asse orizzontale", - "SSE.Views.EditChart.textHorizontal": "Orizzontale", - "SSE.Views.EditChart.textLabelOptions": "Opzioni etichetta", - "SSE.Views.EditChart.textLabelPos": "Posizione etichetta", - "SSE.Views.EditChart.textLayout": "Layout", - "SSE.Views.EditChart.textLeft": "A sinistra", - "SSE.Views.EditChart.textLeftOverlay": "Sovrapposizione a sinistra", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Maggiore", - "SSE.Views.EditChart.textMajorMinor": "Maggiore e Minore", - "SSE.Views.EditChart.textMajorType": "Tipo principale", - "SSE.Views.EditChart.textMaxValue": "Valore massimo", - "SSE.Views.EditChart.textMinor": "Minore", - "SSE.Views.EditChart.textMinorType": "Tipo Minore", - "SSE.Views.EditChart.textMinValue": "Valore minimo", - "SSE.Views.EditChart.textNone": "Nessuno", - "SSE.Views.EditChart.textNoOverlay": "Nessuna sovrapposizione", - "SSE.Views.EditChart.textOverlay": "Sovrapposizione", - "SSE.Views.EditChart.textRemoveChart": "Elimina Grafico", - "SSE.Views.EditChart.textReorder": "Riordina", - "SSE.Views.EditChart.textRight": "A destra", - "SSE.Views.EditChart.textRightOverlay": "Sovrapposizione a destra", - "SSE.Views.EditChart.textRotated": "Ruotato", - "SSE.Views.EditChart.textSize": "Dimensione", - "SSE.Views.EditChart.textStyle": "Stile", - "SSE.Views.EditChart.textTickOptions": "Opzioni di segni di graduazione", - "SSE.Views.EditChart.textToBackground": "Porta in secondo piano", - "SSE.Views.EditChart.textToForeground": "Porta in primo piano", - "SSE.Views.EditChart.textTop": "In alto", - "SSE.Views.EditChart.textType": "Tipo", - "SSE.Views.EditChart.textValReverseOrder": "Valori in ordine inverso", - "SSE.Views.EditChart.textVerAxis": "Asse verticale", - "SSE.Views.EditChart.textVertical": "Verticale", - "SSE.Views.EditHyperlink.textBack": "Indietro", - "SSE.Views.EditHyperlink.textDisplay": "Visualizza", - "SSE.Views.EditHyperlink.textEditLink": "Modifica collegamento", - "SSE.Views.EditHyperlink.textExternalLink": "Collegamento esterno", - "SSE.Views.EditHyperlink.textInternalLink": "Intervallo di dati interno", - "SSE.Views.EditHyperlink.textLink": "Collegamento", - "SSE.Views.EditHyperlink.textLinkType": "Tipo collegamento", - "SSE.Views.EditHyperlink.textRange": "Intervallo", - "SSE.Views.EditHyperlink.textRemoveLink": "Elimina Collegamento", - "SSE.Views.EditHyperlink.textScreenTip": "Suggerimento ", - "SSE.Views.EditHyperlink.textSheet": "Foglio", - "SSE.Views.EditImage.textAddress": "Indirizzo", - "SSE.Views.EditImage.textBack": "Indietro", - "SSE.Views.EditImage.textBackward": "Sposta indietro", - "SSE.Views.EditImage.textDefault": "Dimensione reale", - "SSE.Views.EditImage.textForward": "Sposta avanti", - "SSE.Views.EditImage.textFromLibrary": "Immagine dalla Raccolta", - "SSE.Views.EditImage.textFromURL": "Immagine da URL", - "SSE.Views.EditImage.textImageURL": "URL dell'immagine", - "SSE.Views.EditImage.textLinkSettings": "Impostazioni collegamento", - "SSE.Views.EditImage.textRemove": "Elimina Immagine", - "SSE.Views.EditImage.textReorder": "Riordina", - "SSE.Views.EditImage.textReplace": "Sostituisci", - "SSE.Views.EditImage.textReplaceImg": "Sostituisci immagine", - "SSE.Views.EditImage.textToBackground": "Porta in secondo piano", - "SSE.Views.EditImage.textToForeground": "Porta in primo piano", - "SSE.Views.EditShape.textAddCustomColor": "Aggiungi colore personalizzato", - "SSE.Views.EditShape.textBack": "Indietro", - "SSE.Views.EditShape.textBackward": "Sposta indietro", - "SSE.Views.EditShape.textBorder": "Bordo", - "SSE.Views.EditShape.textColor": "Colore", - "SSE.Views.EditShape.textCustomColor": "Colore personalizzato", - "SSE.Views.EditShape.textEffects": "Effetti", - "SSE.Views.EditShape.textFill": "Riempimento", - "SSE.Views.EditShape.textForward": "Sposta avanti", - "SSE.Views.EditShape.textOpacity": "Opacità", - "SSE.Views.EditShape.textRemoveShape": "Elimina Forma", - "SSE.Views.EditShape.textReorder": "Riordina", - "SSE.Views.EditShape.textReplace": "Sostituisci", - "SSE.Views.EditShape.textSize": "Dimensione", - "SSE.Views.EditShape.textStyle": "Stile", - "SSE.Views.EditShape.textToBackground": "Porta in secondo piano", - "SSE.Views.EditShape.textToForeground": "Porta in primo piano", - "SSE.Views.EditText.textAddCustomColor": "Aggiungi un colore personalizzato", - "SSE.Views.EditText.textBack": "Indietro", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Colore personalizzato", - "SSE.Views.EditText.textFillColor": "Colore di riempimento", - "SSE.Views.EditText.textFonts": "Caratteri", - "SSE.Views.EditText.textSize": "Dimensione", - "SSE.Views.EditText.textTextColor": "Colore del testo", - "SSE.Views.FilterOptions.textClearFilter": "Svuota filtro", - "SSE.Views.FilterOptions.textDeleteFilter": "Elimina Filtro", - "SSE.Views.FilterOptions.textFilter": "Opzioni Filtro", - "SSE.Views.Search.textByColumns": "Per colonne", - "SSE.Views.Search.textByRows": "Per righe", - "SSE.Views.Search.textDone": "Fatto", - "SSE.Views.Search.textFind": "Trova", - "SSE.Views.Search.textFindAndReplace": "Trova e sostituisci", - "SSE.Views.Search.textFormulas": "Formule", - "SSE.Views.Search.textHighlightRes": "Evidenzia risultati", - "SSE.Views.Search.textLookIn": "Cerca in", - "SSE.Views.Search.textMatchCase": "Caso di corrispondenza", - "SSE.Views.Search.textMatchCell": "Confronta cella", - "SSE.Views.Search.textReplace": "Sostituisci", - "SSE.Views.Search.textSearch": "Cerca", - "SSE.Views.Search.textSearchBy": "Cerca", - "SSE.Views.Search.textSearchIn": "Cerca in", - "SSE.Views.Search.textSheet": "Foglio", - "SSE.Views.Search.textValues": "Valori", - "SSE.Views.Search.textWorkbook": "Cartella di lavoro", - "SSE.Views.Settings.textAbout": "Informazioni su OnlyOffice", - "SSE.Views.Settings.textAddress": "Indirizzo", - "SSE.Views.Settings.textApplication": "Applicazione", - "SSE.Views.Settings.textApplicationSettings": "Impostazioni dell' Applicazione", - "SSE.Views.Settings.textAuthor": "Autore", - "SSE.Views.Settings.textBack": "Indietro", - "SSE.Views.Settings.textBottom": "Pulsante", - "SSE.Views.Settings.textCentimeter": "Centimetro", - "SSE.Views.Settings.textCollaboration": "Collaborazione", - "SSE.Views.Settings.textColorSchemes": "Combinazioni di colore", - "SSE.Views.Settings.textComment": "Commento", - "SSE.Views.Settings.textCommentingDisplay": "Visualizzazione dei Commenti", - "SSE.Views.Settings.textCreated": "Creato", - "SSE.Views.Settings.textCreateDate": "Data di creazione", - "SSE.Views.Settings.textCustom": "Personalizzato", - "SSE.Views.Settings.textCustomSize": "Dimensione personalizzata", - "SSE.Views.Settings.textDisableAll": "Disabilita tutto", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Disabilita tutte le macro con notifica", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Disabilita tutte le macro senza notifica", - "SSE.Views.Settings.textDisplayComments": "Commenti", - "SSE.Views.Settings.textDisplayResolvedComments": "Commenti risolti", - "SSE.Views.Settings.textDocInfo": "Informazioni foglio di calcolo", - "SSE.Views.Settings.textDocTitle": "Titolo foglio di calcolo", - "SSE.Views.Settings.textDone": "Fatto", - "SSE.Views.Settings.textDownload": "Scarica", - "SSE.Views.Settings.textDownloadAs": "Scarica come...", - "SSE.Views.Settings.textEditDoc": "Modifica documento", - "SSE.Views.Settings.textEmail": "email", - "SSE.Views.Settings.textEnableAll": "Abilita tutto", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Abilita tutte le macro senza una notifica", - "SSE.Views.Settings.textExample": "Esempio", - "SSE.Views.Settings.textFind": "Trova", - "SSE.Views.Settings.textFindAndReplace": "Trova e sostituisci", - "SSE.Views.Settings.textFormat": "Formato", - "SSE.Views.Settings.textFormulaLanguage": "Lingua della Formula", - "SSE.Views.Settings.textHelp": "Guida", - "SSE.Views.Settings.textHideGridlines": "Nascondi griglia", - "SSE.Views.Settings.textHideHeadings": "Nascondi titoli", - "SSE.Views.Settings.textInch": "Pollice", - "SSE.Views.Settings.textLandscape": "Orizzontale", - "SSE.Views.Settings.textLastModified": "Ultima modifica", - "SSE.Views.Settings.textLastModifiedBy": "Ultima modifica di", - "SSE.Views.Settings.textLeft": "A sinistra", - "SSE.Views.Settings.textLoading": "Caricamento in corso...", - "SSE.Views.Settings.textLocation": "Posizione", - "SSE.Views.Settings.textMacrosSettings": "Impostazioni macro", - "SSE.Views.Settings.textMargins": "Margini", - "SSE.Views.Settings.textOrientation": "Orientamento", - "SSE.Views.Settings.textOwner": "Proprietario", - "SSE.Views.Settings.textPoint": "Punto", - "SSE.Views.Settings.textPortrait": "Verticale", - "SSE.Views.Settings.textPoweredBy": "Tecnologia di", - "SSE.Views.Settings.textPrint": "Stampa", - "SSE.Views.Settings.textR1C1Style": "Stile di riferimento R1C1", - "SSE.Views.Settings.textRegionalSettings": "Impostazioni Regionali", - "SSE.Views.Settings.textRight": "A destra", - "SSE.Views.Settings.textSettings": "Impostazioni", - "SSE.Views.Settings.textShowNotification": "Mostra notifica", - "SSE.Views.Settings.textSpreadsheetFormats": "Formati foglio di calcolo", - "SSE.Views.Settings.textSpreadsheetSettings": "Impostazioni foglio di calcolo", - "SSE.Views.Settings.textSubject": "Oggetto", - "SSE.Views.Settings.textTel": "Tel.", - "SSE.Views.Settings.textTitle": "Titolo", - "SSE.Views.Settings.textTop": "In alto", - "SSE.Views.Settings.textUnitOfMeasurement": "Unità di misura", - "SSE.Views.Settings.textUploaded": "Caricato", - "SSE.Views.Settings.textVersion": "Versione", - "SSE.Views.Settings.unknownText": "Sconosciuto", - "SSE.Views.Toolbar.textBack": "Indietro" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 29cb40b3c..5e0f72fd0 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -1,661 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "返信を追加する", - "Common.Controllers.Collaboration.textCancel": "キャンセル", - "Common.Controllers.Collaboration.textDeleteComment": "コメントを削除する", - "Common.Controllers.Collaboration.textDeleteReply": "返事を削除する", - "Common.Controllers.Collaboration.textDone": "完了", - "Common.Controllers.Collaboration.textEdit": "編集", - "Common.Controllers.Collaboration.textEditUser": "ファイルを編集しているユーザー:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "このコメントを削除してもよろしいですか?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "この返信を削除してもいいですか?", - "Common.Controllers.Collaboration.textReopen": "再開する", - "Common.Controllers.Collaboration.textResolve": "解決する", - "Common.Controllers.Collaboration.textYes": "はい", - "Common.UI.ThemeColorPalette.textCustomColors": "ユーザー設定色", - "Common.UI.ThemeColorPalette.textStandartColors": "標準の色", - "Common.UI.ThemeColorPalette.textThemeColors": "テーマの色", - "Common.Utils.Metric.txtCm": "センチ", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "返信を追加する", - "Common.Views.Collaboration.textBack": "戻る", - "Common.Views.Collaboration.textCancel": "キャンセル", - "Common.Views.Collaboration.textCollaboration": "共同編集", - "Common.Views.Collaboration.textDone": "完了", - "Common.Views.Collaboration.textEditReply": "返信する", - "Common.Views.Collaboration.textEditUsers": "ユーザー", - "Common.Views.Collaboration.textEditСomment": "コメントの編集", - "Common.Views.Collaboration.textNoComments": "このスプレッドシートはコメントがありません。", - "Common.Views.Collaboration.textСomments": "コメント", - "SSE.Controllers.AddChart.txtDiagramTitle": "グラフのタイトル", - "SSE.Controllers.AddChart.txtSeries": "系列", - "SSE.Controllers.AddChart.txtXAxis": "X 軸", - "SSE.Controllers.AddChart.txtYAxis": "Y 軸", - "SSE.Controllers.AddContainer.textChart": "グラフ", - "SSE.Controllers.AddContainer.textFormula": "関数", - "SSE.Controllers.AddContainer.textImage": "画像", - "SSE.Controllers.AddContainer.textOther": "その他", - "SSE.Controllers.AddContainer.textShape": "図形", - "SSE.Controllers.AddLink.notcriticalErrorTitle": " 警告", - "SSE.Controllers.AddLink.textInvalidRange": "エラー!セルの範囲は無効です。", - "SSE.Controllers.AddLink.txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります", - "SSE.Controllers.AddOther.notcriticalErrorTitle": " 警告", - "SSE.Controllers.AddOther.textCancel": "キャンセル", - "SSE.Controllers.AddOther.textContinue": "続ける", - "SSE.Controllers.AddOther.textDelete": "削除する", - "SSE.Controllers.AddOther.textDeleteDraft": "下書きを削除していいですか?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "画像のURLを指定する必要があります。", - "SSE.Controllers.AddOther.txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "コンテキストメニューを使用したコピー、切り取り、貼り付けの操作は、現在のファイル内でのみ実行されます。", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "リンクの参照先が存在しません。リンクを修正するか、削除してください。", - "SSE.Controllers.DocumentHolder.menuAddComment": "コメントの追加", - "SSE.Controllers.DocumentHolder.menuAddLink": "リンクを追加する", - "SSE.Controllers.DocumentHolder.menuCell": "セル", - "SSE.Controllers.DocumentHolder.menuCopy": "コピー", - "SSE.Controllers.DocumentHolder.menuCut": "切り取り", - "SSE.Controllers.DocumentHolder.menuDelete": "削除する", - "SSE.Controllers.DocumentHolder.menuEdit": "編集", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "ウィンドウ枠の固定", - "SSE.Controllers.DocumentHolder.menuHide": "表示しない", - "SSE.Controllers.DocumentHolder.menuMerge": "結合", - "SSE.Controllers.DocumentHolder.menuMore": "もっと", - "SSE.Controllers.DocumentHolder.menuOpenLink": "リンクを開く", - "SSE.Controllers.DocumentHolder.menuPaste": "貼り付け", - "SSE.Controllers.DocumentHolder.menuShow": "表示する", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "ウインドウ枠固定の解除", - "SSE.Controllers.DocumentHolder.menuUnmerge": "結合解除", - "SSE.Controllers.DocumentHolder.menuUnwrap": "折り返しを解除", - "SSE.Controllers.DocumentHolder.menuViewComment": "コメントを見る", - "SSE.Controllers.DocumentHolder.menuWrap": "折り返し", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": " 警告", - "SSE.Controllers.DocumentHolder.sheetCancel": "キャンセル", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "コピー,切り取り,貼り付けの操作", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "次回から表示しない", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "マージされたセルに左上のセルからのデータのみが残ります。
    続行してもよろしいです?", - "SSE.Controllers.EditCell.textAuto": "自動", - "SSE.Controllers.EditCell.textFonts": "フォント", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "エラー! グラフごとのデータ列の最大数は255です。", - "SSE.Controllers.EditChart.errorStockChart": "行の順序が正しくありません。この株価チャートを作成するには、
    始値、高値、安値、終値の順でシートのデータを配置してください。", - "SSE.Controllers.EditChart.textAuto": "自動", - "SSE.Controllers.EditChart.textBetweenTickMarks": "目盛りの間", - "SSE.Controllers.EditChart.textBillions": "十億\n\t", - "SSE.Controllers.EditChart.textBottom": "下", - "SSE.Controllers.EditChart.textCenter": "中央揃え", - "SSE.Controllers.EditChart.textCross": "交差", - "SSE.Controllers.EditChart.textCustom": "ユーザー設定", - "SSE.Controllers.EditChart.textFit": "幅に合わせる", - "SSE.Controllers.EditChart.textFixed": "固定", - "SSE.Controllers.EditChart.textHigh": "高", - "SSE.Controllers.EditChart.textHorizontal": "水平", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "百", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "中", - "SSE.Controllers.EditChart.textInnerBottom": "内部(下)", - "SSE.Controllers.EditChart.textInnerTop": "内部(上)", - "SSE.Controllers.EditChart.textLeft": "左", - "SSE.Controllers.EditChart.textLeftOverlay": "左の重ね合わせ", - "SSE.Controllers.EditChart.textLow": "低", - "SSE.Controllers.EditChart.textManual": "手動的に", - "SSE.Controllers.EditChart.textMaxValue": "最大値", - "SSE.Controllers.EditChart.textMillions": "百万", - "SSE.Controllers.EditChart.textMinValue": "最小値", - "SSE.Controllers.EditChart.textNextToAxis": "軸の隣", - "SSE.Controllers.EditChart.textNone": "なし", - "SSE.Controllers.EditChart.textNoOverlay": "重ね合わせなし", - "SSE.Controllers.EditChart.textOnTickMarks": "目盛り", - "SSE.Controllers.EditChart.textOut": "外", - "SSE.Controllers.EditChart.textOuterTop": "外トップ", - "SSE.Controllers.EditChart.textOverlay": "重ね合わせ", - "SSE.Controllers.EditChart.textRight": "右", - "SSE.Controllers.EditChart.textRightOverlay": "右の重ね合わせ", - "SSE.Controllers.EditChart.textRotated": "回転された", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "千", - "SSE.Controllers.EditChart.textTop": "上", - "SSE.Controllers.EditChart.textTrillions": "兆", - "SSE.Controllers.EditChart.textValue": "値", - "SSE.Controllers.EditContainer.textCell": "セル", - "SSE.Controllers.EditContainer.textChart": "グラフ", - "SSE.Controllers.EditContainer.textHyperlink": "ハイパーリンク", - "SSE.Controllers.EditContainer.textImage": "画像", - "SSE.Controllers.EditContainer.textSettings": "設定", - "SSE.Controllers.EditContainer.textShape": "図形", - "SSE.Controllers.EditContainer.textTable": "表", - "SSE.Controllers.EditContainer.textText": "テキスト", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": " 警告", - "SSE.Controllers.EditHyperlink.textDefault": "選択された範囲", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "画像のURLを指定する必要があります。", - "SSE.Controllers.EditHyperlink.textExternalLink": "外部リンク", - "SSE.Controllers.EditHyperlink.textInternalLink": "内部のデータ範囲", - "SSE.Controllers.EditHyperlink.textInvalidRange": "無効なセル範囲", - "SSE.Controllers.EditHyperlink.txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります", - "SSE.Controllers.EditImage.notcriticalErrorTitle": " 警告", - "SSE.Controllers.EditImage.textEmptyImgUrl": "画像のURLを指定する必要があります。", - "SSE.Controllers.EditImage.txtNotUrl": "このフィールドは、「http://www.example.com」の形式のURLである必要があります", - "SSE.Controllers.FilterOptions.textEmptyItem": "{空白セル}", - "SSE.Controllers.FilterOptions.textErrorMsg": "少なくとも1つの値を選択する必要があります", - "SSE.Controllers.FilterOptions.textErrorTitle": " 警告", - "SSE.Controllers.FilterOptions.textSelectAll": "すべてを選択する", - "SSE.Controllers.Main.advCSVOptions": "CSVオプションを選択する", - "SSE.Controllers.Main.advDRMEnterPassword": "パスワード入力:", - "SSE.Controllers.Main.advDRMOptions": "保護されたファイル", - "SSE.Controllers.Main.advDRMPassword": "パスワード", - "SSE.Controllers.Main.applyChangesTextText": "データの読み込み中...", - "SSE.Controllers.Main.applyChangesTitleText": "データの読み込み中", - "SSE.Controllers.Main.closeButtonText": "ファイルを閉じる", - "SSE.Controllers.Main.convertationTimeoutText": "変換タイムアウトを超えました。", - "SSE.Controllers.Main.criticalErrorExtText": "「OK」を押して、ドキュメント一覧に戻ります。", - "SSE.Controllers.Main.criticalErrorTitle": "エラー", - "SSE.Controllers.Main.downloadErrorText": "ダウンロードに失敗しました。", - "SSE.Controllers.Main.downloadMergeText": "ダウンロード中...", - "SSE.Controllers.Main.downloadMergeTitle": "ダウンロード中", - "SSE.Controllers.Main.downloadTextText": "スプレッドシートのダウンロード中...", - "SSE.Controllers.Main.downloadTitleText": "スプレッドシートのダウンロード中", - "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.errorChangeArray": "配列の一部を変更することはできません。", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "サーバーとの接続が失われました。今、文書を編集することができません。", - "SSE.Controllers.Main.errorConnectToServer": "文書を保存できませんでした。接続設定を確認するか、管理者にお問い合わせください。
    OKボタンをクリックするとドキュメントをダウンロードするように求められます。", - "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.errorEditingDownloadas": "ドキュメントの操作中にエラーが発生しました。
    [ダウンロード]オプションを使用して、ファイルのバックアップコピーをコンピューターのハードドライブにご保存ください。", - "SSE.Controllers.Main.errorFilePassProtect": "文書がパスワードで保護されているため、開くことができません", - "SSE.Controllers.Main.errorFileRequest": "外部エラーです。
    ファイルリクエストのエラーです。この問題は解決しない場合は、サポートにお問い合わせください。", - "SSE.Controllers.Main.errorFileSizeExceed": "ファイルサイズがサーバーで設定された制限を超過しています。
    Documentサーバー管理者に詳細をお問い合わせください。", - "SSE.Controllers.Main.errorFileVKey": "外部エラーです。
    セキュリティ・キーは不正です。この問題は解決しない場合は、サポートにお問い合わせください。", - "SSE.Controllers.Main.errorFillRange": "選択されたセルの範囲を記入することができません。
    すべての結合されたセルは、同じサイズがある必要があります。", - "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.errorInvalidRef": "選択した範囲のために、正しい名前、または移動の有効なリンクをご入力ください。", - "SSE.Controllers.Main.errorKeyEncrypt": "不明なキーの記述子", - "SSE.Controllers.Main.errorKeyExpire": "キー記述子は有効期限が切れました", - "SSE.Controllers.Main.errorLockedAll": "シートは他のユーザーによってロックされているので、操作を実行することができません。", - "SSE.Controllers.Main.errorLockedCellPivot": "ピボットテーブル内のデータを変更することはできません。", - "SSE.Controllers.Main.errorLockedWorksheetRename": "他のユーザーによって名前が変更されているので、シートの名前を変更することはできません。", - "SSE.Controllers.Main.errorMailMergeLoadFile": "ドキュメントの読み込みに失敗しました。 別のファイルをご選択ください。", - "SSE.Controllers.Main.errorMailMergeSaveFile": "結合に失敗しました。", - "SSE.Controllers.Main.errorMaxPoints": "グラプごとの直列のポイントの最大数は4096です。", - "SSE.Controllers.Main.errorMoveRange": "結合されたセルの一部を変更することはできません。", - "SSE.Controllers.Main.errorMultiCellFormula": "複数セルの配列数式はテーブルでは使用できません。", - "SSE.Controllers.Main.errorOpensource": "無料のコミュニティバージョンを使用すると、閲覧専用のドキュメントを開くことができます。 モバイルWebエディターにアクセスするには、商用ライセンスが必要です。", - "SSE.Controllers.Main.errorOpenWarning": "ファイル式の1つが8192文字の制限を超えています。
    この式が削除されました。", - "SSE.Controllers.Main.errorOperandExpected": "入力した関数の構文が正しくありません。かっこ「(」または「)」のいずれかが欠落していないかどうかをご確認ください。", - "SSE.Controllers.Main.errorPasteMaxRange": "コピーと貼り付け範囲が一致していません。
    同じサイズの範囲を選択するか、行の最初のセルをクリックして、コピーしたセルを貼り付けます。", - "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.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.leavePageText": "このドキュメントには未保存の変更があります。 [このページに留まる]をクリックして、ドキュメントの自動保存をお待ちください。 保存されていない変更をすべて破棄するには、[このページから移動する]をクリックください。", - "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.loadingDocumentTextText": "スプレッドシートの読み込み中", - "SSE.Controllers.Main.loadingDocumentTitleText": "スプレッドシートの読み込み中", - "SSE.Controllers.Main.mailMergeLoadFileText": "データ・ソースの読み込み中", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "データ ソースの読み込み中", - "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.savePreparingText": "保存の準備中", - "SSE.Controllers.Main.savePreparingTitle": "保存の準備中です。少々お待ちください。", - "SSE.Controllers.Main.saveTextText": "ドキュメントの保存中...", - "SSE.Controllers.Main.saveTitleText": "ドキュメントの保存中", - "SSE.Controllers.Main.scriptLoadError": "インターネット接続が遅いため、一部のコンポーネントをロードできませんでした。ページを再度お読み込みください。", - "SSE.Controllers.Main.sendMergeText": "結合の結果の送信中...", - "SSE.Controllers.Main.sendMergeTitle": "結合の結果の送信中", - "SSE.Controllers.Main.textAnonymous": "匿名者", - "SSE.Controllers.Main.textBack": "戻る", - "SSE.Controllers.Main.textBuyNow": "ウェブサイトを訪問する", - "SSE.Controllers.Main.textCancel": "キャンセル", - "SSE.Controllers.Main.textClose": "閉じる", - "SSE.Controllers.Main.textContactUs": "営業部に連絡する", - "SSE.Controllers.Main.textCustomLoader": "ライセンスの条件によっては、ローダーを変更する権利がないことにご注意ください。
    見積もりについては、営業部門にお問い合わせください。", - "SSE.Controllers.Main.textDone": "完了", - "SSE.Controllers.Main.textGuest": "ゲスト", - "SSE.Controllers.Main.textHasMacros": "ファイルには自動マクロが含まれています。
    マクロを実行しますか?", - "SSE.Controllers.Main.textLoadingDocument": "スプレッドシートの読み込み中", - "SSE.Controllers.Main.textNo": "いいえ", - "SSE.Controllers.Main.textNoLicenseTitle": "ライセンス制限に達しました", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "有料機能", - "SSE.Controllers.Main.textPassword": "パスワード", - "SSE.Controllers.Main.textPreloader": "読み込み中...", - "SSE.Controllers.Main.textRemember": "選択内容を保存する", - "SSE.Controllers.Main.textShape": "図形", - "SSE.Controllers.Main.textStrict": "厳格モード", - "SSE.Controllers.Main.textTryUndoRedo": "ファスト共同編集モードに元に戻す/やり直しの機能は無効になります。
    他のユーザーの干渉なし編集するために「厳密なモード」をクリックして、厳密な共同編集モードにお切り替えください。保存した後にのみ、変更をご送信ください。編集の詳細設定を使用して共同編集モードを切り替えることができます。", - "SSE.Controllers.Main.textUsername": "ユーザー名", - "SSE.Controllers.Main.textYes": "はい", - "SSE.Controllers.Main.titleLicenseExp": "ライセンスの有効期限が切れています", - "SSE.Controllers.Main.titleServerVersion": "エディターが更新された", - "SSE.Controllers.Main.titleUpdateVersion": "バージョンを変更しました。", - "SSE.Controllers.Main.txtAccent": "アクセント", - "SSE.Controllers.Main.txtArt": "テキストはここです。", - "SSE.Controllers.Main.txtBasicShapes": "基本図形", - "SSE.Controllers.Main.txtButtons": "ボタン", - "SSE.Controllers.Main.txtCallouts": "引き出し", - "SSE.Controllers.Main.txtCharts": "グラフ", - "SSE.Controllers.Main.txtDelimiter": "区切り記号", - "SSE.Controllers.Main.txtDiagramTitle": "グラフのタイトル", - "SSE.Controllers.Main.txtEditingMode": "編集モードの設定中...", - "SSE.Controllers.Main.txtEncoding": "エンコード", - "SSE.Controllers.Main.txtErrorLoadHistory": "履歴の読み込みに失敗しました", - "SSE.Controllers.Main.txtFiguredArrows": "形の矢印", - "SSE.Controllers.Main.txtLines": "線", - "SSE.Controllers.Main.txtMath": "数学", - "SSE.Controllers.Main.txtProtected": "パスワードを入力してファイルを開くと、ファイルの既存のパスワードがリセットされます。", - "SSE.Controllers.Main.txtRectangles": "矩形", - "SSE.Controllers.Main.txtSeries": "系列", - "SSE.Controllers.Main.txtSpace": "スペース", - "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.txtXAxis": "X 軸", - "SSE.Controllers.Main.txtYAxis": "Y 軸", - "SSE.Controllers.Main.unknownErrorText": "不明なエラー", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "お使いのブラウザがサポートされていません。", - "SSE.Controllers.Main.uploadImageExtMessage": "不明な画像形式", - "SSE.Controllers.Main.uploadImageFileCountMessage": "アップロードされた画像がない", - "SSE.Controllers.Main.uploadImageSizeMessage": "最大イメージサイズの極限を超えました。", - "SSE.Controllers.Main.uploadImageTextText": "画像のアップロード中...", - "SSE.Controllers.Main.uploadImageTitleText": "画像のアップロード中", - "SSE.Controllers.Main.waitText": "少々お待ちください...", - "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エディターへの同時接続の制限に達しました。 このドキュメントは閲覧のみを目的として開かれます。
    個人的なアップグレード条件については、%1セールスチームにお問い合わせください。", - "SSE.Controllers.Main.warnNoLicenseUsers": "%1エディターのユーザー制限に達しました。 個人的なアップグレード条件については、%1営業チームにお問い合わせください。", - "SSE.Controllers.Main.warnProcessRightsChange": "ファイルを編集する権限を拒否されています。", - "SSE.Controllers.Search.textNoTextFound": "テキストが見つかりません", - "SSE.Controllers.Search.textReplaceAll": "全てを置き換える", - "SSE.Controllers.Settings.notcriticalErrorTitle": " 警告", - "SSE.Controllers.Settings.txtDe": "ドイツ語", - "SSE.Controllers.Settings.txtEn": "英吾", - "SSE.Controllers.Settings.txtEs": "スペイン", - "SSE.Controllers.Settings.txtFr": "フランス", - "SSE.Controllers.Settings.txtIt": "イタリア", - "SSE.Controllers.Settings.txtPl": "ポーランド", - "SSE.Controllers.Settings.txtRu": "ロシア語", - "SSE.Controllers.Settings.warnDownloadAs": "この形式で保存し続ける場合は、テキスト以外のすべての機能が失われます。
    続行してもよろしいですか?", - "SSE.Controllers.Statusbar.cancelButtonText": "キャンセル", - "SSE.Controllers.Statusbar.errNameExists": "この名前があるワークシート既にあります。", - "SSE.Controllers.Statusbar.errNameWrongChar": "シート名に次の文字を含めることはできません: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "シート名は空であってはなりません", - "SSE.Controllers.Statusbar.errorLastSheet": "ワークブックには、少なくとも1つの表示可能なワークシートが必要です。", - "SSE.Controllers.Statusbar.errorRemoveSheet": "ワークシートを削除できません。", - "SSE.Controllers.Statusbar.menuDelete": "削除する", - "SSE.Controllers.Statusbar.menuDuplicate": "複製する", - "SSE.Controllers.Statusbar.menuHide": "表示しない", - "SSE.Controllers.Statusbar.menuMore": "もっと", - "SSE.Controllers.Statusbar.menuRename": "名前を変更する", - "SSE.Controllers.Statusbar.menuUnhide": "再表示する", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": " 警告", - "SSE.Controllers.Statusbar.strRenameSheet": "このシートの名前を変更する", - "SSE.Controllers.Statusbar.strSheet": "シート", - "SSE.Controllers.Statusbar.strSheetName": "シートの名前", - "SSE.Controllers.Statusbar.textExternalLink": "外部リンク", - "SSE.Controllers.Statusbar.warnDeleteSheet": "ワークシートにはデータが含まれている可能性があります。続行してもよろしいですか?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "このドキュメントには未保存の変更があります。 [このページに留まる]をクリックして、ドキュメントの自動保存をお待ちください。 保存されていない変更をすべて破棄するには、[このページから移動する]をクリックください。", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "アプリケーションを終了します", - "SSE.Controllers.Toolbar.leaveButtonText": "このページから移動する", - "SSE.Controllers.Toolbar.stayButtonText": "このページに留まる", - "SSE.Views.AddFunction.sCatDateAndTime": "日付と時刻", - "SSE.Views.AddFunction.sCatEngineering": "エンジニアリング", - "SSE.Views.AddFunction.sCatFinancial": "財務", - "SSE.Views.AddFunction.sCatInformation": "情報", - "SSE.Views.AddFunction.sCatLogical": "論理的な", - "SSE.Views.AddFunction.sCatLookupAndReference": "検索/行列", - "SSE.Views.AddFunction.sCatMathematic": "数学と三角法", - "SSE.Views.AddFunction.sCatStatistical": "統計", - "SSE.Views.AddFunction.sCatTextAndData": "テキストとデータ", - "SSE.Views.AddFunction.textBack": "戻る", - "SSE.Views.AddFunction.textGroups": "カテゴリー", - "SSE.Views.AddLink.textAddLink": "リンクを追加する", - "SSE.Views.AddLink.textAddress": "アドレス", - "SSE.Views.AddLink.textDisplay": "表示する", - "SSE.Views.AddLink.textExternalLink": "外部リンク", - "SSE.Views.AddLink.textInsert": "挿入", - "SSE.Views.AddLink.textInternalLink": "内部のデータ範囲", - "SSE.Views.AddLink.textLink": "リンク", - "SSE.Views.AddLink.textLinkType": "リンクのタイプ", - "SSE.Views.AddLink.textRange": "範囲", - "SSE.Views.AddLink.textRequired": "必要な", - "SSE.Views.AddLink.textSelectedRange": "選択された範囲", - "SSE.Views.AddLink.textSheet": "シート", - "SSE.Views.AddLink.textTip": "画面のヒント", - "SSE.Views.AddOther.textAddComment": "コメントの追加", - "SSE.Views.AddOther.textAddress": "アドレス", - "SSE.Views.AddOther.textBack": "戻る", - "SSE.Views.AddOther.textComment": "コメント", - "SSE.Views.AddOther.textDone": "完了", - "SSE.Views.AddOther.textFilter": "フィルタ", - "SSE.Views.AddOther.textFromLibrary": "ライブラリから写真を選択", - "SSE.Views.AddOther.textFromURL": "URLからの画像", - "SSE.Views.AddOther.textImageURL": "画像のURL", - "SSE.Views.AddOther.textInsert": "挿入", - "SSE.Views.AddOther.textInsertImage": "画像の挿入", - "SSE.Views.AddOther.textLink": "リンク", - "SSE.Views.AddOther.textLinkSettings": "リンク設定", - "SSE.Views.AddOther.textSort": "並べ替えとフィルタ", - "SSE.Views.EditCell.textAccounting": "会計", - "SSE.Views.EditCell.textAddCustomColor": "ユーザーの色を追加する", - "SSE.Views.EditCell.textAlignBottom": "下揃え", - "SSE.Views.EditCell.textAlignCenter": "中央揃え", - "SSE.Views.EditCell.textAlignLeft": "左揃え", - "SSE.Views.EditCell.textAlignMiddle": "中央揃え", - "SSE.Views.EditCell.textAlignRight": "右揃え", - "SSE.Views.EditCell.textAlignTop": "上揃え", - "SSE.Views.EditCell.textAllBorders": "全てのボーダー", - "SSE.Views.EditCell.textAngleClockwise": "時間回りに​​回転", - "SSE.Views.EditCell.textAngleCounterclockwise": "反時計回りに回転", - "SSE.Views.EditCell.textBack": "戻る", - "SSE.Views.EditCell.textBorderStyle": "罫線のスタイル", - "SSE.Views.EditCell.textBottomBorder": "下ボーダー", - "SSE.Views.EditCell.textCellStyle": "セルのスタイル", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "色", - "SSE.Views.EditCell.textCurrency": "通貨", - "SSE.Views.EditCell.textCustomColor": "ユーザー設定色", - "SSE.Views.EditCell.textDate": "日付", - "SSE.Views.EditCell.textDiagDownBorder": "斜め罫線 (右下がり)", - "SSE.Views.EditCell.textDiagUpBorder": "斜め罫線 ​​(右上がり)", - "SSE.Views.EditCell.textDollar": "ドル", - "SSE.Views.EditCell.textEuro": "ユーロ", - "SSE.Views.EditCell.textFillColor": "塗りつぶしの色", - "SSE.Views.EditCell.textFonts": "フォント", - "SSE.Views.EditCell.textFormat": "フォーマット", - "SSE.Views.EditCell.textGeneral": "標準", - "SSE.Views.EditCell.textHorizontalText": "横書きテキスト", - "SSE.Views.EditCell.textInBorders": "内部の罫線", - "SSE.Views.EditCell.textInHorBorder": "内部の横罫線", - "SSE.Views.EditCell.textInteger": "整数", - "SSE.Views.EditCell.textInVertBorder": "内部の縦罫線", - "SSE.Views.EditCell.textJustified": "両端揃え", - "SSE.Views.EditCell.textLeftBorder": "左罫線", - "SSE.Views.EditCell.textMedium": "中", - "SSE.Views.EditCell.textNoBorder": "罫線なし", - "SSE.Views.EditCell.textNumber": "数値", - "SSE.Views.EditCell.textPercentage": "パーセンテージ", - "SSE.Views.EditCell.textPound": "ポンド", - "SSE.Views.EditCell.textRightBorder": "右罫線", - "SSE.Views.EditCell.textRotateTextDown": "下へ90度回転", - "SSE.Views.EditCell.textRotateTextUp": "上にテキストの回転", - "SSE.Views.EditCell.textRouble": "ルーブル", - "SSE.Views.EditCell.textScientific": "指数", - "SSE.Views.EditCell.textSize": "サイズ", - "SSE.Views.EditCell.textText": "テキスト", - "SSE.Views.EditCell.textTextColor": "文字の色", - "SSE.Views.EditCell.textTextFormat": "テキストのフォーマット\n\t", - "SSE.Views.EditCell.textTextOrientation": "テキストの方向", - "SSE.Views.EditCell.textThick": "太い", - "SSE.Views.EditCell.textThin": "細い", - "SSE.Views.EditCell.textTime": "時間", - "SSE.Views.EditCell.textTopBorder": "上罫線", - "SSE.Views.EditCell.textVerticalText": "縦書きテキスト", - "SSE.Views.EditCell.textWrapText": "テキストの折り返し", - "SSE.Views.EditCell.textYen": "円", - "SSE.Views.EditChart.textAddCustomColor": "ユーザーの色を追加する", - "SSE.Views.EditChart.textAuto": "自動", - "SSE.Views.EditChart.textAxisCrosses": "軸との交点", - "SSE.Views.EditChart.textAxisOptions": "軸の設定", - "SSE.Views.EditChart.textAxisPosition": "軸位置", - "SSE.Views.EditChart.textAxisTitle": "軸タイトル", - "SSE.Views.EditChart.textBack": "戻る", - "SSE.Views.EditChart.textBackward": "背面へ移動", - "SSE.Views.EditChart.textBorder": "罫線", - "SSE.Views.EditChart.textBottom": "下", - "SSE.Views.EditChart.textChart": "グラフ", - "SSE.Views.EditChart.textChartTitle": "グラフのタイトル", - "SSE.Views.EditChart.textColor": "色", - "SSE.Views.EditChart.textCrossesValue": "クロス値", - "SSE.Views.EditChart.textCustomColor": "ユーザー設定色", - "SSE.Views.EditChart.textDataLabels": "データ・ラベル", - "SSE.Views.EditChart.textDesign": "デザイン", - "SSE.Views.EditChart.textDisplayUnits": "表示単位", - "SSE.Views.EditChart.textFill": "塗りつぶし", - "SSE.Views.EditChart.textForward": "前面へ移動", - "SSE.Views.EditChart.textGridlines": "枠線表示", - "SSE.Views.EditChart.textHorAxis": "横軸", - "SSE.Views.EditChart.textHorizontal": "水平", - "SSE.Views.EditChart.textLabelOptions": "ラベル・オプション\t", - "SSE.Views.EditChart.textLabelPos": "ラベルの位置", - "SSE.Views.EditChart.textLayout": "ページレイアウト", - "SSE.Views.EditChart.textLeft": "左", - "SSE.Views.EditChart.textLeftOverlay": "左の重ね合わせ", - "SSE.Views.EditChart.textLegend": "凡例", - "SSE.Views.EditChart.textMajor": "メジャー", - "SSE.Views.EditChart.textMajorMinor": "メジャーとマイナー", - "SSE.Views.EditChart.textMajorType": "メジャータイプ", - "SSE.Views.EditChart.textMaxValue": "最大値", - "SSE.Views.EditChart.textMinor": "マイナー", - "SSE.Views.EditChart.textMinorType": "マイナータイプ", - "SSE.Views.EditChart.textMinValue": "最小値", - "SSE.Views.EditChart.textNone": "なし", - "SSE.Views.EditChart.textNoOverlay": "重ね合わせなし", - "SSE.Views.EditChart.textOverlay": "重ね合わせ", - "SSE.Views.EditChart.textRemoveChart": "図表を削除する", - "SSE.Views.EditChart.textReorder": "並べ替え", - "SSE.Views.EditChart.textRight": "右", - "SSE.Views.EditChart.textRightOverlay": "右の重ね合わせ", - "SSE.Views.EditChart.textRotated": "回転された", - "SSE.Views.EditChart.textSize": "サイズ", - "SSE.Views.EditChart.textStyle": "スタイル", - "SSE.Views.EditChart.textTickOptions": "ティックのオプション", - "SSE.Views.EditChart.textToBackground": "背景へ移動", - "SSE.Views.EditChart.textToForeground": "前景に移動する", - "SSE.Views.EditChart.textTop": "上", - "SSE.Views.EditChart.textType": "タイプ", - "SSE.Views.EditChart.textValReverseOrder": "逆順の値", - "SSE.Views.EditChart.textVerAxis": "縦軸", - "SSE.Views.EditChart.textVertical": "縦", - "SSE.Views.EditHyperlink.textBack": "戻る", - "SSE.Views.EditHyperlink.textDisplay": "表示する", - "SSE.Views.EditHyperlink.textEditLink": "リンクを編集する", - "SSE.Views.EditHyperlink.textExternalLink": "外部リンク", - "SSE.Views.EditHyperlink.textInternalLink": "内部のデータ範囲", - "SSE.Views.EditHyperlink.textLink": "リンク", - "SSE.Views.EditHyperlink.textLinkType": "リンクのタイプ", - "SSE.Views.EditHyperlink.textRange": "範囲", - "SSE.Views.EditHyperlink.textRemoveLink": "リンクを削除する", - "SSE.Views.EditHyperlink.textScreenTip": "画面のヒント", - "SSE.Views.EditHyperlink.textSheet": "シート", - "SSE.Views.EditImage.textAddress": "アドレス", - "SSE.Views.EditImage.textBack": "戻る", - "SSE.Views.EditImage.textBackward": "背面へ移動", - "SSE.Views.EditImage.textDefault": "実際のサイズ", - "SSE.Views.EditImage.textForward": "前面へ移動", - "SSE.Views.EditImage.textFromLibrary": "ライブラリから写真を選択", - "SSE.Views.EditImage.textFromURL": "URLからの画像", - "SSE.Views.EditImage.textImageURL": "画像のURL", - "SSE.Views.EditImage.textLinkSettings": "リンク設定", - "SSE.Views.EditImage.textRemove": "画像を削除する", - "SSE.Views.EditImage.textReorder": "並べ替え", - "SSE.Views.EditImage.textReplace": "置き換える", - "SSE.Views.EditImage.textReplaceImg": "画像を置き換える", - "SSE.Views.EditImage.textToBackground": "背景へ移動", - "SSE.Views.EditImage.textToForeground": "前景に移動する", - "SSE.Views.EditShape.textAddCustomColor": "ユーザーの色を追加する", - "SSE.Views.EditShape.textBack": "戻る", - "SSE.Views.EditShape.textBackward": "背面へ移動", - "SSE.Views.EditShape.textBorder": "罫線", - "SSE.Views.EditShape.textColor": "色", - "SSE.Views.EditShape.textCustomColor": "ユーザー設定色", - "SSE.Views.EditShape.textEffects": "効果", - "SSE.Views.EditShape.textFill": "塗りつぶし", - "SSE.Views.EditShape.textForward": "前面へ移動", - "SSE.Views.EditShape.textOpacity": "不透明度", - "SSE.Views.EditShape.textRemoveShape": "図形を削除する", - "SSE.Views.EditShape.textReorder": "並べ替え", - "SSE.Views.EditShape.textReplace": "置き換える", - "SSE.Views.EditShape.textSize": "サイズ", - "SSE.Views.EditShape.textStyle": "スタイル", - "SSE.Views.EditShape.textToBackground": "背景へ移動", - "SSE.Views.EditShape.textToForeground": "前景に移動する", - "SSE.Views.EditText.textAddCustomColor": "ユーザーの色を追加する", - "SSE.Views.EditText.textBack": "戻る", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "ユーザー設定色", - "SSE.Views.EditText.textFillColor": "塗りつぶしの色", - "SSE.Views.EditText.textFonts": "フォント", - "SSE.Views.EditText.textSize": "サイズ", - "SSE.Views.EditText.textTextColor": "文字の色", - "SSE.Views.FilterOptions.textClearFilter": "フィルタをクリアする", - "SSE.Views.FilterOptions.textDeleteFilter": "フィルターを削除", - "SSE.Views.FilterOptions.textFilter": "フィルターの設定", - "SSE.Views.Search.textByColumns": "列", - "SSE.Views.Search.textByRows": "行", - "SSE.Views.Search.textDone": "完了", - "SSE.Views.Search.textFind": "検索", - "SSE.Views.Search.textFindAndReplace": "検索と置換", - "SSE.Views.Search.textFormulas": "数式", - "SSE.Views.Search.textHighlightRes": "結果を強調表示する", - "SSE.Views.Search.textLookIn": "検索の範囲", - "SSE.Views.Search.textMatchCase": "大文字と小文字の区別", - "SSE.Views.Search.textMatchCell": "セルの照合", - "SSE.Views.Search.textReplace": "置き換える", - "SSE.Views.Search.textSearch": "検索", - "SSE.Views.Search.textSearchBy": "検索", - "SSE.Views.Search.textSearchIn": "検索範囲", - "SSE.Views.Search.textSheet": "シート", - "SSE.Views.Search.textValues": "値", - "SSE.Views.Search.textWorkbook": "ワークブック", - "SSE.Views.Settings.textAbout": "情報", - "SSE.Views.Settings.textAddress": "アドレス", - "SSE.Views.Settings.textApplication": "アプリ", - "SSE.Views.Settings.textApplicationSettings": "アプリ設定", - "SSE.Views.Settings.textAuthor": "作成者", - "SSE.Views.Settings.textBack": "戻る", - "SSE.Views.Settings.textBottom": "下", - "SSE.Views.Settings.textCentimeter": "センチ", - "SSE.Views.Settings.textCollaboration": "共同編集", - "SSE.Views.Settings.textColorSchemes": "配色", - "SSE.Views.Settings.textComment": "コメント", - "SSE.Views.Settings.textCommentingDisplay": "コメントの表示", - "SSE.Views.Settings.textCreated": "作成された", - "SSE.Views.Settings.textCreateDate": "作成日", - "SSE.Views.Settings.textCustom": "ユーザー設定", - "SSE.Views.Settings.textCustomSize": "ユーザ設定サイズ", - "SSE.Views.Settings.textDisableAll": "全てを無効にする", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "マクロを無効にして、通知する", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "マクロを無効にして、通知しない", - "SSE.Views.Settings.textDisplayComments": "コメント", - "SSE.Views.Settings.textDisplayResolvedComments": "解決されたコメント", - "SSE.Views.Settings.textDocInfo": "スプレッドシート情報", - "SSE.Views.Settings.textDocTitle": "スプレッドシート名", - "SSE.Views.Settings.textDone": "完了", - "SSE.Views.Settings.textDownload": "ダウンロード", - "SSE.Views.Settings.textDownloadAs": "...としてダウンロード", - "SSE.Views.Settings.textEditDoc": "編集する", - "SSE.Views.Settings.textEmail": "メール", - "SSE.Views.Settings.textEnableAll": "全てを有効する", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "通知しないで、すべてのマクロを有効にする", - "SSE.Views.Settings.textExample": "例文", - "SSE.Views.Settings.textFind": "検索", - "SSE.Views.Settings.textFindAndReplace": "検索と置換", - "SSE.Views.Settings.textFormat": "フォーマット", - "SSE.Views.Settings.textFormulaLanguage": "数式の言語", - "SSE.Views.Settings.textHelp": "ヘルプ", - "SSE.Views.Settings.textHideGridlines": "表のグリッド線を表示しない", - "SSE.Views.Settings.textHideHeadings": "見出しを表示しない", - "SSE.Views.Settings.textInch": "インチ", - "SSE.Views.Settings.textLandscape": "横向き", - "SSE.Views.Settings.textLastModified": "最終更新", - "SSE.Views.Settings.textLastModifiedBy": "最終更新者", - "SSE.Views.Settings.textLeft": "左", - "SSE.Views.Settings.textLoading": "読み込み中...", - "SSE.Views.Settings.textLocation": "位置", - "SSE.Views.Settings.textMacrosSettings": "マクロの設定", - "SSE.Views.Settings.textMargins": "余白", - "SSE.Views.Settings.textOrientation": "印刷の向き", - "SSE.Views.Settings.textOwner": "所有者", - "SSE.Views.Settings.textPoint": "ポイント", - "SSE.Views.Settings.textPortrait": "縦向き", - "SSE.Views.Settings.textPoweredBy": "Powered by", - "SSE.Views.Settings.textPrint": "印刷する", - "SSE.Views.Settings.textR1C1Style": "R1C1参照形式", - "SSE.Views.Settings.textRegionalSettings": "地域の設定", - "SSE.Views.Settings.textRight": "右", - "SSE.Views.Settings.textSettings": "設定", - "SSE.Views.Settings.textShowNotification": "通知を表示する", - "SSE.Views.Settings.textSpreadsheetFormats": "スプレッドシート形式", - "SSE.Views.Settings.textSpreadsheetSettings": "スプレッドシート設定", - "SSE.Views.Settings.textSubject": "件名", - "SSE.Views.Settings.textTel": "電話", - "SSE.Views.Settings.textTitle": "タイトル", - "SSE.Views.Settings.textTop": "上", - "SSE.Views.Settings.textUnitOfMeasurement": "測定単位", - "SSE.Views.Settings.textUploaded": "アップロードされた", - "SSE.Views.Settings.textVersion": "バージョン", - "SSE.Views.Settings.unknownText": "不明", - "SSE.Views.Toolbar.textBack": "戻る" + "About": { + "textAbout": "詳細情報", + "textEmail": "メール", + "textAddress": "Address", + "textBack": "Back", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": " 警告", + "textCancel": "キャンセル", + "textDone": "完了", + "textEdit": "編集", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textThemeColors": "テーマカラー", + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors" + } + }, + "ContextMenu": { + "menuCancel": "キャンセル", + "menuDelete": "削除", + "menuEdit": "編集", + "menuViewComment": "コメントを見る", + "notcriticalErrorTitle": " 警告", + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCell": "Cell", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuWrap": "Wrap", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "notcriticalErrorTitle": " 警告", + "SDK": { + "txtArt": "テキストを入力…", + "txtBlank": "(空白)", + "txtGroup": "グループ", + "txtPrintArea": "印刷範囲", + "txtStyle_Heading_1": "見出し1", + "txtStyle_Heading_2": "見出し2", + "txtStyle_Heading_3": "見出し3", + "txtStyle_Heading_4": "見出し4", + "txtStyle_Title": "タイトル", + "txtTable": "テーブル", + "txtValues": "値", + "txtYears": "年", + "txtAccent": "Accent", + "txtAll": "(All)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTime": "Time", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis" + }, + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "downloadErrorText": "ダウンロード失敗", + "errorBadImageUrl": "画像のURLが正しくありません。", + "notcriticalErrorTitle": " 警告", + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "データを読み込んでいます...", + "applyChangesTitleText": "データを読み込んでいます", + "loadFontsTextText": "データを読み込んでいます...", + "loadFontsTitleText": "データを読み込んでいます", + "loadFontTextText": "データを読み込んでいます...", + "loadFontTitleText": "データを読み込んでいます", + "loadImagesTextText": "画像を読み込んでいます…", + "loadImagesTitleText": "画像を読み込んでいます", + "loadImageTextText": "画像を読み込んでいます…", + "loadImageTitleText": "画像を読み込んでいます", + "loadingDocumentTextText": "ドキュメントを読み込んでいます…", + "loadingDocumentTitleText": "ドキュメントを読み込んでいます", + "notcriticalErrorTitle": " 警告", + "printTextText": "印刷中...", + "textLoadingDocument": "ドキュメントを読み込んでいます", + "textOk": "OK", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textNo": "No", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": " 警告", + "textCancel": "キャンセル", + "textDelete": "削除", + "textDuplicate": "複製", + "textErrNameExists": "この名前のワークシートはすでに存在しています。", + "textRename": "名前の変更", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveTitleText": "アプリケーションを終了します", + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "notcriticalErrorTitle": " 警告", + "textCancel": "キャンセル", + "textComment": "コメント", + "textImage": "画像", + "textImageURL": "画像のURL", + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textChart": "Chart", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": " 警告", + "textAuto": "オート", + "textBillions": "十億", + "textColor": "色", + "textDesign": "デザイン", + "textDollar": "ドル", + "textErrorMsg": "少なくとも1つの値を選択する必要があります", + "textErrorTitle": " 警告", + "textEuro": "ユーロ", + "textFonts": "フォント", + "textHundredMil": "100,000,000", + "textHundredThousands": "100,000", + "textImage": "画像", + "textImageURL": "画像のURL", + "textLayout": "ページレイアウト", + "textNone": "なし", + "textSelectAll": "全て選択", + "textStyle": "スタイル", + "textTenMillions": "10,000,000", + "textTenThousands": "10,000", + "textText": "テキスト", + "textTextColor": "文字の色", + "textTime": "時間", + "textValue": "値", + "textVerticalText": "縦書きテキスト", + "textYen": "円", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundreds": "Hundreds", + "textHyperlink": "Hyperlink", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textWrapText": "Wrap Text", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advDRMEnterPassword": "パスワード:", + "advDRMPassword": "パスワード", + "notcriticalErrorTitle": " 警告", + "textAbout": "詳細情報", + "textApplication": "アプリケーション", + "textAuthor": "作成者", + "textCancel": "キャンセル", + "textComment": "コメント", + "textDone": "完了", + "textDownload": "ダウンロード", + "textEmail": "メール", + "textHelp": "ヘルプ", + "textOwner": "作成者", + "textPrint": "印刷", + "textSearch": "検索", + "textSearchBy": "検索", + "textTitle": "タイトル", + "textValues": "値", + "advCSVOptions": "Choose CSV options", + "advDRMOptions": "Protected File", + "closeButtonText": "Close File", + "textAddress": "Address", + "textApplicationSettings": "Application Settings", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDownloadAs": "Download As", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index c698ce770..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -1,495 +1,637 @@ { - "Common.UI.ThemeColorPalette.textStandartColors": "표준 색상", - "Common.UI.ThemeColorPalette.textThemeColors": "테마 색", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "SSE.Controllers.AddChart.txtDiagramTitle": "차트 제목", - "SSE.Controllers.AddChart.txtSeries": "Series", - "SSE.Controllers.AddChart.txtXAxis": "X 축", - "SSE.Controllers.AddChart.txtYAxis": "Y 축", - "SSE.Controllers.AddContainer.textChart": "차트", - "SSE.Controllers.AddContainer.textFormula": "함수", - "SSE.Controllers.AddContainer.textImage": "이미지", - "SSE.Controllers.AddContainer.textOther": "기타", - "SSE.Controllers.AddContainer.textShape": "Shape", - "SSE.Controllers.AddLink.textInvalidRange": "오류! 셀 범위가 잘못되었습니다.", - "SSE.Controllers.AddLink.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", - "SSE.Controllers.AddOther.textEmptyImgUrl": "이미지 URL을 지정해야합니다.", - "SSE.Controllers.AddOther.txtNotUrl": "이 필드는 'http://www.example.com'형식의 URL이어야합니다.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "링크 참조가 존재하지 않습니다. 링크를 수정하거나 삭제하십시오.", - "SSE.Controllers.DocumentHolder.menuAddLink": "링크 추가", - "SSE.Controllers.DocumentHolder.menuCell": "셀", - "SSE.Controllers.DocumentHolder.menuCopy": "복사", - "SSE.Controllers.DocumentHolder.menuCut": "잘라 내기", - "SSE.Controllers.DocumentHolder.menuDelete": "삭제", - "SSE.Controllers.DocumentHolder.menuEdit": "편집", - "SSE.Controllers.DocumentHolder.menuHide": "숨기기", - "SSE.Controllers.DocumentHolder.menuMerge": "Merge", - "SSE.Controllers.DocumentHolder.menuMore": "More", - "SSE.Controllers.DocumentHolder.menuOpenLink": "링크 열기", - "SSE.Controllers.DocumentHolder.menuPaste": "붙여 넣기", - "SSE.Controllers.DocumentHolder.menuShow": "표시", - "SSE.Controllers.DocumentHolder.menuUnmerge": "병합 해제", - "SSE.Controllers.DocumentHolder.menuUnwrap": "언랩", - "SSE.Controllers.DocumentHolder.menuWrap": "줄 바꾸기", - "SSE.Controllers.DocumentHolder.sheetCancel": "취소", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "왼쪽 위 셀의 데이터 만 병합 된 셀에 남아 있습니다.
    계속 하시겠습니까?", - "SSE.Controllers.EditCell.textAuto": "Auto", - "SSE.Controllers.EditCell.textFonts": "글꼴", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "오류! 차트 당 최대 데이터 시리즈 수는 255입니다.", - "SSE.Controllers.EditChart.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트에 데이터를 다음과 같은 순서로 배치하십시오 :
    개시 가격, 최대 가격, 최소 가격, 마감 가격.", - "SSE.Controllers.EditChart.textAuto": "Auto", - "SSE.Controllers.EditChart.textBetweenTickMarks": "눈금 사이", - "SSE.Controllers.EditChart.textBillions": "10 억", - "SSE.Controllers.EditChart.textBottom": "Bottom", - "SSE.Controllers.EditChart.textCenter": "Center", - "SSE.Controllers.EditChart.textCross": "Cross", - "SSE.Controllers.EditChart.textCustom": "Custom", - "SSE.Controllers.EditChart.textFit": "Fit Width", - "SSE.Controllers.EditChart.textFixed": "고정", - "SSE.Controllers.EditChart.textHigh": "높음", - "SSE.Controllers.EditChart.textHorizontal": "Horizontal", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Hundreds", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "In", - "SSE.Controllers.EditChart.textInnerBottom": "내부 하단", - "SSE.Controllers.EditChart.textInnerTop": "내부 상단", - "SSE.Controllers.EditChart.textLeft": "왼쪽", - "SSE.Controllers.EditChart.textLeftOverlay": "왼쪽 오버레이", - "SSE.Controllers.EditChart.textLow": "Low", - "SSE.Controllers.EditChart.textManual": "수동", - "SSE.Controllers.EditChart.textMaxValue": "최대 값", - "SSE.Controllers.EditChart.textMillions": "Millions", - "SSE.Controllers.EditChart.textMinValue": "최소값", - "SSE.Controllers.EditChart.textNextToAxis": "축 옆", - "SSE.Controllers.EditChart.textNone": "없음", - "SSE.Controllers.EditChart.textNoOverlay": "오버레이 없음", - "SSE.Controllers.EditChart.textOnTickMarks": "눈금 표시", - "SSE.Controllers.EditChart.textOut": "Out", - "SSE.Controllers.EditChart.textOuterTop": "외부 상단", - "SSE.Controllers.EditChart.textOverlay": "오버레이", - "SSE.Controllers.EditChart.textRight": "Right", - "SSE.Controllers.EditChart.textRightOverlay": "오른쪽 오버레이", - "SSE.Controllers.EditChart.textRotated": "Rotated", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "수천", - "SSE.Controllers.EditChart.textTop": "Top", - "SSE.Controllers.EditChart.textTrillions": "Trillions", - "SSE.Controllers.EditChart.textValue": "Value", - "SSE.Controllers.EditContainer.textCell": "셀", - "SSE.Controllers.EditContainer.textChart": "차트", - "SSE.Controllers.EditContainer.textHyperlink": "하이퍼 링크", - "SSE.Controllers.EditContainer.textImage": "이미지", - "SSE.Controllers.EditContainer.textSettings": "설정", - "SSE.Controllers.EditContainer.textShape": "Shape", - "SSE.Controllers.EditContainer.textTable": "테이블", - "SSE.Controllers.EditContainer.textText": "텍스트", - "SSE.Controllers.EditHyperlink.textDefault": "선택한 범위", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "이미지 URL을 지정해야합니다.", - "SSE.Controllers.EditHyperlink.textExternalLink": "외부 링크", - "SSE.Controllers.EditHyperlink.textInternalLink": "내부 데이터 범위", - "SSE.Controllers.EditHyperlink.textInvalidRange": "유효하지 않은 셀 범위", - "SSE.Controllers.EditHyperlink.txtNotUrl": "이 필드는 \"http://www.example.com\"형식의 URL이어야합니다.", - "SSE.Controllers.Main.advCSVOptions": "CSV 옵션 선택", - "SSE.Controllers.Main.advDRMEnterPassword": "비밀번호를 입력하십시오 :", - "SSE.Controllers.Main.advDRMOptions": "보호 된 파일", - "SSE.Controllers.Main.advDRMPassword": "Password", - "SSE.Controllers.Main.applyChangesTextText": "데이터로드 중 ...", - "SSE.Controllers.Main.applyChangesTitleText": "데이터로드 중", - "SSE.Controllers.Main.convertationTimeoutText": "전환 시간 초과를 초과했습니다.", - "SSE.Controllers.Main.criticalErrorExtText": "문서 목록으로 돌아가려면 '확인'을 누르십시오.", - "SSE.Controllers.Main.criticalErrorTitle": "오류", - "SSE.Controllers.Main.downloadErrorText": "다운로드하지 못했습니다.", - "SSE.Controllers.Main.downloadMergeText": "다운로드 중 ...", - "SSE.Controllers.Main.downloadMergeTitle": "다운로드 중", - "SSE.Controllers.Main.downloadTextText": "문서 다운로드 중 ...", - "SSE.Controllers.Main.downloadTitleText": "문서 다운로드 중", - "SSE.Controllers.Main.errorAccessDeny": "권한이없는 작업을 수행하려고합니다.
    Document Server 관리자에게 문의하십시오.", - "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.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.errorDataRange": "잘못된 데이터 범위입니다.", - "SSE.Controllers.Main.errorDefaultMessage": "오류 코드 : % 1", - "SSE.Controllers.Main.errorFilePassProtect": "문서가 암호로 보호되어 있습니다.", - "SSE.Controllers.Main.errorFileRequest": "외부 오류.
    파일 요청 오류입니다. 오류가 지속될 경우 지원 담당자에게 문의하십시오.", - "SSE.Controllers.Main.errorFileVKey": "외부 오류.
    잘못된 보안 키입니다. 오류가 계속 발생하면 지원 부서에 문의하십시오.", - "SSE.Controllers.Main.errorFillRange": "선택한 셀 범위를 채울 수 없습니다.
    병합 된 모든 셀이 같은 크기 여야합니다.", - "SSE.Controllers.Main.errorFormulaName": "입력 한 수식에 오류가 있습니다.
    잘못된 수식 이름이 사용되었습니다.", - "SSE.Controllers.Main.errorFormulaParsing": "수식을 분석하는 동안 내부 오류가 발생했습니다.", - "SSE.Controllers.Main.errorFrmlWrongReferences": "이 함수는 존재하지 않는 시트를 참조합니다.
    데이터를 확인한 후 다시 시도하십시오.", - "SSE.Controllers.Main.errorInvalidRef": "선택 항목의 정확한 이름을 입력하거나 이동할 참조를 입력하십시오.", - "SSE.Controllers.Main.errorKeyEncrypt": "알 수없는 키 설명자", - "SSE.Controllers.Main.errorKeyExpire": "키 설명자가 만료되었습니다", - "SSE.Controllers.Main.errorLockedAll": "다른 사용자가 시트를 잠근 상태에서 작업을 수행 할 수 없습니다.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "시트의 이름을 다른 사용자가 바꾸면 이름을 바꿀 수 없습니다.", - "SSE.Controllers.Main.errorMailMergeLoadFile": "로드 실패", - "SSE.Controllers.Main.errorMailMergeSaveFile": "병합에 실패했습니다.", - "SSE.Controllers.Main.errorMaxPoints": "차트당 시리즈내 포인트의 최대값은 4096임", - "SSE.Controllers.Main.errorMoveRange": "병합 된 셀의 일부를 변경할 수 없습니다", - "SSE.Controllers.Main.errorOpenWarning": "파일에있는 수식 중 하나의 길이가 허용 된 문자 수를 초과하여 제거되었습니다.", - "SSE.Controllers.Main.errorOperandExpected": "입력 한 함수 구문이 올바르지 않습니다. 괄호 중 하나가 누락되어 있는지 확인하십시오 ( '('또는 ')').", - "SSE.Controllers.Main.errorPasteMaxRange": "복사 및 붙여 넣기 영역이 일치하지 않습니다.
    복사 된 셀을 붙여 넣으려면 동일한 크기의 영역을 선택하거나 행의 첫 번째 셀을 클릭하십시오.", - "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.errorStockChart": "잘못된 행 순서. 주식형 차트를 작성하려면 시트의 데이터를 다음과 같은 순서로 배치하십시오 :
    개시 가격, 최대 가격, 최소 가격, 마감 가격.", - "SSE.Controllers.Main.errorToken": "문서 보안 토큰이 올바르게 구성되지 않았습니다.
    Document Server 관리자에게 문의하십시오.", - "SSE.Controllers.Main.errorTokenExpire": "문서 보안 토큰이 만료되었습니다.
    Document Server 관리자에게 문의하십시오.", - "SSE.Controllers.Main.errorUnexpectedGuid": "외부 오류입니다.
    예기치 않은 GUID 오류가 계속 발생하면 지원 담당자에게 문의하십시오.", - "SSE.Controllers.Main.errorUpdateVersion": "파일 버전이 변경되었습니다. 페이지가 다시로드됩니다.", - "SSE.Controllers.Main.errorUserDrop": "파일에 지금 액세스 할 수 없습니다.", - "SSE.Controllers.Main.errorUsersExceed": "가격 책정 계획에서 허용 한 사용자 수가 초과되었습니다.", - "SSE.Controllers.Main.errorViewerDisconnect": "연결이 끊어졌습니다. 문서를 볼 수는

    하지만 연결이 복원 될 때까지 다운로드 할 수 없습니다.", - "SSE.Controllers.Main.errorWrongBracketsCount": "입력 된 수식에 오류가 있습니다.
    괄호가 잘못 사용되었습니다.", - "SSE.Controllers.Main.errorWrongOperator": "입력 한 수식에 오류가 있습니다. 잘못된 연산자가 사용되었습니다.
    오류를 수정하십시오.", - "SSE.Controllers.Main.leavePageText": "이 문서에서 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 있으면 문서의 자동 저장을 기다릴 수 있습니다. '저장'을 클릭하여 저장하지 않은 모든 변경 사항을 버려주십시오.", - "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.loadingDocumentTextText": "스프레드 시트로드 중 ...", - "SSE.Controllers.Main.loadingDocumentTitleText": "스프레드 시트로드 중", - "SSE.Controllers.Main.mailMergeLoadFileText": "데이터 소스로드 중 ...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "데이터 소스로드 중", - "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": "Reload Page", - "SSE.Controllers.Main.requestEditFailedMessageText": "누군가이 문서를 지금 편집하고 있습니다. 나중에 다시 시도하십시오.", - "SSE.Controllers.Main.requestEditFailedTitleText": "액세스가 거부되었습니다", - "SSE.Controllers.Main.saveErrorText": "파일을 저장하는 동안 오류가 발생했습니다.", - "SSE.Controllers.Main.savePreparingText": "저장 준비 중", - "SSE.Controllers.Main.savePreparingTitle": "저장 준비 중입니다. 잠시 기다려주십시오 ...", - "SSE.Controllers.Main.saveTextText": "문서 저장 중 ...", - "SSE.Controllers.Main.saveTitleText": "문서 저장 중", - "SSE.Controllers.Main.sendMergeText": "Sending Merge ...", - "SSE.Controllers.Main.sendMergeTitle": "Sending Merge", - "SSE.Controllers.Main.textAnonymous": "익명", - "SSE.Controllers.Main.textBack": "Back", - "SSE.Controllers.Main.textBuyNow": "웹 사이트 방문", - "SSE.Controllers.Main.textCancel": "취소", - "SSE.Controllers.Main.textClose": "닫기", - "SSE.Controllers.Main.textContactUs": "영업 부서", - "SSE.Controllers.Main.textDone": "완료", - "SSE.Controllers.Main.textLoadingDocument": "스프레드 시트로드 중", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE 연결 제한", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPassword": "Password", - "SSE.Controllers.Main.textPreloader": "로드 중 ...", - "SSE.Controllers.Main.textShape": "Shape", - "SSE.Controllers.Main.textStrict": "엄격 모드", - "SSE.Controllers.Main.textTryUndoRedo": "빠른 공동 편집 모드에서는 실행 취소 / 다시 실행 기능이 비활성화됩니다.
    \"엄격 모드 \"버튼을 클릭하면 엄격한 공동 편집 모드로 전환되어 파일을 편집하지 않고 다른 사용자가 방해를해서 저장 한 후에 만 ​​변경 사항을 보내십시오. 편집자 고급 설정을 사용하여 공동 편집 모드간에 전환 할 수 있습니다. ", - "SSE.Controllers.Main.textUsername": "사용자 이름", - "SSE.Controllers.Main.titleLicenseExp": "라이센스 만료", - "SSE.Controllers.Main.titleServerVersion": "편집기가 업데이트되었습니다.", - "SSE.Controllers.Main.titleUpdateVersion": "버전이 변경되었습니다", - "SSE.Controllers.Main.txtAccent": "Accent", - "SSE.Controllers.Main.txtArt": "여기에 귀하의 텍스트", - "SSE.Controllers.Main.txtBasicShapes": "기본 셰이프", - "SSE.Controllers.Main.txtButtons": "Buttons", - "SSE.Controllers.Main.txtCallouts": "콜 아웃", - "SSE.Controllers.Main.txtCharts": "차트", - "SSE.Controllers.Main.txtDelimiter": "구분 기호", - "SSE.Controllers.Main.txtDiagramTitle": "차트 제목", - "SSE.Controllers.Main.txtEditingMode": "편집 모드 설정 ...", - "SSE.Controllers.Main.txtEncoding": "인코딩", - "SSE.Controllers.Main.txtErrorLoadHistory": "로드 이력 실패", - "SSE.Controllers.Main.txtFiguredArrows": "그림 화살", - "SSE.Controllers.Main.txtLines": "Lines", - "SSE.Controllers.Main.txtMath": "수학", - "SSE.Controllers.Main.txtRectangles": "Rectangles", - "SSE.Controllers.Main.txtSeries": "Series", - "SSE.Controllers.Main.txtSpace": "Space", - "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", - "SSE.Controllers.Main.txtStyle_Bad": "Bad", - "SSE.Controllers.Main.txtStyle_Calculation": "계산", - "SSE.Controllers.Main.txtStyle_Check_Cell": "셀 검사", - "SSE.Controllers.Main.txtStyle_Comma": "쉼표", - "SSE.Controllers.Main.txtStyle_Currency": "Currency", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "설명 텍스트", - "SSE.Controllers.Main.txtStyle_Good": "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": "Linked Cell", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "참고", - "SSE.Controllers.Main.txtStyle_Output": "출력", - "SSE.Controllers.Main.txtStyle_Percent": "Percent", - "SSE.Controllers.Main.txtStyle_Title": "제목", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "경고 텍스트", - "SSE.Controllers.Main.txtTab": "탭", - "SSE.Controllers.Main.txtXAxis": "X 축", - "SSE.Controllers.Main.txtYAxis": "Y 축", - "SSE.Controllers.Main.unknownErrorText": "알 수없는 오류.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "사용중인 브라우저가 지원되지 않습니다.", - "SSE.Controllers.Main.uploadImageExtMessage": "알 수없는 이미지 형식입니다.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "이미지가 업로드되지 않았습니다.", - "SSE.Controllers.Main.uploadImageSizeMessage": "최대 이미지 크기 제한을 초과했습니다.", - "SSE.Controllers.Main.uploadImageTextText": "이미지 업로드 중 ...", - "SSE.Controllers.Main.uploadImageTitleText": "이미지 업로드 중", - "SSE.Controllers.Main.warnLicenseExp": "귀하의 라이센스가 만료되었습니다.
    라이센스를 업데이트하고 페이지를 새로 고침하십시오.", - "SSE.Controllers.Main.warnNoLicense": "이 버전의 %1 편집자에게는 문서 서버에 대한 동시 연결에 대한 특정 제한 사항이 있습니다.
    더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상용 소프트웨어를 구입하십시오.", - "SSE.Controllers.Main.warnNoLicenseUsers": "이 버전의 %1 편집자에게는 동시 사용자에게 특정 제한 사항이 있습니다.
    더 많은 정보가 필요하면 현재 라이센스를 업그레이드하거나 상업용 라이센스를 구입하십시오.", - "SSE.Controllers.Main.warnProcessRightsChange": "파일 편집 권한이 거부되었습니다.", - "SSE.Controllers.Search.textNoTextFound": "텍스트를 찾을 수 없습니다", - "SSE.Controllers.Search.textReplaceAll": "모두 바꾸기", - "SSE.Controllers.Settings.notcriticalErrorTitle": "경고", - "SSE.Controllers.Settings.txtEn": "영어", - "SSE.Controllers.Settings.txtEs": "스페인어", - "SSE.Controllers.Settings.txtFr": "프랑스 국민", - "SSE.Controllers.Settings.txtPl": "폴란드어", - "SSE.Controllers.Settings.txtRu": "러시아어", - "SSE.Controllers.Settings.warnDownloadAs": "이 형식으로 저장을 계속하면 텍스트를 제외한 모든 기능이 손실됩니다. 계속 하시겠습니까?", - "SSE.Controllers.Statusbar.errorLastSheet": "통합 문서에는 최소한 하나의 보이는 워크 시트가 있어야합니다.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "워크 시트를 삭제할 수 없습니다.", - "SSE.Controllers.Statusbar.menuDelete": "삭제", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplicate", - "SSE.Controllers.Statusbar.menuHide": "숨기기", - "SSE.Controllers.Statusbar.menuUnhide": "숨기기 해제", - "SSE.Controllers.Statusbar.strSheet": "시트", - "SSE.Controllers.Statusbar.textExternalLink": "외부 링크", - "SSE.Controllers.Statusbar.warnDeleteSheet": "워크 시트에 데이터가있을 수 있습니다. 작업을 계속 하시겠습니까?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "이 문서에서 변경 사항을 저장하지 않았습니다.이 페이지에 머물러 있으면 문서의 자동 저장을 기다릴 수 있습니다. 저장하지 않은 모든 변경 사항을 취소하려면 '이 페이지를 남겨주세요'를 클릭하십시오.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "응용 프로그램을 종료합니다", - "SSE.Controllers.Toolbar.leaveButtonText": "이 페이지를 남겨주세요", - "SSE.Controllers.Toolbar.stayButtonText": "이 페이지에 머물러 라.", - "SSE.Views.AddFunction.sCatDateAndTime": "날짜 및 시간", - "SSE.Views.AddFunction.sCatEngineering": "엔지니어링", - "SSE.Views.AddFunction.sCatFinancial": "Financial", - "SSE.Views.AddFunction.sCatInformation": "정보", - "SSE.Views.AddFunction.sCatLogical": "Logical", - "SSE.Views.AddFunction.sCatLookupAndReference": "조회 및 참조", - "SSE.Views.AddFunction.sCatMathematic": "수학 및 삼각법", - "SSE.Views.AddFunction.sCatStatistical": "통계", - "SSE.Views.AddFunction.sCatTextAndData": "텍스트 및 데이터", - "SSE.Views.AddFunction.textBack": "Back", - "SSE.Views.AddFunction.textGroups": "카테고리", - "SSE.Views.AddLink.textAddLink": "링크 추가", - "SSE.Views.AddLink.textAddress": "주소", - "SSE.Views.AddLink.textDisplay": "표시", - "SSE.Views.AddLink.textExternalLink": "외부 링크", - "SSE.Views.AddLink.textInsert": "삽입", - "SSE.Views.AddLink.textInternalLink": "내부 데이터 범위", - "SSE.Views.AddLink.textLink": "링크", - "SSE.Views.AddLink.textLinkType": "링크 유형", - "SSE.Views.AddLink.textRange": "Range", - "SSE.Views.AddLink.textRequired": "필수", - "SSE.Views.AddLink.textSheet": "시트", - "SSE.Views.AddLink.textTip": "화면 팁", - "SSE.Views.AddOther.textAddress": "주소", - "SSE.Views.AddOther.textBack": "뒤로", - "SSE.Views.AddOther.textFilter": "필터", - "SSE.Views.AddOther.textFromLibrary": "그림 라이브러리에서", - "SSE.Views.AddOther.textFromURL": "URL에서 그림", - "SSE.Views.AddOther.textImageURL": "이미지 URL", - "SSE.Views.AddOther.textInsert": "삽입", - "SSE.Views.AddOther.textInsertImage": "이미지 삽입", - "SSE.Views.AddOther.textLink": "링크", - "SSE.Views.AddOther.textSort": "정렬 및 필터링", - "SSE.Views.EditCell.textAccounting": "회계", - "SSE.Views.EditCell.textAlignBottom": "아래쪽 정렬", - "SSE.Views.EditCell.textAlignCenter": "정렬 센터", - "SSE.Views.EditCell.textAlignLeft": "왼쪽 정렬", - "SSE.Views.EditCell.textAlignMiddle": "가운데 정렬", - "SSE.Views.EditCell.textAlignRight": "오른쪽 정렬", - "SSE.Views.EditCell.textAlignTop": "정렬", - "SSE.Views.EditCell.textAllBorders": "모든 테두리", - "SSE.Views.EditCell.textBack": "뒤로", - "SSE.Views.EditCell.textBorderStyle": "테두리 스타일", - "SSE.Views.EditCell.textBottomBorder": "Bottom Border", - "SSE.Views.EditCell.textCellStyle": "셀 스타일", - "SSE.Views.EditCell.textColor": "Color", - "SSE.Views.EditCell.textCurrency": "통화", - "SSE.Views.EditCell.textDate": "날짜", - "SSE.Views.EditCell.textDiagDownBorder": "대각선 아래쪽 테두리", - "SSE.Views.EditCell.textDiagUpBorder": "대각선 위쪽 테두리", - "SSE.Views.EditCell.textDollar": "Dollar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "채우기 색", - "SSE.Views.EditCell.textFonts": "글꼴", - "SSE.Views.EditCell.textFormat": "형식", - "SSE.Views.EditCell.textGeneral": "일반", - "SSE.Views.EditCell.textInBorders": "테두리 안쪽", - "SSE.Views.EditCell.textInHorBorder": "내부 가로 테두리", - "SSE.Views.EditCell.textInteger": "정수", - "SSE.Views.EditCell.textInVertBorder": "내부 세로 테두리", - "SSE.Views.EditCell.textJustified": "Justified", - "SSE.Views.EditCell.textLeftBorder": "왼쪽 테두리", - "SSE.Views.EditCell.textMedium": "Medium", - "SSE.Views.EditCell.textNoBorder": "테두리 없음", - "SSE.Views.EditCell.textNumber": "숫자", - "SSE.Views.EditCell.textPercentage": "백분율", - "SSE.Views.EditCell.textPound": "파운드", - "SSE.Views.EditCell.textRightBorder": "오른쪽 테두리", - "SSE.Views.EditCell.textRouble": "루블", - "SSE.Views.EditCell.textScientific": "Scientific", - "SSE.Views.EditCell.textSize": "크기", - "SSE.Views.EditCell.textText": "텍스트", - "SSE.Views.EditCell.textTextColor": "텍스트 색상", - "SSE.Views.EditCell.textTextFormat": "텍스트 형식", - "SSE.Views.EditCell.textThick": "Thick", - "SSE.Views.EditCell.textThin": "Thin", - "SSE.Views.EditCell.textTime": "시간", - "SSE.Views.EditCell.textTopBorder": "위쪽 테두리", - "SSE.Views.EditCell.textWrapText": "텍스트 줄 바꾸기", - "SSE.Views.EditCell.textYen": "엔", - "SSE.Views.EditChart.textAuto": "Auto", - "SSE.Views.EditChart.textAxisCrosses": "Axis Crosses", - "SSE.Views.EditChart.textAxisOptions": "축 옵션", - "SSE.Views.EditChart.textAxisPosition": "축 위치", - "SSE.Views.EditChart.textAxisTitle": "축 제목", - "SSE.Views.EditChart.textBack": "뒤로", - "SSE.Views.EditChart.textBackward": "뒤로 이동", - "SSE.Views.EditChart.textBorder": "테두리", - "SSE.Views.EditChart.textBottom": "Bottom", - "SSE.Views.EditChart.textChart": "차트", - "SSE.Views.EditChart.textChartTitle": "차트 제목", - "SSE.Views.EditChart.textColor": "Color", - "SSE.Views.EditChart.textCrossesValue": "Crosses Value", - "SSE.Views.EditChart.textDataLabels": "데이터 레이블", - "SSE.Views.EditChart.textDesign": "디자인", - "SSE.Views.EditChart.textDisplayUnits": "표시 단위", - "SSE.Views.EditChart.textFill": "채우기", - "SSE.Views.EditChart.textForward": "앞으로 이동", - "SSE.Views.EditChart.textGridlines": "눈금 선", - "SSE.Views.EditChart.textHorAxis": "가로 축", - "SSE.Views.EditChart.textHorizontal": "Horizontal", - "SSE.Views.EditChart.textLabelOptions": "레이블 옵션", - "SSE.Views.EditChart.textLabelPos": "레이블 위치", - "SSE.Views.EditChart.textLayout": "Layout", - "SSE.Views.EditChart.textLeft": "왼쪽", - "SSE.Views.EditChart.textLeftOverlay": "왼쪽 오버레이", - "SSE.Views.EditChart.textLegend": "범례", - "SSE.Views.EditChart.textMajor": "Major", - "SSE.Views.EditChart.textMajorMinor": "주니어 및 마이너", - "SSE.Views.EditChart.textMajorType": "주요 유형", - "SSE.Views.EditChart.textMaxValue": "최대 값", - "SSE.Views.EditChart.textMinor": "Minor", - "SSE.Views.EditChart.textMinorType": "Minor Type", - "SSE.Views.EditChart.textMinValue": "최소값", - "SSE.Views.EditChart.textNone": "없음", - "SSE.Views.EditChart.textNoOverlay": "오버레이 없음", - "SSE.Views.EditChart.textOverlay": "오버레이", - "SSE.Views.EditChart.textRemoveChart": "차트 제거", - "SSE.Views.EditChart.textReorder": "재정렬", - "SSE.Views.EditChart.textRight": "오른쪽", - "SSE.Views.EditChart.textRightOverlay": "오른쪽 오버레이", - "SSE.Views.EditChart.textRotated": "Rotated", - "SSE.Views.EditChart.textSize": "크기", - "SSE.Views.EditChart.textStyle": "스타일", - "SSE.Views.EditChart.textTickOptions": "눈금 옵션", - "SSE.Views.EditChart.textToBackground": "배경으로 보내기", - "SSE.Views.EditChart.textToForeground": "포 그라운드로 가져 오기", - "SSE.Views.EditChart.textTop": "Top", - "SSE.Views.EditChart.textType": "Type", - "SSE.Views.EditChart.textValReverseOrder": "역순으로 값", - "SSE.Views.EditChart.textVerAxis": "세로 축", - "SSE.Views.EditChart.textVertical": "Vertical", - "SSE.Views.EditHyperlink.textBack": "뒤로", - "SSE.Views.EditHyperlink.textDisplay": "표시", - "SSE.Views.EditHyperlink.textEditLink": "링크 편집", - "SSE.Views.EditHyperlink.textExternalLink": "외부 링크", - "SSE.Views.EditHyperlink.textInternalLink": "내부 데이터 범위", - "SSE.Views.EditHyperlink.textLink": "링크", - "SSE.Views.EditHyperlink.textLinkType": "링크 유형", - "SSE.Views.EditHyperlink.textRange": "Range", - "SSE.Views.EditHyperlink.textRemoveLink": "링크 제거", - "SSE.Views.EditHyperlink.textScreenTip": "화면 팁", - "SSE.Views.EditHyperlink.textSheet": "시트", - "SSE.Views.EditImage.textAddress": "주소", - "SSE.Views.EditImage.textBack": "뒤로", - "SSE.Views.EditImage.textBackward": "뒤로 이동", - "SSE.Views.EditImage.textDefault": "기본 크기", - "SSE.Views.EditImage.textForward": "앞으로 이동", - "SSE.Views.EditImage.textFromLibrary": "그림 라이브러리에서", - "SSE.Views.EditImage.textFromURL": "URL에서 그림", - "SSE.Views.EditImage.textImageURL": "이미지 URL", - "SSE.Views.EditImage.textLinkSettings": "링크 설정", - "SSE.Views.EditImage.textRemove": "이미지 제거", - "SSE.Views.EditImage.textReorder": "재정렬", - "SSE.Views.EditImage.textReplace": "바꾸기", - "SSE.Views.EditImage.textReplaceImg": "이미지 바꾸기", - "SSE.Views.EditImage.textToBackground": "배경에 보내기", - "SSE.Views.EditImage.textToForeground": "포 그라운드로 가져 오기", - "SSE.Views.EditShape.textBack": "뒤로", - "SSE.Views.EditShape.textBackward": "뒤로 이동", - "SSE.Views.EditShape.textBorder": "테두리", - "SSE.Views.EditShape.textColor": "Color", - "SSE.Views.EditShape.textEffects": "효과", - "SSE.Views.EditShape.textFill": "채우기", - "SSE.Views.EditShape.textForward": "앞으로 이동", - "SSE.Views.EditShape.textOpacity": "불투명도", - "SSE.Views.EditShape.textRemoveShape": "도형 제거", - "SSE.Views.EditShape.textReorder": "재정렬", - "SSE.Views.EditShape.textReplace": "Replace", - "SSE.Views.EditShape.textSize": "크기", - "SSE.Views.EditShape.textStyle": "Style", - "SSE.Views.EditShape.textToBackground": "배경에 보내기", - "SSE.Views.EditShape.textToForeground": "포 그라운드로 가져 오기", - "SSE.Views.EditText.textBack": "뒤로", - "SSE.Views.EditText.textFillColor": "채우기 색", - "SSE.Views.EditText.textFonts": "글꼴", - "SSE.Views.EditText.textSize": "Size", - "SSE.Views.EditText.textTextColor": "텍스트 색상", - "SSE.Views.Search.textDone": "완료", - "SSE.Views.Search.textFind": "찾기", - "SSE.Views.Search.textFindAndReplace": "찾기 및 바꾸기", - "SSE.Views.Search.textMatchCase": "대 / 소문자 일치", - "SSE.Views.Search.textMatchCell": "셀 일치", - "SSE.Views.Search.textReplace": "바꾸기", - "SSE.Views.Search.textSearch": "검색", - "SSE.Views.Search.textSearchIn": "검색 위치", - "SSE.Views.Search.textSheet": "시트", - "SSE.Views.Search.textWorkbook": "통합 문서", - "SSE.Views.Settings.textAbout": "정보", - "SSE.Views.Settings.textAddress": "주소", - "SSE.Views.Settings.textAuthor": "저자", - "SSE.Views.Settings.textBack": "뒤로", - "SSE.Views.Settings.textCreateDate": "생성 날짜", - "SSE.Views.Settings.textDocInfo": "스프레드 시트 정보", - "SSE.Views.Settings.textDocTitle": "스프레드 시트 제목", - "SSE.Views.Settings.textDone": "완료", - "SSE.Views.Settings.textDownload": "다운로드", - "SSE.Views.Settings.textDownloadAs": "다른 이름으로 다운로드 ...", - "SSE.Views.Settings.textEditDoc": "문서 편집", - "SSE.Views.Settings.textEmail": "이메일", - "SSE.Views.Settings.textFind": "찾기", - "SSE.Views.Settings.textFindAndReplace": "찾기 및 바꾸기", - "SSE.Views.Settings.textHelp": "도움말", - "SSE.Views.Settings.textLoading": "로드 중 ...", - "SSE.Views.Settings.textPoweredBy": "Powered by", - "SSE.Views.Settings.textSettings": "설정", - "SSE.Views.Settings.textTel": "tel", - "SSE.Views.Settings.textVersion": "버전", - "SSE.Views.Settings.unknownText": "알 수 없음", - "SSE.Views.Toolbar.textBack": "뒤로" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index c6daa4e6b..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -1,661 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "ເພີ່ມຄຳຕອບກັບ", - "Common.Controllers.Collaboration.textCancel": "ຍົກເລີກ", - "Common.Controllers.Collaboration.textDeleteComment": "ລົບຄໍາເຫັນ", - "Common.Controllers.Collaboration.textDeleteReply": "ລົບການຕອບກັບ", - "Common.Controllers.Collaboration.textDone": "ສໍາເລັດ", - "Common.Controllers.Collaboration.textEdit": "ແກ້ໄຂ", - "Common.Controllers.Collaboration.textEditUser": "ຜູ້ໃຊ້ທີກໍາລັງແກ້ໄຂເອກະສານ", - "Common.Controllers.Collaboration.textMessageDeleteComment": "ທ່ານຕ້ອງການລົບຄຳເຫັນນີ້ແທ້ບໍ", - "Common.Controllers.Collaboration.textMessageDeleteReply": "ທ່ານຕ້ອງການລົບຄຳຕອບນີ້ແທ້ບໍ?", - "Common.Controllers.Collaboration.textReopen": "ເປີດຄືນ", - "Common.Controllers.Collaboration.textResolve": "ແກ້ໄຂ", - "Common.Controllers.Collaboration.textYes": "ແມ່ນແລ້ວ", - "Common.UI.ThemeColorPalette.textCustomColors": "ປະເພດຂອງສີ, ການກຳນົດສີ ", - "Common.UI.ThemeColorPalette.textStandartColors": "ສີມາດຕະຖານ", - "Common.UI.ThemeColorPalette.textThemeColors": " ສິຂອງຕີມ, ສີສັນຂອງຫົວຂໍ້", - "Common.Utils.Metric.txtCm": "ຊັງຕີແມັດ", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "ເພີ່ມຄຳຕອບກັບ", - "Common.Views.Collaboration.textBack": "ກັບຄືນ", - "Common.Views.Collaboration.textCancel": "ຍົກເລີກ", - "Common.Views.Collaboration.textCollaboration": "ຮ່ວມກັນ", - "Common.Views.Collaboration.textDone": "ສໍາເລັດ", - "Common.Views.Collaboration.textEditReply": "ແກ້ໄຂການຕອບກັບ", - "Common.Views.Collaboration.textEditUsers": "ຜຸ້ໃຊ້", - "Common.Views.Collaboration.textEditСomment": "ແກ້ໄຂຄໍາເຫັນ", - "Common.Views.Collaboration.textNoComments": "ຕາຕະລາງນີ້ບໍ່ມີ ຄຳ ເຫັນ", - "Common.Views.Collaboration.textСomments": "ຄວາມຄິດເຫັນ", - "SSE.Controllers.AddChart.txtDiagramTitle": "ໃສ່ຊື່ແຜນຮູບວາດ", - "SSE.Controllers.AddChart.txtSeries": "ຊຸດ", - "SSE.Controllers.AddChart.txtXAxis": "ແກນ X, ແກນລວງນອນ", - "SSE.Controllers.AddChart.txtYAxis": "ແກນ Y, ແກນລວງຕັ້ງ ", - "SSE.Controllers.AddContainer.textChart": "ແຜນຮູບວາດ", - "SSE.Controllers.AddContainer.textFormula": "ໜ້າທີ່ ", - "SSE.Controllers.AddContainer.textImage": "ຮູບພາບ", - "SSE.Controllers.AddContainer.textOther": "ອື່ນໆ", - "SSE.Controllers.AddContainer.textShape": "ຮູບຮ່າງ", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "ເຕືອນ", - "SSE.Controllers.AddLink.textInvalidRange": "ຜິດພາດ,ເຊວບໍ່ຖືກຕ້ອງ", - "SSE.Controllers.AddLink.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "SSE.Controllers.AddOther.textCancel": "ຍົກເລີກ", - "SSE.Controllers.AddOther.textContinue": "ສືບຕໍ່", - "SSE.Controllers.AddOther.textDelete": "ລົບ", - "SSE.Controllers.AddOther.textDeleteDraft": "ທ່ານຕ້ອງການລົບແທ້ບໍ ", - "SSE.Controllers.AddOther.textEmptyImgUrl": "ທ່ານຕ້ອງບອກ ທີຢູ່ຮູບ URL", - "SSE.Controllers.AddOther.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "ການກ໋ອບປີ້,ຕັດ ແລະ ວາງ ການດຳເນີນການໂດຍໃຊ້ເມນູ ຈະດຳເນີນການພາຍໃນຟາຍປັດຈຸບັນເທົ່ານັ້ນ", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "ບໍ່ມີການອ້າງອີງຈຸດເຊື່ອມຕໍ່. ກະລຸນາແກ້ໄຂ ຫຼື ລົບຈຸດເຊື່ອມຕໍ່.", - "SSE.Controllers.DocumentHolder.menuAddComment": "ເພີ່ມຄຳເຫັນ", - "SSE.Controllers.DocumentHolder.menuAddLink": "ເພີ່ມລິ້ງ", - "SSE.Controllers.DocumentHolder.menuCell": "ແຊວ", - "SSE.Controllers.DocumentHolder.menuCopy": "ສໍາເນົາ", - "SSE.Controllers.DocumentHolder.menuCut": "ຕັດ", - "SSE.Controllers.DocumentHolder.menuDelete": "ລົບ", - "SSE.Controllers.DocumentHolder.menuEdit": "ແກ້ໄຂ", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "ຕິກໃສ່ບໍລິເວນທີ່ຕ້ອງການໃຫ້ເຫັນແຈ້ງ", - "SSE.Controllers.DocumentHolder.menuHide": "ເຊື່ອງໄວ້", - "SSE.Controllers.DocumentHolder.menuMerge": "ປະສົມປະສານ", - "SSE.Controllers.DocumentHolder.menuMore": "ຫຼາຍກວ່າ", - "SSE.Controllers.DocumentHolder.menuOpenLink": "ເປີດລີ້ງ", - "SSE.Controllers.DocumentHolder.menuPaste": "ວາງ", - "SSE.Controllers.DocumentHolder.menuShow": "ສະແດງ", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "ຍົກເລີກໝາຍຕາຕະລາງ", - "SSE.Controllers.DocumentHolder.menuUnmerge": "ບໍ່ລວມເຂົ້າກັນ", - "SSE.Controllers.DocumentHolder.menuUnwrap": "ຍົກເລີກ", - "SSE.Controllers.DocumentHolder.menuViewComment": "ເບີ່ງຄໍາເຫັນ", - "SSE.Controllers.DocumentHolder.menuWrap": "ຫໍ່", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "SSE.Controllers.DocumentHolder.sheetCancel": "ຍົກເລີກ", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "ປະຕິບັດການ ສໍາເນົາ, ຕັດ ແລະ ວາງ", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "ບໍ່ຕ້ອງສະແດງຄືນອີກ", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "ສະເພາະຂໍ້ມູນຈາກເຊວດ້ານຊ້າຍເທິງທີ່ຈະຢູ່ໃນເຊວຮ່ວມ.
    ທ່ານຕ້ອງການດຳເນີນການຕໍ່ບໍ່?", - "SSE.Controllers.EditCell.textAuto": "ອັດຕະໂນມັດ", - "SSE.Controllers.EditCell.textFonts": "ຕົວອັກສອນ", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ຜິດພາດ!, ຈຳນວນຊູດຂໍ້ມູນສູງສຸດຕໍ່ຜັງແມ່ນ 255", - "SSE.Controllers.EditChart.errorStockChart": "ຄໍາສັ່ງແຖວບໍ່ຖືກຕ້ອງ. ເພື່ອສ້າງຕາຕະລາງຫຸ້ນອວາງຂໍ້ມູນໃສ່ເຈັ້ຍຕາມ ລຳດັບຕໍ່ໄປນີ້: ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ.", - "SSE.Controllers.EditChart.textAuto": "ອັດຕະໂນມັດ", - "SSE.Controllers.EditChart.textBetweenTickMarks": "ລະຫ່ວາງເຄື່ອງໝາຍຖືກ", - "SSE.Controllers.EditChart.textBillions": "ໜຶ່ງຕື້", - "SSE.Controllers.EditChart.textBottom": "ດ້ານລຸ່ມ", - "SSE.Controllers.EditChart.textCenter": "ທາງກາງ", - "SSE.Controllers.EditChart.textCross": "ຂ້າມ, ໄຂ້ວກັນ", - "SSE.Controllers.EditChart.textCustom": "ປະເພນີ", - "SSE.Controllers.EditChart.textFit": "ຄວາມກວ້າງພໍດີ", - "SSE.Controllers.EditChart.textFixed": "ແກ້ໄຂແລ້ວ", - "SSE.Controllers.EditChart.textHigh": "ສູງ", - "SSE.Controllers.EditChart.textHorizontal": "ລວງນອນ, ລວງຂວາງ", - "SSE.Controllers.EditChart.textHundredMil": "ໜຶ່ງຮ້ອຍລ້ານ", - "SSE.Controllers.EditChart.textHundreds": "ຈຳນວນໜື່ງຮ້ອຍ", - "SSE.Controllers.EditChart.textHundredThousands": "ໜຶ່ງແສນ", - "SSE.Controllers.EditChart.textIn": "ຂ້າງໃນ", - "SSE.Controllers.EditChart.textInnerBottom": "ດ້ານລຸ່ມພາຍໃນ", - "SSE.Controllers.EditChart.textInnerTop": "ດ້ານເທິງ ພາຍໃນ", - "SSE.Controllers.EditChart.textLeft": "ຊ້າຍ", - "SSE.Controllers.EditChart.textLeftOverlay": "ຊ້ອນທັບດ້ານຊ້າຍ", - "SSE.Controllers.EditChart.textLow": "ຕໍາ", - "SSE.Controllers.EditChart.textManual": "ຄູ່ມື", - "SSE.Controllers.EditChart.textMaxValue": "ຄ່າການສູງສຸດ", - "SSE.Controllers.EditChart.textMillions": "ໜື່ງລ້ານ", - "SSE.Controllers.EditChart.textMinValue": "ຄ່າຕ່ຳສຸດ", - "SSE.Controllers.EditChart.textNextToAxis": "ຖັດຈາກແກນ", - "SSE.Controllers.EditChart.textNone": "ບໍ່ມີ", - "SSE.Controllers.EditChart.textNoOverlay": "ບໍ່ມີການຊ້ອນກັນ", - "SSE.Controllers.EditChart.textOnTickMarks": "ໃນເຄື່ອງໝາຍຖືກ", - "SSE.Controllers.EditChart.textOut": "ອອກ", - "SSE.Controllers.EditChart.textOuterTop": "ທາງເທີງດ້ານນອກ", - "SSE.Controllers.EditChart.textOverlay": "ການຊ້ອນກັນ", - "SSE.Controllers.EditChart.textRight": "ຂວາ", - "SSE.Controllers.EditChart.textRightOverlay": "ພາບຊ້ອນທັບດ້ານຂວາ", - "SSE.Controllers.EditChart.textRotated": "ໜຸນ, ປິ່ນ", - "SSE.Controllers.EditChart.textTenMillions": "ສິບລ້ານ", - "SSE.Controllers.EditChart.textTenThousands": "ສິບພັນ", - "SSE.Controllers.EditChart.textThousands": "ຫຼາຍພັນ", - "SSE.Controllers.EditChart.textTop": "ເບື້ອງເທີງ", - "SSE.Controllers.EditChart.textTrillions": "ພັນລ້ານ, ຕື້", - "SSE.Controllers.EditChart.textValue": "ຕີລາຄາ", - "SSE.Controllers.EditContainer.textCell": "ແຊວ", - "SSE.Controllers.EditContainer.textChart": "ແຜນຮູບວາດ", - "SSE.Controllers.EditContainer.textHyperlink": "ົໄຮເປີລີ້ງ", - "SSE.Controllers.EditContainer.textImage": "ຮູບພາບ", - "SSE.Controllers.EditContainer.textSettings": "ຕັ້ງຄ່າ", - "SSE.Controllers.EditContainer.textShape": "ຮູບຮ່າງ", - "SSE.Controllers.EditContainer.textTable": "ຕາຕະລາງ", - "SSE.Controllers.EditContainer.textText": "ເນື້ອຫາ", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "ເຕືອນ", - "SSE.Controllers.EditHyperlink.textDefault": "ຊ່ວງທີ່ເລືອກ", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "ທ່ານຕ້ອງບອກ ທີຢູ່ຮູບ URL", - "SSE.Controllers.EditHyperlink.textExternalLink": "ລິງພາຍນອກ", - "SSE.Controllers.EditHyperlink.textInternalLink": "ຂໍ້ມູນພາຍໃນ", - "SSE.Controllers.EditHyperlink.textInvalidRange": "ເຊວບໍ່ຖືກຕ້ອງ", - "SSE.Controllers.EditHyperlink.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "SSE.Controllers.EditImage.textEmptyImgUrl": "ທ່ານຕ້ອງບອກ ທີຢູ່ຮູບ URL", - "SSE.Controllers.EditImage.txtNotUrl": "ຊ່ອງຂໍ້ມູນນີ້ຄວນຈະເປັນ URL ໃນຮູບແບບ 'http://www.example.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{ຊ່ອງວ່າງ}", - "SSE.Controllers.FilterOptions.textErrorMsg": "ທ່ານຕ້ອງເລືອກຢ່າງ ໜ້ອຍ ໜຶ່ງຄ່າ", - "SSE.Controllers.FilterOptions.textErrorTitle": "ແຈ້ງເຕືອນ", - "SSE.Controllers.FilterOptions.textSelectAll": "ເລືອກທັງໝົດ", - "SSE.Controllers.Main.advCSVOptions": "ເລືອກຕົວເລືອກຂອງ CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "ໃສ່ລະຫັດຜ່ານ", - "SSE.Controllers.Main.advDRMOptions": "ຟຮາຍມີການປົກປ້ອງ", - "SSE.Controllers.Main.advDRMPassword": "ລະຫັດ", - "SSE.Controllers.Main.applyChangesTextText": "ໂລດຂໍ້ມູນ", - "SSE.Controllers.Main.applyChangesTitleText": "ດາວໂຫຼດຂໍ້ມູນ", - "SSE.Controllers.Main.closeButtonText": "ປິດຟຮາຍເອກະສານ", - "SSE.Controllers.Main.convertationTimeoutText": "ໝົດເວລາການປ່ຽນແປງ.", - "SSE.Controllers.Main.criticalErrorExtText": "ກົດ OK ເພື່ອກັບຄືນ", - "SSE.Controllers.Main.criticalErrorTitle": "ຂໍ້ຜິດພາດ", - "SSE.Controllers.Main.downloadErrorText": "ດາວໂຫຼດບໍ່ສຳເລັດ.", - "SSE.Controllers.Main.downloadMergeText": "ກໍາລັງດາວໂຫລດ...", - "SSE.Controllers.Main.downloadMergeTitle": "ກໍາລັງດາວໂຫຼດ ", - "SSE.Controllers.Main.downloadTextText": "ດາວໂຫຼດຟາຍ...", - "SSE.Controllers.Main.downloadTitleText": "ກຳລັງດາວໂຫຼດຕາຕະລາງ", - "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.errorChangeArray": "ທ່ານບໍ່ສາມາດປ່ຽນສ່ວນ ໜຶ່ງ ຂອງອາເລໄດ້.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "ຂາດການເຊື່ອມຕໍ່ເສີບເວີ, ເອກະສານບໍ່ສາມາດແກ້ໄຂໄດ້ໃນປັດຈຸບັນ", - "SSE.Controllers.Main.errorConnectToServer": "ເອກະສານບໍ່ສາມາດບັນທຶກໄດ້. ກະລຸນາກວດສອບການຕັ້ງຄ່າການເຊື່ອມຕໍ່ຫລືຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບຂອງທ່ານ.
    ເມື່ອທ່ານກົດປຸ່ມ 'OK', ທ່ານຈະໄດ້ຮັບການກະຕຸ້ນເຕືອນໃຫ້ດາວໂຫລດເອກະສານ.", - "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.errorEditingDownloadas": "ມີຂໍ້ຜິດພາດເກີດຂື້ນໃນລະຫວ່າງການເຮັດວຽກກັບເອກະສານ.", - "SSE.Controllers.Main.errorFilePassProtect": "ມີລະຫັດປົກປ້ອງຟາຍນີ້ຈຶ່ງບໍ່ສາມາດເປີດໄດ້", - "SSE.Controllers.Main.errorFileRequest": "ຜິດພາດພາຍນອກ, ເອກະສານຮ້ອງຂໍຜິດພາດ, ກະລຸນາຕິດຕໍ່ຝ່າຍສະໜັບສະໜູນ ໃນກໍລະນີຄວາມຜິດພາດຍັງຄົງຢູ່", - "SSE.Controllers.Main.errorFileSizeExceed": "ຂະໜາດຂອງຟາຍໃຫຍ່ກວ່າທີ່ກຳນົດໄວ້ໃນລະບົບ.
    ກະລຸນະຕິດຕໍ່ຜູ້ຄຸ້ມຄອງລົບຂອງທ່ານ", - "SSE.Controllers.Main.errorFileVKey": "ຜິດພາດພາຍນອກ,ລະຫັດຄວາມປອດໄພບໍ່ຖືກຕ້ອງ. ກະລຸນາຕິດຕໍ່ຝ່າຍສະໜັບສະໜູນ ໃນກໍລະນີຄວາມຜິດພາດຍັງຄົງຢູ່.", - "SSE.Controllers.Main.errorFillRange": "ບໍ່ສາມາດຕຶ່ມໃສ່ບ່ອນເຊວທີ່ເລືອໄວ້
    ເຊວທີ່ລວມເຂົ້າກັນທັງໝົດຕ້ອງມີຂະໜາດເທົ່າກັນ", - "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.errorInvalidRef": "ປ້ອນຊື່ໃຫ້ຖືກຕ້ອງສໍາລັບການເລືອກ ຫຼື ການອ້າງອີງທີ່ຖືກຕ້ອງ.", - "SSE.Controllers.Main.errorKeyEncrypt": "ບໍ່ຮູ້ຕົວບັນຍາຍຫຼັກ", - "SSE.Controllers.Main.errorKeyExpire": "ລະຫັດໝົດອາຍຸ", - "SSE.Controllers.Main.errorLockedAll": "ການປະຕິບັດງານບໍ່ສາມາດເຮັດໄດ້ຍ້ອນວ່າແຜ່ນໄດ້ຖືກລັອກໂດຍຜູ້ໃຊ້ຄົນອື່ນ.", - "SSE.Controllers.Main.errorLockedCellPivot": "ທ່ານບໍ່ສາມາດປ່ຽນແປງຂໍ້ມູນທີ່ຢູ່ໃນຕາຕະລາງພິວອດໄດ້.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "ບໍ່ສາມາດປ່ຽນຊື່ເອກະສານໄດ້ໃນເວລານີ້ຍ້ອນວ່າຖືກປ່ຽນຊື່ໂດຍຜູ້ໃຊ້ຄົນອື່ນ", - "SSE.Controllers.Main.errorMailMergeLoadFile": "ກຳລັງໂລດເອກະສານ", - "SSE.Controllers.Main.errorMailMergeSaveFile": "ບໍ່ສາມາດລວມໄດ້", - "SSE.Controllers.Main.errorMaxPoints": "ຈໍານວນສູງສຸດຕໍ່ຕາຕະລາງແມ່ນ 4096.", - "SSE.Controllers.Main.errorMoveRange": "ບໍ່ສາມາດປ່ຽນບາງສ່ວນຂອງເຊວທີ່ຮ່ວມກັນ", - "SSE.Controllers.Main.errorMultiCellFormula": "ບໍ່ອະນຸຍາດໃຫ້ມີສູດອາເລນຫຼາຍຫ້ອງໃນຕາຕະລາງເຊວ.", - "SSE.Controllers.Main.errorOpensource": "ທ່ານໃຊ້ສະບັບຊຸມຊົນແບບບໍ່ເສຍຄ່າ ທ່ານສາມາດເປີດເອກະສານ ແລະ ເບິ່ງເທົ່ານັ້ນ. ເພື່ອເຂົ້າເຖິງ ແກ້ໄຊທາງ ເວັບມືຖື, ຕ້ອງມີໃບອະນຸຍາດການຄ້າ.", - "SSE.Controllers.Main.errorOpenWarning": "ຫນຶ່ງໃນສູດຂອງເອກະສານ", - "SSE.Controllers.Main.errorOperandExpected": "ການເຂົ້າຟັງຊັນທີ່ຖືກເຂົ້າມາແມ່ນບໍ່ຖືກຕ້ອງ. ກະລຸນາກວດເບິ່ງວ່າທ່ານ ກຳ ລັງຂາດໃນວົງເລັບໜຶ່ງ", - "SSE.Controllers.Main.errorPasteMaxRange": "ພື້ນທີ່ ສຳ ເນົາ ແລະ ວາງບໍ່ກົງກັນ

    ກະລຸນາເລືອກພື້ນທີ່ທີ່ມີຂະ ໜາດ ດຽວກັນຫຼືກົດທີ່ຫ້ອງ ທຳ ອິດຕິດຕໍ່ກັນເພື່ອວາງເຊວທີ່ຖືກຄັດລອກ.", - "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.errorStockChart": "ຄໍາສັ່ງແຖວບໍ່ຖືກຕ້ອງ, ການສ້າງແຜນໃຫ້ວາງຂໍ້ມູນຕາມລຳດັບດັ່ງນີ: ລາຄາເປີດ, ລາຄາສູງສຸດ, ລາຄາຕໍ່າສຸດ, ລາຄາປິດ", - "SSE.Controllers.Main.errorToken": "ເຄື່ອງໝາຍຄວາມປອດໄພເອກະສານບໍ່ຖືກຕ້ອງ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ.", - "SSE.Controllers.Main.errorTokenExpire": "ເຄື່ອງໝາຍຄວາມປອດໄພຂອງເອກະສານ ໝົດ ອາຍຸ.
    ກະລຸນາຕິດຕໍ່ຜູ້ເບິ່ງແຍງລະບົບເອກະສານຂອງທ່ານ", - "SSE.Controllers.Main.errorUnexpectedGuid": "ຜິດພາດພາຍນອກ, ຄຳເເນະນຳທີ່ເກີດຂຶ້ນໂດຍບັງເອີນ. ກະລຸນາຕິດຕໍ່ຝ່າຍສະໜັບສະໜູນ ໃນກໍລະນີຄວາມຜິດພາດຍັງຄົງຢູ່.", - "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.leavePageText": "ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໃນເອກະສານນີ້. ກົດ \"ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທືກອັດຕະໂນມັດຂອງເອກະສານ. ກົດ 'ອອກຈາກ ໜ້າ ນີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກ.", - "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.loadingDocumentTextText": "ກຳລັງດາວໂຫຼດຕາຕະລາງ", - "SSE.Controllers.Main.loadingDocumentTitleText": "ກຳລັງໂຫຼດ spreadsheet", - "SSE.Controllers.Main.mailMergeLoadFileText": "ໂລດຂໍ້ມູນຈາກຕົ້ນທາງ....", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "ໂລດຂໍ້ມູນຈາກຕົ້ນທາງ", - "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.savePreparingText": "ກະກຽມບັນທືກ", - "SSE.Controllers.Main.savePreparingTitle": "ກຳລັງກະກຽມບັນທືກ, ກະລຸນາລໍຖ້າ", - "SSE.Controllers.Main.saveTextText": "ກໍາລັງບັນທືກເອກະສານ", - "SSE.Controllers.Main.saveTitleText": "ບັນທືກເອກະສານ", - "SSE.Controllers.Main.scriptLoadError": "ການເຊື່ອມຕໍ່ອິນເຕີເນັດຊ້າເກີນໄປ, ບາງອົງປະກອບບໍ່ສາມາດໂຫຼດໄດ້. ກະລຸນາໂຫຼດໜ້ານີ້ຄືນໃໝ່", - "SSE.Controllers.Main.sendMergeText": "ກໍາລັງລວມ", - "SSE.Controllers.Main.sendMergeTitle": "ກໍາລັງລວມ", - "SSE.Controllers.Main.textAnonymous": "ບໍ່ລະບຸຊື່", - "SSE.Controllers.Main.textBack": "ກັບຄືນ", - "SSE.Controllers.Main.textBuyNow": "ເຂົ້າໄປເວັບໄຊ", - "SSE.Controllers.Main.textCancel": "ຍົກເລີກ", - "SSE.Controllers.Main.textClose": "ປິດ", - "SSE.Controllers.Main.textContactUs": "ຕິດຕໍ່ຜູ້ຂາຍ", - "SSE.Controllers.Main.textCustomLoader": "ກະລຸນາຮັບຊາບວ່າ ອີງຕາມຂໍ້ ກຳນົດຂອງໃບອະນຸຍາດ ທ່ານບໍ່ມີສິດທີ່ຈະປ່ຽນແປງ ການບັນຈຸ.
    ກະລຸນາຕິດຕໍ່ຝ່າຍຂາຍຂອງພວກເຮົາເພື່ອຂໍໃບສະເໜີ.", - "SSE.Controllers.Main.textDone": "ສໍາເລັດ", - "SSE.Controllers.Main.textGuest": " ແຂກ", - "SSE.Controllers.Main.textHasMacros": "ເອກະສານບັນຈຸ ມາກໂຄ
    ແບບອັດຕະໂນມັດ, ທ່ານຍັງຕ້ອງການດໍາເນີນງານ ມາກໂຄ ບໍ ", - "SSE.Controllers.Main.textLoadingDocument": "ກຳລັງໂຫຼດ spreadsheet", - "SSE.Controllers.Main.textNo": "ບໍ່", - "SSE.Controllers.Main.textNoLicenseTitle": "ຈໍານວນໃບອະນຸຍາດໄດ້ໃຊ້ຄົບແລ້ວ", - "SSE.Controllers.Main.textOK": "ຕົກລົງ", - "SSE.Controllers.Main.textPaidFeature": "ຄວາມສາມາດ ທີຕ້ອງຊື້ເພີ່ມ", - "SSE.Controllers.Main.textPassword": "ລະຫັດ", - "SSE.Controllers.Main.textPreloader": "ກໍາລັງໂລດ", - "SSE.Controllers.Main.textRemember": "ຈື່ທາງເລືອກຂອງຂ້ອຍ", - "SSE.Controllers.Main.textShape": "ຮູບຮ່າງ", - "SSE.Controllers.Main.textStrict": "ໂໝດເຂັ້ມ", - "SSE.Controllers.Main.textTryUndoRedo": "ໜ້າທີ່ Undo / Redo ຖືກປິດໃຊ້ງານ ສຳ ລັບ ໂໝດ ການແກ້ໄຂແບບລວດໄວ -
    ກົດປຸ່ມ 'Strict mode' ເພື່ອປ່ຽນໄປໃຊ້ໂຫມດແບບເຂັ້ມເພື່ອແກ້ໄຂເອກະສານໂດຍບໍ່ຕ້ອງໃຊ້ຜູ້ອື່ນແຊກແຊງແລະສົ່ງການປ່ຽນແປງຂອງທ່ານພຽງແຕ່ຫຼັງຈາກທີ່ທ່ານບັນທຶກ ພວກເຂົາ. ທ່ານສາມາດປ່ຽນລະຫວ່າງຮູບແບບການແກ້ໄຂຮ່ວມກັນໂດຍໃຊ້ບັນນາທິການຕັ້ງຄ່າຂັ້ນສູງ", - "SSE.Controllers.Main.textUsername": "ຊື່ຜູ້ໃຊ້", - "SSE.Controllers.Main.textYes": "ແມ່ນແລ້ວ", - "SSE.Controllers.Main.titleLicenseExp": "ໃບອະນຸຍາດໝົດອາຍຸ", - "SSE.Controllers.Main.titleServerVersion": "ອັບເດດການແກ້ໄຂ", - "SSE.Controllers.Main.titleUpdateVersion": "ປ່ຽນແປງລຸ້ນ, ສະບັບປ່ຽນແປງ", - "SSE.Controllers.Main.txtAccent": "ສຳນຽງ", - "SSE.Controllers.Main.txtArt": "ທ່ານພິມຢູ່ນີ້", - "SSE.Controllers.Main.txtBasicShapes": "ຮູບຮ່າງພື້ນຖານ", - "SSE.Controllers.Main.txtButtons": "ປຸ່ມ", - "SSE.Controllers.Main.txtCallouts": "ຄຳບັນຍາຍພາບ", - "SSE.Controllers.Main.txtCharts": "ແຜ່ນຮູບວາດ", - "SSE.Controllers.Main.txtDelimiter": "ຂອບເຂດຈຳກັດ", - "SSE.Controllers.Main.txtDiagramTitle": "ໃສ່ຊື່ແຜນຮູບວາດ", - "SSE.Controllers.Main.txtEditingMode": "ຕັ້ງຄ່າ ຮູບແບບການແກ້ໄຂ", - "SSE.Controllers.Main.txtEncoding": "ການເຂົ້າລະຫັດ", - "SSE.Controllers.Main.txtErrorLoadHistory": "ການໂຫລດປະຫວັດລົ້ມເຫລວ", - "SSE.Controllers.Main.txtFiguredArrows": "ເຄື່ອງໝາຍລູກສອນ", - "SSE.Controllers.Main.txtLines": "ແຖວ, ເສັ້ນ", - "SSE.Controllers.Main.txtMath": "ຈັບຄູ່ກັນ", - "SSE.Controllers.Main.txtProtected": "ຖ້າເຈົ້ານໍາໃຊ້ລະຫັດເພື່ອເປີດເອກະສານ, ລະຫັດປັດຈຸບັນຈະຖືກແກ້ໄຂ", - "SSE.Controllers.Main.txtRectangles": "ສີ່ຫລ່ຽມ", - "SSE.Controllers.Main.txtSeries": "ຊຸດ", - "SSE.Controllers.Main.txtSpace": "ພື້ນທີ່", - "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.txtXAxis": "ແກນ X", - "SSE.Controllers.Main.txtYAxis": "ແກນ Y, ແກນລວງຕັ້ງ ", - "SSE.Controllers.Main.unknownErrorText": "ມີຂໍ້ຜິດພາດທີ່ບໍ່ຮູ້ສາເຫດ", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "ບຣາວເຊີຂອງທ່ານບໍ່ສາມານຳໃຊ້ໄດ້", - "SSE.Controllers.Main.uploadImageExtMessage": "ບໍ່ຮູ້ສາເຫດຂໍ້ຜິພາດຮູບແບບຂອງຮູບ", - "SSE.Controllers.Main.uploadImageFileCountMessage": "ບໍ່ມີຮູບພາບອັບໂລດ", - "SSE.Controllers.Main.uploadImageSizeMessage": "ຈຳກັດຂະໜາດຮູບພາບສູງສຸດ", - "SSE.Controllers.Main.uploadImageTextText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "SSE.Controllers.Main.uploadImageTitleText": "ກໍາລັງອັບໂຫລດຮູບພາບ", - "SSE.Controllers.Main.waitText": "ກະລຸນາລໍຖ້າ...", - "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. ເອກະສານນີ້ສາມາດເປີດເບິ່ງເທົ່ານັ້ນ.
    ຕິດຕໍ່ ທີມຂາຍ% 1 ສຳ ລັບຂໍ້ ກຳນົດການຍົກລະດັບສິດ", - "SSE.Controllers.Main.warnNoLicenseUsers": "ຈໍານວນ ການເຊື່ອມຕໍ່ພ້ອມກັນກັບບັນນາທິການ ແມ່ນເກີນກໍານົດ % 1. ຕິດຕໍ່ ທີມຂາຍ% 1 ສຳ ລັບຂໍ້ ກຳນົດການຍົກລະດັບສິດ", - "SSE.Controllers.Main.warnProcessRightsChange": "ທ່ານໄດ້ຖືກປະຕິເສດສິດໃນການແກ້ໄຂເອກະສານດັ່ງກ່າວ.", - "SSE.Controllers.Search.textNoTextFound": "ບໍ່ພົບຂໍ້ຄວາມ", - "SSE.Controllers.Search.textReplaceAll": "ປ່ຽນແທນທັງໝົດ", - "SSE.Controllers.Settings.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "SSE.Controllers.Settings.txtDe": "ພາສາເຢຍລະມັນ", - "SSE.Controllers.Settings.txtEn": "ອັງກິດ", - "SSE.Controllers.Settings.txtEs": "ພາສາສະເປນ", - "SSE.Controllers.Settings.txtFr": "ຝຣັ່ງ", - "SSE.Controllers.Settings.txtIt": "ອິຕາລີ", - "SSE.Controllers.Settings.txtPl": "ໂປແລນ", - "SSE.Controllers.Settings.txtRu": "ພາສາຣັດເຊຍ", - "SSE.Controllers.Settings.warnDownloadAs": "ຖ້າທ່ານສືບຕໍ່ບັນທຶກໃນຮູບແບບນີ້ທຸກລັກສະນະ ຍົກເວັ້ນຂໍ້ຄວາມຈະຫາຍໄປ.
    ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການດໍາເນີນຕໍ່?", - "SSE.Controllers.Statusbar.cancelButtonText": "ຍົກເລີກ", - "SSE.Controllers.Statusbar.errNameExists": "ແຜ່ນວຽກທີ່ມີຊື່ຢູ່ແລ້ວ", - "SSE.Controllers.Statusbar.errNameWrongChar": "ບໍ່ສາມາດດັດແກ້ຊື່ເອກະສານໄດ້", - "SSE.Controllers.Statusbar.errNotEmpty": "ຊື່ເເຜ່ນ ບໍ່ໃຫ້ປະວ່າງ", - "SSE.Controllers.Statusbar.errorLastSheet": "ສະໝຸດເຮັດວຽກຕ້ອງມີຢ່າງໜ້ອຍແຜ່ນທີ່ເບິ່ງເຫັນ.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "ບໍ່ສາມາດລຶບແຜ່ນວຽກໄດ້", - "SSE.Controllers.Statusbar.menuDelete": "ລົບ", - "SSE.Controllers.Statusbar.menuDuplicate": "ກ໋ອບປີ້, ສຳເນົາ", - "SSE.Controllers.Statusbar.menuHide": "ເຊື່ອງໄວ້", - "SSE.Controllers.Statusbar.menuMore": "ຫຼາຍກວ່າ", - "SSE.Controllers.Statusbar.menuRename": "ປ່ຽນຊື່", - "SSE.Controllers.Statusbar.menuUnhide": "ເປີດເຜີຍ", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "ແຈ້ງເຕືອນ", - "SSE.Controllers.Statusbar.strRenameSheet": "ປ້່ຽນຊື່ແຜ່ນຫຼັກ", - "SSE.Controllers.Statusbar.strSheet": "ແຜ່ນ, ໜ້າເຈ້ຍ", - "SSE.Controllers.Statusbar.strSheetName": "ຊື່ແຜ່ນເຈ້ຍ", - "SSE.Controllers.Statusbar.textExternalLink": "ລິງພາຍນອກ", - "SSE.Controllers.Statusbar.warnDeleteSheet": "ແຜ່ນທີ່ເລືອກໄວ້ອາດຈະມີຂໍ້ມູນ. ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການ ດຳ ເນີນການ?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "ທ່ານມີການປ່ຽນແປງທີ່ບໍ່ໄດ້ບັນທຶກໃນເອກະສານນີ້. ກົດ \"ຢູ່ໃນໜ້ານີ້' ເພື່ອລໍຖ້າການບັນທືກອັດຕະໂນມັດຂອງເອກະສານ. ກົດ 'ອອກຈາກ ໜ້າ ນີ້' ເພື່ອຍົກເລີກການປ່ຽນແປງທີ່ຍັງບໍ່ໄດ້ບັນທຶກ.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "ເຈົ້າອອກຈາກລະບົບ", - "SSE.Controllers.Toolbar.leaveButtonText": "ອອກຈາກໜ້ານີ້", - "SSE.Controllers.Toolbar.stayButtonText": "ຢູ່ໃນໜ້ານີ້", - "SSE.Views.AddFunction.sCatDateAndTime": "ວັນທີ ແລະ ເວລາ", - "SSE.Views.AddFunction.sCatEngineering": "ວິສະວະກຳ", - "SSE.Views.AddFunction.sCatFinancial": "ການເງິນ", - "SSE.Views.AddFunction.sCatInformation": "ຂໍ້ມູນ", - "SSE.Views.AddFunction.sCatLogical": "ມີເຫດຜົນ", - "SSE.Views.AddFunction.sCatLookupAndReference": "ຄົ້ນຫາ ແລະ ອ້າງອີງ", - "SSE.Views.AddFunction.sCatMathematic": "ແບບຈັບຄູ່ ແລະ ແບບບັງຄັບ", - "SSE.Views.AddFunction.sCatStatistical": "ສະຖິຕິ", - "SSE.Views.AddFunction.sCatTextAndData": "ເນື້ອຫາ ແລະ ຂໍ້ມູນ", - "SSE.Views.AddFunction.textBack": "ກັບຄືນ", - "SSE.Views.AddFunction.textGroups": "ໝວດ, ປະເພດ", - "SSE.Views.AddLink.textAddLink": "ເພີ່ມລິ້ງ", - "SSE.Views.AddLink.textAddress": "ທີ່ຢູ່", - "SSE.Views.AddLink.textDisplay": "ສະແດງຜົນ", - "SSE.Views.AddLink.textExternalLink": "ລິງພາຍນອກ", - "SSE.Views.AddLink.textInsert": "ເພີ່ມ", - "SSE.Views.AddLink.textInternalLink": "ຂໍ້ມູນພາຍໃນ", - "SSE.Views.AddLink.textLink": "ລີ້ງ", - "SSE.Views.AddLink.textLinkType": "ປະເພດ Link", - "SSE.Views.AddLink.textRange": "ໄລຍະ", - "SSE.Views.AddLink.textRequired": "ຕ້ອງການ", - "SSE.Views.AddLink.textSelectedRange": "ຊ່ວງ, ໄລຍະ ທີ່ເລືອກ", - "SSE.Views.AddLink.textSheet": "ແຜ່ນ, ໜ້າເຈ້ຍ", - "SSE.Views.AddLink.textTip": "ເຄັດລັບໃນໜ້າຈໍ", - "SSE.Views.AddOther.textAddComment": "ເພີ່ມຄຳເຫັນ", - "SSE.Views.AddOther.textAddress": "ທີ່ຢູ່", - "SSE.Views.AddOther.textBack": "ກັບຄືນ", - "SSE.Views.AddOther.textComment": "ຄໍາເຫັນ", - "SSE.Views.AddOther.textDone": "ສໍາເລັດ", - "SSE.Views.AddOther.textFilter": "ກັ່ນຕອງ", - "SSE.Views.AddOther.textFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", - "SSE.Views.AddOther.textFromURL": "ຮູບພາບຈາກ URL", - "SSE.Views.AddOther.textImageURL": "URL ຮູບພາບ", - "SSE.Views.AddOther.textInsert": "ເພີ່ມ", - "SSE.Views.AddOther.textInsertImage": "ເພີ່ມຮູບພາບ", - "SSE.Views.AddOther.textLink": "ລີ້ງ", - "SSE.Views.AddOther.textLinkSettings": "ການຕັ້ງຄ່າ Link", - "SSE.Views.AddOther.textSort": "ລຽງລຳດັບ ແລະ ກອງ", - "SSE.Views.EditCell.textAccounting": "ການບັນຊີ", - "SSE.Views.EditCell.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "SSE.Views.EditCell.textAlignBottom": "ຈັດຕ່ຳແໜ່ງທາງດ້ານລຸ່ມ", - "SSE.Views.EditCell.textAlignCenter": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "SSE.Views.EditCell.textAlignLeft": "ຈັດຕຳແໜ່ງຕິດຊ້າຍ", - "SSE.Views.EditCell.textAlignMiddle": "ຈັດຕຳແໜ່ງເຄິ່ງກາງ", - "SSE.Views.EditCell.textAlignRight": "ຈັດຕຳແໜ່ງຕິດຂວາ", - "SSE.Views.EditCell.textAlignTop": "ຈັດຕຳແໜ່ງດ້ານເທິງ", - "SSE.Views.EditCell.textAllBorders": "ຂອບທັງໝົດ", - "SSE.Views.EditCell.textAngleClockwise": "ມຸມຕາມເຂັມໂມງ", - "SSE.Views.EditCell.textAngleCounterclockwise": "ມຸມທວນເຂັມໂມງ", - "SSE.Views.EditCell.textBack": "ກັບຄືນ", - "SSE.Views.EditCell.textBorderStyle": "ຮູບແບບເສັ້ນຂອບ", - "SSE.Views.EditCell.textBottomBorder": "ເສັ້ນຂອບດ້ານລູ່ມ", - "SSE.Views.EditCell.textCellStyle": "ລັກສະນະ ແຊວ", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "ສີ", - "SSE.Views.EditCell.textCurrency": "ສະກຸນເງິນ", - "SSE.Views.EditCell.textCustomColor": "ປະເພດ ຂອງສີ", - "SSE.Views.EditCell.textDate": "ວັນທີ", - "SSE.Views.EditCell.textDiagDownBorder": "ເສັ້ນຂອບຂວາງດ້ານລຸ່ມ", - "SSE.Views.EditCell.textDiagUpBorder": "ເສັ້ນຂອບຂວາງດ້ານເທຶງ", - "SSE.Views.EditCell.textDollar": "ດອນລາ", - "SSE.Views.EditCell.textEuro": "ສະກຸນເງິນຢູໂຣ", - "SSE.Views.EditCell.textFillColor": "ຕື່ມສີ", - "SSE.Views.EditCell.textFonts": "ຕົວອັກສອນ", - "SSE.Views.EditCell.textFormat": "ປະເພດ", - "SSE.Views.EditCell.textGeneral": "ທົ່ວໄປ", - "SSE.Views.EditCell.textHorizontalText": "ເນື້ອໃນລວງນອນ, ລວງຂວາງ", - "SSE.Views.EditCell.textInBorders": "ເພິ່ມຂອບ", - "SSE.Views.EditCell.textInHorBorder": "ພາຍໃນເສັ້ນຂອບລວງນອນ", - "SSE.Views.EditCell.textInteger": "ຕົວເລກເຕັມ", - "SSE.Views.EditCell.textInVertBorder": "ພາຍໃນເສັ້ນຂອບລວງຕັ້ງ", - "SSE.Views.EditCell.textJustified": "ຖືກຕ້ອງ", - "SSE.Views.EditCell.textLeftBorder": "ເສັ້ນຂອບດ້ານຊ້າຍ ", - "SSE.Views.EditCell.textMedium": "ເຄີ່ງກາງ", - "SSE.Views.EditCell.textNoBorder": "ໍບໍ່ມີຂອບ", - "SSE.Views.EditCell.textNumber": "ຕົວເລກ", - "SSE.Views.EditCell.textPercentage": "ເປີເຊັນ", - "SSE.Views.EditCell.textPound": "ຕີ", - "SSE.Views.EditCell.textRightBorder": "ຂອບດ້ານຂວາ", - "SSE.Views.EditCell.textRotateTextDown": "ປິ່ນຫົວຂໍ້ຄວາມລົງ", - "SSE.Views.EditCell.textRotateTextUp": "ປິ່ນຫົວຂໍ້ຄວາມຂື້ນ", - "SSE.Views.EditCell.textRouble": "ເງິນລູເບີນ ຂອງລັດເຊຍ", - "SSE.Views.EditCell.textScientific": "ວິທະຍາສາດ", - "SSE.Views.EditCell.textSize": "ຂະໜາດ", - "SSE.Views.EditCell.textText": "ເນື້ອຫາ", - "SSE.Views.EditCell.textTextColor": "ສີເນື້ອຫາ", - "SSE.Views.EditCell.textTextFormat": "ຮູບແບບເນື້ອຫາ", - "SSE.Views.EditCell.textTextOrientation": "ທິດທາງຂໍ້ຄວາມ", - "SSE.Views.EditCell.textThick": "ໜາ, ຄວາມໜາ", - "SSE.Views.EditCell.textThin": "ບາງ, ຄວາມບາງ", - "SSE.Views.EditCell.textTime": "ເວລາ", - "SSE.Views.EditCell.textTopBorder": "ຂອບເບື້ອງເທິງ", - "SSE.Views.EditCell.textVerticalText": "ຂໍ້ຄວາມ,ເນື້ອຫາ ລວງຕັ້ງ", - "SSE.Views.EditCell.textWrapText": "ຕັດຂໍ້ຄວາມ", - "SSE.Views.EditCell.textYen": "ເງິນເຢັນ", - "SSE.Views.EditChart.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "SSE.Views.EditChart.textAuto": "ອັດຕະໂນມັດ", - "SSE.Views.EditChart.textAxisCrosses": "ແກນໄຂວກັນ, ແກນຕັດກັນ", - "SSE.Views.EditChart.textAxisOptions": "ຕົວເລືອກແກນ", - "SSE.Views.EditChart.textAxisPosition": "ຕົວເລືອກແກນ", - "SSE.Views.EditChart.textAxisTitle": "ຊື່ຂອງແກນ, ຫົວຂໍ້ຂອງແກນ", - "SSE.Views.EditChart.textBack": "ກັບຄືນ", - "SSE.Views.EditChart.textBackward": "ຢ້າຍໄປທາງຫຼັງ", - "SSE.Views.EditChart.textBorder": "ຂອບເຂດ", - "SSE.Views.EditChart.textBottom": "ດ້ານລຸ່ມ", - "SSE.Views.EditChart.textChart": "ແຜນຮູບວາດ", - "SSE.Views.EditChart.textChartTitle": "ໃສ່ຊື່ແຜນຮູບວາດ", - "SSE.Views.EditChart.textColor": "ສີ", - "SSE.Views.EditChart.textCrossesValue": "ຂ້າມມູນຄ່າ", - "SSE.Views.EditChart.textCustomColor": "ປະເພດ ຂອງສີ", - "SSE.Views.EditChart.textDataLabels": "ປ້າຍຊື່ຂໍ້ມູນ", - "SSE.Views.EditChart.textDesign": "ກຳນົດ, ອອກແບບ", - "SSE.Views.EditChart.textDisplayUnits": "ໜ່ວຍສະແດງຜົນ", - "SSE.Views.EditChart.textFill": "ຕື່ມ", - "SSE.Views.EditChart.textForward": "ຢ້າຍໄປດ້ານໜ້າ", - "SSE.Views.EditChart.textGridlines": "ເສັ້ນຕາຕະລາງ", - "SSE.Views.EditChart.textHorAxis": "ແກນລວງນອນ, ລວງຂວາງ", - "SSE.Views.EditChart.textHorizontal": "ລວງນອນ, ລວງຂວາງ", - "SSE.Views.EditChart.textLabelOptions": "ຕົວເລືອກປ້າຍກຳກັບ", - "SSE.Views.EditChart.textLabelPos": " ປ້າຍກຳກັບຕຳ ແໜ່ງ", - "SSE.Views.EditChart.textLayout": "ແຜນຜັງ", - "SSE.Views.EditChart.textLeft": "ຊ້າຍ", - "SSE.Views.EditChart.textLeftOverlay": "ຊ້ອນທັບດ້ານຊ້າຍ", - "SSE.Views.EditChart.textLegend": "ຕຳນານ, ນິຍາຍ", - "SSE.Views.EditChart.textMajor": "ສຳຄັນ, ຫຼັກ, ", - "SSE.Views.EditChart.textMajorMinor": "ສຳຄັນແລະບໍ່ສຳຄັນ", - "SSE.Views.EditChart.textMajorType": "ປະເພດສຳຄັນ", - "SSE.Views.EditChart.textMaxValue": "ຄ່າການສູງສຸດ", - "SSE.Views.EditChart.textMinor": "ນ້ອຍ", - "SSE.Views.EditChart.textMinorType": "ປະເພດນ້ອຍ", - "SSE.Views.EditChart.textMinValue": "ຄ່າຕ່ຳສຸດ", - "SSE.Views.EditChart.textNone": "ບໍ່ມີ", - "SSE.Views.EditChart.textNoOverlay": "ບໍ່ມີການຊ້ອນກັນ", - "SSE.Views.EditChart.textOverlay": "ການຊ້ອນກັນ", - "SSE.Views.EditChart.textRemoveChart": "ລົບແຜນວາດ", - "SSE.Views.EditChart.textReorder": "ຈັດລຽງລໍາດັບ", - "SSE.Views.EditChart.textRight": "ຂວາ", - "SSE.Views.EditChart.textRightOverlay": "ພາບຊ້ອນທັບດ້ານຂວາ", - "SSE.Views.EditChart.textRotated": "ໜຸນ, ປ່ຽນ", - "SSE.Views.EditChart.textSize": "ຂະໜາດ", - "SSE.Views.EditChart.textStyle": "ປະເພດ ", - "SSE.Views.EditChart.textTickOptions": "ຕົວເລືອກຄວາມໜາ", - "SSE.Views.EditChart.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "SSE.Views.EditChart.textToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", - "SSE.Views.EditChart.textTop": "ເບື້ອງເທີງ", - "SSE.Views.EditChart.textType": "ພິມ, ຕີພິມ", - "SSE.Views.EditChart.textValReverseOrder": "ຄ່າໃນລຳດັບຢ້ອນກັບ ", - "SSE.Views.EditChart.textVerAxis": "ແກນລວງຕັ້ງ", - "SSE.Views.EditChart.textVertical": "ລວງຕັ້ງ", - "SSE.Views.EditHyperlink.textBack": "ກັບຄືນ", - "SSE.Views.EditHyperlink.textDisplay": "ສະແດງຜົນ", - "SSE.Views.EditHyperlink.textEditLink": "ແກ້ໄຂ ລີ້ງ", - "SSE.Views.EditHyperlink.textExternalLink": "ລິງພາຍນອກ", - "SSE.Views.EditHyperlink.textInternalLink": "ຂໍ້ມູນພາຍໃນ", - "SSE.Views.EditHyperlink.textLink": "ລີ້ງ", - "SSE.Views.EditHyperlink.textLinkType": "ປະເພດ Link", - "SSE.Views.EditHyperlink.textRange": "ໄລຍະ,ຊ່ວງ", - "SSE.Views.EditHyperlink.textRemoveLink": "ລົບລີ້ງ", - "SSE.Views.EditHyperlink.textScreenTip": "ເຄັດລັບໃຫ້ໜ້າຈໍ", - "SSE.Views.EditHyperlink.textSheet": "ແຜ່ນ, ໜ້າເຈ້ຍ", - "SSE.Views.EditImage.textAddress": "ທີ່ຢູ່", - "SSE.Views.EditImage.textBack": "ກັບຄືນ", - "SSE.Views.EditImage.textBackward": "ຢ້າຍໄປທາງຫຼັງ", - "SSE.Views.EditImage.textDefault": "ຂະໜາດແທ້ຈິງ", - "SSE.Views.EditImage.textForward": "ຢ້າຍໄປດ້ານໜ້າ", - "SSE.Views.EditImage.textFromLibrary": "ຮູບພາບຈາກຫ້ອງສະໝຸດ", - "SSE.Views.EditImage.textFromURL": "ຮູບພາບຈາກ URL", - "SSE.Views.EditImage.textImageURL": "URL ຮູບພາບ", - "SSE.Views.EditImage.textLinkSettings": "ການຕັ້ງຄ່າ Link", - "SSE.Views.EditImage.textRemove": "ລົບຮູບ", - "SSE.Views.EditImage.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "SSE.Views.EditImage.textReplace": "ປ່ຽນແທນ", - "SSE.Views.EditImage.textReplaceImg": "ປ່ຽນແທນຮູບ", - "SSE.Views.EditImage.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "SSE.Views.EditImage.textToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", - "SSE.Views.EditShape.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "SSE.Views.EditShape.textBack": "ກັບຄືນ", - "SSE.Views.EditShape.textBackward": "ຢ້າຍໄປທາງຫຼັງ", - "SSE.Views.EditShape.textBorder": "ຂອບເຂດ", - "SSE.Views.EditShape.textColor": "ສີ", - "SSE.Views.EditShape.textCustomColor": "ປະເພດ ຂອງສີ", - "SSE.Views.EditShape.textEffects": "ຜົນ", - "SSE.Views.EditShape.textFill": "ຕື່ມ", - "SSE.Views.EditShape.textForward": "ຢ້າຍໄປດ້ານໜ້າ", - "SSE.Views.EditShape.textOpacity": "ຄວາມເຂັ້ມ", - "SSE.Views.EditShape.textRemoveShape": "ລົບຮ່າງ", - "SSE.Views.EditShape.textReorder": "ຈັດລຽງລໍາດັບຄືນ", - "SSE.Views.EditShape.textReplace": "ປ່ຽນແທນ", - "SSE.Views.EditShape.textSize": "ຂະໜາດ", - "SSE.Views.EditShape.textStyle": "ປະເພດ ", - "SSE.Views.EditShape.textToBackground": "ສົ່ງໄປເປັນພື້ນຫຼັງ", - "SSE.Views.EditShape.textToForeground": "ເອົາໄປໄວ້ທາງໜ້າ", - "SSE.Views.EditText.textAddCustomColor": "ເພີ່ມສີທີ່ກຳນົດເອງ", - "SSE.Views.EditText.textBack": "ກັບຄືນ", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "ປະເພດ ຂອງສີ", - "SSE.Views.EditText.textFillColor": "ຕື່ມສີ", - "SSE.Views.EditText.textFonts": "ຕົວອັກສອນ", - "SSE.Views.EditText.textSize": "ຂະໜາດ", - "SSE.Views.EditText.textTextColor": "ສີເນື້ອຫາ", - "SSE.Views.FilterOptions.textClearFilter": "ລົບລ້າງການລຽງລຳດັບ", - "SSE.Views.FilterOptions.textDeleteFilter": "ລົບຕົວຕອງ", - "SSE.Views.FilterOptions.textFilter": "ທາງເລືອກການກັ່ນຕອງ", - "SSE.Views.Search.textByColumns": "ໂດຍຖັນ", - "SSE.Views.Search.textByRows": "ໂດຍ ແຖວ", - "SSE.Views.Search.textDone": "ສໍາເລັດ", - "SSE.Views.Search.textFind": "ຄົ້ນຫາ", - "SSE.Views.Search.textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", - "SSE.Views.Search.textFormulas": "ຕຳລາ, ສູດ", - "SSE.Views.Search.textHighlightRes": "ໄຮໄລ້ ຜົນຮັບ", - "SSE.Views.Search.textLookIn": "ເບິ່ງເຂົ້າໄປທາງໃນ", - "SSE.Views.Search.textMatchCase": "ກໍລະນີຈັບຄູ່ກັນ", - "SSE.Views.Search.textMatchCell": "ແຊວຈັບຄູ່ກັນ", - "SSE.Views.Search.textReplace": "ປ່ຽນແທນ", - "SSE.Views.Search.textSearch": "ຊອກຫາ", - "SSE.Views.Search.textSearchBy": "ຊອກຫາ", - "SSE.Views.Search.textSearchIn": "ຊອກຫາໃນ", - "SSE.Views.Search.textSheet": "ແຜ່ນ, ໜ້າເຈ້ຍ", - "SSE.Views.Search.textValues": "ການຕີລາຄາ, ປະເມີນ", - "SSE.Views.Search.textWorkbook": "ປື້ມເຮັດວຽກ", - "SSE.Views.Settings.textAbout": "ກ່ຽວກັບ, ປະມານ", - "SSE.Views.Settings.textAddress": "ທີ່ຢູ່", - "SSE.Views.Settings.textApplication": "ແອັບ", - "SSE.Views.Settings.textApplicationSettings": "ການຕັ້ງຄ່າແອັບ", - "SSE.Views.Settings.textAuthor": "ຜູ້ຂຽນ", - "SSE.Views.Settings.textBack": "ກັບຄືນ", - "SSE.Views.Settings.textBottom": "ດ້ານລຸ່ມ", - "SSE.Views.Settings.textCentimeter": "ເຊັນຕິເມັດ", - "SSE.Views.Settings.textCollaboration": "ຮ່ວມກັນ", - "SSE.Views.Settings.textColorSchemes": "ໂທນສີ", - "SSE.Views.Settings.textComment": "ຄໍາເຫັນ", - "SSE.Views.Settings.textCommentingDisplay": "ການສະແດງຄວາມຄິດເຫັນ", - "SSE.Views.Settings.textCreated": "ສ້າງ", - "SSE.Views.Settings.textCreateDate": "ວັນທີ ທີສ້າງ", - "SSE.Views.Settings.textCustom": "ປະເພດ", - "SSE.Views.Settings.textCustomSize": "ກຳນົດຂະໜາດເອງ", - "SSE.Views.Settings.textDisableAll": "ປິດທັງໝົດ", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "ປິດທຸກ ມາກໂຄ ດ້ວຍ ການແຈ້ງເຕືອນ", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "ປິດທຸກ ມາກໂຄ ໂດຍບໍ່ແຈ້ງເຕືອນ", - "SSE.Views.Settings.textDisplayComments": "ຄໍາເຫັນ", - "SSE.Views.Settings.textDisplayResolvedComments": "ແກ້ໄຂຄໍາເຫັນ", - "SSE.Views.Settings.textDocInfo": "ຂໍ້ມູນກ່ຽວກັບຕາຕະລາງ", - "SSE.Views.Settings.textDocTitle": "ຫົວຂໍ້ຕາຕະລາງ", - "SSE.Views.Settings.textDone": "ສໍາເລັດ", - "SSE.Views.Settings.textDownload": "ດາວໂຫຼດ", - "SSE.Views.Settings.textDownloadAs": "ດາວໂຫຼດໂດຍ...", - "SSE.Views.Settings.textEditDoc": "ແກ້ໄຂເອກະສານ", - "SSE.Views.Settings.textEmail": "ອີເມລ", - "SSE.Views.Settings.textEnableAll": "ເປີດທັງໝົດ", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "ເປີດທຸກມາກໂຄໂດຍບໍ່ແຈ້ງເຕືອນ", - "SSE.Views.Settings.textExample": "ຕົວຢ່າງ", - "SSE.Views.Settings.textFind": "ຄົ້ນຫາ", - "SSE.Views.Settings.textFindAndReplace": "ຄົ້ນຫາແລະປ່ຽນແທນ", - "SSE.Views.Settings.textFormat": "ປະເພດ", - "SSE.Views.Settings.textFormulaLanguage": "ຕຳລາພາສາ", - "SSE.Views.Settings.textHelp": "ຊວ່ຍ", - "SSE.Views.Settings.textHideGridlines": "ເຊື່ອງຕາຕະລາງໄວ້", - "SSE.Views.Settings.textHideHeadings": "ເຊື່ອງຫົວຂໍ້ໄວ້", - "SSE.Views.Settings.textInch": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", - "SSE.Views.Settings.textLandscape": "ລວງນອນ", - "SSE.Views.Settings.textLastModified": "ການແກ້ໄຂຄັ້ງລ້າສຸດ", - "SSE.Views.Settings.textLastModifiedBy": "ແກ້ໄຂຄັ້ງລ້າສຸດໂດຍ", - "SSE.Views.Settings.textLeft": "ຊ້າຍ", - "SSE.Views.Settings.textLoading": "ກໍາລັງໂລດ", - "SSE.Views.Settings.textLocation": "ສະຖານທີ", - "SSE.Views.Settings.textMacrosSettings": "ການຕັ້ງຄ່າ Macros", - "SSE.Views.Settings.textMargins": "ຂອບ", - "SSE.Views.Settings.textOrientation": "ການຈັດວາງ", - "SSE.Views.Settings.textOwner": "ເຈົ້າຂອງ", - "SSE.Views.Settings.textPoint": "ຈຸດ", - "SSE.Views.Settings.textPortrait": "ລວງຕັ້ງ", - "SSE.Views.Settings.textPoweredBy": "ສ້າງໂດຍ", - "SSE.Views.Settings.textPrint": "ພິມ", - "SSE.Views.Settings.textR1C1Style": "ຮູບແບບການອ້າງອີງ R1C1", - "SSE.Views.Settings.textRegionalSettings": "ການຕັ້ງຄ່າຂອບເຂດ", - "SSE.Views.Settings.textRight": "ຂວາ", - "SSE.Views.Settings.textSettings": "ຕັ້ງຄ່າ", - "SSE.Views.Settings.textShowNotification": "ສະແດງການແຈ້ງເຕືອນ", - "SSE.Views.Settings.textSpreadsheetFormats": "ຮູບແບບຕາຕະລາງ", - "SSE.Views.Settings.textSpreadsheetSettings": "ການຕັ້ງຄ່າຕາຕະລາງ", - "SSE.Views.Settings.textSubject": "ເລື່ອງ", - "SSE.Views.Settings.textTel": "ໂທ", - "SSE.Views.Settings.textTitle": "ຫົວຂໍ້", - "SSE.Views.Settings.textTop": "ເບື້ອງເທີງ", - "SSE.Views.Settings.textUnitOfMeasurement": "ຫົວຫນ່ວຍວັດແທກ (ນີ້ວ)", - "SSE.Views.Settings.textUploaded": "ອັບໂຫລດ", - "SSE.Views.Settings.textVersion": "ລຸ້ນ", - "SSE.Views.Settings.unknownText": "ບໍ່ຮູ້", - "SSE.Views.Toolbar.textBack": "ກັບຄືນ" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index d7ddc5c83..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -1,494 +1,637 @@ { - "Common.UI.ThemeColorPalette.textStandartColors": "Standarta krāsas", - "Common.UI.ThemeColorPalette.textThemeColors": "Tēmas krāsas", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "SSE.Controllers.AddChart.txtDiagramTitle": "Diagrammas nosaukums", - "SSE.Controllers.AddChart.txtSeries": "Rinda", - "SSE.Controllers.AddChart.txtXAxis": "X ass", - "SSE.Controllers.AddChart.txtYAxis": "Y ass", - "SSE.Controllers.AddContainer.textChart": "Diagramma", - "SSE.Controllers.AddContainer.textFormula": "Funkcija", - "SSE.Controllers.AddContainer.textImage": "Attēls", - "SSE.Controllers.AddContainer.textOther": "Citi", - "SSE.Controllers.AddContainer.textShape": "Forma", - "SSE.Controllers.AddLink.textInvalidRange": "KĻŪDA! Nederīgs šūnu diapazons", - "SSE.Controllers.AddLink.txtNotUrl": "Šim laukam ir jābūt URL formātā 'http://www.example.com'", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Ir jānorāda attēla URL.", - "SSE.Controllers.AddOther.txtNotUrl": "Šim laukam ir jābūt URL formātā 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.menuAddLink": "Pievienot saiti", - "SSE.Controllers.DocumentHolder.menuCell": "Šūna", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopēt", - "SSE.Controllers.DocumentHolder.menuCut": "Izgriezt", - "SSE.Controllers.DocumentHolder.menuDelete": "Dzēst", - "SSE.Controllers.DocumentHolder.menuEdit": "Rediģēt", - "SSE.Controllers.DocumentHolder.menuHide": "Paslēpt", - "SSE.Controllers.DocumentHolder.menuMerge": "Sapludināt", - "SSE.Controllers.DocumentHolder.menuMore": "Vairāk", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Atvērt saiti", - "SSE.Controllers.DocumentHolder.menuPaste": "Ielīmēt", - "SSE.Controllers.DocumentHolder.menuShow": "Rādīt", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Atvienot", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Attīt", - "SSE.Controllers.DocumentHolder.menuWrap": "Aplauzt", - "SSE.Controllers.DocumentHolder.sheetCancel": "Atcelt", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Darbība var iznīcināt datus izvēlētajās šūnās.
    Turpināt?", - "SSE.Controllers.EditCell.textAuto": "Automātiski", - "SSE.Controllers.EditCell.textFonts": "Fonti", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "KĻŪDA! Maksimālais datu rindu skaits diagrammā ir 255.", - "SSE.Controllers.EditChart.errorStockChart": "Nederīga rindu kārtība. Lai izveidotu akciju diagrammu novietojiet datus lapā šādā secībā:
    Sākumcena, maksimālā cena, minimālā cena, slēgšanas cena.", - "SSE.Controllers.EditChart.textAuto": "Automātiski", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Starp ķeksīšiem", - "SSE.Controllers.EditChart.textBillions": "Miljardi", - "SSE.Controllers.EditChart.textBottom": "Apakšā", - "SSE.Controllers.EditChart.textCenter": "Centrā", - "SSE.Controllers.EditChart.textCross": "Krustpunkts", - "SSE.Controllers.EditChart.textCustom": "Pielāgots", - "SSE.Controllers.EditChart.textFit": "Saskaņot ar platumu", - "SSE.Controllers.EditChart.textFixed": "Fiksēts", - "SSE.Controllers.EditChart.textHigh": "Augsts", - "SSE.Controllers.EditChart.textHorizontal": "Horizontāls", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Simti", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "iekšā", - "SSE.Controllers.EditChart.textInnerBottom": "Iekšā lejā", - "SSE.Controllers.EditChart.textInnerTop": "Iekšā augšā", - "SSE.Controllers.EditChart.textLeft": "Pa kreisi", - "SSE.Controllers.EditChart.textLeftOverlay": "Pārklāšanās pa kreisi", - "SSE.Controllers.EditChart.textLow": "Zems", - "SSE.Controllers.EditChart.textManual": "Manuāli", - "SSE.Controllers.EditChart.textMaxValue": "Maksimālā vērtība", - "SSE.Controllers.EditChart.textMillions": "Miljoni", - "SSE.Controllers.EditChart.textMinValue": "Minimālā vērtība", - "SSE.Controllers.EditChart.textNextToAxis": "Blakus asij", - "SSE.Controllers.EditChart.textNone": "Nē", - "SSE.Controllers.EditChart.textNoOverlay": "Bez pārklāšanās", - "SSE.Controllers.EditChart.textOnTickMarks": "Ķeksīši", - "SSE.Controllers.EditChart.textOut": "Ārā", - "SSE.Controllers.EditChart.textOuterTop": "Ārējā no augšas", - "SSE.Controllers.EditChart.textOverlay": "Pārklāšanās", - "SSE.Controllers.EditChart.textRight": "Pa labi", - "SSE.Controllers.EditChart.textRightOverlay": "Pārklāšanās pa labi", - "SSE.Controllers.EditChart.textRotated": "Pagriezts", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Tūkstoši", - "SSE.Controllers.EditChart.textTop": "Augša", - "SSE.Controllers.EditChart.textTrillions": "Triljoni", - "SSE.Controllers.EditChart.textValue": "Vērtība", - "SSE.Controllers.EditContainer.textCell": "Šūna", - "SSE.Controllers.EditContainer.textChart": "Diagramma", - "SSE.Controllers.EditContainer.textHyperlink": "Hipersaite", - "SSE.Controllers.EditContainer.textImage": "Attēls", - "SSE.Controllers.EditContainer.textSettings": "Iestatījumi", - "SSE.Controllers.EditContainer.textShape": "Forma", - "SSE.Controllers.EditContainer.textTable": "Tabula", - "SSE.Controllers.EditContainer.textText": "Teksts", - "SSE.Controllers.EditHyperlink.textDefault": "Izvēlētais diapazons", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Ir jānorāda attēla URL.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Ārējā saite", - "SSE.Controllers.EditHyperlink.textInternalLink": "Iekšējo datu diapazons", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Nederīgs šūnu diapazons", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Šim laukam ir jābūt URL formātā \"http://www.example.com\"", - "SSE.Controllers.Main.advCSVOptions": "Izvēlēties CSV parametrus", - "SSE.Controllers.Main.advDRMEnterPassword": "Ievadiet paroli:", - "SSE.Controllers.Main.advDRMOptions": "Aizsargāts fails", - "SSE.Controllers.Main.advDRMPassword": "Parole", - "SSE.Controllers.Main.applyChangesTextText": "Ielādē datus...", - "SSE.Controllers.Main.applyChangesTitleText": "Ielādē datus", - "SSE.Controllers.Main.convertationTimeoutText": "Konversijas taimauts pārsniegts.", - "SSE.Controllers.Main.criticalErrorExtText": "Nospiediet \"OK\", lai atgrieztos dokumentu sarakstā.", - "SSE.Controllers.Main.criticalErrorTitle": "Kļūda", - "SSE.Controllers.Main.downloadErrorText": "Lejuplāde neizdevās.", - "SSE.Controllers.Main.downloadMergeText": "Lejupielādē...", - "SSE.Controllers.Main.downloadMergeTitle": "Lejupielāde", - "SSE.Controllers.Main.downloadTextText": "Lejuplādē dokumentu...", - "SSE.Controllers.Main.downloadTitleText": "Dokumenta lejupielāde", - "SSE.Controllers.Main.errorAccessDeny": "Jūs mēģināt veikt darbību, kuru nedrīkstat veikt.
    Lūdzu, sazinieties ar savu dokumentu servera administratoru.", - "SSE.Controllers.Main.errorArgsRange": "Kļūda ievadītā formulā.
    Ir izmantots nederīgs argumentu diapazons.", - "SSE.Controllers.Main.errorAutoFilterChange": "Darbība nav atļauta, jo tā mēģina pārnest šūnas jūsu darblapas tabulā.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Šo operāciju neizdevās izpildīt izvēlētajām šūnām, jo jūs nevarat pārvietot tabulas daļu.
    Izvēlieties citu datu diapazonu tā, lai visa tabula tiktu pārbīdīta, un mēģiniet vēlreiz.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Operāciju neizdevās izpildīt izvēlētajam šūnu diapazonam.
    Izvēlieties vienotu datu diapazonu, kas atšķiras no esošā un mēģiniet vēlreiz.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Darbību nevar veikt, jo apgabals satur filtrētas šūnas.
    Lūdzu, parādiet filtrētos elementus, un mēģiniet vēlreiz.", - "SSE.Controllers.Main.errorBadImageUrl": "Nav pareizs attēla URL", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Pazaudēts servera savienojums. Šobrīd dokumentu nevar rediģēt.", - "SSE.Controllers.Main.errorConnectToServer": "Dokumentu neizdevās noglabāt. Lūdzu, pārbaudiet savienojuma uzstādījumus vai sazinieties ar savu administratoru.
    Nospiežot \"OK\", jūs varēsit lejupielādēt dokumentu.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Šo komandu nevar izmantot nesaistītiem diapazoniem.
    Izvēlieties vienu diapazonu un mēģiniet vēlreiz.", - "SSE.Controllers.Main.errorCountArg": "Kļūda ievadītā formulā.
    Ir izmantots nepareizs argumentu skaits.", - "SSE.Controllers.Main.errorCountArgExceed": "Kļūda ievadītā formulā.
    Ir pārsniegts argumentu skaits.", - "SSE.Controllers.Main.errorCreateDefName": "Esošos nosaukumu diapazonus nevar rediģēt, bet jaunus nevar
    šobrīd izveidot, jo daži no tiem tiek rediģēti.", - "SSE.Controllers.Main.errorDatabaseConnection": "Ārēja kļūda.
    Datubāzes savienojuma kļūda. Lūdzu, sazinieties ar atbalstu.", - "SSE.Controllers.Main.errorDataRange": "Nepareizs datu diapazons", - "SSE.Controllers.Main.errorDefaultMessage": "Kļūdas kods: %1", - "SSE.Controllers.Main.errorFilePassProtect": "Fails ir aizsargāts ar paroli un to nevar atvērt.", - "SSE.Controllers.Main.errorFileRequest": "Ārēja kļūda.
    Faila pieprasījuma kļūda. Lūdzu, sazinieties ar atbalstu.", - "SSE.Controllers.Main.errorFileVKey": "Ārēja kļūda.
    Nederīgs drošības kods. Lūdzu, sazinieties ar atbalstu.", - "SSE.Controllers.Main.errorFillRange": "Neizdevās aizpildīt izvēlēto šunu diapazonu.
    Visām sapludinātajām šūnām ir jābūt viena izmēra.", - "SSE.Controllers.Main.errorFormulaName": "Kļūda ievadītā formulā.
    Ir izmantots nepareizs formulas nosaukums.", - "SSE.Controllers.Main.errorFormulaParsing": "Notika iekšēja kļūda analizējot formulu.", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcija attiecas uz lapu, kas nepastāv.
    Lūdzu, pārbaudiet datus un mēģiniet vēlreiz.", - "SSE.Controllers.Main.errorInvalidRef": "Ievadiet pareizu izvēlētā diapazona nosaukumu vai derīgu saiti, uz kuru doties.", - "SSE.Controllers.Main.errorKeyEncrypt": "Nezināms atslēgas deskriptors", - "SSE.Controllers.Main.errorKeyExpire": "Atslēgas deskriptora termiņš beidzies", - "SSE.Controllers.Main.errorLockedAll": "Darbību nevarēja veikt, jo lapu ir bloķējis cits lietotājs.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "Lapu nevar pārdēvēt, jo to jau pārdēvē cits lietotājs.", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Ielāde neizdevās", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Sapludināšana neizdevās.", - "SSE.Controllers.Main.errorMaxPoints": "Maksimālais punktu sērijas skaits diagrammā ir 4096.", - "SSE.Controllers.Main.errorMoveRange": "Nevar mainīt apvienotas šūnas daļu", - "SSE.Controllers.Main.errorOpenWarning": "Vienas formulas garums failā pārsniedzis
    atļauto zīmju skaitu, un tā tika noņemta.", - "SSE.Controllers.Main.errorOperandExpected": "Ievadītā funkcijas sintakse nav pareiza. Lūdzu, pārbaudiet, vai netrūkst kādas no iekavām '(' vai ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Kopēšanas un ielīmēšanas apgabals nesakrīt.
    Lūdzu, izvēlieties apgabalu ar tādu pašu izmēru vai uzspiediet uz pirmās rindas šūnas, lai ielīmētu nokopētās šūnas.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Diemžēl vienlaikus nav iespējams izdrukāt vairāk par 1500 lapām ar šībrīža programmas versiju.
    Šis ierobežojums tiks noņemts jaunākajām versijām.", - "SSE.Controllers.Main.errorProcessSaveResult": "Saglabāšana neizdevās", - "SSE.Controllers.Main.errorServerVersion": "Redaktora versija ir atjaunināta. Lapa tiks pārlādēta, lai piemērotu izmaiņas.", - "SSE.Controllers.Main.errorSessionAbsolute": "Beidzies dokumenta rediģēšana sesijas laiks. Lūdzu, atjaunojiet lapu.", - "SSE.Controllers.Main.errorSessionIdle": "Dokuments nav ticis rediģēts ilgāku laiku. Lūdzu, atjaunojiet lapu.", - "SSE.Controllers.Main.errorSessionToken": "Pārtraukts savienojums serverim. Lūdzu, atjaunojiet lapu.", - "SSE.Controllers.Main.errorStockChart": "Nederīga rindu kārtība. Lai izveidotu akciju diagrammu novietojiet datus lapā šādā secībā:
    Sākumcena, maksimālā cena, minimālā cena, slēgšanas cena.", - "SSE.Controllers.Main.errorToken": "Nav pareizi noformēts dokumenta drošības marķieris.
    Lūdzu, sazinieties ar savu dokumenta servera administratoru.", - "SSE.Controllers.Main.errorTokenExpire": "Ir beidzies dokumenta drošības marķiera termiņš.
    Lūdzu, sazinieties ar savu dokumentu servera administratoru.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Ārēja kļūda.
    Nederīgs GUID. Lūdzu, sazinieties ar atbalstu.", - "SSE.Controllers.Main.errorUpdateVersion": "Faila versija ir mainīta. Lapa tiks pārlādēta.", - "SSE.Controllers.Main.errorUserDrop": "Failam šobrīd nevar piekļūt.", - "SSE.Controllers.Main.errorUsersExceed": "Tika pārsniegts cenu plāna atļautais lietotāju skaits.", - "SSE.Controllers.Main.errorViewerDisconnect": "Zudis savienojums. Jūs joprojām varat aplūkot dokumentu,
    taču jūs nevarēsit to lejupielādēt, kamēr savienojums nebūs atjaunots.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Kļūda ievadītā formulā.
    Ir izmantots nepareizs iekavas skaits.", - "SSE.Controllers.Main.errorWrongOperator": "Kļūda ievadītā formulā.
    Ir izmantots nepareizs operātors.", - "SSE.Controllers.Main.leavePageText": "Šim dokumentam ir nesaglabātas izmaiņas. Spiediet \"palikt lapā\", lai sagaidītu dokumenta automātisko noglabāšanu. Spiediet \"pamest lapu\", lai atceltu visas nesaglabātās izmaiņas.", - "SSE.Controllers.Main.loadFontsTextText": "Ielādē datus...", - "SSE.Controllers.Main.loadFontsTitleText": "Ielādē datus", - "SSE.Controllers.Main.loadFontTextText": "Ielādē datus...", - "SSE.Controllers.Main.loadFontTitleText": "Ielādē datus", - "SSE.Controllers.Main.loadImagesTextText": "Ielādē attēlus...", - "SSE.Controllers.Main.loadImagesTitleText": "Ielādē attēlus", - "SSE.Controllers.Main.loadImageTextText": "Ielādē attēlu...", - "SSE.Controllers.Main.loadImageTitleText": "Ielādē attēlu", - "SSE.Controllers.Main.loadingDocumentTextText": "Ielādē izklājlapu...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Ielādē izklājlapu", - "SSE.Controllers.Main.mailMergeLoadFileText": "Ielādē datu avotu...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Ielādē datu avotu", - "SSE.Controllers.Main.notcriticalErrorTitle": "Brīdinājums", - "SSE.Controllers.Main.openErrorText": "Faila atvēršanas laikā radās kļūda", - "SSE.Controllers.Main.openTextText": "Dokumenta atvēršana...", - "SSE.Controllers.Main.openTitleText": "Dokumenta atvēršana", - "SSE.Controllers.Main.pastInMergeAreaError": "Nevar mainīt apvienotas šūnas daļu", - "SSE.Controllers.Main.printTextText": "Drukā dokumentu...", - "SSE.Controllers.Main.printTitleText": "Drukā dokumentu", - "SSE.Controllers.Main.reloadButtonText": "Pārlādēt lapu", - "SSE.Controllers.Main.requestEditFailedMessageText": "Kāds rediģē šo dokumentu. Lūdzu, mēģiniet vēlreiz vēlāk.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Piekļuve liegta", - "SSE.Controllers.Main.saveErrorText": "Faila noglabāšanas laikā radās kļūda", - "SSE.Controllers.Main.savePreparingText": "Gatavojas saglabāt", - "SSE.Controllers.Main.savePreparingTitle": "Gatavojas saglabāt. Lūdzu, uzgaidiet...", - "SSE.Controllers.Main.saveTextText": "Saglabā Dokumentu...", - "SSE.Controllers.Main.saveTitleText": "Saglabā dokumentu", - "SSE.Controllers.Main.sendMergeText": "Sapludināšanas rezultāta nosūtīšana...", - "SSE.Controllers.Main.sendMergeTitle": "Saplūšanas rezultāta nosūtīšana", - "SSE.Controllers.Main.textAnonymous": "Anonīms lietotājs", - "SSE.Controllers.Main.textBack": "Atpakaļ", - "SSE.Controllers.Main.textBuyNow": "Apmeklēt vietni", - "SSE.Controllers.Main.textCancel": "Atcelt", - "SSE.Controllers.Main.textClose": "Aizvērt", - "SSE.Controllers.Main.textContactUs": "Pārdošanas nodaļa", - "SSE.Controllers.Main.textDone": "Gatavs", - "SSE.Controllers.Main.textLoadingDocument": "Ielādē izklājlapu", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE pieslēguma ierobežojums", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPassword": "Parole", - "SSE.Controllers.Main.textPreloader": "Notiek ielāde...", - "SSE.Controllers.Main.textShape": "Forma", - "SSE.Controllers.Main.textStrict": "Striktais režīms", - "SSE.Controllers.Main.textTryUndoRedo": "Atsaukšanas/atkārtošanas funkcijas ir atspējotas ātrajā kopīgās rediģēšanas režīmā.
    Spiediet \"Stingrā režīma\" pogu, lai pārietu uz stingrās koprediģēšanas režīmu, lai rediģētu failu bez citu lietotāju līzdalības un nosūtītu savas izmaiņas vienīgi pēc to noglabāšanas. Jūs varat mainīt režīmus, izmantojot redaktora Papildu iestatījumus.", - "SSE.Controllers.Main.textUsername": "Lietotājvārds", - "SSE.Controllers.Main.titleLicenseExp": "Licencei beidzies termiņš", - "SSE.Controllers.Main.titleServerVersion": "Atjaunināts redaktors", - "SSE.Controllers.Main.titleUpdateVersion": "Versija mainīta", - "SSE.Controllers.Main.txtAccent": "Akcents", - "SSE.Controllers.Main.txtArt": "Ievadiet savu tekstu", - "SSE.Controllers.Main.txtBasicShapes": "Pamata figūras", - "SSE.Controllers.Main.txtButtons": "Pogas", - "SSE.Controllers.Main.txtCallouts": "Norādes", - "SSE.Controllers.Main.txtCharts": "Diagrammas", - "SSE.Controllers.Main.txtDelimiter": "Norobežotājs", - "SSE.Controllers.Main.txtDiagramTitle": "Diagrammas nosaukums", - "SSE.Controllers.Main.txtEditingMode": "Uzstāda rediģēšanas režīmu...", - "SSE.Controllers.Main.txtEncoding": "Kodēšana", - "SSE.Controllers.Main.txtErrorLoadHistory": "Neizdevās ielādēt vēsturi", - "SSE.Controllers.Main.txtFiguredArrows": "Figūŗbultas", - "SSE.Controllers.Main.txtLines": "Līnijas", - "SSE.Controllers.Main.txtMath": "Matemātiskās zīmes", - "SSE.Controllers.Main.txtRectangles": "Taisnstūri", - "SSE.Controllers.Main.txtSeries": "Rinda", - "SSE.Controllers.Main.txtSpace": "Atstarpe", - "SSE.Controllers.Main.txtStarsRibbons": "Zvaigznes un lentas", - "SSE.Controllers.Main.txtStyle_Bad": "Slikti", - "SSE.Controllers.Main.txtStyle_Calculation": "Aprēķins", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Šūnas pārbaude", - "SSE.Controllers.Main.txtStyle_Comma": "Komats", - "SSE.Controllers.Main.txtStyle_Currency": "Valūta", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Paskaidrojums", - "SSE.Controllers.Main.txtStyle_Good": "Labi", - "SSE.Controllers.Main.txtStyle_Heading_1": "Galvene 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Galvene 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Galvene 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Galvene 4", - "SSE.Controllers.Main.txtStyle_Input": "Ievade", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Saistītā šūna", - "SSE.Controllers.Main.txtStyle_Neutral": "Neitrāli", - "SSE.Controllers.Main.txtStyle_Normal": "Normāls", - "SSE.Controllers.Main.txtStyle_Note": "Piezīme", - "SSE.Controllers.Main.txtStyle_Output": "Izvade", - "SSE.Controllers.Main.txtStyle_Percent": "Procenti", - "SSE.Controllers.Main.txtStyle_Title": "Nosaukums", - "SSE.Controllers.Main.txtStyle_Total": "Kopā", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Brīdinājuma teksts", - "SSE.Controllers.Main.txtTab": "Tabulācija", - "SSE.Controllers.Main.txtXAxis": "X ass", - "SSE.Controllers.Main.txtYAxis": "Y ass", - "SSE.Controllers.Main.unknownErrorText": "Nezināma kļūda", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Jūsu pārlūkprogramma nav atbalstīta.", - "SSE.Controllers.Main.uploadImageExtMessage": "Nezināms attēla formāts.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Nav augšupielādēto attēlu.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maksimālais attēla izmērs ir pārsniegts.", - "SSE.Controllers.Main.uploadImageTextText": "Augšupielādē attēlu...", - "SSE.Controllers.Main.uploadImageTitleText": "Augšupielādē attēlu", - "SSE.Controllers.Main.warnLicenseExp": "Jūsu licencei ir beidzies termiņš.
    Lūdzu, atjauniniet savu licenci un pārlādējiet lapu.", - "SSE.Controllers.Main.warnNoLicense": "Šai %1 editors versijai ir noteikti ierobežojumi saistībā ar vienlaicīgu pieslēgšanos dokumentu serverim.
    Ja jums ir nepieciešams vairāk, lūdzu, apsveriet Jūsu šībrīža licences līmeņa paaugstināšanu vai komerciālās licences iegādi.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Šai %1 editors versijai ir noteikti ierobežojumi saistībā ar vairāku lietotāju vienlaicīgu darbību.
    Ja jums ir nepieciešams vairāk, lūdzu, apsveriet paaugstināt šībrīža licences līmeni vai komerciālās licences iegādi.", - "SSE.Controllers.Main.warnProcessRightsChange": "Jums ir liegtas tiesības šo failu rediģēt.", - "SSE.Controllers.Search.textNoTextFound": "Teksts nav atrasts", - "SSE.Controllers.Search.textReplaceAll": "Aizvietot visus", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Brīdinājums", - "SSE.Controllers.Settings.txtDe": "Deutsch", - "SSE.Controllers.Settings.txtEn": "English", - "SSE.Controllers.Settings.txtEs": "Spāņu", - "SSE.Controllers.Settings.txtFr": "Francijas", - "SSE.Controllers.Settings.txtPl": "Poļu", - "SSE.Controllers.Settings.txtRu": "Russian", - "SSE.Controllers.Settings.warnDownloadAs": "Ja jūs izvēlēsieties turpināt saglabāt šajā formātā visas diagrammas un attēli tiks zaudēti.
    Vai tiešām vēlaties turpināt?", - "SSE.Controllers.Statusbar.errorLastSheet": "Darbgrāmatai jābūt vismaz vienai redzamai darblapai.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Neizdevās dzēst darblapu", - "SSE.Controllers.Statusbar.menuDelete": "Dzēst", - "SSE.Controllers.Statusbar.menuDuplicate": "Dublikāts", - "SSE.Controllers.Statusbar.menuHide": "Paslēpt", - "SSE.Controllers.Statusbar.menuUnhide": "Rādīt", - "SSE.Controllers.Statusbar.strSheet": "Lapa", - "SSE.Controllers.Statusbar.textExternalLink": "Ārējā saite", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Šajā darblapā varētu būt dati. Turpināt?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Šim dokumentam ir nesaglabātas izmaiņas. Spiediet \"palikt lapā\", lai sagaidītu dokumenta automātisko noglabāšanu. Spiediet \"pamest lapu\", lai atceltu visas nesaglabātās izmaiņas.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Jūs pametat lietotni", - "SSE.Controllers.Toolbar.leaveButtonText": "Pamest lapu", - "SSE.Controllers.Toolbar.stayButtonText": "Palikt lapā", - "SSE.Views.AddFunction.sCatDateAndTime": "Datums un laiks", - "SSE.Views.AddFunction.sCatEngineering": "Inženieru", - "SSE.Views.AddFunction.sCatFinancial": "Finansu", - "SSE.Views.AddFunction.sCatInformation": "Informācija", - "SSE.Views.AddFunction.sCatLogical": "Loģiskie", - "SSE.Views.AddFunction.sCatLookupAndReference": "Meklēšana un atsauces", - "SSE.Views.AddFunction.sCatMathematic": "Matemātiskās un trigonometriskās", - "SSE.Views.AddFunction.sCatStatistical": "Statistiskie", - "SSE.Views.AddFunction.sCatTextAndData": "Teksts un dati", - "SSE.Views.AddFunction.textBack": "Atpakaļ", - "SSE.Views.AddFunction.textGroups": "Kategorijas", - "SSE.Views.AddLink.textAddLink": "Pievienot saiti", - "SSE.Views.AddLink.textAddress": "Adrese", - "SSE.Views.AddLink.textDisplay": "Rādīt", - "SSE.Views.AddLink.textExternalLink": "Ārējā saite", - "SSE.Views.AddLink.textInsert": "Ievietot", - "SSE.Views.AddLink.textInternalLink": "Iekšējo datu diapazons", - "SSE.Views.AddLink.textLink": "Saite", - "SSE.Views.AddLink.textLinkType": "Saites veids", - "SSE.Views.AddLink.textRange": "Diapazons", - "SSE.Views.AddLink.textRequired": "Obligāti", - "SSE.Views.AddLink.textSheet": "Lapa", - "SSE.Views.AddLink.textTip": "Padoms", - "SSE.Views.AddOther.textAddress": "Adrese", - "SSE.Views.AddOther.textBack": "Atpakaļ", - "SSE.Views.AddOther.textFilter": "Filtrs", - "SSE.Views.AddOther.textFromLibrary": "Attēls no bibliotēkas", - "SSE.Views.AddOther.textFromURL": "Attēls no URL", - "SSE.Views.AddOther.textImageURL": "Attēla URL", - "SSE.Views.AddOther.textInsert": "Ievietot", - "SSE.Views.AddOther.textInsertImage": "Ievadīt attēlu", - "SSE.Views.AddOther.textLink": "Saite", - "SSE.Views.AddOther.textSort": "Šķirot un filtrēt", - "SSE.Views.EditCell.textAccounting": "Grāmatvedības", - "SSE.Views.EditCell.textAlignBottom": "Līdzināt uz lēju", - "SSE.Views.EditCell.textAlignCenter": "Līdzināt uz centru", - "SSE.Views.EditCell.textAlignLeft": "Līdzināt pa kreisi", - "SSE.Views.EditCell.textAlignMiddle": "Līdzināt uz vidu", - "SSE.Views.EditCell.textAlignRight": "Līdzināt pa labi", - "SSE.Views.EditCell.textAlignTop": "Līdzināt uz augšu", - "SSE.Views.EditCell.textAllBorders": "Visas apmales", - "SSE.Views.EditCell.textBack": "Atpakaļ", - "SSE.Views.EditCell.textBorderStyle": "Robežas stils", - "SSE.Views.EditCell.textBottomBorder": "Apakšējā robeža", - "SSE.Views.EditCell.textCellStyle": "Šūnu stili", - "SSE.Views.EditCell.textColor": "Krāsa", - "SSE.Views.EditCell.textCurrency": "Valūta", - "SSE.Views.EditCell.textDate": "Datums", - "SSE.Views.EditCell.textDiagDownBorder": "Diagonālā lejas robeža", - "SSE.Views.EditCell.textDiagUpBorder": "Diagonālā augšas robeža", - "SSE.Views.EditCell.textDollar": "Dolārs", - "SSE.Views.EditCell.textEuro": "Eiro", - "SSE.Views.EditCell.textFillColor": "Aizpildes krāsa", - "SSE.Views.EditCell.textFonts": "Fonti", - "SSE.Views.EditCell.textFormat": "Formāts", - "SSE.Views.EditCell.textGeneral": "Vispārīgi", - "SSE.Views.EditCell.textInBorders": "Iekšējās robežas", - "SSE.Views.EditCell.textInHorBorder": "Iekšējā horizontālā robeža", - "SSE.Views.EditCell.textInteger": "Vesels skaitlis", - "SSE.Views.EditCell.textInVertBorder": "Iekšējā vertikālā robeža", - "SSE.Views.EditCell.textJustified": "Taisnots", - "SSE.Views.EditCell.textLeftBorder": "Kreisā robeža", - "SSE.Views.EditCell.textMedium": "Vidējs", - "SSE.Views.EditCell.textNoBorder": "Bez robežas", - "SSE.Views.EditCell.textNumber": "Numurs", - "SSE.Views.EditCell.textPercentage": "Procentuāli", - "SSE.Views.EditCell.textPound": "Mārciņa", - "SSE.Views.EditCell.textRightBorder": "Labā robeža", - "SSE.Views.EditCell.textRouble": "Rublis", - "SSE.Views.EditCell.textScientific": "Zinātniskais", - "SSE.Views.EditCell.textSize": "Izmērs", - "SSE.Views.EditCell.textText": "Teksts", - "SSE.Views.EditCell.textTextColor": "Teksta krāsa", - "SSE.Views.EditCell.textTextFormat": "Teksta formāts", - "SSE.Views.EditCell.textThick": "Biezie", - "SSE.Views.EditCell.textThin": "Tievie", - "SSE.Views.EditCell.textTime": "Laiks", - "SSE.Views.EditCell.textTopBorder": "Augšējā robeža", - "SSE.Views.EditCell.textWrapText": "Aplauzt tekstu", - "SSE.Views.EditCell.textYen": "Jēna", - "SSE.Views.EditChart.textAuto": "Automātiski", - "SSE.Views.EditChart.textAxisCrosses": "Ass šķērsošana", - "SSE.Views.EditChart.textAxisOptions": "Ass iespējas", - "SSE.Views.EditChart.textAxisPosition": "Ass pozīcija", - "SSE.Views.EditChart.textAxisTitle": "Ass nosaukums", - "SSE.Views.EditChart.textBack": "Atpakaļ", - "SSE.Views.EditChart.textBackward": "Pārnest atpakaļ", - "SSE.Views.EditChart.textBorder": "Robeža", - "SSE.Views.EditChart.textBottom": "Apakšā", - "SSE.Views.EditChart.textChart": "Diagramma", - "SSE.Views.EditChart.textChartTitle": "Diagrammas nosaukums", - "SSE.Views.EditChart.textColor": "Krāsa", - "SSE.Views.EditChart.textCrossesValue": "Vērtība", - "SSE.Views.EditChart.textDataLabels": "Datu paraksti", - "SSE.Views.EditChart.textDesign": "Izskats", - "SSE.Views.EditChart.textDisplayUnits": "Atainot vienības", - "SSE.Views.EditChart.textFill": "Aizpildīt", - "SSE.Views.EditChart.textForward": "Pārnest uz priekšu", - "SSE.Views.EditChart.textHorAxis": "Horizontālā ass", - "SSE.Views.EditChart.textHorizontal": "Horizontāls", - "SSE.Views.EditChart.textLabelOptions": "Aprakstu iespējas", - "SSE.Views.EditChart.textLabelPos": "Apraksta novietojums", - "SSE.Views.EditChart.textLayout": "Izklājums", - "SSE.Views.EditChart.textLeft": "Pa kreisi", - "SSE.Views.EditChart.textLeftOverlay": "Pārklāšanās pa kreisi", - "SSE.Views.EditChart.textLegend": "Apzīmējumi", - "SSE.Views.EditChart.textMajor": "Pamata", - "SSE.Views.EditChart.textMajorMinor": "Pamata un papildus", - "SSE.Views.EditChart.textMajorType": "Pamatveids", - "SSE.Views.EditChart.textMaxValue": "Maksimālā vērtība", - "SSE.Views.EditChart.textMinor": "Papildu", - "SSE.Views.EditChart.textMinorType": "Papildu veids", - "SSE.Views.EditChart.textMinValue": "Minimālā vērtība", - "SSE.Views.EditChart.textNone": "Nē", - "SSE.Views.EditChart.textNoOverlay": "Bez pārklāšanās", - "SSE.Views.EditChart.textOverlay": "Pārklāšanās", - "SSE.Views.EditChart.textRemoveChart": "Noņemt diagrammu", - "SSE.Views.EditChart.textReorder": "Pārkārtot", - "SSE.Views.EditChart.textRight": "Pa labi", - "SSE.Views.EditChart.textRightOverlay": "Pārklāšanās pa labi", - "SSE.Views.EditChart.textRotated": "Pagriezts", - "SSE.Views.EditChart.textSize": "Izmērs", - "SSE.Views.EditChart.textStyle": "Stils", - "SSE.Views.EditChart.textTickOptions": "Atzīmēšanas iespējas", - "SSE.Views.EditChart.textToBackground": "Pārnest uz aizmuguri", - "SSE.Views.EditChart.textToForeground": "Nest uz priekšplānu", - "SSE.Views.EditChart.textTop": "Augša", - "SSE.Views.EditChart.textType": "Veids", - "SSE.Views.EditChart.textValReverseOrder": "Vērtības apgrieztā secībā", - "SSE.Views.EditChart.textVerAxis": "Vertikālā ass", - "SSE.Views.EditChart.textVertical": "Vertikāli", - "SSE.Views.EditHyperlink.textBack": "Atpakaļ", - "SSE.Views.EditHyperlink.textDisplay": "Rādīt", - "SSE.Views.EditHyperlink.textEditLink": "Rediģēt saiti", - "SSE.Views.EditHyperlink.textExternalLink": "Ārējā saite", - "SSE.Views.EditHyperlink.textInternalLink": "Iekšējo datu diapazons", - "SSE.Views.EditHyperlink.textLink": "Saite", - "SSE.Views.EditHyperlink.textLinkType": "Saites veids", - "SSE.Views.EditHyperlink.textRange": "Diapazons", - "SSE.Views.EditHyperlink.textRemoveLink": "Noņemt saiti", - "SSE.Views.EditHyperlink.textScreenTip": "Padoms", - "SSE.Views.EditHyperlink.textSheet": "Lapa", - "SSE.Views.EditImage.textAddress": "Adrese", - "SSE.Views.EditImage.textBack": "Atpakaļ", - "SSE.Views.EditImage.textBackward": "Pārnest atpakaļ", - "SSE.Views.EditImage.textDefault": "Noklusējuma izmērs", - "SSE.Views.EditImage.textForward": "Pārnest uz priekšu", - "SSE.Views.EditImage.textFromLibrary": "Attēls no bibliotēkas", - "SSE.Views.EditImage.textFromURL": "Attēls no URL", - "SSE.Views.EditImage.textImageURL": "Attēla URL", - "SSE.Views.EditImage.textLinkSettings": "Saites uzstādījumi", - "SSE.Views.EditImage.textRemove": "Noņemt attēlu", - "SSE.Views.EditImage.textReorder": "Pārkārtot", - "SSE.Views.EditImage.textReplace": "Aizvietot", - "SSE.Views.EditImage.textReplaceImg": "Aizvietot attēlu", - "SSE.Views.EditImage.textToBackground": "Pārnest uz aizmuguri", - "SSE.Views.EditImage.textToForeground": "Nest uz priekšplānu", - "SSE.Views.EditShape.textBack": "Atpakaļ", - "SSE.Views.EditShape.textBackward": "Pārnest atpakaļ", - "SSE.Views.EditShape.textBorder": "Robeža", - "SSE.Views.EditShape.textColor": "Krāsa", - "SSE.Views.EditShape.textEffects": "Efekti", - "SSE.Views.EditShape.textFill": "Aizpildīt", - "SSE.Views.EditShape.textForward": "Pārnest uz priekšu", - "SSE.Views.EditShape.textOpacity": "Necaurredzamība", - "SSE.Views.EditShape.textRemoveShape": "Noņemt figūru", - "SSE.Views.EditShape.textReorder": "Pārkārtot", - "SSE.Views.EditShape.textReplace": "Aizvietot", - "SSE.Views.EditShape.textSize": "Izmērs", - "SSE.Views.EditShape.textStyle": "Stils", - "SSE.Views.EditShape.textToBackground": "Pārnest uz aizmuguri", - "SSE.Views.EditShape.textToForeground": "Nest uz priekšplānu", - "SSE.Views.EditText.textBack": "Atpakaļ", - "SSE.Views.EditText.textFillColor": "Aizpildes krāsa", - "SSE.Views.EditText.textFonts": "Fonti", - "SSE.Views.EditText.textSize": "Izmērs", - "SSE.Views.EditText.textTextColor": "Teksta krāsa", - "SSE.Views.Search.textDone": "Gatavs", - "SSE.Views.Search.textFind": "Atrast", - "SSE.Views.Search.textFindAndReplace": "Atrast un aizvietot", - "SSE.Views.Search.textMatchCase": "Atbilstība burtu izmēriem", - "SSE.Views.Search.textMatchCell": "Atbilstība šūnai", - "SSE.Views.Search.textReplace": "Aizvietot", - "SSE.Views.Search.textSearch": "Meklēt", - "SSE.Views.Search.textSearchIn": "Meklēšanas apgabals", - "SSE.Views.Search.textSheet": "Lapa", - "SSE.Views.Search.textWorkbook": "Grāmata", - "SSE.Views.Settings.textAbout": "Par", - "SSE.Views.Settings.textAddress": "adrese", - "SSE.Views.Settings.textAuthor": "Autors", - "SSE.Views.Settings.textBack": "Atpakaļ", - "SSE.Views.Settings.textCreateDate": "Izveides datums", - "SSE.Views.Settings.textDocInfo": "Informācija par rēķintabulu", - "SSE.Views.Settings.textDocTitle": "Rēķintabulas nosaukums", - "SSE.Views.Settings.textDone": "Gatavs", - "SSE.Views.Settings.textDownload": "Lejupielādēt", - "SSE.Views.Settings.textDownloadAs": "Lejupielādēt kā...", - "SSE.Views.Settings.textEditDoc": "Rediģēt dokumentu", - "SSE.Views.Settings.textEmail": "e-pasts", - "SSE.Views.Settings.textFind": "Atrast", - "SSE.Views.Settings.textFindAndReplace": "Atrast un aizvietot", - "SSE.Views.Settings.textHelp": "Palīdzība", - "SSE.Views.Settings.textLoading": "Notiek ielāde...", - "SSE.Views.Settings.textPoweredBy": "Nodrošina", - "SSE.Views.Settings.textSettings": "Iestatījumi", - "SSE.Views.Settings.textTel": "Tel.", - "SSE.Views.Settings.textVersion": "Versija", - "SSE.Views.Settings.unknownText": "Nezināms", - "SSE.Views.Toolbar.textBack": "Atpakaļ" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index fe03ab94c..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -1,566 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Legg til svar", - "Common.Controllers.Collaboration.textCancel": "Avbryt", - "Common.Controllers.Collaboration.textDeleteComment": "Slett kommentar", - "Common.Controllers.Collaboration.textDeleteReply": "Slett svar", - "Common.Controllers.Collaboration.textDone": "Ferdig", - "Common.Controllers.Collaboration.textEdit": "Rediger", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Ønsker du å slette denne kommentaren?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Ønsker du å slette dette svaret?", - "Common.Controllers.Collaboration.textReopen": "Åpne igjen", - "Common.Controllers.Collaboration.textResolve": "Løs", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Egendefinerte farger", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardfarger", - "Common.UI.ThemeColorPalette.textThemeColors": "Temafarger", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Legg til svar", - "Common.Views.Collaboration.textBack": "Tilbake", - "Common.Views.Collaboration.textCancel": "Avbryt", - "Common.Views.Collaboration.textCollaboration": "Samarbeid", - "Common.Views.Collaboration.textDone": "Ferdig", - "Common.Views.Collaboration.textEditReply": "Rediger svar", - "Common.Views.Collaboration.textEditUsers": "Brukere", - "Common.Views.Collaboration.textEditСomment": "Rediger kommentar", - "Common.Views.Collaboration.textСomments": "Kommentarer", - "SSE.Controllers.AddChart.txtDiagramTitle": "Diagramtittel", - "SSE.Controllers.AddChart.txtSeries": "Serier", - "SSE.Controllers.AddChart.txtXAxis": "X-akse", - "SSE.Controllers.AddChart.txtYAxis": "Y-akse", - "SSE.Controllers.AddContainer.textChart": "Diagram", - "SSE.Controllers.AddContainer.textFormula": "Funksjon", - "SSE.Controllers.AddContainer.textImage": "Bilde", - "SSE.Controllers.AddContainer.textOther": "Andre", - "SSE.Controllers.AddContainer.textShape": "Figur", - "SSE.Controllers.AddLink.textInvalidRange": "FEIL! Ugyldig celleområde", - "SSE.Controllers.AddOther.textCancel": "Avbryt", - "SSE.Controllers.AddOther.textContinue": "Fortsett", - "SSE.Controllers.AddOther.textDelete": "Slett", - "SSE.Controllers.AddOther.textDeleteDraft": "Ønsker du å slette utkastet?", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Kopier, Klipp ut og Lim inn handler som bruker kontekstmenyen vil kun bli utført innenfor den nåværende filen", - "SSE.Controllers.DocumentHolder.menuAddComment": "Legg til kommentar", - "SSE.Controllers.DocumentHolder.menuAddLink": "Legg til lenke", - "SSE.Controllers.DocumentHolder.menuCell": "Celle", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopier", - "SSE.Controllers.DocumentHolder.menuCut": "Klipp ut", - "SSE.Controllers.DocumentHolder.menuDelete": "Slett", - "SSE.Controllers.DocumentHolder.menuEdit": "Rediger", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Lås felt", - "SSE.Controllers.DocumentHolder.menuHide": "Skjul", - "SSE.Controllers.DocumentHolder.menuMerge": "Sammenslåing", - "SSE.Controllers.DocumentHolder.menuMore": "Mer", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Åpne lenke", - "SSE.Controllers.DocumentHolder.menuPaste": "Lim inn", - "SSE.Controllers.DocumentHolder.menuShow": "Vis", - "SSE.Controllers.DocumentHolder.menuViewComment": "Se kommentar", - "SSE.Controllers.DocumentHolder.menuWrap": "Pakk inn", - "SSE.Controllers.DocumentHolder.sheetCancel": "Avbryt", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Handlinger for Kopier, Klipp ut og Lim inn", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Ikke vis igjen", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Operasjonen kan ødelegge data i valgte celler.
    Fortsette?", - "SSE.Controllers.EditCell.textAuto": "Auto", - "SSE.Controllers.EditCell.textFonts": "Skrifttyper", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "FEIL! Maksimalt antall dataserier per ark er 255.", - "SSE.Controllers.EditChart.textAuto": "Auto", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Mellom haker", - "SSE.Controllers.EditChart.textBillions": "Milliarder", - "SSE.Controllers.EditChart.textBottom": "Bunn", - "SSE.Controllers.EditChart.textCenter": "Senter", - "SSE.Controllers.EditChart.textCross": "Kryss", - "SSE.Controllers.EditChart.textCustom": "Egendefinert", - "SSE.Controllers.EditChart.textFit": "Tilpass bredde", - "SSE.Controllers.EditChart.textFixed": "Låst", - "SSE.Controllers.EditChart.textHigh": "Høy", - "SSE.Controllers.EditChart.textHorizontal": "Vannrett", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Hundretall", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "I", - "SSE.Controllers.EditChart.textInnerBottom": "Indre bunn", - "SSE.Controllers.EditChart.textInnerTop": "Indre topp", - "SSE.Controllers.EditChart.textLeft": "Venstre", - "SSE.Controllers.EditChart.textLeftOverlay": "Venstreoverlegg", - "SSE.Controllers.EditChart.textLow": "Lav", - "SSE.Controllers.EditChart.textManual": "Manual", - "SSE.Controllers.EditChart.textMaxValue": "Maksverdi", - "SSE.Controllers.EditChart.textMillions": "Millioner", - "SSE.Controllers.EditChart.textMinValue": "Minimumverdi", - "SSE.Controllers.EditChart.textNextToAxis": "Ved siden av akse", - "SSE.Controllers.EditChart.textNone": "Ingen", - "SSE.Controllers.EditChart.textNoOverlay": "Ingen overlegg", - "SSE.Controllers.EditChart.textOut": "Ut", - "SSE.Controllers.EditChart.textOuterTop": "Ytre topp", - "SSE.Controllers.EditChart.textOverlay": "Overlegg", - "SSE.Controllers.EditChart.textRight": "Høyre", - "SSE.Controllers.EditChart.textRightOverlay": "Høyre overlegg", - "SSE.Controllers.EditChart.textRotated": "Rotert", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Tusener", - "SSE.Controllers.EditChart.textTop": "Topp", - "SSE.Controllers.EditChart.textTrillions": "Billioner", - "SSE.Controllers.EditChart.textValue": "Verdi", - "SSE.Controllers.EditContainer.textCell": "Celle", - "SSE.Controllers.EditContainer.textChart": "Diagram", - "SSE.Controllers.EditContainer.textHyperlink": "Lenke", - "SSE.Controllers.EditContainer.textImage": "Bilde", - "SSE.Controllers.EditContainer.textSettings": "Innstillinger", - "SSE.Controllers.EditContainer.textShape": "Figur", - "SSE.Controllers.EditContainer.textTable": "Tabell", - "SSE.Controllers.EditContainer.textText": "Tekst", - "SSE.Controllers.EditHyperlink.textDefault": "Valgt område", - "SSE.Controllers.EditHyperlink.textExternalLink": "Ekstern lenke", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Ugyldig celleområde", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}", - "SSE.Controllers.FilterOptions.textErrorTitle": "Advarsel", - "SSE.Controllers.FilterOptions.textSelectAll": "Velg alle", - "SSE.Controllers.Main.advCSVOptions": "Velg CSV alternativer", - "SSE.Controllers.Main.advDRMEnterPassword": "Tast inn passord:", - "SSE.Controllers.Main.advDRMOptions": "Beskyttet fil", - "SSE.Controllers.Main.advDRMPassword": "Passord", - "SSE.Controllers.Main.applyChangesTextText": "Laster data...", - "SSE.Controllers.Main.applyChangesTitleText": "Laster data", - "SSE.Controllers.Main.closeButtonText": "Lukk filen", - "SSE.Controllers.Main.criticalErrorExtText": "Trykk 'OK' for å gå tilbake til dokumentlisten", - "SSE.Controllers.Main.criticalErrorTitle": "Feil", - "SSE.Controllers.Main.downloadErrorText": "Nedlasting feilet.", - "SSE.Controllers.Main.downloadMergeText": "Laster ned", - "SSE.Controllers.Main.downloadMergeTitle": "Laster ned", - "SSE.Controllers.Main.downloadTextText": "Laster ned regneark...", - "SSE.Controllers.Main.downloadTitleText": "Laster ned regneark", - "SSE.Controllers.Main.errorArgsRange": "Feil med inntasted formel.
    Feil i rekken av argumenter som ble brukt. ", - "SSE.Controllers.Main.errorAutoFilterChange": "Handlingen er ikke tillatt siden den forsøker å flytte celler i arbeidsarket ditt.", - "SSE.Controllers.Main.errorBadImageUrl": "Bildelenke er feil", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Mistet tilkobling til server. Dokumentet kan ikke redigeres nå.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Denne kommandoen kan ikke brukes med flere valg.
    Velg et enkelt område og forsøk igjen.", - "SSE.Controllers.Main.errorCountArg": "Feil med inntasted formel.
    Feil antall argumenter ble brukt.", - "SSE.Controllers.Main.errorCountArgExceed": "Feil med inntasted formel.
    Antall argumenter er overskredet. ", - "SSE.Controllers.Main.errorDatabaseConnection": "Ekstern feil.
    Feil i forbindelsen til databasen. Vennligst kontakt brukerstøtte hvis feilen vedvarer. ", - "SSE.Controllers.Main.errorDataEncrypted": "Krypterte endringer har blitt mottatt, men de kan ikke bli dekodet.", - "SSE.Controllers.Main.errorDataRange": "Feil dataområde.", - "SSE.Controllers.Main.errorDefaultMessage": "Feilkode: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "En feil oppstod under arbeid med dokumentet.
    Bruk 'Nedlasting' alternativet for å lagre en filkopi på din egen datamaskin.", - "SSE.Controllers.Main.errorFilePassProtect": "Filen er passordbeskyttet og kan ikke åpnes.", - "SSE.Controllers.Main.errorFileRequest": "Ekstern feil.
    Feil under henting av fil. Vennligst kontakt brukerstøtte dersom feilen vedvarer.", - "SSE.Controllers.Main.errorFileVKey": "Ekstern feil.
    Feil sikkerhetsnøkkel. Vennligst kontakt brukerstøtte dersom feilen vedvarer.", - "SSE.Controllers.Main.errorFormulaName": "Feil med inntasted formel.
    Feil formelnavn ble brukt.", - "SSE.Controllers.Main.errorInvalidRef": "Tast inn et korrekt navn for utvalget eller en gyldig referanse å gå til.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "Arbeidsarket kan ikke gis nytt navn nå siden det blir gitt nytt navn av en annen bruker", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Lasting av dokumentet feilet. Vennligst velg en annen fil.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Sammenslåing feilet.", - "SSE.Controllers.Main.errorProcessSaveResult": "Lagring mislykketes", - "SSE.Controllers.Main.errorUnexpectedGuid": "Ekstern feil.
    Uventet GUID. Vennligst kontakt brukerstøtte dersom feilen vedvarer.", - "SSE.Controllers.Main.errorUsersExceed": "Antall brukere tillatt av betalingsplanen ble overskredet", - "SSE.Controllers.Main.errorWrongBracketsCount": "Feil med inntasted formel.
    Feil antall parenteser i bruk.", - "SSE.Controllers.Main.errorWrongOperator": "Feil med inntasted formel. Feil operator brukt.
    Vennligst rett feilen.", - "SSE.Controllers.Main.loadFontsTextText": "Laster data...", - "SSE.Controllers.Main.loadFontsTitleText": "Laster data", - "SSE.Controllers.Main.loadFontTextText": "Laster data...", - "SSE.Controllers.Main.loadFontTitleText": "Laster data", - "SSE.Controllers.Main.loadImagesTextText": "Laster bilder...", - "SSE.Controllers.Main.loadImagesTitleText": "Laster bilder", - "SSE.Controllers.Main.loadImageTextText": "Laster bilde...", - "SSE.Controllers.Main.loadImageTitleText": "Laster bilde", - "SSE.Controllers.Main.loadingDocumentTextText": "Laster regneark...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Laster regneark", - "SSE.Controllers.Main.mailMergeLoadFileText": "Laster datakilde...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Laster datakilde", - "SSE.Controllers.Main.notcriticalErrorTitle": "Advarsel", - "SSE.Controllers.Main.openErrorText": "En feil oppstod ved åpning av filen. ", - "SSE.Controllers.Main.openTextText": "Åpner dokument...", - "SSE.Controllers.Main.openTitleText": "Åpner dokument", - "SSE.Controllers.Main.printTextText": "Skriver ut dokument...", - "SSE.Controllers.Main.printTitleText": "Skriver ut dokument", - "SSE.Controllers.Main.reloadButtonText": "Oppdater side", - "SSE.Controllers.Main.requestEditFailedMessageText": "Noen redigerer dokumentet nå. Vennligst prøv igjen senere.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Tilgang nektet", - "SSE.Controllers.Main.saveErrorText": "En feil oppstod ved lagring av filen.", - "SSE.Controllers.Main.savePreparingText": "Forbereder lagring", - "SSE.Controllers.Main.savePreparingTitle": "Forbereder lagring. Vennligst vent...", - "SSE.Controllers.Main.saveTextText": "Lagrer dokument...", - "SSE.Controllers.Main.saveTitleText": "Lagrer dokument", - "SSE.Controllers.Main.sendMergeText": "Sender sammenslåing...", - "SSE.Controllers.Main.sendMergeTitle": "Sender sammenslåing", - "SSE.Controllers.Main.textAnonymous": "Anonym", - "SSE.Controllers.Main.textBack": "Tilbake", - "SSE.Controllers.Main.textBuyNow": "Besøk nettsted", - "SSE.Controllers.Main.textCancel": "Avbryt", - "SSE.Controllers.Main.textClose": "Lukk", - "SSE.Controllers.Main.textContactUs": "Kontakt salgsavdelingen", - "SSE.Controllers.Main.textDone": "Ferdig", - "SSE.Controllers.Main.textLoadingDocument": "Laster regneark", - "SSE.Controllers.Main.textNo": "Nei", - "SSE.Controllers.Main.textNoLicenseTitle": "Lisensgrense oppnådd", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Betalt funksjon", - "SSE.Controllers.Main.textPassword": "Passord", - "SSE.Controllers.Main.textPreloader": "Laster...", - "SSE.Controllers.Main.textRemember": "Husk valget mitt", - "SSE.Controllers.Main.textShape": "Figur", - "SSE.Controllers.Main.textUsername": "Brukernavn", - "SSE.Controllers.Main.textYes": "Ja", - "SSE.Controllers.Main.titleLicenseExp": "Utgått lisens", - "SSE.Controllers.Main.titleServerVersion": "Redigeringsprogram ble oppdatert", - "SSE.Controllers.Main.titleUpdateVersion": "Endret versjon", - "SSE.Controllers.Main.txtAccent": "Lesetegn", - "SSE.Controllers.Main.txtArt": "Teksten din her", - "SSE.Controllers.Main.txtBasicShapes": "Figurer", - "SSE.Controllers.Main.txtButtons": "Knapper", - "SSE.Controllers.Main.txtCallouts": "Henvisninger", - "SSE.Controllers.Main.txtCharts": "Diagram", - "SSE.Controllers.Main.txtDelimiter": "Skilletegn", - "SSE.Controllers.Main.txtDiagramTitle": "Diagramtittel", - "SSE.Controllers.Main.txtEditingMode": "Velg redigeringsmodus...", - "SSE.Controllers.Main.txtEncoding": "Koding", - "SSE.Controllers.Main.txtErrorLoadHistory": "Lasting av historie feilet", - "SSE.Controllers.Main.txtFiguredArrows": "Pilfigurer", - "SSE.Controllers.Main.txtLines": "Linjer", - "SSE.Controllers.Main.txtMath": "Matte", - "SSE.Controllers.Main.txtRectangles": "Rektangler", - "SSE.Controllers.Main.txtSeries": "Serier", - "SSE.Controllers.Main.txtSpace": "Mellomrom", - "SSE.Controllers.Main.txtStarsRibbons": "Stjerner og bånd", - "SSE.Controllers.Main.txtStyle_Bad": "Dårlig", - "SSE.Controllers.Main.txtStyle_Calculation": "Beregning", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Sjekk celle", - "SSE.Controllers.Main.txtStyle_Comma": "Komma", - "SSE.Controllers.Main.txtStyle_Currency": "Valuta", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Forklarende tekst", - "SSE.Controllers.Main.txtStyle_Good": "God", - "SSE.Controllers.Main.txtStyle_Heading_1": "Overskrift 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Overskrift 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Overskrift 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Overskrift 4", - "SSE.Controllers.Main.txtStyle_Input": "Inndata", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Koblet celle", - "SSE.Controllers.Main.txtStyle_Neutral": "Nøytral", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Notis", - "SSE.Controllers.Main.txtStyle_Output": "Utdata", - "SSE.Controllers.Main.txtStyle_Percent": "Prosent", - "SSE.Controllers.Main.txtStyle_Title": "Tittel", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Advarselstekst", - "SSE.Controllers.Main.txtTab": "Fane", - "SSE.Controllers.Main.txtXAxis": "X-akse", - "SSE.Controllers.Main.txtYAxis": "Y-akse", - "SSE.Controllers.Main.unknownErrorText": "Ukjent feil.", - "SSE.Controllers.Main.uploadImageExtMessage": "Ukjent bildeformat.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Ingen bilder lastet opp.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maksimal bildestørrelse overskredet.", - "SSE.Controllers.Main.uploadImageTextText": "Laster opp bilde...", - "SSE.Controllers.Main.uploadImageTitleText": "Laster opp bilde", - "SSE.Controllers.Main.waitText": "Vennligst vent...", - "SSE.Controllers.Main.warnLicenseExp": "Lisensen din har utløpt.
    Vennligst oppdater lisensen og oppdater siden.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Du har nådd brukergrensen på %1 redigeringsprogram. Kontakt administratoren din for mer informasjon.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Du har nådd brukergrensen på antall %1 redigeringsprogram. Kontakt %1 salgsteamet for personlig oppgraderingsvilkår.", - "SSE.Controllers.Search.textNoTextFound": "Fant ikke tekst", - "SSE.Controllers.Search.textReplaceAll": "Erstatt alle", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Advarsel", - "SSE.Controllers.Statusbar.cancelButtonText": "Avbryt", - "SSE.Controllers.Statusbar.errNameExists": "Ark med et slikt navn finnes allerede.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Navn på ark kan ikke inneholder tegnene: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Arknavn kan ikke være tomt", - "SSE.Controllers.Statusbar.errorLastSheet": "Arbeidsbok må ha minst ett synlig arbeidsark.", - "SSE.Controllers.Statusbar.menuDelete": "Slett", - "SSE.Controllers.Statusbar.menuDuplicate": "Kopi", - "SSE.Controllers.Statusbar.menuHide": "Skjul", - "SSE.Controllers.Statusbar.menuMore": "Mer", - "SSE.Controllers.Statusbar.menuRename": "Gi nytt navn", - "SSE.Controllers.Statusbar.menuUnhide": "Vis", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Advarsel", - "SSE.Controllers.Statusbar.strRenameSheet": "Gi nytt navn til ark", - "SSE.Controllers.Statusbar.strSheet": "Ark", - "SSE.Controllers.Statusbar.strSheetName": "Arknavn", - "SSE.Controllers.Statusbar.textExternalLink": "Ekstern lenke", - "SSE.Controllers.Toolbar.leaveButtonText": "Forlat denne siden", - "SSE.Controllers.Toolbar.stayButtonText": "Bli på denne siden", - "SSE.Views.AddFunction.sCatDateAndTime": "Dato og tid", - "SSE.Views.AddFunction.sCatEngineering": "Ingeniørarbeid", - "SSE.Views.AddFunction.sCatFinancial": "Finans", - "SSE.Views.AddFunction.sCatInformation": "Informasjon", - "SSE.Views.AddFunction.sCatLogical": "Logisk", - "SSE.Views.AddFunction.sCatLookupAndReference": "Finn og henvis", - "SSE.Views.AddFunction.sCatMathematic": "Matte og trigonometri", - "SSE.Views.AddFunction.sCatStatistical": "Statistisk", - "SSE.Views.AddFunction.sCatTextAndData": "Tekst og data", - "SSE.Views.AddFunction.textBack": "Tilbake", - "SSE.Views.AddFunction.textGroups": "Kategorier", - "SSE.Views.AddLink.textAddLink": "Legg til lenke", - "SSE.Views.AddLink.textAddress": "Adresse", - "SSE.Views.AddLink.textDisplay": "Vis", - "SSE.Views.AddLink.textExternalLink": "Ekstern lenke", - "SSE.Views.AddLink.textInsert": "Sett inn", - "SSE.Views.AddLink.textLink": "Lenke", - "SSE.Views.AddLink.textLinkType": "Lenketype", - "SSE.Views.AddLink.textRange": "Område", - "SSE.Views.AddLink.textRequired": "Obligatorisk", - "SSE.Views.AddLink.textSelectedRange": "Valgt område", - "SSE.Views.AddLink.textSheet": "Ark", - "SSE.Views.AddLink.textTip": "Skjermtips", - "SSE.Views.AddOther.textAddComment": "Legg til kommentar", - "SSE.Views.AddOther.textAddress": "Adresse", - "SSE.Views.AddOther.textBack": "Tilbake", - "SSE.Views.AddOther.textComment": "Kommentar", - "SSE.Views.AddOther.textDone": "Ferdig", - "SSE.Views.AddOther.textFilter": "Filter", - "SSE.Views.AddOther.textFromLibrary": "Bilde fra bibliotek", - "SSE.Views.AddOther.textFromURL": "Bilde fra lenke", - "SSE.Views.AddOther.textImageURL": "Bildelenke", - "SSE.Views.AddOther.textInsert": "Sett inn", - "SSE.Views.AddOther.textInsertImage": "Sett inn bilde", - "SSE.Views.AddOther.textLink": "Lenke", - "SSE.Views.AddOther.textLinkSettings": "Lenkealternativer", - "SSE.Views.AddOther.textSort": "Sorter og filtrer", - "SSE.Views.EditCell.textAccounting": "Regnskapsføring", - "SSE.Views.EditCell.textAddCustomColor": "Legg til egendefinert farge", - "SSE.Views.EditCell.textAlignBottom": "Bunnjuster", - "SSE.Views.EditCell.textAlignCenter": "Midtstill", - "SSE.Views.EditCell.textAlignLeft": "Venstrejuster", - "SSE.Views.EditCell.textAlignMiddle": "Midtjuster", - "SSE.Views.EditCell.textAlignRight": "Høyrejuster", - "SSE.Views.EditCell.textAlignTop": "Toppjuster", - "SSE.Views.EditCell.textAllBorders": "Alle kanter", - "SSE.Views.EditCell.textAngleClockwise": "Vinkel med klokken", - "SSE.Views.EditCell.textAngleCounterclockwise": "Vinkel mot klokken", - "SSE.Views.EditCell.textBack": "Tilbake", - "SSE.Views.EditCell.textBorderStyle": "Kantstil", - "SSE.Views.EditCell.textBottomBorder": "Bunnlinje", - "SSE.Views.EditCell.textCellStyle": "Cellestil", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Farge", - "SSE.Views.EditCell.textCurrency": "Valuta", - "SSE.Views.EditCell.textCustomColor": "Egendefinert farge", - "SSE.Views.EditCell.textDate": "Dato", - "SSE.Views.EditCell.textDollar": "Dollar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Fyllfarge", - "SSE.Views.EditCell.textFonts": "Skrifttyper", - "SSE.Views.EditCell.textFormat": "Format", - "SSE.Views.EditCell.textGeneral": "Generell", - "SSE.Views.EditCell.textHorizontalText": "Vannrett tekst", - "SSE.Views.EditCell.textInBorders": "Innenfor kanter", - "SSE.Views.EditCell.textInHorBorder": "Innenfor vannrett kant", - "SSE.Views.EditCell.textInteger": "Helltall", - "SSE.Views.EditCell.textInVertBorder": "Innenfor loddrett kant", - "SSE.Views.EditCell.textJustified": "Justert", - "SSE.Views.EditCell.textLeftBorder": "Venstrekant", - "SSE.Views.EditCell.textMedium": "Medium", - "SSE.Views.EditCell.textNoBorder": "Ingen kantlinje", - "SSE.Views.EditCell.textNumber": "Tall", - "SSE.Views.EditCell.textPercentage": "Prosentdel", - "SSE.Views.EditCell.textPound": "Pund", - "SSE.Views.EditCell.textRightBorder": "Høyrekant", - "SSE.Views.EditCell.textRotateTextDown": "Roter tekst ned", - "SSE.Views.EditCell.textRotateTextUp": "Roter tekst opp", - "SSE.Views.EditCell.textRouble": "Rubel", - "SSE.Views.EditCell.textScientific": "Vitenskapelig", - "SSE.Views.EditCell.textSize": "Størrelse", - "SSE.Views.EditCell.textText": "Tekst", - "SSE.Views.EditCell.textTextColor": "Tekstfarge", - "SSE.Views.EditCell.textTextFormat": "Tekstformat", - "SSE.Views.EditCell.textTextOrientation": "Tekstretning", - "SSE.Views.EditCell.textThick": "Tykk", - "SSE.Views.EditCell.textThin": "Tynn", - "SSE.Views.EditCell.textTime": "Tid", - "SSE.Views.EditCell.textTopBorder": "Toppkant", - "SSE.Views.EditCell.textVerticalText": "Loddrett tekst", - "SSE.Views.EditCell.textWrapText": "Pakk inn tekst", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Legg til egendefinert farge", - "SSE.Views.EditChart.textAuto": "Auto", - "SSE.Views.EditChart.textAxisCrosses": "Aksekryss", - "SSE.Views.EditChart.textAxisOptions": "Alternativer for akser", - "SSE.Views.EditChart.textAxisPosition": "Akseposisjon", - "SSE.Views.EditChart.textAxisTitle": "Aksetittel", - "SSE.Views.EditChart.textBack": "Tilbake", - "SSE.Views.EditChart.textBackward": "Gå tilbake", - "SSE.Views.EditChart.textBorder": "Kant", - "SSE.Views.EditChart.textBottom": "Bunn", - "SSE.Views.EditChart.textChart": "Diagram", - "SSE.Views.EditChart.textChartTitle": "Diagramtittel", - "SSE.Views.EditChart.textColor": "Farge", - "SSE.Views.EditChart.textCrossesValue": "Krysser verdi", - "SSE.Views.EditChart.textCustomColor": "Egendefinert farge", - "SSE.Views.EditChart.textDataLabels": "Datamerkelapper", - "SSE.Views.EditChart.textDesign": "Design", - "SSE.Views.EditChart.textDisplayUnits": "Vis enheter", - "SSE.Views.EditChart.textFill": "Fyll", - "SSE.Views.EditChart.textForward": "Gå fremover", - "SSE.Views.EditChart.textGridlines": "Rutenett", - "SSE.Views.EditChart.textHorAxis": "Vannrett akse", - "SSE.Views.EditChart.textHorizontal": "Vannrett", - "SSE.Views.EditChart.textLabelOptions": "Alternativer for merkelapper", - "SSE.Views.EditChart.textLabelPos": "Merkelapposisjon", - "SSE.Views.EditChart.textLayout": "Oppsett", - "SSE.Views.EditChart.textLeft": "Venstre", - "SSE.Views.EditChart.textLeftOverlay": "Venstreoverlegg", - "SSE.Views.EditChart.textLegend": "Nøkkel", - "SSE.Views.EditChart.textMajor": "Største", - "SSE.Views.EditChart.textMajorMinor": "Største og minste", - "SSE.Views.EditChart.textMajorType": "Største type", - "SSE.Views.EditChart.textMaxValue": "Maksverdi", - "SSE.Views.EditChart.textMinor": "Minste", - "SSE.Views.EditChart.textMinorType": "Liten skrift", - "SSE.Views.EditChart.textMinValue": "Minimumverdi", - "SSE.Views.EditChart.textNone": "Ingen", - "SSE.Views.EditChart.textNoOverlay": "Ingen overlegg", - "SSE.Views.EditChart.textOverlay": "Overlegg", - "SSE.Views.EditChart.textRemoveChart": "Slett diagram", - "SSE.Views.EditChart.textReorder": "Ny rekkefølge", - "SSE.Views.EditChart.textRight": "Høyre", - "SSE.Views.EditChart.textRightOverlay": "Høyre overlegg", - "SSE.Views.EditChart.textRotated": "Rotert", - "SSE.Views.EditChart.textSize": "Størrelse", - "SSE.Views.EditChart.textStyle": "Stil", - "SSE.Views.EditChart.textToBackground": "Plasser lengst bak", - "SSE.Views.EditChart.textToForeground": "Plasser lengst frem", - "SSE.Views.EditChart.textTop": "Topp", - "SSE.Views.EditChart.textType": "Type", - "SSE.Views.EditChart.textValReverseOrder": "Verdier i omvendt rekkefølge", - "SSE.Views.EditChart.textVerAxis": "Loddrett akse", - "SSE.Views.EditChart.textVertical": "Loddrett", - "SSE.Views.EditHyperlink.textBack": "Tilbake", - "SSE.Views.EditHyperlink.textDisplay": "Vis", - "SSE.Views.EditHyperlink.textEditLink": "Rediger lenke", - "SSE.Views.EditHyperlink.textExternalLink": "Ekstern lenke", - "SSE.Views.EditHyperlink.textLink": "Lenke", - "SSE.Views.EditHyperlink.textLinkType": "Lenketype", - "SSE.Views.EditHyperlink.textRange": "Område", - "SSE.Views.EditHyperlink.textRemoveLink": "Slett lenke", - "SSE.Views.EditHyperlink.textScreenTip": "Skjermtips", - "SSE.Views.EditHyperlink.textSheet": "Ark", - "SSE.Views.EditImage.textAddress": "Adresse", - "SSE.Views.EditImage.textBack": "Tilbake", - "SSE.Views.EditImage.textBackward": "Gå tilbake", - "SSE.Views.EditImage.textDefault": "Faktisk størrelse", - "SSE.Views.EditImage.textForward": "Gå fremover", - "SSE.Views.EditImage.textFromLibrary": "Bilde fra bibliotek", - "SSE.Views.EditImage.textFromURL": "Bilde fra lenke", - "SSE.Views.EditImage.textImageURL": "Bildelenke", - "SSE.Views.EditImage.textLinkSettings": "Lenkealternativer", - "SSE.Views.EditImage.textRemove": "Slett bilde", - "SSE.Views.EditImage.textReorder": "Ny rekkefølge", - "SSE.Views.EditImage.textReplace": "Erstatt", - "SSE.Views.EditImage.textReplaceImg": "Erstatt bilde", - "SSE.Views.EditImage.textToBackground": "Plasser lengst bak", - "SSE.Views.EditImage.textToForeground": "Plasser lengst frem", - "SSE.Views.EditShape.textAddCustomColor": "Legg til egendefinert farge", - "SSE.Views.EditShape.textBack": "Tilbake", - "SSE.Views.EditShape.textBackward": "Gå tilbake", - "SSE.Views.EditShape.textBorder": "Kant", - "SSE.Views.EditShape.textColor": "Farge", - "SSE.Views.EditShape.textCustomColor": "Egendefinert farge", - "SSE.Views.EditShape.textEffects": "Effekter", - "SSE.Views.EditShape.textFill": "Fyll", - "SSE.Views.EditShape.textForward": "Gå fremover", - "SSE.Views.EditShape.textOpacity": "Opasitet", - "SSE.Views.EditShape.textRemoveShape": "Slett figur", - "SSE.Views.EditShape.textReorder": "Ny rekkefølge", - "SSE.Views.EditShape.textReplace": "Erstatt", - "SSE.Views.EditShape.textSize": "Størrelse", - "SSE.Views.EditShape.textStyle": "Stil", - "SSE.Views.EditShape.textToBackground": "Plasser lengst bak", - "SSE.Views.EditShape.textToForeground": "Plasser lengst frem", - "SSE.Views.EditText.textAddCustomColor": "Legg til egendefinert farge", - "SSE.Views.EditText.textBack": "Tilbake", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Egendefinert farge", - "SSE.Views.EditText.textFillColor": "Fyllfarge", - "SSE.Views.EditText.textFonts": "Skrifttyper", - "SSE.Views.EditText.textSize": "Størrelse", - "SSE.Views.EditText.textTextColor": "Tekstfarge", - "SSE.Views.FilterOptions.textClearFilter": "Nullstill filter", - "SSE.Views.FilterOptions.textDeleteFilter": "Slett filter", - "SSE.Views.FilterOptions.textFilter": "Alternativer for filter", - "SSE.Views.Search.textByColumns": "Etter kolonne", - "SSE.Views.Search.textByRows": "Etter rader", - "SSE.Views.Search.textDone": "Ferdig", - "SSE.Views.Search.textFind": "Finn", - "SSE.Views.Search.textFindAndReplace": "Finn og erstatt", - "SSE.Views.Search.textFormulas": "Formler", - "SSE.Views.Search.textHighlightRes": "Fremhev resultat", - "SSE.Views.Search.textLookIn": "Se i", - "SSE.Views.Search.textMatchCase": "Sammenlikn bokstav", - "SSE.Views.Search.textMatchCell": "Sammenlikn celle", - "SSE.Views.Search.textReplace": "Erstatt", - "SSE.Views.Search.textSearch": "Søk", - "SSE.Views.Search.textSearchBy": "Søk", - "SSE.Views.Search.textSearchIn": "Søk i", - "SSE.Views.Search.textSheet": "Ark", - "SSE.Views.Search.textValues": "Verdier", - "SSE.Views.Search.textWorkbook": "Arbeidsbok", - "SSE.Views.Settings.textAbout": "Om", - "SSE.Views.Settings.textAddress": "adresse", - "SSE.Views.Settings.textApplication": "Applikasjon", - "SSE.Views.Settings.textApplicationSettings": "Programalternativer", - "SSE.Views.Settings.textAuthor": "Forfatter", - "SSE.Views.Settings.textBack": "Tilbake", - "SSE.Views.Settings.textBottom": "Bunn", - "SSE.Views.Settings.textCentimeter": "Centimeter", - "SSE.Views.Settings.textCollaboration": "Samarbeid", - "SSE.Views.Settings.textColorSchemes": "Fargetemaer", - "SSE.Views.Settings.textComment": "Kommentar", - "SSE.Views.Settings.textCreated": "Opprettet", - "SSE.Views.Settings.textCreateDate": "Opprettelsesdato", - "SSE.Views.Settings.textCustom": "Egendefinert", - "SSE.Views.Settings.textCustomSize": "Egendefinert størrelse", - "SSE.Views.Settings.textDisableAll": "Deaktiver alt", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Deaktiver alle makroer med et varsel", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Deaktiver alle makroer uten varsling", - "SSE.Views.Settings.textDisplayComments": "Kommentarer", - "SSE.Views.Settings.textDisplayResolvedComments": "Løste kommentarer", - "SSE.Views.Settings.textDocInfo": "Informasjon om regneark", - "SSE.Views.Settings.textDocTitle": "Regnearktittel", - "SSE.Views.Settings.textDone": "Ferdig", - "SSE.Views.Settings.textDownload": "Last ned", - "SSE.Views.Settings.textDownloadAs": "Last ned som...", - "SSE.Views.Settings.textEditDoc": "Rediger dokument", - "SSE.Views.Settings.textEmail": "e-post", - "SSE.Views.Settings.textEnableAll": "Aktiver alle", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Aktiver alle makroer uten varsling", - "SSE.Views.Settings.textExample": "Eksempel", - "SSE.Views.Settings.textFind": "Finn", - "SSE.Views.Settings.textFindAndReplace": "Finn og erstatt", - "SSE.Views.Settings.textFormat": "Format", - "SSE.Views.Settings.textFormulaLanguage": "Formelspråk", - "SSE.Views.Settings.textHelp": "Hjelp", - "SSE.Views.Settings.textHideGridlines": "Skjul rutenett", - "SSE.Views.Settings.textHideHeadings": "Skjul overskrifter", - "SSE.Views.Settings.textInch": "Tomme", - "SSE.Views.Settings.textLandscape": "Landskap", - "SSE.Views.Settings.textLastModified": "Sist endret", - "SSE.Views.Settings.textLastModifiedBy": "Sist endret av", - "SSE.Views.Settings.textLeft": "Venstre", - "SSE.Views.Settings.textLoading": "Laster...", - "SSE.Views.Settings.textMacrosSettings": "Makroalternativer", - "SSE.Views.Settings.textMargins": "Marginer", - "SSE.Views.Settings.textOrientation": "Orientering", - "SSE.Views.Settings.textOwner": "Eier", - "SSE.Views.Settings.textPoint": "Punkt", - "SSE.Views.Settings.textPortrait": "Portrett", - "SSE.Views.Settings.textPoweredBy": "Drevet av", - "SSE.Views.Settings.textPrint": "Skriv ut", - "SSE.Views.Settings.textR1C1Style": "R1C1 referansestil", - "SSE.Views.Settings.textRegionalSettings": "Regionale alternativer", - "SSE.Views.Settings.textRight": "Høyre", - "SSE.Views.Settings.textSettings": "Innstillinger", - "SSE.Views.Settings.textShowNotification": "Vis varsling", - "SSE.Views.Settings.textSpreadsheetFormats": "Regnearkformel", - "SSE.Views.Settings.textSpreadsheetSettings": "Innstillinger for regneark", - "SSE.Views.Settings.textSubject": "Emne", - "SSE.Views.Settings.textTel": "tlf", - "SSE.Views.Settings.textTitle": "Tittel", - "SSE.Views.Settings.textTop": "Topp", - "SSE.Views.Settings.textUnitOfMeasurement": "Enhetsmål", - "SSE.Views.Settings.textUploaded": "Lastet opp", - "SSE.Views.Settings.textVersion": "Versjon", - "SSE.Views.Settings.unknownText": "Ukjent", - "SSE.Views.Toolbar.textBack": "Tilbake" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index 2a7070f82..d5474aa7c 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -1,659 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Reactie toevoegen", - "Common.Controllers.Collaboration.textCancel": "Annuleren", - "Common.Controllers.Collaboration.textDeleteComment": "Verwijder opmerking", - "Common.Controllers.Collaboration.textDeleteReply": "Verwijderen antwoord", - "Common.Controllers.Collaboration.textDone": "Klaar", - "Common.Controllers.Collaboration.textEdit": "Bewerken", - "Common.Controllers.Collaboration.textEditUser": "Document wordt op dit moment bewerkt door verschillende gebruikers.", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Wil je deze opmerking verwijderen?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Wil je dit antwoord verwijderen?", - "Common.Controllers.Collaboration.textReopen": "Heropenen", - "Common.Controllers.Collaboration.textResolve": "Oplossen", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Aangepaste kleuren", - "Common.UI.ThemeColorPalette.textStandartColors": "Standaardkleuren", - "Common.UI.ThemeColorPalette.textThemeColors": "Themakleuren", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Reactie toevoegen", - "Common.Views.Collaboration.textBack": "Vorige", - "Common.Views.Collaboration.textCancel": "Annuleren", - "Common.Views.Collaboration.textCollaboration": "Samenwerking", - "Common.Views.Collaboration.textDone": "Klaar", - "Common.Views.Collaboration.textEditReply": "Bewerk antwoord", - "Common.Views.Collaboration.textEditUsers": "Gebruikers", - "Common.Views.Collaboration.textEditСomment": "Opmerking bewerken", - "Common.Views.Collaboration.textNoComments": "Deze spreadsheet bevat geen opmerkingen", - "Common.Views.Collaboration.textСomments": "Opmerkingen", - "SSE.Controllers.AddChart.txtDiagramTitle": "Grafiektitel", - "SSE.Controllers.AddChart.txtSeries": "Serie", - "SSE.Controllers.AddChart.txtXAxis": "X-as", - "SSE.Controllers.AddChart.txtYAxis": "Y-as", - "SSE.Controllers.AddContainer.textChart": "Grafiek", - "SSE.Controllers.AddContainer.textFormula": "Functie", - "SSE.Controllers.AddContainer.textImage": "Afbeelding", - "SSE.Controllers.AddContainer.textOther": "Overige", - "SSE.Controllers.AddContainer.textShape": "Vorm", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.AddLink.textInvalidRange": "FOUT! Ongeldig celbereik", - "SSE.Controllers.AddLink.txtNotUrl": "Dit veld moet een URL bevatten in de notatie 'http://www.voorbeeld.com'", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.AddOther.textCancel": "Annuleren", - "SSE.Controllers.AddOther.textContinue": "Doorgaan", - "SSE.Controllers.AddOther.textDelete": "Verwijderen", - "SSE.Controllers.AddOther.textDeleteDraft": "Wilt u het concept verwijderen?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "SSE.Controllers.AddOther.txtNotUrl": "Dit veld moet een URL bevatten in de notatie 'http://www.voorbeeld.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Acties voor kopiëren, knippen en plakken met behulp van het contextmenu worden alleen in het huidige bestand uitgevoerd.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "De koppelingsverwijzing bestaat niet. Corrigeer de koppeling of verwijder deze.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Opmerking toevoegen", - "SSE.Controllers.DocumentHolder.menuAddLink": "Koppeling toevoegen", - "SSE.Controllers.DocumentHolder.menuCell": "Cel", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopiëren", - "SSE.Controllers.DocumentHolder.menuCut": "Knippen", - "SSE.Controllers.DocumentHolder.menuDelete": "Verwijderen", - "SSE.Controllers.DocumentHolder.menuEdit": "Bewerken", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Deelvensters blokkeren", - "SSE.Controllers.DocumentHolder.menuHide": "Verbergen", - "SSE.Controllers.DocumentHolder.menuMerge": "Samenvoegen", - "SSE.Controllers.DocumentHolder.menuMore": "Meer", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Koppeling openen", - "SSE.Controllers.DocumentHolder.menuPaste": "Plakken", - "SSE.Controllers.DocumentHolder.menuShow": "Tonen", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Blokkering deelvensters opheffen", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Samenvoeging opheffen", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Geen terugloop", - "SSE.Controllers.DocumentHolder.menuViewComment": "Bekijk opmerking", - "SSE.Controllers.DocumentHolder.menuWrap": "Terugloop", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.DocumentHolder.sheetCancel": "Annuleren", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Niet meer weergeven", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Alleen de gegevens in de cel linksboven blijven behouden in de samengevoegde cel.
    Wilt u doorgaan?", - "SSE.Controllers.EditCell.textAuto": "Automatisch", - "SSE.Controllers.EditCell.textFonts": "Lettertypen", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "FOUT! Het maximumaantal gegevensreeksen per grafiek is 255.", - "SSE.Controllers.EditChart.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", - "SSE.Controllers.EditChart.textAuto": "Automatisch", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Tussen maatstreepjes", - "SSE.Controllers.EditChart.textBillions": "Miljarden", - "SSE.Controllers.EditChart.textBottom": "Onder", - "SSE.Controllers.EditChart.textCenter": "Centreren", - "SSE.Controllers.EditChart.textCross": "Snijpunt", - "SSE.Controllers.EditChart.textCustom": "Aangepast", - "SSE.Controllers.EditChart.textFit": "Aanpassen aan breedte", - "SSE.Controllers.EditChart.textFixed": "Vast", - "SSE.Controllers.EditChart.textHigh": "Hoog", - "SSE.Controllers.EditChart.textHorizontal": "Horizontaal", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Honderden", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "In", - "SSE.Controllers.EditChart.textInnerBottom": "Binnen onder", - "SSE.Controllers.EditChart.textInnerTop": "Binnen boven", - "SSE.Controllers.EditChart.textLeft": "Links ", - "SSE.Controllers.EditChart.textLeftOverlay": "Overlay links", - "SSE.Controllers.EditChart.textLow": "Laag", - "SSE.Controllers.EditChart.textManual": "Handmatig", - "SSE.Controllers.EditChart.textMaxValue": "Maximumwaarde", - "SSE.Controllers.EditChart.textMillions": "Miljoenen", - "SSE.Controllers.EditChart.textMinValue": "Minimumwaarde", - "SSE.Controllers.EditChart.textNextToAxis": "Naast as", - "SSE.Controllers.EditChart.textNone": "Geen", - "SSE.Controllers.EditChart.textNoOverlay": "Geen overlay", - "SSE.Controllers.EditChart.textOnTickMarks": "Op maatstreepjes", - "SSE.Controllers.EditChart.textOut": "Buiten", - "SSE.Controllers.EditChart.textOuterTop": "Buiten boven", - "SSE.Controllers.EditChart.textOverlay": "Overlay", - "SSE.Controllers.EditChart.textRight": "Rechts", - "SSE.Controllers.EditChart.textRightOverlay": "Overlay rechts", - "SSE.Controllers.EditChart.textRotated": "Gedraaid", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Duizenden", - "SSE.Controllers.EditChart.textTop": "Boven", - "SSE.Controllers.EditChart.textTrillions": "Biljoenen", - "SSE.Controllers.EditChart.textValue": "Waarde", - "SSE.Controllers.EditContainer.textCell": "Cel", - "SSE.Controllers.EditContainer.textChart": "Grafiek", - "SSE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "SSE.Controllers.EditContainer.textImage": "Afbeelding", - "SSE.Controllers.EditContainer.textSettings": "Instellingen", - "SSE.Controllers.EditContainer.textShape": " Vorm", - "SSE.Controllers.EditContainer.textTable": "Tabel", - "SSE.Controllers.EditContainer.textText": "Tekst", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.EditHyperlink.textDefault": "Geselecteerd bereik", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Externe koppeling", - "SSE.Controllers.EditHyperlink.textInternalLink": "Intern gegevensbereik", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Ongeldig celbereik", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.voorbeeld.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.EditImage.textEmptyImgUrl": "U moet een URL opgeven voor de afbeelding.", - "SSE.Controllers.EditImage.txtNotUrl": "Dit veld moet een URL bevatten in de notatie 'http://www.voorbeeld.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Leeg}", - "SSE.Controllers.FilterOptions.textErrorMsg": "U moet ten minste één waarde selecteren", - "SSE.Controllers.FilterOptions.textErrorTitle": "Waarschuwing", - "SSE.Controllers.FilterOptions.textSelectAll": "Alles Selecteren", - "SSE.Controllers.Main.advCSVOptions": "CSV-opties kiezen", - "SSE.Controllers.Main.advDRMEnterPassword": "Voer uw wachtwoord in:", - "SSE.Controllers.Main.advDRMOptions": "Beschermd bestand", - "SSE.Controllers.Main.advDRMPassword": "Wachtwoord", - "SSE.Controllers.Main.applyChangesTextText": "Gegevens worden geladen...", - "SSE.Controllers.Main.applyChangesTitleText": "Gegevens worden geladen", - "SSE.Controllers.Main.closeButtonText": "Bestand sluiten", - "SSE.Controllers.Main.convertationTimeoutText": "Time-out voor conversie overschreden.", - "SSE.Controllers.Main.criticalErrorExtText": "Druk op \"OK\" om terug te gaan naar de lijst met documenten.", - "SSE.Controllers.Main.criticalErrorTitle": "Fout", - "SSE.Controllers.Main.downloadErrorText": "Download mislukt.", - "SSE.Controllers.Main.downloadMergeText": "Downloaden...", - "SSE.Controllers.Main.downloadMergeTitle": "Downloaden", - "SSE.Controllers.Main.downloadTextText": "Werkmap downloaden...", - "SSE.Controllers.Main.downloadTitleText": "Werkmap wordt gedownload", - "SSE.Controllers.Main.errorAccessDeny": "U probeert een actie uit te voeren waarvoor u geen rechten hebt.
    Neem contact op met de beheerder van de documentserver.", - "SSE.Controllers.Main.errorArgsRange": "De ingevoerde formule bevat een fout.
    Ongeldig bereik van argumenten gebruikt.", - "SSE.Controllers.Main.errorAutoFilterChange": "De bewerking is niet toegestaan omdat met de bewerking cellen in een tabel op uw werkblad verschoven zouden worden.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "De bewerking kan niet worden uitgevoerd voor de geselecteerde cellen omdat u niet een deel van een tabel kunt verplaatsen.
    Selecteer een ander gegevensbereik zodat de hele tabel wordt verplaatst en probeer het opnieuw.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "De bewerking kan niet worden uitgevoerd voor het geselecteerde bereik van cellen.
    Selecteer een uniform gegevensbereik dat afwijkt van het bestaande bereik en probeer het opnieuw.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "De bewerking kan niet worden uitgevoerd omdat het gebied gefilterde cellen bevat.
    Maak het verbergen van de gefilterde elementen ongedaan en probeer het opnieuw.", - "SSE.Controllers.Main.errorBadImageUrl": "URL afbeelding is onjuist", - "SSE.Controllers.Main.errorChangeArray": "U kunt een deel van een array niet wijzigen.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Verbinding met server is verbroken. Het document kan op dit moment niet worden bewerkt.", - "SSE.Controllers.Main.errorConnectToServer": "Het document kan niet worden opgeslagen. Controleer de verbindingsinstellingen of neem contact op met de beheerder.
    Wanneer u op de knop 'OK' klikt, wordt u gevraagd het document te downloaden.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Deze opdracht kan niet worden uitgevoerd op meerdere selecties.
    Selecteer één bereik en probeer het opnieuw.", - "SSE.Controllers.Main.errorCountArg": "De ingevoerde formule bevat een fout.
    Onjuist aantal argumenten gebruikt.", - "SSE.Controllers.Main.errorCountArgExceed": "De ingevoerde formule bevat een fout.
    Aantal argumenten overschreden.", - "SSE.Controllers.Main.errorCreateDefName": "De bestaande benoemde bereiken kunnen niet worden bewerkt en de nieuwe bereiken kunnen
    op dit moment niet worden gemaakt aangezien sommige bereiken al worden bewerkt.", - "SSE.Controllers.Main.errorDatabaseConnection": "Externe fout.
    Fout in databaseverbinding. Neem contact op met Support als deze fout zich blijft voordoen.", - "SSE.Controllers.Main.errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", - "SSE.Controllers.Main.errorDataRange": "Onjuist gegevensbereik.", - "SSE.Controllers.Main.errorDefaultMessage": "Foutcode: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Er is een fout ontstaan bij het werken met dit document.
    Gebruik de 'Download' optie om een backup op te slaan op uw computer.", - "SSE.Controllers.Main.errorFilePassProtect": "Het bestand is beschermd met een wachtwoord en kan niet worden geopend.", - "SSE.Controllers.Main.errorFileRequest": "Externe fout.
    Fout in aanvraag bestand. Neem contact op met Support als deze fout zich blijft voordoen.", - "SSE.Controllers.Main.errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet die is ingesteld voor uw server.
    Neem contact op met uw Document Server-beheerder voor details.", - "SSE.Controllers.Main.errorFileVKey": "Externe fout.
    Ongeldige beveiligingssleutel. Neem contact op met Support als deze fout zich blijft voordoen.", - "SSE.Controllers.Main.errorFillRange": "Het geselecteerde celbereik kan niet worden gevuld.
    Alle samengevoegde cellen moeten dezelfde grootte hebben.", - "SSE.Controllers.Main.errorFormulaName": "De ingevoerde formule bevat een fout.
    Onjuiste naam gebruikt voor formule.", - "SSE.Controllers.Main.errorFormulaParsing": "Interne fout bij ontleden van de formule.", - "SSE.Controllers.Main.errorFrmlMaxLength": "De lengte van uw formule overschrijdt de limiet van 8192 tekens.
    Bewerk de formule en probeer het opnieuw.", - "SSE.Controllers.Main.errorFrmlMaxReference": "U kunt deze formule niet invoeren omdat deze te veel
    waarden, cel verwijzingen en / of namen heeft.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Tekstwaarden in formules zijn beperkt tot 255 tekens.
    Gebruik de functie CONCATENEREN of de aaneenschakelingsoperator (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "De functie verwijst naar een blad dat niet bestaat.
    Controleer de gegevens en probeer het opnieuw.", - "SSE.Controllers.Main.errorInvalidRef": "Voer een juiste naam in voor de selectie of een geldige referentie om naar toe te gaan.", - "SSE.Controllers.Main.errorKeyEncrypt": "Onbekende sleuteldescriptor", - "SSE.Controllers.Main.errorKeyExpire": "Sleuteldescriptor vervallen", - "SSE.Controllers.Main.errorLockedAll": "De bewerking kan niet worden uitgevoerd omdat het blad is vergrendeld door een andere gebruiker.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "De naam van het blad kan op dit moment niet worden gewijzigd omdat het al wordt hernoemd door een andere gebruiker", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Laden mislukt", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Samenvoegen mislukt.", - "SSE.Controllers.Main.errorMaxPoints": "Het maximaal aantal punten in een serie per grafiek is 4096", - "SSE.Controllers.Main.errorMoveRange": "Een gedeelte van een samengevoegde cel kan niet worden gewijzigd", - "SSE.Controllers.Main.errorMultiCellFormula": "Matrixformules met meerdere cellen zijn niet toegestaan in tabellen.", - "SSE.Controllers.Main.errorOpensource": "Met de gratis Community-versie kunt u documenten openen om ze alleen te bekijken. Om toegang te krijgen tot mobiele webeditors is een commerciële licentie vereist.", - "SSE.Controllers.Main.errorOpenWarning": "Een van de bestandsformules overschrijdt de limiet van 8192 tekens.
    De formule is verwijderd.", - "SSE.Controllers.Main.errorOperandExpected": "De syntaxis van de ingevoerde functie is niet juist. Controleer of een van de haakjes '(' of ')' ontbreekt.", - "SSE.Controllers.Main.errorPasteMaxRange": "Het te kopiëren gebied komt niet overeen met het plakgebied.
    Selecteer een gebied met dezelfde grootte of klik op de eerste cel van een rij om de gekopieerde cellen te plakken.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Helaas is het met de huidige programmaversie niet mogelijk om meer dan 1500 pagina's in één keer af te drukken.
    Deze beperking wordt opgeheven in komende releases.", - "SSE.Controllers.Main.errorProcessSaveResult": "Opslaan mislukt", - "SSE.Controllers.Main.errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen. ", - "SSE.Controllers.Main.errorSessionAbsolute": "De bewerksessie voor het document is vervallen. Laad de pagina opnieuw.", - "SSE.Controllers.Main.errorSessionIdle": "Het document is al lang niet meer bewerkt. Laad de pagina opnieuw. ", - "SSE.Controllers.Main.errorSessionToken": "De verbinding met de server is onderbroken. Laad de pagina opnieuw.", - "SSE.Controllers.Main.errorStockChart": "Onjuiste volgorde rijen. Als u een aandelengrafiek wilt maken, zet u de rijen in de volgende volgorde op het blad:
    beginkoers, hoogste koers, laagste koers, slotkoers.", - "SSE.Controllers.Main.errorToken": "Het token voor de documentbeveiliging heeft niet de juiste indeling.
    Neem contact op met de beheerder van de documentserver.", - "SSE.Controllers.Main.errorTokenExpire": "Het token voor de documentbeveiliging is vervallen.
    Neem contact op met de beheerder van de documentserver.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Externe fout.
    Onverwachte GUID. Neem contact op met Support als deze fout zich blijft voordoen.", - "SSE.Controllers.Main.errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", - "SSE.Controllers.Main.errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", - "SSE.Controllers.Main.errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", - "SSE.Controllers.Main.errorViewerDisconnect": "Verbinding is verbroken. U kunt het document nog wel bekijken,
    maar kunt het pas downloaden wanneer de verbinding is hersteld.", - "SSE.Controllers.Main.errorWrongBracketsCount": "De ingevoerde formule bevat een fout.
    Verkeerd aantal haakjes gebruikt.", - "SSE.Controllers.Main.errorWrongOperator": "De ingevoerde formule bevat een fout. Verkeerde operator gebruikt.
    Corrigeer de fout.", - "SSE.Controllers.Main.leavePageText": "Dit document bevat niet-opgeslagen wijzigingen. Klik op 'Op deze pagina blijven' om te wachten totdat het document automatisch wordt opgeslagen. Klik op 'Deze pagina verlaten' om de niet-opgeslagen wijzigingen te negeren.", - "SSE.Controllers.Main.loadFontsTextText": "Gegevens worden geladen...", - "SSE.Controllers.Main.loadFontsTitleText": "Gegevens worden geladen", - "SSE.Controllers.Main.loadFontTextText": "Gegevens worden geladen...", - "SSE.Controllers.Main.loadFontTitleText": "Gegevens worden geladen", - "SSE.Controllers.Main.loadImagesTextText": "Afbeeldingen worden geladen...", - "SSE.Controllers.Main.loadImagesTitleText": "Afbeeldingen worden geladen", - "SSE.Controllers.Main.loadImageTextText": "Afbeelding wordt geladen...", - "SSE.Controllers.Main.loadImageTitleText": "Afbeelding wordt geladen", - "SSE.Controllers.Main.loadingDocumentTextText": "Spreadsheet wordt geladen...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Spreadsheet wordt geladen", - "SSE.Controllers.Main.mailMergeLoadFileText": "Gegevensbron wordt geladen...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Gegevensbron wordt geladen", - "SSE.Controllers.Main.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.Main.openErrorText": "Er is een fout opgetreden bij het openen van het bestand", - "SSE.Controllers.Main.openTextText": "Document wordt geopend...", - "SSE.Controllers.Main.openTitleText": "Document wordt geopend", - "SSE.Controllers.Main.pastInMergeAreaError": "Een gedeelte van een samengevoegde cel kan niet worden gewijzigd", - "SSE.Controllers.Main.printTextText": "Document wordt afgedrukt...", - "SSE.Controllers.Main.printTitleText": "Document wordt afgedrukt ", - "SSE.Controllers.Main.reloadButtonText": "Pagina opnieuw laden", - "SSE.Controllers.Main.requestEditFailedMessageText": "Het document wordt op dit moment door iemand anders bewerkt. Probeer het later opnieuw.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Toegang geweigerd", - "SSE.Controllers.Main.saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", - "SSE.Controllers.Main.savePreparingText": "Voorbereiding op opslaan", - "SSE.Controllers.Main.savePreparingTitle": "Bezig met voorbereiding op opslaan. Even geduld...", - "SSE.Controllers.Main.saveTextText": "Document wordt opgeslagen...", - "SSE.Controllers.Main.saveTitleText": "Document wordt opgeslagen", - "SSE.Controllers.Main.scriptLoadError": "De verbinding is te langzaam, sommige componenten konden niet geladen worden. Laad de pagina opnieuw.", - "SSE.Controllers.Main.sendMergeText": "Samenvoegen en verzenden...", - "SSE.Controllers.Main.sendMergeTitle": "Samenvoegen en verzenden", - "SSE.Controllers.Main.textAnonymous": "Anoniem", - "SSE.Controllers.Main.textBack": "Terug", - "SSE.Controllers.Main.textBuyNow": "Website bezoeken", - "SSE.Controllers.Main.textCancel": "Annuleren", - "SSE.Controllers.Main.textClose": "Sluiten", - "SSE.Controllers.Main.textContactUs": "Verkoopafdeling", - "SSE.Controllers.Main.textCustomLoader": "Volgens de voorwaarden van de licentie heeft u geen recht om de lader aan te passen.
    Neem contact op met onze verkoopafdeling voor een offerte.", - "SSE.Controllers.Main.textDone": "Klaar", - "SSE.Controllers.Main.textGuest": "Gastgebruiker", - "SSE.Controllers.Main.textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", - "SSE.Controllers.Main.textLoadingDocument": "Spreadsheet wordt geladen", - "SSE.Controllers.Main.textNo": "Nee", - "SSE.Controllers.Main.textNoLicenseTitle": "Licentielimiet bereikt", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Betaalde optie", - "SSE.Controllers.Main.textPassword": "Wachtwoord", - "SSE.Controllers.Main.textPreloader": "Laden...", - "SSE.Controllers.Main.textRemember": "Onthoud voorkeur", - "SSE.Controllers.Main.textShape": "Vorm", - "SSE.Controllers.Main.textStrict": "Strikte modus", - "SSE.Controllers.Main.textTryUndoRedo": "De functies Ongedaan maken/Opnieuw worden uitgeschakeld in de modus Snel gezamenlijk bewerken.
    Klik op de knop 'Strikte modus' om over te schakelen naar de strikte modus voor gezamenlijk bewerken. U kunt het bestand dan zonder interferentie van andere gebruikers bewerken en uw wijzigingen verzenden wanneer u die opslaat. U kunt schakelen tussen de modi voor gezamenlijke bewerking via Geavanceerde instellingen van de editor.", - "SSE.Controllers.Main.textUsername": "Gebruikersnaam", - "SSE.Controllers.Main.textYes": "Ja", - "SSE.Controllers.Main.titleLicenseExp": "Licentie vervallen", - "SSE.Controllers.Main.titleServerVersion": "Editor bijgewerkt", - "SSE.Controllers.Main.titleUpdateVersion": "Versie gewijzigd", - "SSE.Controllers.Main.txtAccent": "Accent", - "SSE.Controllers.Main.txtArt": "Hier tekst invoeren", - "SSE.Controllers.Main.txtBasicShapes": "Basisvormen", - "SSE.Controllers.Main.txtButtons": "Knoppen", - "SSE.Controllers.Main.txtCallouts": "Callouts", - "SSE.Controllers.Main.txtCharts": "Grafieken", - "SSE.Controllers.Main.txtDelimiter": "Scheidingsteken", - "SSE.Controllers.Main.txtDiagramTitle": "Grafiektitel", - "SSE.Controllers.Main.txtEditingMode": "Bewerkmodus instellen...", - "SSE.Controllers.Main.txtEncoding": "Versleuteling", - "SSE.Controllers.Main.txtErrorLoadHistory": "Laden geschiedenis is mislukt", - "SSE.Controllers.Main.txtFiguredArrows": "Pijlvormen", - "SSE.Controllers.Main.txtLines": "Lijnen", - "SSE.Controllers.Main.txtMath": "Wiskunde", - "SSE.Controllers.Main.txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.", - "SSE.Controllers.Main.txtRectangles": "Rechthoeken", - "SSE.Controllers.Main.txtSeries": "Serie", - "SSE.Controllers.Main.txtSpace": "Spatie", - "SSE.Controllers.Main.txtStarsRibbons": "Sterren en linten", - "SSE.Controllers.Main.txtStyle_Bad": "Slecht", - "SSE.Controllers.Main.txtStyle_Calculation": "Berekening", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Cel controleren", - "SSE.Controllers.Main.txtStyle_Comma": "Komma", - "SSE.Controllers.Main.txtStyle_Currency": "Valuta", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Verklarende tekst", - "SSE.Controllers.Main.txtStyle_Good": "Goed", - "SSE.Controllers.Main.txtStyle_Heading_1": "Kop 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Kop 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Kop 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Kop 4", - "SSE.Controllers.Main.txtStyle_Input": "Invoer", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Gekoppelde cel", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutraal", - "SSE.Controllers.Main.txtStyle_Normal": "Normaal", - "SSE.Controllers.Main.txtStyle_Note": "Notitie", - "SSE.Controllers.Main.txtStyle_Output": "Uitvoer", - "SSE.Controllers.Main.txtStyle_Percent": "Procent", - "SSE.Controllers.Main.txtStyle_Title": "Titel", - "SSE.Controllers.Main.txtStyle_Total": "Totaal", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Waarschuwingstekst", - "SSE.Controllers.Main.txtTab": "Tab", - "SSE.Controllers.Main.txtXAxis": "X-as", - "SSE.Controllers.Main.txtYAxis": "Y-as", - "SSE.Controllers.Main.unknownErrorText": "Onbekende fout.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Uw browser wordt niet ondersteund.", - "SSE.Controllers.Main.uploadImageExtMessage": "Onbekende afbeeldingsindeling.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maximale afbeeldingsgrootte overschreden.", - "SSE.Controllers.Main.uploadImageTextText": "Afbeelding wordt geüpload...", - "SSE.Controllers.Main.uploadImageTitleText": "Afbeelding wordt geüpload", - "SSE.Controllers.Main.waitText": "Een moment...", - "SSE.Controllers.Main.warnLicenseExceeded": "Het aantal gelijktijdige verbindingen met de document server heeft het maximum overschreven. Het document zal geopend worden in een alleen-lezen modus.
    Neem contact op met de beheerder voor meer informatie.", - "SSE.Controllers.Main.warnLicenseExp": "Uw licentie is vervallen.
    Werk uw licentie bij en vernieuw de pagina.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licentie verlopen.
    U heeft geen toegang tot documentbewerkingsfunctionaliteit.
    Neem contact op met uw beheerder.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Licentie moet worden verlengd.
    U heeft beperkte toegang tot documentbewerkingsfunctionaliteit.
    Neem contact op met uw beheerder voor volledige toegang", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Het aantal gelijktijdige gebruikers met de document server heeft het maximum overschreven. Het document zal geopend worden in een alleen-lezen modus.
    Neem contact op met de beheerder voor meer informatie.", - "SSE.Controllers.Main.warnNoLicense": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
    Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Deze versie van %1 bevat limieten voor het aantal gelijktijdige gebruikers.
    Indien meer nodig is, upgrade dan de huidige licentie of schaf een commerciële licentie aan.", - "SSE.Controllers.Main.warnProcessRightsChange": "Het recht om het bestand te bewerken is u ontzegd.", - "SSE.Controllers.Search.textNoTextFound": "Tekst niet gevonden", - "SSE.Controllers.Search.textReplaceAll": "Alles vervangen", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.Settings.txtDe": "Duits", - "SSE.Controllers.Settings.txtEn": "Engels", - "SSE.Controllers.Settings.txtEs": "Spaans", - "SSE.Controllers.Settings.txtFr": "Frans", - "SSE.Controllers.Settings.txtIt": "Italiaans", - "SSE.Controllers.Settings.txtPl": "Pools", - "SSE.Controllers.Settings.txtRu": "Russisch", - "SSE.Controllers.Settings.warnDownloadAs": "Als u doorgaat met opslaan in deze indeling, gaan alle kenmerken verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?", - "SSE.Controllers.Statusbar.cancelButtonText": "Annuleren", - "SSE.Controllers.Statusbar.errNameExists": "Er bestaat al een werkblad met deze naam.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Een werkblad naam kan deze karakters niet bevatten: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Werkblad naam mag niet leeg zijn", - "SSE.Controllers.Statusbar.errorLastSheet": "Werkmap moet ten minste één zichtbaar werkblad bevatten.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Het werkblad kan niet worden verwijderd.", - "SSE.Controllers.Statusbar.menuDelete": "Verwijderen", - "SSE.Controllers.Statusbar.menuDuplicate": "Dupliceren", - "SSE.Controllers.Statusbar.menuHide": "Verbergen", - "SSE.Controllers.Statusbar.menuMore": "Meer", - "SSE.Controllers.Statusbar.menuRename": "Hernoemen", - "SSE.Controllers.Statusbar.menuUnhide": "Verbergen ongedaan maken", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Waarschuwing", - "SSE.Controllers.Statusbar.strRenameSheet": "Blad hernoemen", - "SSE.Controllers.Statusbar.strSheet": "Blad", - "SSE.Controllers.Statusbar.strSheetName": "Bladnaam", - "SSE.Controllers.Statusbar.textExternalLink": "Externe koppeling", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Het werkblad kan gegevens bevatten. Doorgaan met de bewerking?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Dit document bevat niet-opgeslagen wijzigingen. Klik op 'Op deze pagina blijven' om te wachten totdat het document automatisch wordt opgeslagen. Klik op 'Deze pagina verlaten' om de niet-opgeslagen wijzigingen te negeren.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "U verlaat de toepassing", - "SSE.Controllers.Toolbar.leaveButtonText": "Pagina verlaten", - "SSE.Controllers.Toolbar.stayButtonText": "Op deze pagina blijven", - "SSE.Views.AddFunction.sCatDateAndTime": "Datum en tijd", - "SSE.Views.AddFunction.sCatEngineering": "Engineering", - "SSE.Views.AddFunction.sCatFinancial": "Financieel", - "SSE.Views.AddFunction.sCatInformation": "Informatie", - "SSE.Views.AddFunction.sCatLogical": "Logisch", - "SSE.Views.AddFunction.sCatLookupAndReference": "Zoeken en verwijzen", - "SSE.Views.AddFunction.sCatMathematic": "Wiskunde en trigonometrie", - "SSE.Views.AddFunction.sCatStatistical": "Statistisch", - "SSE.Views.AddFunction.sCatTextAndData": "Tekst en gegevens", - "SSE.Views.AddFunction.textBack": "Terug", - "SSE.Views.AddFunction.textGroups": "Categorieën", - "SSE.Views.AddLink.textAddLink": "Koppeling toevoegen", - "SSE.Views.AddLink.textAddress": "Adres", - "SSE.Views.AddLink.textDisplay": "Weergeven", - "SSE.Views.AddLink.textExternalLink": "Externe koppeling", - "SSE.Views.AddLink.textInsert": "Invoegen", - "SSE.Views.AddLink.textInternalLink": "Intern gegevensbereik", - "SSE.Views.AddLink.textLink": "Koppeling", - "SSE.Views.AddLink.textLinkType": "Type koppeling", - "SSE.Views.AddLink.textRange": "Bereik", - "SSE.Views.AddLink.textRequired": "Vereist", - "SSE.Views.AddLink.textSelectedRange": "Geselecteerd bereik", - "SSE.Views.AddLink.textSheet": "Blad", - "SSE.Views.AddLink.textTip": "Scherminfo", - "SSE.Views.AddOther.textAddComment": "Opmerking toevoegen", - "SSE.Views.AddOther.textAddress": "Adres", - "SSE.Views.AddOther.textBack": "Terug", - "SSE.Views.AddOther.textComment": "Opmerking", - "SSE.Views.AddOther.textDone": "Klaar", - "SSE.Views.AddOther.textFilter": "Filter", - "SSE.Views.AddOther.textFromLibrary": "Afbeelding uit bibliotheek", - "SSE.Views.AddOther.textFromURL": "Afbeelding van URL", - "SSE.Views.AddOther.textImageURL": "URL afbeelding", - "SSE.Views.AddOther.textInsert": "Invoegen", - "SSE.Views.AddOther.textInsertImage": "Afbeelding invoegen", - "SSE.Views.AddOther.textLink": "Koppeling", - "SSE.Views.AddOther.textLinkSettings": "Koppelingsinstellingen", - "SSE.Views.AddOther.textSort": "Sorteren en filteren", - "SSE.Views.EditCell.textAccounting": "Boekhouding", - "SSE.Views.EditCell.textAddCustomColor": "Aangepaste kleur toevoegen", - "SSE.Views.EditCell.textAlignBottom": "Onder uitlijnen", - "SSE.Views.EditCell.textAlignCenter": "Midden uitlijnen", - "SSE.Views.EditCell.textAlignLeft": "Links uitlijnen", - "SSE.Views.EditCell.textAlignMiddle": "Midden uitlijnen", - "SSE.Views.EditCell.textAlignRight": "Rechts uitlijnen", - "SSE.Views.EditCell.textAlignTop": "Boven uitlijnen", - "SSE.Views.EditCell.textAllBorders": "Alle randen", - "SSE.Views.EditCell.textAngleClockwise": "Rechtsom draaien", - "SSE.Views.EditCell.textAngleCounterclockwise": "Linksom draaien", - "SSE.Views.EditCell.textBack": "Terug", - "SSE.Views.EditCell.textBorderStyle": "Stijl rand", - "SSE.Views.EditCell.textBottomBorder": "Onderrand", - "SSE.Views.EditCell.textCellStyle": "Celstijlen", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Kleur", - "SSE.Views.EditCell.textCurrency": "Valuta", - "SSE.Views.EditCell.textCustomColor": "Aangepaste kleur", - "SSE.Views.EditCell.textDate": "Datum", - "SSE.Views.EditCell.textDiagDownBorder": "Diagonale rand naar onder", - "SSE.Views.EditCell.textDiagUpBorder": "Diagonale rand naar boven", - "SSE.Views.EditCell.textDollar": "Dollar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Opvulkleur", - "SSE.Views.EditCell.textFonts": "Lettertypen", - "SSE.Views.EditCell.textFormat": "Opmaak", - "SSE.Views.EditCell.textGeneral": "Algemeen", - "SSE.Views.EditCell.textHorizontalText": "Horizontale tekst", - "SSE.Views.EditCell.textInBorders": "Binnenranden", - "SSE.Views.EditCell.textInHorBorder": "Horizontale binnenrand", - "SSE.Views.EditCell.textInteger": "Geheel getal", - "SSE.Views.EditCell.textInVertBorder": "Verticale binnenrand", - "SSE.Views.EditCell.textJustified": "Uitgevuld", - "SSE.Views.EditCell.textLeftBorder": "Linkerrand", - "SSE.Views.EditCell.textMedium": "Gemiddeld", - "SSE.Views.EditCell.textNoBorder": "Geen rand", - "SSE.Views.EditCell.textNumber": "Getal", - "SSE.Views.EditCell.textPercentage": "Percentage", - "SSE.Views.EditCell.textPound": "Pond", - "SSE.Views.EditCell.textRightBorder": "Rechterrand", - "SSE.Views.EditCell.textRotateTextDown": "Tekst omlaag draaien", - "SSE.Views.EditCell.textRotateTextUp": "Tekst omhoog draaien", - "SSE.Views.EditCell.textRouble": "Roebel", - "SSE.Views.EditCell.textScientific": "Wetenschappelijk", - "SSE.Views.EditCell.textSize": "Grootte", - "SSE.Views.EditCell.textText": "Tekst", - "SSE.Views.EditCell.textTextColor": "Tekstkleur", - "SSE.Views.EditCell.textTextFormat": "Tekstopmaak", - "SSE.Views.EditCell.textTextOrientation": "Tekstoriëntatie", - "SSE.Views.EditCell.textThick": "Dik", - "SSE.Views.EditCell.textThin": "Dun", - "SSE.Views.EditCell.textTime": "Tijd", - "SSE.Views.EditCell.textTopBorder": "Bovenrand", - "SSE.Views.EditCell.textVerticalText": "Verticale tekst", - "SSE.Views.EditCell.textWrapText": "Tekstterugloop", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Aangepaste kleur toevoegen", - "SSE.Views.EditChart.textAuto": "Automatisch", - "SSE.Views.EditChart.textAxisCrosses": "Snijpunten assen", - "SSE.Views.EditChart.textAxisOptions": "Asopties", - "SSE.Views.EditChart.textAxisPosition": "Aspositie", - "SSE.Views.EditChart.textAxisTitle": "Astitel", - "SSE.Views.EditChart.textBack": "Terug", - "SSE.Views.EditChart.textBackward": "Naar achter verplaatsen", - "SSE.Views.EditChart.textBorder": "Rand", - "SSE.Views.EditChart.textBottom": "Onder", - "SSE.Views.EditChart.textChart": "Grafiek", - "SSE.Views.EditChart.textChartTitle": "Grafiektitel", - "SSE.Views.EditChart.textColor": "Kleur", - "SSE.Views.EditChart.textCrossesValue": "Waarde snijpunten", - "SSE.Views.EditChart.textCustomColor": "Aangepaste kleur", - "SSE.Views.EditChart.textDataLabels": "Gegevenslabels", - "SSE.Views.EditChart.textDesign": "Ontwerp", - "SSE.Views.EditChart.textDisplayUnits": "Weergave-eenheden", - "SSE.Views.EditChart.textFill": "Vulling", - "SSE.Views.EditChart.textForward": "Naar voren verplaatsen", - "SSE.Views.EditChart.textGridlines": "Rasterlijnen", - "SSE.Views.EditChart.textHorAxis": "Horizontale as", - "SSE.Views.EditChart.textHorizontal": "Horizontaal", - "SSE.Views.EditChart.textLabelOptions": "Labelopties", - "SSE.Views.EditChart.textLabelPos": "Labelpositie", - "SSE.Views.EditChart.textLayout": "Lay-out", - "SSE.Views.EditChart.textLeft": "Links", - "SSE.Views.EditChart.textLeftOverlay": "Overlay links", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Primair", - "SSE.Views.EditChart.textMajorMinor": "Primair en secundair", - "SSE.Views.EditChart.textMajorType": "Hoofdtype", - "SSE.Views.EditChart.textMaxValue": "Maximumwaarde", - "SSE.Views.EditChart.textMinor": "Secundair", - "SSE.Views.EditChart.textMinorType": "Secundair type", - "SSE.Views.EditChart.textMinValue": "Minimumwaarde", - "SSE.Views.EditChart.textNone": "Geen", - "SSE.Views.EditChart.textNoOverlay": "Geen overlay", - "SSE.Views.EditChart.textOverlay": "Overlay", - "SSE.Views.EditChart.textRemoveChart": "Grafiek verwijderen", - "SSE.Views.EditChart.textReorder": "Opnieuw ordenen", - "SSE.Views.EditChart.textRight": "Rechts", - "SSE.Views.EditChart.textRightOverlay": "Overlay rechts", - "SSE.Views.EditChart.textRotated": "Gedraaid", - "SSE.Views.EditChart.textSize": "Grootte", - "SSE.Views.EditChart.textStyle": "Stijl", - "SSE.Views.EditChart.textTickOptions": "Opties voor maatstreepjes", - "SSE.Views.EditChart.textToBackground": "Naar achtergrond sturen", - "SSE.Views.EditChart.textToForeground": "Naar voorgrond brengen", - "SSE.Views.EditChart.textTop": "Boven", - "SSE.Views.EditChart.textType": "Type", - "SSE.Views.EditChart.textValReverseOrder": "Waarden in omgekeerde volgorde", - "SSE.Views.EditChart.textVerAxis": "Verticale as", - "SSE.Views.EditChart.textVertical": "Verticaal", - "SSE.Views.EditHyperlink.textBack": "Terug", - "SSE.Views.EditHyperlink.textDisplay": "Weergeven", - "SSE.Views.EditHyperlink.textEditLink": "Koppeling bewerken", - "SSE.Views.EditHyperlink.textExternalLink": "Externe koppeling", - "SSE.Views.EditHyperlink.textInternalLink": "Intern gegevensbereik", - "SSE.Views.EditHyperlink.textLink": "Koppeling", - "SSE.Views.EditHyperlink.textLinkType": "Type koppeling", - "SSE.Views.EditHyperlink.textRange": "Bereik", - "SSE.Views.EditHyperlink.textRemoveLink": "Koppeling verwijderen", - "SSE.Views.EditHyperlink.textScreenTip": "Scherminfo", - "SSE.Views.EditHyperlink.textSheet": "Blad", - "SSE.Views.EditImage.textAddress": "Adres", - "SSE.Views.EditImage.textBack": "Terug", - "SSE.Views.EditImage.textBackward": "Naar achter verplaatsen", - "SSE.Views.EditImage.textDefault": "Ware grootte", - "SSE.Views.EditImage.textForward": "Naar voren verplaatsen", - "SSE.Views.EditImage.textFromLibrary": "Afbeelding uit bibliotheek", - "SSE.Views.EditImage.textFromURL": "Afbeelding van URL", - "SSE.Views.EditImage.textImageURL": "URL afbeelding", - "SSE.Views.EditImage.textLinkSettings": "Koppelingsinstellingen", - "SSE.Views.EditImage.textRemove": "Afbeelding verwijderen", - "SSE.Views.EditImage.textReorder": "Opnieuw ordenen", - "SSE.Views.EditImage.textReplace": "Vervangen", - "SSE.Views.EditImage.textReplaceImg": "Afbeelding vervangen", - "SSE.Views.EditImage.textToBackground": "Naar achtergrond sturen", - "SSE.Views.EditImage.textToForeground": "Naar voorgrond brengen", - "SSE.Views.EditShape.textAddCustomColor": "Aangepaste kleur toevoegen", - "SSE.Views.EditShape.textBack": "Terug", - "SSE.Views.EditShape.textBackward": "Naar achter verplaatsen", - "SSE.Views.EditShape.textBorder": "Rand", - "SSE.Views.EditShape.textColor": "Kleur", - "SSE.Views.EditShape.textCustomColor": "Aangepaste kleur", - "SSE.Views.EditShape.textEffects": "Effecten", - "SSE.Views.EditShape.textFill": "Vulling", - "SSE.Views.EditShape.textForward": "Naar voren verplaatsen", - "SSE.Views.EditShape.textOpacity": "Ondoorzichtigheid", - "SSE.Views.EditShape.textRemoveShape": "Vorm verwijderen", - "SSE.Views.EditShape.textReorder": "Opnieuw ordenen", - "SSE.Views.EditShape.textReplace": "Vervangen", - "SSE.Views.EditShape.textSize": "Grootte", - "SSE.Views.EditShape.textStyle": "Stijl", - "SSE.Views.EditShape.textToBackground": "Naar achtergrond sturen", - "SSE.Views.EditShape.textToForeground": "Naar voorgrond brengen", - "SSE.Views.EditText.textAddCustomColor": "Aangepaste kleur toevoegen", - "SSE.Views.EditText.textBack": "Terug", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Aangepaste kleur", - "SSE.Views.EditText.textFillColor": "Opvulkleur", - "SSE.Views.EditText.textFonts": "Lettertypen", - "SSE.Views.EditText.textSize": "Grootte", - "SSE.Views.EditText.textTextColor": "Tekstkleur", - "SSE.Views.FilterOptions.textClearFilter": "Filter wissen", - "SSE.Views.FilterOptions.textDeleteFilter": "Filter verwijderen", - "SSE.Views.FilterOptions.textFilter": "Filteropties", - "SSE.Views.Search.textByColumns": "Kolommen", - "SSE.Views.Search.textByRows": "Door rijen", - "SSE.Views.Search.textDone": "Klaar", - "SSE.Views.Search.textFind": "Zoeken", - "SSE.Views.Search.textFindAndReplace": "Zoeken en vervangen", - "SSE.Views.Search.textFormulas": "Formules", - "SSE.Views.Search.textHighlightRes": "Resultaten markeren", - "SSE.Views.Search.textLookIn": "Zoeken in", - "SSE.Views.Search.textMatchCase": "Identieke hoofdletters/kleine letters", - "SSE.Views.Search.textMatchCell": "Identiek aan cel", - "SSE.Views.Search.textReplace": "Vervangen", - "SSE.Views.Search.textSearch": "Zoeken", - "SSE.Views.Search.textSearchBy": "Zoeken", - "SSE.Views.Search.textSearchIn": "Zoeken in", - "SSE.Views.Search.textSheet": "Blad", - "SSE.Views.Search.textValues": "Waarden", - "SSE.Views.Search.textWorkbook": "Werkmap", - "SSE.Views.Settings.textAbout": "Over", - "SSE.Views.Settings.textAddress": "adres", - "SSE.Views.Settings.textApplication": "Applicatie", - "SSE.Views.Settings.textApplicationSettings": "Instellingen", - "SSE.Views.Settings.textAuthor": "Auteur", - "SSE.Views.Settings.textBack": "Terug", - "SSE.Views.Settings.textBottom": "Onder", - "SSE.Views.Settings.textCentimeter": "Centimeter", - "SSE.Views.Settings.textCollaboration": "Samenwerking", - "SSE.Views.Settings.textColorSchemes": "Kleurschema's", - "SSE.Views.Settings.textComment": "Opmerking", - "SSE.Views.Settings.textCommentingDisplay": "Commentaarweergave", - "SSE.Views.Settings.textCreated": "Aangemaakt", - "SSE.Views.Settings.textCreateDate": "Datum gemaakt", - "SSE.Views.Settings.textCustom": "Aangepast", - "SSE.Views.Settings.textCustomSize": "Aangepaste grootte", - "SSE.Views.Settings.textDisableAll": "Alles uitschakelen", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Schakel alle macro's uit met een melding", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Schakel alle macro's uit zonder melding", - "SSE.Views.Settings.textDisplayComments": "Opmerkingen", - "SSE.Views.Settings.textDisplayResolvedComments": "Opgeloste opmerkingen", - "SSE.Views.Settings.textDocInfo": "Info over spreadsheet", - "SSE.Views.Settings.textDocTitle": "Titel spreadsheet", - "SSE.Views.Settings.textDone": "Klaar", - "SSE.Views.Settings.textDownload": "Downloaden", - "SSE.Views.Settings.textDownloadAs": "Downloaden als...", - "SSE.Views.Settings.textEditDoc": "Document bewerken", - "SSE.Views.Settings.textEmail": "e-mail", - "SSE.Views.Settings.textEnableAll": "Alles inschakelen", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Schakel alle macro's in zonder een notificatie", - "SSE.Views.Settings.textExample": "Voorbeeld", - "SSE.Views.Settings.textFind": "Zoeken", - "SSE.Views.Settings.textFindAndReplace": "Zoeken en vervangen", - "SSE.Views.Settings.textFormat": "Opmaak", - "SSE.Views.Settings.textFormulaLanguage": "Taal formule", - "SSE.Views.Settings.textHelp": "Help", - "SSE.Views.Settings.textHideGridlines": "Rasterlijnen verbergen", - "SSE.Views.Settings.textHideHeadings": "Koppen verbergen", - "SSE.Views.Settings.textInch": "Inch", - "SSE.Views.Settings.textLandscape": "Liggend", - "SSE.Views.Settings.textLastModified": "Laatst aangepast", - "SSE.Views.Settings.textLastModifiedBy": "Laatst aangepast door", - "SSE.Views.Settings.textLeft": "Links", - "SSE.Views.Settings.textLoading": "Laden...", - "SSE.Views.Settings.textLocation": "Locatie", - "SSE.Views.Settings.textMacrosSettings": "Macro instellingen", - "SSE.Views.Settings.textMargins": "Marges", - "SSE.Views.Settings.textOrientation": "Oriëntatie ", - "SSE.Views.Settings.textOwner": "Eigenaar", - "SSE.Views.Settings.textPoint": "Punt", - "SSE.Views.Settings.textPortrait": "Staand", - "SSE.Views.Settings.textPoweredBy": "Aangedreven door", - "SSE.Views.Settings.textPrint": "Afdrukken", - "SSE.Views.Settings.textR1C1Style": "R1C1 referentiestijl", - "SSE.Views.Settings.textRegionalSettings": "Regionale instellingen", - "SSE.Views.Settings.textRight": "Rechts", - "SSE.Views.Settings.textSettings": "Instellingen", - "SSE.Views.Settings.textShowNotification": "Weergeef notificatie", - "SSE.Views.Settings.textSpreadsheetFormats": "Spreadsheet-indelingen", - "SSE.Views.Settings.textSpreadsheetSettings": "Spreadsheet-instellingen", - "SSE.Views.Settings.textSubject": "Onderwerp", - "SSE.Views.Settings.textTel": "Tel.", - "SSE.Views.Settings.textTitle": "Titel", - "SSE.Views.Settings.textTop": "Boven", - "SSE.Views.Settings.textUnitOfMeasurement": "Maateenheid", - "SSE.Views.Settings.textUploaded": "Geüpload", - "SSE.Views.Settings.textVersion": "Versie", - "SSE.Views.Settings.unknownText": "Onbekend", - "SSE.Views.Toolbar.textBack": "Terug" + "About": { + "textAbout": "Over", + "textAddress": "Adres", + "textBack": "Terug", + "textEmail": "E-mail", + "textPoweredBy": "Aangedreven door", + "textTel": "Tel.", + "textVersion": "Versie" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Waarschuwing", + "textAddComment": "Opmerking toevoegen", + "textAddReply": "Reactie toevoegen", + "textBack": "Terug", + "textCancel": "Annuleren", + "textCollaboration": "Samenwerken", + "textComments": "Opmerkingen", + "textDeleteComment": "Verwijder opmerking", + "textDeleteReply": "Reactie verwijderen", + "textDone": "Klaar", + "textEdit": "Bewerken", + "textEditComment": "Opmerking bewerken", + "textEditReply": "Reactie bewerken", + "textEditUser": "Gebruikers die het bestand bewerken:", + "textMessageDeleteComment": "Wil je deze opmerking verwijderen?", + "textMessageDeleteReply": "Wil je deze reactie verwijderen?", + "textNoComments": "Dit document bevat geen opmerkingen", + "textReopen": "Heropenen", + "textResolve": "Oplossen", + "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", + "textUsers": "Gebruikers" + }, + "ThemeColorPalette": { + "textCustomColors": "Aangepaste kleuren", + "textStandartColors": "Standaardkleuren", + "textThemeColors": "Themakleuren" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Kopieer-, knip- en plakacties via het contextmenu worden alleen binnen het huidige bestand uitgevoerd.", + "menuAddComment": "Opmerking toevoegen", + "menuAddLink": "Koppeling toevoegen", + "menuCancel": "Annuleren", + "menuCell": "Cel", + "menuDelete": "Verwijderen", + "menuEdit": "Bewerken", + "menuFreezePanes": "Deelvensters blokkeren", + "menuHide": "Verbergen", + "menuMerge": "Samenvoegen", + "menuMore": "Meer", + "menuOpenLink": "Koppeling openen", + "menuShow": "Tonen", + "menuUnfreezePanes": "Blokkering deelvensters opheffen", + "menuUnmerge": "Samenvoeging opheffen", + "menuUnwrap": "Geen terugloop", + "menuViewComment": "Opmerking bekijken", + "menuWrap": "Wikkel", + "notcriticalErrorTitle": "Waarschuwing", + "textCopyCutPasteActions": "Acties Kopiëren, Knippen en Plakken", + "textDoNotShowAgain": "Niet meer laten zien.", + "warnMergeLostData": "De bewerking kan gegevens in de geselecteerde cellen vernietigen. Doorgaan?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Fout", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorProcessSaveResult": "Opslaan mislukt.", + "errorServerVersion": "De versie van de editor is bijgewerkt. De pagina wordt opnieuw geladen om de wijzigingen toe te passen.", + "errorUpdateVersion": "De bestandsversie is gewijzigd. De pagina wordt opnieuw geladen.", + "leavePageText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "notcriticalErrorTitle": "Waarschuwing", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(Alles)", + "txtArt": "Hier tekst invoeren", + "txtBlank": "(Leeg)", + "txtByField": "%1 van %2", + "txtClearFilter": "Filter wissen (Alt + C)", + "txtColLbls": "Kolomlabels", + "txtColumn": "Kolom", + "txtConfidential": "Vertrouwelijk", + "txtDate": "Datum", + "txtDays": "Dagen", + "txtDiagramTitle": "Grafiektitel", + "txtFile": "Bestand", + "txtGrandTotal": "Eindtotaal", + "txtGroup": "Groeperen", + "txtHours": "Uren", + "txtMinutes": "Minuten", + "txtMonths": "Maanden", + "txtMultiSelect": "Meerdere selecteren (Alt + S)", + "txtOr": "%1 of %2", + "txtPage": "Pagina", + "txtPageOf": "Pagina %1 van %2", + "txtPages": "Pagina's", + "txtPreparedBy": "Voorbereid door", + "txtPrintArea": "Print_Bereik", + "txtQuarter": "Kwart", + "txtQuarters": "Kwartalen ", + "txtRow": "Rij", + "txtRowLbls": "Rijlabels", + "txtSeconds": "Seconden", + "txtSeries": "Serie", + "txtStyle_Bad": "Slecht", + "txtStyle_Calculation": "Berekening", + "txtStyle_Check_Cell": "Cel controleren", + "txtStyle_Comma": "Komma", + "txtStyle_Currency": "Valuta", + "txtStyle_Explanatory_Text": "Verklarende tekst", + "txtStyle_Good": "Goed", + "txtStyle_Heading_1": "Kop 1", + "txtStyle_Heading_2": "Kop 2", + "txtStyle_Heading_3": "Kop 3", + "txtStyle_Heading_4": "Kop 4", + "txtStyle_Input": "Invoer", + "txtStyle_Linked_Cell": "Gekoppelde cel", + "txtStyle_Neutral": "Neutraal", + "txtStyle_Normal": "Normaal", + "txtStyle_Note": "Notitie", + "txtStyle_Output": "Uitvoer", + "txtStyle_Percent": "Procent", + "txtStyle_Title": "Titel", + "txtStyle_Total": "Totaal", + "txtStyle_Warning_Text": "Waarschuwingstekst", + "txtTab": "Tab", + "txtTable": "Tabel", + "txtTime": "Tijd", + "txtValues": "Waarden", + "txtXAxis": "X-as", + "txtYAxis": "Y-as", + "txtYears": "Jaren" + }, + "textAnonymous": "Anoniem", + "textBuyNow": "Website bezoeken", + "textClose": "Sluiten", + "textContactUs": "Contact opnemen met verkoopafdeling", + "textCustomLoader": "Sorry, u hebt niet het recht om de lader te veranderen. Neem contact op met onze verkoopafdeling voor een prijsopgave.", + "textGuest": "Gast", + "textHasMacros": "Het bestand bevat automatische macro's.
    Wilt u macro's uitvoeren?", + "textNo": "Nee", + "textNoLicenseTitle": "Licentielimiet bereikt", + "textPaidFeature": "Betaalde functie", + "textRemember": "Bewaar mijn keuze", + "textYes": "Ja", + "titleServerVersion": "Editor bijgewerkt", + "titleUpdateVersion": "Versie gewijzigd", + "warnLicenseExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Het document zal worden geopend in leesmodus. Neem contact op met uw beheerder voor meer informatie. ", + "warnLicenseLimitedNoAccess": "Licentie verlopen. U hebt geen toegang tot de documentbewerking functionaliteit. Neem contact op met uw beheerder.", + "warnLicenseLimitedRenewed": "Licentie moet worden vernieuwd. U heeft beperkte toegang tot de documentbewerking functionaliteit.
    Neem contact op met uw administrator om volledige toegang te krijgen", + "warnLicenseUsersExceeded": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met uw beheerder voor meer informatie.", + "warnNoLicense": "U hebt de limiet bereikt voor gelijktijdige verbindingen met %1 gelijktijdige gebruikers. Dit document wordt alleen geopend om te bekijken. Neem contact op met %1 verkoopteam voor persoonlijke upgradevoorwaarden.", + "warnNoLicenseUsers": "U heeft de gebruikerslimiet voor %1 gelijktijdige gebruikers bereikt. Neem contact op met de verkoopafdeling voor persoonlijke upgradevoorwaarden.", + "warnProcessRightsChange": "Je hebt geen toestemming om het bestand te bewerken." + } + }, + "Error": { + "convertationTimeoutText": "Time-out voor conversie overschreden.", + "criticalErrorExtText": "Druk op 'OK' om terug te gaan naar de documentenlijst.", + "criticalErrorTitle": "Fout", + "downloadErrorText": "Download mislukt.", + "errorAccessDeny": "U probeert een actie uit te voeren waar u geen rechten voor heeft.
    Neem contact op met uw beheerder.", + "errorArgsRange": "Een fout in de formule.
    Correcte argumentenreeks.", + "errorAutoFilterChange": "De brongegevens bevatten samengevoegde cellen.
    Ze zullen worden ontsloten voordat ze in de tabel worden geplakt.", + "errorAutoFilterChangeFormatTable": "De bewerking kon niet worden uitgevoerd voor de geselecteerde cellen, omdat u geen deel van een tabel kunt verplaatsen.
    Selecteer een ander gegevensbereik, zodat de hele tabel wordt verschoven en probeer het opnieuw.", + "errorAutoFilterDataRange": "De bewerking kon niet worden uitgevoerd voor het geselecteerde cellenbereik.
    Selecteer een uniform gegevensbereik binnen of buiten de tabel en probeer het opnieuw.", + "errorAutoFilterHiddenRange": "De bewerking kan niet worden uitgevoerd omdat het gebied gefilterde cellen bevat.
    Gelieve de gefilterde elementen te deactiveren en probeer opnieuw.", + "errorBadImageUrl": "Afbeelding's URL is onjuist", + "errorChangeArray": "U kunt een deel van een array niet wijzigen.", + "errorConnectToServer": "Kan dit document niet opslaan. Controleer uw verbindingsinstellingen of neem contact op met uw beheerder.
    Wanneer u op de 'OK' knop klikt, wordt u gevraagd om het document te downloaden.", + "errorCopyMultiselectArea": "Deze opdracht kan niet worden uitgevoerd op meerdere selecties.
    Selecteer één bereik en probeer het opnieuw.", + "errorCountArg": "Een fout in de formule.
    Ongeldig aantal argumenten.", + "errorCountArgExceed": "Een fout in de formule.
    Maximum aantal argumenten overschreden.", + "errorCreateDefName": "De bestaande benoemde bereiken kunnen niet worden bewerkt en de nieuwe bereiken kunnen
    op dit moment niet worden gemaakt aangezien sommige bereiken al worden bewerkt.", + "errorDatabaseConnection": "Externe fout.
    Database verbindingsfout. Neem contact op met support.", + "errorDataEncrypted": "Versleutelde wijzigingen zijn ontvangen, deze kunnen niet ontcijferd worden.", + "errorDataRange": "Onjuist gegevensbereik", + "errorDataValidate": "De waarde die u heeft ingevoerd, is niet geldig.
    Een beperkte waarde kan in deze cel worden ingevoerd.", + "errorDefaultMessage": "Foutcode: %1", + "errorEditingDownloadas": "Er is een fout opgetreden tijdens het werken met het document.
    Gebruik de 'Download'-optie om de reservekopie lokaal op te slaan.", + "errorFilePassProtect": "Het bestand is beveiligd met een wachtwoord en kon niet worden geopend.", + "errorFileRequest": "Externe fout.
    Bestandsaanvraag. Neem contact op met support.", + "errorFileSizeExceed": "De bestandsgrootte overschrijdt de limiet van uw server.
    Neem contact op met uw beheerder voor meer informatie.", + "errorFileVKey": "Externe fout.
    Verkeerde beveiligingssleutel. Neem contact op met support.", + "errorFillRange": "Het geselecteerde celbereik kan niet worden gevuld.
    Alle samengevoegde cellen moeten dezelfde grootte hebben.", + "errorFormulaName": "Een fout in de formule.
    Correcte formulenaam.", + "errorFormulaParsing": "Interne fout tijdens het parsen van de formule.", + "errorFrmlMaxLength": "U kunt deze formule niet toevoegen omdat de lengte groter is dan het toegestane aantal tekens.
    Wijzig de formule en probeer het opnieuw.", + "errorFrmlMaxReference": "U kunt deze formule niet invoeren omdat deze te veel
    waarden, cel verwijzingen en / of namen heeft.", + "errorFrmlMaxTextLength": "Tekstwaarden in formules zijn beperkt tot 255 tekens.
    Gebruik de functie CONCATENATE of de aaneenschakelingsoperator (&)", + "errorFrmlWrongReferences": "De functie verwijst naar een blad dat niet bestaat.
    Controleer de gegevens en probeer het opnieuw.", + "errorInvalidRef": "Voer een juiste naam in voor de selectie of een geldige referentie om naar toe te gaan.", + "errorKeyEncrypt": "Onbekende sleutelbeschrijver", + "errorKeyExpire": "Sleutelbeschrijver vervallen", + "errorLockedAll": "De bewerking kan niet worden uitgevoerd omdat het blad is vergrendeld door een andere gebruiker.", + "errorLockedCellPivot": "U kunt geen data veranderen in een draaitabel.", + "errorLockedWorksheetRename": "De naam van het blad kan op dit moment niet worden gewijzigd omdat het al wordt hernoemd door een andere gebruiker", + "errorMaxPoints": "Het maximaal aantal punten in een serie per grafiek is 4096", + "errorMoveRange": "Kan een deel van een samengevoegde cel niet wijzigen", + "errorMultiCellFormula": "Matrixformules met meerdere cellen zijn niet toegestaan in tabellen.", + "errorOpenWarning": "De lengte van een van de formules in het bestand overschrijdt
    het toegestane aantal tekens en de formule is verwijderd.", + "errorOperandExpected": "De ingevoerde functiesyntax klopt niet. Controleer of je één van de haakjes hebt gemist - '(' of ')'.", + "errorPasteMaxRange": "Het kopieer- en plakgebied komt niet overeen. Selecteer een gebied van dezelfde grootte of klik op de eerste cel in een rij om de gekopieerde cellen te plakken.", + "errorPrintMaxPagesCount": "Helaas is het in de huidige versie van het programma niet mogelijk om meer dan 1500 pagina's in één keer af te drukken.
    Deze beperking zal in volgende versies worden opgeheven.", + "errorSessionAbsolute": "De document bewerkingssessie is verlopen. Gelieve de pagina opnieuw te laden.", + "errorSessionIdle": "Het document is al een hele tijd niet meer bewerkt. Gelieve de pagina opnieuw te laden.", + "errorSessionToken": "De verbinding met de server is onderbroken. Gelieve de pagina opnieuw te laden.", + "errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:
    openingskoers, max koers, min koers, slotkoers.", + "errorUnexpectedGuid": "Externe fout.
    Onverwachte Guid. Neem contact op met ondersteuning.", + "errorUpdateVersionOnDisconnect": "De internetverbinding is hersteld en de bestandsversie is gewijzigd.
    Voordat u verder kunt werken, moet u het bestand downloaden of de inhoud kopiëren om er zeker van te zijn dat er niets verloren gaat, en deze pagina vervolgens opnieuw laden.", + "errorUserDrop": "Toegang tot het bestand is op dit moment niet mogelijk.", + "errorUsersExceed": "Het onder het prijsplan toegestane aantal gebruikers is overschreden", + "errorViewerDisconnect": "De verbinding is verbroken. U kunt het document nog steeds bekijken,
    maar u zult het niet kunnen downloaden totdat de verbinding is hersteld en de pagina opnieuw is geladen.", + "errorWrongBracketsCount": "Een fout in de formule.
    Verkeerd aantal haakjes.", + "errorWrongOperator": "Een fout in de ingevoerde formule. De verkeerde operator is gebruikt.
    Corrigeer de fout of gebruik de Esc-toets om het bewerken van de formule te annuleren.", + "notcriticalErrorTitle": "Waarschuwing", + "openErrorText": "Er is een fout opgetreden bij het openen van het bestand", + "pastInMergeAreaError": "Kan een deel van een samengevoegde cel niet wijzigen", + "saveErrorText": "Er is een fout opgetreden bij het opslaan van het bestand", + "scriptLoadError": "De verbinding is te traag, sommige onderdelen konden niet geladen worden. Gelieve de pagina opnieuw te laden.", + "unknownErrorText": "Onbekende fout.", + "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", + "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", + "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB." + }, + "LongActions": { + "applyChangesTextText": "Gegevens worden geladen...", + "applyChangesTitleText": "Gegevens worden geladen", + "confirmMoveCellRange": "Het bereik van de doelcellen kan gegevens bevatten. Doorgaan met de bewerking?", + "confirmPutMergeRange": "De brongegevens bevatten samengevoegde cellen.
    Ze zullen worden ontsloten voordat ze in de tabel worden geplakt.", + "confirmReplaceFormulaInTable": "Formules in de kopregel worden verwijderd en omgezet in statische tekst.
    Wilt u doorgaan?", + "downloadTextText": "Document wordt gedownload...", + "downloadTitleText": "Document wordt gedownload", + "loadFontsTextText": "Gegevens worden geladen...", + "loadFontsTitleText": "Gegevens worden geladen", + "loadFontTextText": "Gegevens worden geladen...", + "loadFontTitleText": "Gegevens worden geladen", + "loadImagesTextText": "Afbeeldingen worden geladen...", + "loadImagesTitleText": "Afbeeldingen worden geladen", + "loadImageTextText": "Afbeelding wordt geladen...", + "loadImageTitleText": "Afbeelding wordt geladen", + "loadingDocumentTextText": "Document wordt geladen...", + "loadingDocumentTitleText": "Document wordt geladen", + "notcriticalErrorTitle": "Waarschuwing", + "openTextText": "Document wordt geopend...", + "openTitleText": "Document wordt geopend", + "printTextText": "Document wordt afgedrukt...", + "printTitleText": "Document wordt afgedrukt", + "savePreparingText": "Klaarmaken om op te slaan", + "savePreparingTitle": "Klaarmaken om op te slaan. Even geduld...", + "saveTextText": "Document wordt opgeslagen...", + "saveTitleText": "Document wordt opgeslagen", + "textLoadingDocument": "Document wordt geladen", + "textNo": "Nee", + "textOk": "OK", + "textYes": "Ja", + "txtEditingMode": "Bewerkmodus instellen...", + "uploadImageTextText": "Afbeelding wordt geüpload...", + "uploadImageTitleText": "Afbeelding wordt geüpload", + "waitText": "Een moment geduld..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Waarschuwing", + "textCancel": "Annuleren", + "textDelete": "Verwijderen", + "textDuplicate": "Dupliceren", + "textErrNameExists": "Werkblad met deze naam bestaat al.", + "textErrNameWrongChar": "Een werkblad naam kan deze karakters niet bevatten: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Werkblad naam mag niet leeg zijn", + "textErrorLastSheet": "De werkmap moet ten minste één zichtbaar werkblad hebben.", + "textErrorRemoveSheet": "Het werkblad kan niet worden verwijderd.", + "textHide": "Verbergen", + "textMore": "Meer", + "textRename": "Hernoemen", + "textRenameSheet": "Blad hernoemen", + "textSheet": "Blad", + "textSheetName": "Bladnaam", + "textUnhide": "Verbergen ongedaan maken", + "textWarnDeleteSheet": "Het werkblad heeft misschien gegevens. Verder gaan met de bewerking?" + }, + "Toolbar": { + "dlgLeaveMsgText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", + "dlgLeaveTitleText": "U verlaat de applicatie", + "leaveButtonText": "Pagina verlaten", + "stayButtonText": "Op deze pagina blijven" + }, + "View": { + "Add": { + "errorMaxRows": "FOUT! Het maximumaantal gegevensreeksen per grafiek is 255.", + "errorStockChart": "Onjuiste rijvolgorde. Om een aandelengrafiek te maken, plaatst u de gegevens op het blad in de volgende volgorde:
    openingskoers, max koers, min koers, slotkoers.", + "notcriticalErrorTitle": "Waarschuwing", + "sCatDateAndTime": "Datum en tijd", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financieel", + "sCatInformation": "Informatie", + "sCatLogical": "Logisch", + "sCatLookupAndReference": "Zoeken en verwijzen", + "sCatMathematic": "Wiskunde en trigonometrie", + "sCatStatistical": "Statistisch", + "sCatTextAndData": "Tekst en gegevens", + "textAddLink": "Koppeling toevoegen", + "textAddress": "Adres", + "textBack": "Terug", + "textCancel": "Annuleren", + "textChart": "Grafiek", + "textComment": "Opmerking", + "textDisplay": "Weergeven", + "textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.", + "textExternalLink": "Externe koppeling", + "textFilter": "Filter", + "textFunction": "Functie", + "textGroups": "CATEGORIEËN", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textInsert": "Invoegen", + "textInsertImage": "Afbeelding invoegen", + "textInternalDataRange": "Intern gegevensbereik", + "textInvalidRange": "FOUT! Ongeldig celbereik", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkType": "Type koppeling", + "textOther": "Overige", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textRange": "Bereik", + "textRequired": "Vereist", + "textScreenTip": "Schermtip", + "textShape": "Vorm", + "textSheet": "Blad", + "textSortAndFilter": "Sorteren en filteren", + "txtExpand": "Uitvouwen en sorteren", + "txtExpandSort": "De gegevens naast de selectie worden niet gesorteerd. Wilt u de selectie uitbreiden en aangrenzende gegevens opnemen of wilt u doorgaan met sorteren van alleen de cellen die op dit moment zijn geselecteerd?", + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "txtSorting": "Sorteren", + "txtSortSelected": "Geselecteerde sorteren" + }, + "Edit": { + "notcriticalErrorTitle": "Waarschuwing", + "textAccounting": "Boekhouding", + "textActualSize": "Ware grootte", + "textAddCustomColor": "Aangepaste kleur toevoegen", + "textAddress": "Adres", + "textAlign": "Uitlijnen", + "textAlignBottom": "Onder uitlijnen", + "textAlignCenter": "Centreren", + "textAlignLeft": "Links uitlijnen", + "textAlignMiddle": "Centreren", + "textAlignRight": "Rechts uitlijnen", + "textAlignTop": "Boven uitlijnen", + "textAllBorders": "Alle randen", + "textAngleClockwise": "Rechtsom draaien", + "textAngleCounterclockwise": "Linksom draaien", + "textAuto": "Automatisch", + "textAxisCrosses": "Snijpunten assen", + "textAxisOptions": "Asopties", + "textAxisPosition": "Aspositie", + "textAxisTitle": "Astitel", + "textBack": "Terug", + "textBetweenTickMarks": "Tussen maatstreepjes", + "textBillions": "Miljarden", + "textBorder": "Rand", + "textBorderStyle": "Rand Stijl", + "textBottom": "Onder", + "textBottomBorder": "Onderrand", + "textBringToForeground": "Naar voorgrond brengen", + "textCell": "Cel", + "textCellStyles": "Celstijlen", + "textCenter": "Midden", + "textChart": "Grafiek", + "textChartTitle": "Grafiektitel", + "textClearFilter": "Filter wissen", + "textColor": "Kleur", + "textCross": "Snijpunt", + "textCrossesValue": "Waarde van het snijpunt", + "textCurrency": "Valuta", + "textCustomColor": "Aangepaste kleur", + "textDataLabels": "Gegevenslabels", + "textDate": "Datum", + "textDefault": "Geselecteerd bereik", + "textDeleteFilter": "Filter verwijderen", + "textDesign": "Ontwerp", + "textDiagonalDownBorder": "Diagonale rand naar onder", + "textDiagonalUpBorder": "Diagonale rand naar boven", + "textDisplay": "Weergeven", + "textDisplayUnits": "Eenheden weergeven", + "textDollar": "Dollar", + "textEditLink": "Koppeling bewerken", + "textEffects": "Effecten", + "textEmptyImgUrl": "U moet de URL van de afbeelding opgeven.", + "textEmptyItem": "{Blanco's}", + "textErrorMsg": "U moet ten minste één waarde selecteren", + "textErrorTitle": "Waarschuwing", + "textEuro": "Euro", + "textExternalLink": "Externe koppeling", + "textFill": "Vulling", + "textFillColor": "Opvulkleur", + "textFilterOptions": "Filteropties", + "textFit": "Aanpassen aan breedte", + "textFonts": "Lettertypen", + "textFormat": "Opmaak", + "textFraction": "Breuk", + "textFromLibrary": "Afbeelding uit bibliotheek", + "textFromURL": "Afbeelding van URL", + "textGeneral": "Algemeen", + "textGridlines": "Rasterlijnen", + "textHigh": "Hoog", + "textHorizontal": "Horizontaal", + "textHorizontalAxis": "Horizontale as", + "textHorizontalText": "Horizontale tekst", + "textHundredMil": "100 000 000", + "textHundreds": "Honderden", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Afbeelding", + "textImageURL": "Afbeelding's URL", + "textIn": "In", + "textInnerBottom": "Binnen onder", + "textInnerTop": "Binnen boven", + "textInsideBorders": "Binnenranden", + "textInsideHorizontalBorder": "Horizontale binnenrand", + "textInsideVerticalBorder": "Verticale binnenrand", + "textInteger": "Heel getal", + "textInternalDataRange": "Intern gegevensbereik", + "textInvalidRange": "Ongeldig celbereik", + "textJustified": "Uitgevuld", + "textLabelOptions": "Labelopties", + "textLabelPosition": "Labelpositie", + "textLayout": "Pagina-indeling", + "textLeft": "Links", + "textLeftBorder": "Linkerrand", + "textLeftOverlay": "Overlay links", + "textLegend": "Legenda", + "textLink": "Koppeling", + "textLinkSettings": "Koppelingsinstellingen", + "textLinkType": "Type koppeling", + "textLow": "Laag", + "textMajor": "Primair", + "textMajorAndMinor": "Primair en secundair", + "textMajorType": "Hoofdtype", + "textMaximumValue": "Maximumwaarde", + "textMedium": "Gemiddeld", + "textMillions": "Miljoenen", + "textMinimumValue": "Minimumwaarde", + "textMinor": "Secundair", + "textMinorType": "Secundair type", + "textMoveBackward": "Naar achter verplaatsen", + "textMoveForward": "Naar voren verplaatsen", + "textNextToAxis": "Naast as", + "textNoBorder": "Geen rand", + "textNone": "Geen", + "textNoOverlay": "Geen overlay", + "textNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "textNumber": "Nummer", + "textOnTickMarks": "Op maatstreepjes", + "textOpacity": "Ondoorzichtigheid", + "textOut": "Buiten", + "textOuterTop": "Buiten boven", + "textOutsideBorders": "Buitenranden", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Afbeelding uit bibliotheek", + "textPictureFromURL": "Afbeelding van URL", + "textPound": "Pond", + "textPt": "pt", + "textRange": "Bereik", + "textRemoveChart": "Grafiek verwijderen", + "textRemoveImage": "Afbeelding verwijderen", + "textRemoveLink": "Koppeling verwijderen", + "textRemoveShape": "Vorm verwijderen", + "textReorder": "Opnieuw ordenen", + "textReplace": "Vervangen", + "textReplaceImage": "Afbeelding vervangen", + "textRequired": "Vereist", + "textRight": "Rechts", + "textRightBorder": "Rechterrand", + "textRightOverlay": "Overlay rechts", + "textRotated": "Gedraaid", + "textRotateTextDown": "Tekst omlaag draaien", + "textRotateTextUp": "Tekst omhoog draaien", + "textRouble": "Roebel", + "textScientific": "Wetenschappelijk", + "textScreenTip": "Schermtip", + "textSelectAll": "Alles selecteren", + "textSelectObjectToEdit": "Selecteer object om te bewerken", + "textSendToBackground": "Naar achtergrond sturen", + "textSettings": "Instellingen", + "textShape": "Vorm", + "textSheet": "Blad", + "textSize": "Grootte", + "textStyle": "Stijl", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Tekst", + "textTextColor": "Tekstkleur", + "textTextFormat": "Tekstopmaak", + "textTextOrientation": "Tekstoriëntatie", + "textThick": "Dik", + "textThin": "Dun", + "textThousands": "Duizenden", + "textTickOptions": "Opties voor maatstreepjes", + "textTime": "Tijd", + "textTop": "Boven", + "textTopBorder": "Bovenrand", + "textTrillions": "Biljoenen", + "textType": "Type", + "textValue": "Waarde", + "textValuesInReverseOrder": "Waarden in omgekeerde volgorde", + "textVertical": "Verticaal", + "textVerticalAxis": "Verticale as", + "textVerticalText": "Verticale tekst", + "textWrapText": "Tekstterugloop", + "textYen": "Yen", + "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", + "txtSortHigh2Low": "Sorteren van hoogste naar laagste", + "txtSortLow2High": "Sorteren van laagste naar hoogste" + }, + "Settings": { + "advCSVOptions": "CSV-opties kiezen", + "advDRMEnterPassword": "Uw wachtwoord, alstublieft:", + "advDRMOptions": "Beveiligd bestand", + "advDRMPassword": "Wachtwoord", + "closeButtonText": "Bestand sluiten", + "notcriticalErrorTitle": "Waarschuwing", + "textAbout": "Over", + "textAddress": "Adres", + "textApplication": "Applicatie", + "textApplicationSettings": "Applicatie Instellingen", + "textAuthor": "Auteur", + "textBack": "Terug", + "textBottom": "Onder", + "textByColumns": "Kolommen", + "textByRows": "Door rijen", + "textCancel": "Annuleren", + "textCentimeter": "Centimeter", + "textCollaboration": "Samenwerken", + "textColorSchemes": "Kleurschema's", + "textComment": "Opmerking", + "textCommentingDisplay": "Commentaarweergave", + "textComments": "Opmerkingen", + "textCreated": "Aangemaakt", + "textCustomSize": "Aangepaste grootte", + "textDisableAll": "Alles uitschakelen", + "textDisableAllMacrosWithNotification": "Schakel alle macro's uit met een melding", + "textDisableAllMacrosWithoutNotification": "Schakel alle macro's uit zonder melding", + "textDone": "Klaar", + "textDownload": "Downloaden", + "textDownloadAs": "Downloaden als", + "textEmail": "E-mail", + "textEnableAll": "Alles inschakelen", + "textEnableAllMacrosWithoutNotification": "Schakel alle macro's in zonder een notificatie", + "textFind": "Zoeken", + "textFindAndReplace": "Zoeken en vervangen", + "textFindAndReplaceAll": "Zoek en vervang alles", + "textFormat": "Opmaak", + "textFormulaLanguage": "Taal formule", + "textFormulas": "Formules", + "textHelp": "Help", + "textHideGridlines": "Rasterlijnen verbergen", + "textHideHeadings": "Koppen verbergen", + "textHighlightRes": "Resultaten markeren", + "textInch": "Inch", + "textLandscape": "Liggend", + "textLastModified": "Laatst aangepast", + "textLastModifiedBy": "Laatst aangepast door", + "textLeft": "Links", + "textLocation": "Locatie", + "textLookIn": "Zoeken in", + "textMacrosSettings": "Macro instellingen", + "textMargins": "Marges", + "textMatchCase": "Identiek hoofdlettergebruik", + "textMatchCell": "Identiek aan cel", + "textNoTextFound": "Tekst niet gevonden", + "textOpenFile": "Voer een wachtwoord in om dit bestand te openen", + "textOrientation": "Oriëntatie ", + "textOwner": "Eigenaar", + "textPoint": "Punt", + "textPortrait": "Staand", + "textPoweredBy": "Aangedreven door", + "textPrint": "Afdrukken", + "textR1C1Style": "R1C1 referentiestijl", + "textRegionalSettings": "Regionale instellingen", + "textReplace": "Vervangen", + "textReplaceAll": "Alles vervangen", + "textResolvedComments": "Opgeloste opmerkingen", + "textRight": "Rechts", + "textSearch": "Zoeken", + "textSearchBy": "Zoeken", + "textSearchIn": "Zoeken in", + "textSettings": "Instellingen", + "textSheet": "Blad", + "textShowNotification": "Notificatie weergeven", + "textSpreadsheetFormats": "Spreadsheet-indelingen", + "textSpreadsheetInfo": "Spreadsheetinformatie", + "textSpreadsheetSettings": "Spreadsheetinstellingen", + "textSpreadsheetTitle": "Titel spreadsheet", + "textSubject": "Onderwerp", + "textTel": "Tel.", + "textTitle": "Titel", + "textTop": "Boven", + "textUnitOfMeasurement": "Maateenheid", + "textUploaded": "Geüpload", + "textValues": "Waarden", + "textVersion": "Versie", + "textWorkbook": "Werkmap", + "txtDelimiter": "Scheidingsteken", + "txtEncoding": "Codering", + "txtIncorrectPwd": "Wachtwoord is onjuist", + "txtProtected": "Wanneer u het wachtwoord ingeeft en het bestand opent zal het huidige wachtwoord worden gereset.", + "txtScheme1": "Kantoor", + "txtScheme10": "Mediaan", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Overvloedig", + "txtScheme14": "Erker", + "txtScheme15": "Oorsprong", + "txtScheme16": "Papier", + "txtScheme17": "Zonnewende", + "txtScheme18": "Technisch", + "txtScheme19": "Tocht", + "txtScheme2": "Grijstinten", + "txtScheme20": "Stedelijk", + "txtScheme21": "Verve", + "txtScheme22": "Nieuw kantoor", + "txtScheme3": "Top", + "txtScheme4": "Aspect", + "txtScheme5": "Civiel", + "txtScheme6": "Concours", + "txtScheme7": "Vermogen", + "txtScheme8": "Stroom", + "txtScheme9": "Gieterij", + "txtSpace": "Spatie", + "txtTab": "Tab", + "warnDownloadAs": "Als u doorgaat met opslaan in dit formaat, gaat alle opmaak verloren en blijft alleen de tekst behouden.
    Wilt u doorgaan?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index a7fc98daf..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -1,499 +1,637 @@ { - "Common.UI.ThemeColorPalette.textStandartColors": "Kolory standardowe", - "Common.UI.ThemeColorPalette.textThemeColors": "Kolory motywu", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textCollaboration": "Współpraca", - "SSE.Controllers.AddChart.txtDiagramTitle": "Tytuł wykresu", - "SSE.Controllers.AddChart.txtSeries": "Serie", - "SSE.Controllers.AddChart.txtXAxis": "Oś X", - "SSE.Controllers.AddChart.txtYAxis": "Oś Y", - "SSE.Controllers.AddContainer.textChart": "Wykres", - "SSE.Controllers.AddContainer.textFormula": "Funkcja", - "SSE.Controllers.AddContainer.textImage": "Obraz", - "SSE.Controllers.AddContainer.textOther": "Inny", - "SSE.Controllers.AddContainer.textShape": "Kształt", - "SSE.Controllers.AddLink.textInvalidRange": "BŁĄD! Niepoprawny zakres komórek", - "SSE.Controllers.AddLink.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Musisz podać adres URL obrazu.", - "SSE.Controllers.AddOther.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Akcje kopiuj, wytnij i wklej wywołane z menu kontekstowego zostanie wykonane w obrębie bieżącego pliku.", - "SSE.Controllers.DocumentHolder.menuAddLink": "Dodaj link", - "SSE.Controllers.DocumentHolder.menuCell": "Komórka", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopiuj", - "SSE.Controllers.DocumentHolder.menuCut": "Wytnij", - "SSE.Controllers.DocumentHolder.menuDelete": "Usuń", - "SSE.Controllers.DocumentHolder.menuEdit": "Edytuj", - "SSE.Controllers.DocumentHolder.menuHide": "Ukryj", - "SSE.Controllers.DocumentHolder.menuMerge": "Scal", - "SSE.Controllers.DocumentHolder.menuMore": "Więcej", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Otwórz link", - "SSE.Controllers.DocumentHolder.menuPaste": "Wklej", - "SSE.Controllers.DocumentHolder.menuShow": "Pokaż", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Zanikuj", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Rozwiń", - "SSE.Controllers.DocumentHolder.menuWrap": "Zawijaj", - "SSE.Controllers.DocumentHolder.sheetCancel": "Anuluj", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Tylko dane z górnej lewej komórki pozostaną w scalonej komórce.
    Czy na pewno chcesz kontynuować?", - "SSE.Controllers.EditCell.textAuto": "Automatyczny", - "SSE.Controllers.EditCell.textFonts": "Czcionki", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ERROR! Maksymalna liczba serii danych na wykres to 255.", - "SSE.Controllers.EditChart.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
    cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", - "SSE.Controllers.EditChart.textAuto": "Automatyczny", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Pomiędzy znakami Tick", - "SSE.Controllers.EditChart.textBillions": "Miliardy", - "SSE.Controllers.EditChart.textBottom": "Dół", - "SSE.Controllers.EditChart.textCenter": "Wyśrodkuj", - "SSE.Controllers.EditChart.textCross": "Na skrzyżowaniu", - "SSE.Controllers.EditChart.textCustom": "Niestandardowy", - "SSE.Controllers.EditChart.textFit": "Dopasuj szerokość", - "SSE.Controllers.EditChart.textFixed": "Ustalony", - "SSE.Controllers.EditChart.textHigh": "Wysoki", - "SSE.Controllers.EditChart.textHorizontal": "Poziomy", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Setki", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "w", - "SSE.Controllers.EditChart.textInnerBottom": "Dolna strona", - "SSE.Controllers.EditChart.textInnerTop": "Górna strona", - "SSE.Controllers.EditChart.textLeft": "Lewy", - "SSE.Controllers.EditChart.textLeftOverlay": "Lewa nakładka", - "SSE.Controllers.EditChart.textLow": "Niski", - "SSE.Controllers.EditChart.textManual": "Ręczny", - "SSE.Controllers.EditChart.textMaxValue": "Maksymalna wartość", - "SSE.Controllers.EditChart.textMillions": "Miliony", - "SSE.Controllers.EditChart.textMinValue": "Wartość minimalna", - "SSE.Controllers.EditChart.textNextToAxis": "Obok osi", - "SSE.Controllers.EditChart.textNone": "żaden", - "SSE.Controllers.EditChart.textNoOverlay": "Brak pokrycia", - "SSE.Controllers.EditChart.textOnTickMarks": "Podział", - "SSE.Controllers.EditChart.textOut": "Na zewnątrz", - "SSE.Controllers.EditChart.textOuterTop": "Wierzchołek zewnętrzny", - "SSE.Controllers.EditChart.textOverlay": "Nałożenie", - "SSE.Controllers.EditChart.textRight": "Prawy", - "SSE.Controllers.EditChart.textRightOverlay": "Właściwa nakładka", - "SSE.Controllers.EditChart.textRotated": "Obrócony", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Tysiące", - "SSE.Controllers.EditChart.textTop": "Góra", - "SSE.Controllers.EditChart.textTrillions": "Tryliony", - "SSE.Controllers.EditChart.textValue": "Wartość", - "SSE.Controllers.EditContainer.textCell": "Komórka", - "SSE.Controllers.EditContainer.textChart": "Wykres", - "SSE.Controllers.EditContainer.textHyperlink": "Hiperlink", - "SSE.Controllers.EditContainer.textImage": "Obraz", - "SSE.Controllers.EditContainer.textSettings": "Ustawienia", - "SSE.Controllers.EditContainer.textShape": "Kształt", - "SSE.Controllers.EditContainer.textTable": "Tabela", - "SSE.Controllers.EditContainer.textText": "Tekst", - "SSE.Controllers.EditHyperlink.textDefault": "Wybrany zakres", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Musisz podać adres URL obrazu.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Link zewnętrzny", - "SSE.Controllers.EditHyperlink.textInternalLink": "Wewnętrzny zakres danych", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Błędny zakres komórek.", - "SSE.Controllers.EditHyperlink.txtNotUrl": "To pole powinno być w formacie adresu URL np.: \"http://www.example.com\"", - "SSE.Controllers.Main.advCSVOptions": "Wybierz opcje CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Wprowadź swoje hasło:", - "SSE.Controllers.Main.advDRMOptions": "Plik chroniony", - "SSE.Controllers.Main.advDRMPassword": "Hasło", - "SSE.Controllers.Main.applyChangesTextText": "Ładowanie danych...", - "SSE.Controllers.Main.applyChangesTitleText": "Ładowanie danych", - "SSE.Controllers.Main.convertationTimeoutText": "Przekroczono limit czasu konwersji.", - "SSE.Controllers.Main.criticalErrorExtText": "Naciśnij \"OK\" aby powrócić do listy dokumentów.", - "SSE.Controllers.Main.criticalErrorTitle": "Błąd", - "SSE.Controllers.Main.downloadErrorText": "Pobieranie nieudane.", - "SSE.Controllers.Main.downloadMergeText": "Pobieranie...", - "SSE.Controllers.Main.downloadMergeTitle": "Pobieranie", - "SSE.Controllers.Main.downloadTextText": "Pobieranie dokumentu...", - "SSE.Controllers.Main.downloadTitleText": "Pobieranie dokumentu", - "SSE.Controllers.Main.errorAccessDeny": "Próbujesz wykonać działanie, na które nie masz uprawnień.
    Proszę skontaktować się z administratorem serwera dokumentów.", - "SSE.Controllers.Main.errorArgsRange": "Wprowadzona formuła jest błędna.
    Użyto niepoprawnego argumentu zakresu.", - "SSE.Controllers.Main.errorAutoFilterChange": "Operacja nie jest dozwolona, ponieważ próbuje przesunąć komórki w tabeli w arkuszu.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operacja nie mogła zostać wykonana dla wybranych komórek, ponieważ nie można przenieść części tabeli.
    Wybierz inny zakres danych, aby cała tabela została przesunięta i spróbuj ponownie.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Operacja nie mogła zostać wykonana dla wybranego zakresu komórek.
    Wybierz jednolity zakres danych inny niż istniejący i spróbuj ponownie.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operacja nie może zostać wykonana, ponieważ obszar zawiera filtrowane komórki.
    Proszę ukryj filtrowane elementy i spróbuj ponownie.", - "SSE.Controllers.Main.errorBadImageUrl": "Adres URL obrazu jest błędny", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Połączenie z serwerem zostało utracone. Nie można teraz edytować dokumentu.", - "SSE.Controllers.Main.errorConnectToServer": "Nie można zapisać dokumentu. Sprawdź ustawienia połączenia lub skontaktuj się z administratorem.
    Po kliknięciu przycisku \"OK\" zostanie wyświetlony monit o pobranie dokumentu.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "To polecenie nie może być użyte z wieloma wyborami.
    Wybierz jeden zakres i spróbuj ponownie.", - "SSE.Controllers.Main.errorCountArg": "Wprowadzona formuła jest błędna.
    Niepoprawna ilość argumentów.", - "SSE.Controllers.Main.errorCountArgExceed": "Wprowadzona formuła jest błędna.
    Przekroczono liczbę argumentów.", - "SSE.Controllers.Main.errorCreateDefName": "Istniejące zakresy nazw nie mogą być edytowane, a nowe nie mogą zostać utworzone
    w chwili, gdy niektóre z nich są edytowane.", - "SSE.Controllers.Main.errorDatabaseConnection": "Błąd zewnętrzny.
    Błąd połączenia z bazą danych. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", - "SSE.Controllers.Main.errorDataRange": "Błędny zakres danych.", - "SSE.Controllers.Main.errorDefaultMessage": "Kod błędu: %1", - "SSE.Controllers.Main.errorFilePassProtect": "Dokument jest chroniony hasłem i nie można go otworzyć.", - "SSE.Controllers.Main.errorFileRequest": "Błąd zewnętrzny.
    Błąd zgłoszenia pliku. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", - "SSE.Controllers.Main.errorFileVKey": "Błąd zewnętrzny.
    Niewłaściwy klucz bezpieczeństwa. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", - "SSE.Controllers.Main.errorFillRange": "Nie można wypełnić zaznaczonego zakresu komórek.
    Wszystkie scalone komórki muszą mieć ten sam rozmiar.", - "SSE.Controllers.Main.errorFormulaName": "Wprowadzona formuła jest błędna.
    Użyto niepoprawnej nazwy formuły.", - "SSE.Controllers.Main.errorFormulaParsing": "Błąd wewnętrzny podczas analizowania formuły.", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcja odnosi się do arkusza, który nie istnieje.
    Proszę sprawdzić dane i spróbować ponownie.", - "SSE.Controllers.Main.errorInvalidRef": "Wprowadź prawidłową nazwę dla wyboru lub prawidłowe odniesienie, aby przejść do tego.", - "SSE.Controllers.Main.errorKeyEncrypt": "Nieznany deskryptor klucza", - "SSE.Controllers.Main.errorKeyExpire": "Okres ważności deskryptora klucz wygasł", - "SSE.Controllers.Main.errorLockedAll": "Operacja nie mogła zostać wykonana, gdy arkusz został zablokowany przez innego użytkownika.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "Nie można zmienić nazwy arkusza, gdy zmieniana jest ona przez innego użytkownika", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Wczytywanie nie powiodło się", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Scalanie nie powiodło się.", - "SSE.Controllers.Main.errorMoveRange": "Nie można zmienić części scalonej komórki", - "SSE.Controllers.Main.errorOpenWarning": "Długość jednej z formuł w pliku przekroczyła
    dozwoloną liczbę znaków i została usunięta.", - "SSE.Controllers.Main.errorOperandExpected": "Wprowadzona składnia funkcji jest nieprawidłowa. Sprawdź, czy nie brakuje jednego z nawiasów - '(' lub ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Obszar kopiowania i wklejania nie pasuje.
    Proszę zaznacz obszar o takim samym rozmiarze lub wybierz pierwszą komórkę w rzędzie do wklejenia skopiowanych komórek.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Niestety w bieżącej wersji programu nie można wydrukować więcej niż 1500 stron naraz.
    To ograniczenie zostanie usunięte w przyszłych wersjach.", - "SSE.Controllers.Main.errorProcessSaveResult": "Zapis nieudany", - "SSE.Controllers.Main.errorServerVersion": "Wersja edytora została zaktualizowana. Strona zostanie ponownie załadowana, aby zastosować zmiany.", - "SSE.Controllers.Main.errorSessionAbsolute": "Sesja edycji dokumentu wygasła. Proszę ponownie załadować stronę.", - "SSE.Controllers.Main.errorSessionIdle": "Dokument nie był edytowany przez długi czas. Proszę ponownie załadować stronę.", - "SSE.Controllers.Main.errorSessionToken": "Połączenie z serwerem zostało przerwane. Proszę ponownie załadować stronę.", - "SSE.Controllers.Main.errorStockChart": "Nieprawidłowa kolejność wierszy. Aby zbudować wykres akcji, umieść dane na arkuszu w następującej kolejności:
    cena otwarcia, cena maksymalna, cena minimalna, cena zamknięcia.", - "SSE.Controllers.Main.errorToken": "Token bezpieczeństwa dokumentu jest nieprawidłowo uformowany.
    Prosimy o kontakt z administratorem serwera dokumentów.", - "SSE.Controllers.Main.errorTokenExpire": "Token zabezpieczeń dokumentu wygasł.
    Prosimy o kontakt z administratorem serwera dokumentów.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Błąd zewnętrzny.
    Niespodziewany identyfikator GUID. W przypadku wystąpienia błędu należy skontaktować się z pomocą techniczną.", - "SSE.Controllers.Main.errorUpdateVersion": "Wersja pliku została zmieniona. Strona zostanie ponownie załadowana.", - "SSE.Controllers.Main.errorUserDrop": "Nie można uzyskać dostępu do tego pliku.", - "SSE.Controllers.Main.errorUsersExceed": "Przekroczono liczbę dozwolonych użytkowników określonych przez plan cenowy wersji", - "SSE.Controllers.Main.errorViewerDisconnect": "Połączenie zostało utracone. Nadal możesz przeglądać dokument,
    ale nie będzie mógł go pobrać do momentu przywrócenia połączenia.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Wprowadzona formuła jest błędna.
    Użyto niepoprawnej liczby klamr.", - "SSE.Controllers.Main.errorWrongOperator": "Wprowadzona formuła jest błędna. Został użyty błędny operator.
    Proszę poprawić błąd.", - "SSE.Controllers.Main.leavePageText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", - "SSE.Controllers.Main.loadFontsTextText": "Ładowanie danych...", - "SSE.Controllers.Main.loadFontsTitleText": "Ładowanie danych", - "SSE.Controllers.Main.loadFontTextText": "Ładowanie danych...", - "SSE.Controllers.Main.loadFontTitleText": "Ładowanie danych", - "SSE.Controllers.Main.loadImagesTextText": "Ładowanie obrazów...", - "SSE.Controllers.Main.loadImagesTitleText": "Ładowanie obrazów", - "SSE.Controllers.Main.loadImageTextText": "Ładowanie obrazu...", - "SSE.Controllers.Main.loadImageTitleText": "Ładowanie obrazu", - "SSE.Controllers.Main.loadingDocumentTextText": "Ładowanie dokumentu...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Ładowanie dokumentu", - "SSE.Controllers.Main.mailMergeLoadFileText": "Ładowanie źródła danych", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Ładowanie źródła danych", - "SSE.Controllers.Main.notcriticalErrorTitle": "Ostrzeżenie", - "SSE.Controllers.Main.openErrorText": "Wystąpił błąd podczas otwierania pliku", - "SSE.Controllers.Main.openTextText": "Otwieranie dokumentu...", - "SSE.Controllers.Main.openTitleText": "Otwieranie dokumentu", - "SSE.Controllers.Main.printTextText": "Drukowanie dokumentu...", - "SSE.Controllers.Main.printTitleText": "Drukowanie dokumentu", - "SSE.Controllers.Main.reloadButtonText": "Przeładuj stronę", - "SSE.Controllers.Main.requestEditFailedMessageText": "Ktoś właśnie edytuje ten dokument. Proszę spróbuj później.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Odmowa dostępu", - "SSE.Controllers.Main.saveErrorText": "Wystąpił błąd podczas zapisywania pliku", - "SSE.Controllers.Main.savePreparingText": "Przygotowywanie do zapisu", - "SSE.Controllers.Main.savePreparingTitle": "Przygotowywanie do zapisu. Proszę czekać...", - "SSE.Controllers.Main.saveTextText": "Zapisywanie dokumentu...", - "SSE.Controllers.Main.saveTitleText": "Zapisywanie dokumentu", - "SSE.Controllers.Main.sendMergeText": "Wysyłanie korespondencji seryjnej", - "SSE.Controllers.Main.sendMergeTitle": "Wysyłanie korespondencji seryjnej", - "SSE.Controllers.Main.textAnonymous": "Gość", - "SSE.Controllers.Main.textBack": "Powrót", - "SSE.Controllers.Main.textBuyNow": "Odwiedź stronę web", - "SSE.Controllers.Main.textCancel": "Anuluj", - "SSE.Controllers.Main.textClose": "Zamknij", - "SSE.Controllers.Main.textContactUs": "Dział sprzedaży", - "SSE.Controllers.Main.textDone": "Gotowe", - "SSE.Controllers.Main.textLoadingDocument": "Ładowanie dokumentu", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE wersja open source", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPassword": "Hasło", - "SSE.Controllers.Main.textPreloader": "Ładowanie...", - "SSE.Controllers.Main.textShape": "Kształt", - "SSE.Controllers.Main.textStrict": "Tryb ścisły", - "SSE.Controllers.Main.textTryUndoRedo": "Funkcje Cofnij/Ponów są wyłączone w trybie \"Szybki\" współtworzenia.
    Kliknij przycisk \"Tryb ścisły\", aby przejść do trybu ścisłego edytowania, aby edytować plik bez ingerencji innych użytkowników i wysyłać zmiany tylko po zapisaniu. Możesz przełączać się między trybami współtworzenia, używając edytora Ustawienia zaawansowane.", - "SSE.Controllers.Main.textUsername": "Nazwa użytkownika", - "SSE.Controllers.Main.titleLicenseExp": "Licencja wygasła", - "SSE.Controllers.Main.titleServerVersion": "Zaktualizowano edytor", - "SSE.Controllers.Main.titleUpdateVersion": "Wersja uległa zmianie", - "SSE.Controllers.Main.txtAccent": "Akcent", - "SSE.Controllers.Main.txtArt": "Twój tekst tutaj", - "SSE.Controllers.Main.txtBasicShapes": "Kształty podstawowe", - "SSE.Controllers.Main.txtButtons": "Przyciski", - "SSE.Controllers.Main.txtCallouts": "Objaśnienia", - "SSE.Controllers.Main.txtCharts": "Wykresy", - "SSE.Controllers.Main.txtDelimiter": "Separator", - "SSE.Controllers.Main.txtDiagramTitle": "Tytuł wykresu", - "SSE.Controllers.Main.txtEditingMode": "Ustaw tryb edycji...", - "SSE.Controllers.Main.txtEncoding": "Kodowanie", - "SSE.Controllers.Main.txtErrorLoadHistory": "Ładowanie historii nie powiodło się.", - "SSE.Controllers.Main.txtFiguredArrows": "Strzałki", - "SSE.Controllers.Main.txtLines": "Wiersze", - "SSE.Controllers.Main.txtMath": "Matematyczne", - "SSE.Controllers.Main.txtRectangles": "Prostokąty", - "SSE.Controllers.Main.txtSeries": "Serie", - "SSE.Controllers.Main.txtSpace": "Odstęp", - "SSE.Controllers.Main.txtStarsRibbons": "Gwiazdy i wstążki", - "SSE.Controllers.Main.txtStyle_Bad": "Zły", - "SSE.Controllers.Main.txtStyle_Calculation": "Obliczenie", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Sprawdź komórkę", - "SSE.Controllers.Main.txtStyle_Comma": "Przecinek", - "SSE.Controllers.Main.txtStyle_Currency": "Waluta", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Tekst wyjaśniający", - "SSE.Controllers.Main.txtStyle_Good": "Dobry", - "SSE.Controllers.Main.txtStyle_Heading_1": "Nagłówek 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Nagłówek 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Nagłówek 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Nagłówek 4", - "SSE.Controllers.Main.txtStyle_Input": "Wejście", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Połączona komórka", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutralny", - "SSE.Controllers.Main.txtStyle_Normal": "Normalny", - "SSE.Controllers.Main.txtStyle_Note": "Notka", - "SSE.Controllers.Main.txtStyle_Output": "Wyjście", - "SSE.Controllers.Main.txtStyle_Percent": "Procent", - "SSE.Controllers.Main.txtStyle_Title": "Tytuł", - "SSE.Controllers.Main.txtStyle_Total": "Wszystkie", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Tekst ostrzegawczy", - "SSE.Controllers.Main.txtTab": "Karta", - "SSE.Controllers.Main.txtXAxis": "Oś X", - "SSE.Controllers.Main.txtYAxis": "Oś Y", - "SSE.Controllers.Main.unknownErrorText": "Nieznany błąd.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Twoja przeglądarka nie jest wspierana.", - "SSE.Controllers.Main.uploadImageExtMessage": "Nieznany format obrazu.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Brak zdjęć.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maksymalny rozmiar obrazu został przekroczony.", - "SSE.Controllers.Main.uploadImageTextText": "Wysyłanie obrazu...", - "SSE.Controllers.Main.uploadImageTitleText": "Wysyłanie obrazu", - "SSE.Controllers.Main.waitText": "Proszę czekać...", - "SSE.Controllers.Main.warnLicenseExp": "Twoja licencja wygasła.
    Zaktualizuj licencję i odśwież stronę.", - "SSE.Controllers.Main.warnNoLicense": "Używasz wersji %1 w wersji open source. Wersja ma ograniczenia dla jednoczesnych połączeń z serwerem dokumentów (po 20 połączeń naraz). Jeśli potrzebujesz więcej, rozważ zakup licencji komercyjnej.", - "SSE.Controllers.Main.warnProcessRightsChange": "Nie masz uprawnień do edycji tego pliku.", - "SSE.Controllers.Search.textNoTextFound": "Nie znaleziono tekstu", - "SSE.Controllers.Search.textReplaceAll": "Zamień wszystko", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Ostrzeżenie", - "SSE.Controllers.Settings.txtDe": "Niemiecki", - "SSE.Controllers.Settings.txtEn": "Angielski", - "SSE.Controllers.Settings.txtPl": "Polski", - "SSE.Controllers.Settings.txtRu": "Rosyjski", - "SSE.Controllers.Settings.warnDownloadAs": "Jeśli kontynuujesz zapisywanie w tym formacie, wszystkie funkcje oprócz tekstu zostaną utracone.
    Czy na pewno chcesz kontynuować?", - "SSE.Controllers.Statusbar.errNameWrongChar": "Nazwa arkusza nie może zawierać", - "SSE.Controllers.Statusbar.errorLastSheet": "Skoroszyt musi zawierać co najmniej jeden widoczny arkusz roboczy.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Nie można usunąć arkusza.", - "SSE.Controllers.Statusbar.menuDelete": "Usuń", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplikuj", - "SSE.Controllers.Statusbar.menuHide": "Ukryj", - "SSE.Controllers.Statusbar.menuUnhide": "Odkryj", - "SSE.Controllers.Statusbar.strSheet": "Arkusz", - "SSE.Controllers.Statusbar.textExternalLink": "Link zewnętrzny", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Arkusz roboczy może zawierać dane. Wykonać operację?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Masz niezapisane zmiany w tym dokumencie. Kliknij przycisk 'Zostań na tej stronie', aby poczekać na automatyczny zapis dokumentu. Kliknij przycisk \"Pozostaw tę stronę\", aby usunąć wszystkie niezapisane zmiany.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Opuszczasz aplikację", - "SSE.Controllers.Toolbar.leaveButtonText": "Zostaw tę stronę", - "SSE.Controllers.Toolbar.stayButtonText": "Zostań na tej stronie", - "SSE.Views.AddFunction.sCatDateAndTime": "Data i czas", - "SSE.Views.AddFunction.sCatEngineering": "Inżyniera", - "SSE.Views.AddFunction.sCatFinancial": "Finansowe", - "SSE.Views.AddFunction.sCatInformation": "Informacja", - "SSE.Views.AddFunction.sCatLogical": "Logiczny", - "SSE.Views.AddFunction.sCatLookupAndReference": "Wyszukiwanie i odniesienie", - "SSE.Views.AddFunction.sCatMathematic": "Matematyczne i trygonometryczne", - "SSE.Views.AddFunction.sCatStatistical": "Statystyczny", - "SSE.Views.AddFunction.sCatTextAndData": "Tekst i data", - "SSE.Views.AddFunction.textBack": "Powrót", - "SSE.Views.AddFunction.textGroups": "Kategorie", - "SSE.Views.AddLink.textAddLink": "Dodaj link", - "SSE.Views.AddLink.textAddress": "Adres", - "SSE.Views.AddLink.textDisplay": "Pokaż", - "SSE.Views.AddLink.textExternalLink": "Link zewnętrzny", - "SSE.Views.AddLink.textInsert": "Wstaw", - "SSE.Views.AddLink.textInternalLink": "Wewnętrzny zakres danych", - "SSE.Views.AddLink.textLink": "Połączyć", - "SSE.Views.AddLink.textLinkType": "Typ linku", - "SSE.Views.AddLink.textRange": "Zakres", - "SSE.Views.AddLink.textRequired": "Wymagany", - "SSE.Views.AddLink.textSheet": "Arkusz", - "SSE.Views.AddLink.textTip": "Wskazówka", - "SSE.Views.AddOther.textAddress": "Adres", - "SSE.Views.AddOther.textBack": "Powrót", - "SSE.Views.AddOther.textFilter": "Filtr", - "SSE.Views.AddOther.textFromLibrary": "Obraz z biblioteki", - "SSE.Views.AddOther.textFromURL": "Obraz z URL", - "SSE.Views.AddOther.textImageURL": "Adres URL obrazu", - "SSE.Views.AddOther.textInsert": "Wstaw", - "SSE.Views.AddOther.textInsertImage": "Wstaw obraz", - "SSE.Views.AddOther.textLink": "Link", - "SSE.Views.AddOther.textSort": "Sortuj i filtruj", - "SSE.Views.EditCell.textAccounting": "Rachunkowy", - "SSE.Views.EditCell.textAlignBottom": "Wyrównaj do dołu", - "SSE.Views.EditCell.textAlignCenter": "Wyrównaj do środka", - "SSE.Views.EditCell.textAlignLeft": "Wyrównaj do lewej", - "SSE.Views.EditCell.textAlignMiddle": "Wyrównaj do środka", - "SSE.Views.EditCell.textAlignRight": "Wyrównaj do prawej", - "SSE.Views.EditCell.textAlignTop": "Wyrównaj do góry", - "SSE.Views.EditCell.textAllBorders": "Wszystkie krawędzie", - "SSE.Views.EditCell.textBack": "Powrót", - "SSE.Views.EditCell.textBorderStyle": "Styl obramowania", - "SSE.Views.EditCell.textBottomBorder": "Dolna krawędź", - "SSE.Views.EditCell.textCellStyle": "Style komórki", - "SSE.Views.EditCell.textColor": "Kolor", - "SSE.Views.EditCell.textCurrency": "Waluta", - "SSE.Views.EditCell.textDate": "Data", - "SSE.Views.EditCell.textDiagDownBorder": "Przekątna granica z góry na dół", - "SSE.Views.EditCell.textDiagUpBorder": "Przekątna granica od dołu do góry", - "SSE.Views.EditCell.textDollar": "Dolar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Wypełnij kolorem", - "SSE.Views.EditCell.textFonts": "Czcionki", - "SSE.Views.EditCell.textFormat": "Formatowanie", - "SSE.Views.EditCell.textGeneral": "Ogólne", - "SSE.Views.EditCell.textInBorders": "Wewnątrz granic", - "SSE.Views.EditCell.textInHorBorder": "Wewnątrz obramowania poziomego", - "SSE.Views.EditCell.textInteger": "Liczba całkowita", - "SSE.Views.EditCell.textInVertBorder": "Wewnątrz pionowego obramowania", - "SSE.Views.EditCell.textJustified": "Wyjustowany", - "SSE.Views.EditCell.textLeftBorder": "Lewa krawędź", - "SSE.Views.EditCell.textMedium": "Średni", - "SSE.Views.EditCell.textNoBorder": "Brak obramowania", - "SSE.Views.EditCell.textNumber": "Numeryczny", - "SSE.Views.EditCell.textPercentage": "Procentowo", - "SSE.Views.EditCell.textPound": "Funt", - "SSE.Views.EditCell.textRightBorder": "Prawa krawędź", - "SSE.Views.EditCell.textRouble": "Rubel", - "SSE.Views.EditCell.textScientific": "Naukowy", - "SSE.Views.EditCell.textSize": "Rozmiar", - "SSE.Views.EditCell.textText": "Tekst", - "SSE.Views.EditCell.textTextColor": "Kolor tekstu", - "SSE.Views.EditCell.textTextFormat": "Format tekstu", - "SSE.Views.EditCell.textThick": "Gruby", - "SSE.Views.EditCell.textThin": "Cienki", - "SSE.Views.EditCell.textTime": "Czas", - "SSE.Views.EditCell.textTopBorder": "Górna krawędź", - "SSE.Views.EditCell.textWrapText": "Zawijaj tekst", - "SSE.Views.EditCell.textYen": "Jen", - "SSE.Views.EditChart.textAuto": "Automatyczny", - "SSE.Views.EditChart.textAxisCrosses": "Krzywe osie", - "SSE.Views.EditChart.textAxisOptions": "Opcje osi", - "SSE.Views.EditChart.textAxisPosition": "Pozycja osi", - "SSE.Views.EditChart.textAxisTitle": "Tytuł osi", - "SSE.Views.EditChart.textBack": "Powrót", - "SSE.Views.EditChart.textBackward": "Przenieś do tyłu", - "SSE.Views.EditChart.textBorder": "Obramowanie", - "SSE.Views.EditChart.textBottom": "Dół", - "SSE.Views.EditChart.textChart": "Wykres", - "SSE.Views.EditChart.textChartTitle": "Tytuł wykresu", - "SSE.Views.EditChart.textColor": "Kolor", - "SSE.Views.EditChart.textCrossesValue": "Wartość", - "SSE.Views.EditChart.textDataLabels": "Ciemne etykiety", - "SSE.Views.EditChart.textDesign": "Widok", - "SSE.Views.EditChart.textDisplayUnits": "Pokaż jednostki", - "SSE.Views.EditChart.textFill": "Wypełnij", - "SSE.Views.EditChart.textForward": "Przenieś do przodu", - "SSE.Views.EditChart.textHorAxis": "Pozioma oś", - "SSE.Views.EditChart.textHorizontal": "Poziomy", - "SSE.Views.EditChart.textLabelOptions": "Ustawienia etykiety", - "SSE.Views.EditChart.textLabelPos": "Pozycja etykiety", - "SSE.Views.EditChart.textLayout": "Układ", - "SSE.Views.EditChart.textLeft": "Lewy", - "SSE.Views.EditChart.textLeftOverlay": "Lewa nakładka", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Główny", - "SSE.Views.EditChart.textMajorMinor": "Większy i mniejszy", - "SSE.Views.EditChart.textMajorType": "Główny typ", - "SSE.Views.EditChart.textMaxValue": "Maksymalna wartość", - "SSE.Views.EditChart.textMinor": "Mniejszy", - "SSE.Views.EditChart.textMinorType": "Mały typ", - "SSE.Views.EditChart.textMinValue": "Wartość minimalna", - "SSE.Views.EditChart.textNone": "żaden", - "SSE.Views.EditChart.textNoOverlay": "Brak pokrycia", - "SSE.Views.EditChart.textOverlay": "Nałożenie", - "SSE.Views.EditChart.textRemoveChart": "Usuń wykres", - "SSE.Views.EditChart.textReorder": "Zmień kolejność", - "SSE.Views.EditChart.textRight": "Prawy", - "SSE.Views.EditChart.textRightOverlay": "Właściwa nakładka", - "SSE.Views.EditChart.textRotated": "Obrócony", - "SSE.Views.EditChart.textSize": "Rozmiar", - "SSE.Views.EditChart.textStyle": "Styl", - "SSE.Views.EditChart.textTickOptions": "Zaznacz opcje", - "SSE.Views.EditChart.textToBackground": "Wyślij do tła", - "SSE.Views.EditChart.textToForeground": "Idź na pierwszy plan", - "SSE.Views.EditChart.textTop": "Góra", - "SSE.Views.EditChart.textType": "Typ", - "SSE.Views.EditChart.textValReverseOrder": "Wartości w odwrotnej kolejności", - "SSE.Views.EditChart.textVerAxis": "Oś pionowa", - "SSE.Views.EditChart.textVertical": "Pionowy", - "SSE.Views.EditHyperlink.textBack": "Powrót", - "SSE.Views.EditHyperlink.textDisplay": "Pokaż", - "SSE.Views.EditHyperlink.textEditLink": "Edytuj link", - "SSE.Views.EditHyperlink.textExternalLink": "Link zewnętrzny", - "SSE.Views.EditHyperlink.textInternalLink": "Wewnętrzny zakres danych", - "SSE.Views.EditHyperlink.textLink": "Link", - "SSE.Views.EditHyperlink.textLinkType": "Typ linku", - "SSE.Views.EditHyperlink.textRange": "Zakres", - "SSE.Views.EditHyperlink.textRemoveLink": "Usuń link", - "SSE.Views.EditHyperlink.textScreenTip": "Wskazówka", - "SSE.Views.EditHyperlink.textSheet": "Arkusz", - "SSE.Views.EditImage.textAddress": "Adres", - "SSE.Views.EditImage.textBack": "Powrót", - "SSE.Views.EditImage.textBackward": "Przenieś do tyłu", - "SSE.Views.EditImage.textDefault": "Domyślny rozmiar", - "SSE.Views.EditImage.textForward": "Przenieś do przodu", - "SSE.Views.EditImage.textFromLibrary": "Obraz z biblioteki", - "SSE.Views.EditImage.textFromURL": "Obraz z URL", - "SSE.Views.EditImage.textImageURL": "Adres URL obrazu", - "SSE.Views.EditImage.textLinkSettings": "Ustawienia linku", - "SSE.Views.EditImage.textRemove": "Usuń obraz", - "SSE.Views.EditImage.textReorder": "Zmień kolejność", - "SSE.Views.EditImage.textReplace": "Zamień", - "SSE.Views.EditImage.textReplaceImg": "Zamień obraz", - "SSE.Views.EditImage.textToBackground": "Wyślij do tła", - "SSE.Views.EditImage.textToForeground": "Idź na pierwszy plan", - "SSE.Views.EditShape.textBack": "Powrót", - "SSE.Views.EditShape.textBackward": "Przenieś do tyłu", - "SSE.Views.EditShape.textBorder": "Obramowanie", - "SSE.Views.EditShape.textColor": "Kolor", - "SSE.Views.EditShape.textEffects": "Efekty", - "SSE.Views.EditShape.textFill": "Wypełnij", - "SSE.Views.EditShape.textForward": "Przenieś do przodu", - "SSE.Views.EditShape.textOpacity": "Nieprzezroczystość", - "SSE.Views.EditShape.textRemoveShape": "Usuń kształt", - "SSE.Views.EditShape.textReorder": "Zmień kolejność", - "SSE.Views.EditShape.textReplace": "Zamień", - "SSE.Views.EditShape.textSize": "Rozmiar", - "SSE.Views.EditShape.textStyle": "Styl", - "SSE.Views.EditShape.textToBackground": "Wyślij do tła", - "SSE.Views.EditShape.textToForeground": "Przejdź na pierwszy plan", - "SSE.Views.EditText.textBack": "Powrót", - "SSE.Views.EditText.textFillColor": "Wypełnij kolorem", - "SSE.Views.EditText.textFonts": "Czcionki", - "SSE.Views.EditText.textSize": "Rozmiar", - "SSE.Views.EditText.textTextColor": "Kolor tekstu", - "SSE.Views.Search.textByColumns": "Według kolumn", - "SSE.Views.Search.textByRows": "Według wierszy", - "SSE.Views.Search.textDone": "Gotowe", - "SSE.Views.Search.textFind": "Znajdź", - "SSE.Views.Search.textFindAndReplace": "Znajdź i zamień", - "SSE.Views.Search.textMatchCase": "Z uwzględnieniem wielkości liter", - "SSE.Views.Search.textMatchCell": "Dopasuj komórkę", - "SSE.Views.Search.textReplace": "Zamień", - "SSE.Views.Search.textSearch": "Szukaj", - "SSE.Views.Search.textSearchIn": "Szukaj w", - "SSE.Views.Search.textSheet": "Arkusz", - "SSE.Views.Search.textWorkbook": "Skoroszyt", - "SSE.Views.Settings.textAbout": "O programie", - "SSE.Views.Settings.textAddress": "Adres", - "SSE.Views.Settings.textApplicationSettings": "Ustawienia aplikacji", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Powrót", - "SSE.Views.Settings.textCollaboration": "Współpraca", - "SSE.Views.Settings.textComment": "Nota", - "SSE.Views.Settings.textCreated": "Utworzono", - "SSE.Views.Settings.textCreateDate": "Data utworzenia", - "SSE.Views.Settings.textDocInfo": "Informacje o arkuszu kalkulacyjnym", - "SSE.Views.Settings.textDocTitle": "Tytuł arkusza kalkulacyjnego", - "SSE.Views.Settings.textDone": "Gotowe", - "SSE.Views.Settings.textDownload": "Pobierz", - "SSE.Views.Settings.textDownloadAs": "Pobierz jako...", - "SSE.Views.Settings.textEditDoc": "Edytuj dokument", - "SSE.Views.Settings.textEmail": "E-mail", - "SSE.Views.Settings.textFind": "Znajdź", - "SSE.Views.Settings.textFindAndReplace": "Znajdź i zamień", - "SSE.Views.Settings.textHelp": "Pomoc", - "SSE.Views.Settings.textLoading": "Ładowanie...", - "SSE.Views.Settings.textPoweredBy": "zasilany przez", - "SSE.Views.Settings.textSettings": "Ustawienia", - "SSE.Views.Settings.textTel": "tel", - "SSE.Views.Settings.textVersion": "Wersja", - "SSE.Views.Settings.unknownText": "Nieznany", - "SSE.Views.Toolbar.textBack": "Powrót" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 0c4092684..5e35bc3bf 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -1,661 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Adicionar resposta", - "Common.Controllers.Collaboration.textCancel": "Cancelar", - "Common.Controllers.Collaboration.textDeleteComment": "Excluir comentários", - "Common.Controllers.Collaboration.textDeleteReply": "Excluir resposta", - "Common.Controllers.Collaboration.textDone": "Concluído", - "Common.Controllers.Collaboration.textEdit": "Editar", - "Common.Controllers.Collaboration.textEditUser": "Usuários que estão editando o arquivo:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Você quer realmente excluir este comentário?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Você realmente quer apagar esta resposta?", - "Common.Controllers.Collaboration.textReopen": "Reabrir", - "Common.Controllers.Collaboration.textResolve": "Resolver", - "Common.Controllers.Collaboration.textYes": "Sim", - "Common.UI.ThemeColorPalette.textCustomColors": "Cores personalizadas", - "Common.UI.ThemeColorPalette.textStandartColors": "Cores padronizadas", - "Common.UI.ThemeColorPalette.textThemeColors": "Cores do tema", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "Pt", - "Common.Views.Collaboration.textAddReply": "Adicionar resposta", - "Common.Views.Collaboration.textBack": "Voltar", - "Common.Views.Collaboration.textCancel": "Cancelar", - "Common.Views.Collaboration.textCollaboration": "Colaboração", - "Common.Views.Collaboration.textDone": "Concluído", - "Common.Views.Collaboration.textEditReply": "Editar resposta", - "Common.Views.Collaboration.textEditUsers": "Usuários", - "Common.Views.Collaboration.textEditСomment": "Editar comentário", - "Common.Views.Collaboration.textNoComments": "A planilha não contém comentários.", - "Common.Views.Collaboration.textСomments": "Comentários", - "SSE.Controllers.AddChart.txtDiagramTitle": "Título do Gráfico", - "SSE.Controllers.AddChart.txtSeries": "Série", - "SSE.Controllers.AddChart.txtXAxis": "Eixo X", - "SSE.Controllers.AddChart.txtYAxis": "Eixo Y", - "SSE.Controllers.AddContainer.textChart": "Gráfico", - "SSE.Controllers.AddContainer.textFormula": "Função", - "SSE.Controllers.AddContainer.textImage": "Imagem", - "SSE.Controllers.AddContainer.textOther": "Outro", - "SSE.Controllers.AddContainer.textShape": "Forma", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.AddLink.textInvalidRange": "ERRO! Intervalo de células inválido", - "SSE.Controllers.AddLink.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.AddOther.textCancel": "Cancelar", - "SSE.Controllers.AddOther.textContinue": "Continuar", - "SSE.Controllers.AddOther.textDelete": "Excluir", - "SSE.Controllers.AddOther.textDeleteDraft": "Você realmente quer apagar o rascunho?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", - "SSE.Controllers.AddOther.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Copiar, cortar e colar usando o menu de contexto serão aplicadas apenas a este arquivo.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "A referência de link não existe.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Adicionar comentário", - "SSE.Controllers.DocumentHolder.menuAddLink": "Adicionar Link", - "SSE.Controllers.DocumentHolder.menuCell": "Célula", - "SSE.Controllers.DocumentHolder.menuCopy": "Copiar", - "SSE.Controllers.DocumentHolder.menuCut": "Cortar", - "SSE.Controllers.DocumentHolder.menuDelete": "Excluir", - "SSE.Controllers.DocumentHolder.menuEdit": "Editar", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Congelar painéis", - "SSE.Controllers.DocumentHolder.menuHide": "Ocultar", - "SSE.Controllers.DocumentHolder.menuMerge": "Mesclar", - "SSE.Controllers.DocumentHolder.menuMore": "Mais", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Abrir link", - "SSE.Controllers.DocumentHolder.menuPaste": "Colar", - "SSE.Controllers.DocumentHolder.menuShow": "Exibir", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Descongelar Painéis", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Desfazer Mesclagem", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Decodificar", - "SSE.Controllers.DocumentHolder.menuViewComment": "Ver Comentário", - "SSE.Controllers.DocumentHolder.menuWrap": "Encapsulamento", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.DocumentHolder.sheetCancel": "Cancelar", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Copiar, Cortar e Colar", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Não exibir novamente", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Apenas os dados da célula superior esquerda permanecerá na célula mesclada.
    Você tem certeza de que deseja continuar? ", - "SSE.Controllers.EditCell.textAuto": "Automático", - "SSE.Controllers.EditCell.textFonts": "Fontes", - "SSE.Controllers.EditCell.textPt": "Pt", - "SSE.Controllers.EditChart.errorMaxRows": "ERRO! O número máximo de séries de dado por gráfico é 255.", - "SSE.Controllers.EditChart.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
    preço de abertura, preço máx., preço mín., preço de fechamento.", - "SSE.Controllers.EditChart.textAuto": "Automático", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Entre marcas de escala", - "SSE.Controllers.EditChart.textBillions": "Bilhões", - "SSE.Controllers.EditChart.textBottom": "Inferior", - "SSE.Controllers.EditChart.textCenter": "Centro", - "SSE.Controllers.EditChart.textCross": "Cruz", - "SSE.Controllers.EditChart.textCustom": "Personalizar", - "SSE.Controllers.EditChart.textFit": "Ajustar largura", - "SSE.Controllers.EditChart.textFixed": "Corrigido", - "SSE.Controllers.EditChart.textHigh": "Alto", - "SSE.Controllers.EditChart.textHorizontal": "Horizontal", - "SSE.Controllers.EditChart.textHundredMil": "100.000.000 ", - "SSE.Controllers.EditChart.textHundreds": "Centenas", - "SSE.Controllers.EditChart.textHundredThousands": "100.000 ", - "SSE.Controllers.EditChart.textIn": "Em", - "SSE.Controllers.EditChart.textInnerBottom": "Parte inferior interna", - "SSE.Controllers.EditChart.textInnerTop": "Parte superior interna", - "SSE.Controllers.EditChart.textLeft": "Esquerda", - "SSE.Controllers.EditChart.textLeftOverlay": "Sobreposição esquerda", - "SSE.Controllers.EditChart.textLow": "Baixo", - "SSE.Controllers.EditChart.textManual": "Manual", - "SSE.Controllers.EditChart.textMaxValue": "Valor máximo", - "SSE.Controllers.EditChart.textMillions": "Milhões", - "SSE.Controllers.EditChart.textMinValue": "Valor mínimo", - "SSE.Controllers.EditChart.textNextToAxis": "Próximo ao eixo", - "SSE.Controllers.EditChart.textNone": "Nenhum", - "SSE.Controllers.EditChart.textNoOverlay": "Sem sobreposição", - "SSE.Controllers.EditChart.textOnTickMarks": "Nas marcas de escala", - "SSE.Controllers.EditChart.textOut": "Fora", - "SSE.Controllers.EditChart.textOuterTop": "Fora do topo", - "SSE.Controllers.EditChart.textOverlay": "Sobreposição", - "SSE.Controllers.EditChart.textRight": "Direita", - "SSE.Controllers.EditChart.textRightOverlay": "Sobreposição direita", - "SSE.Controllers.EditChart.textRotated": "Girado", - "SSE.Controllers.EditChart.textTenMillions": "10.000.000 ", - "SSE.Controllers.EditChart.textTenThousands": "10.000 ", - "SSE.Controllers.EditChart.textThousands": "Milhares", - "SSE.Controllers.EditChart.textTop": "Parte superior", - "SSE.Controllers.EditChart.textTrillions": "Trilhões", - "SSE.Controllers.EditChart.textValue": "Valor", - "SSE.Controllers.EditContainer.textCell": "Célula", - "SSE.Controllers.EditContainer.textChart": "Gráfico", - "SSE.Controllers.EditContainer.textHyperlink": "Hiperlink", - "SSE.Controllers.EditContainer.textImage": "Imagem", - "SSE.Controllers.EditContainer.textSettings": "Configurações", - "SSE.Controllers.EditContainer.textShape": "Forma", - "SSE.Controllers.EditContainer.textTable": "Tabela", - "SSE.Controllers.EditContainer.textText": "Тexto", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.EditHyperlink.textDefault": "Intervalo selecionado", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Link externo", - "SSE.Controllers.EditHyperlink.textInternalLink": "Intervalo de dados interno", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Intervalo de células inválido", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Você precisa especificar uma URL de imagem.", - "SSE.Controllers.EditImage.txtNotUrl": "Este campo deve ser um URL no formato 'http://www.example.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Vazio}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Deve ser escolhido ao menos um valor.", - "SSE.Controllers.FilterOptions.textErrorTitle": "Aviso", - "SSE.Controllers.FilterOptions.textSelectAll": "Selecionar todos", - "SSE.Controllers.Main.advCSVOptions": "Escolher opções CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Digite sua senha:", - "SSE.Controllers.Main.advDRMOptions": "Arquivo protegido", - "SSE.Controllers.Main.advDRMPassword": "Senha", - "SSE.Controllers.Main.applyChangesTextText": "Carregando dados...", - "SSE.Controllers.Main.applyChangesTitleText": "Carregando dados", - "SSE.Controllers.Main.closeButtonText": "Fechar Arquivo", - "SSE.Controllers.Main.convertationTimeoutText": "Tempo limite de conversão excedido.", - "SSE.Controllers.Main.criticalErrorExtText": "Pressione \"OK\" para voltar para a lista de documento.", - "SSE.Controllers.Main.criticalErrorTitle": "Erro", - "SSE.Controllers.Main.downloadErrorText": "Transferência falhou.", - "SSE.Controllers.Main.downloadMergeText": "Transferindo...", - "SSE.Controllers.Main.downloadMergeTitle": "Transferindo", - "SSE.Controllers.Main.downloadTextText": "Transferindo planilha...", - "SSE.Controllers.Main.downloadTitleText": "Transferindo planilha", - "SSE.Controllers.Main.errorAccessDeny": "Você está tentando executar uma ação para a qual não tem direitos.
    Entre em contato com o administrador do Document Server.", - "SSE.Controllers.Main.errorArgsRange": "Um erro na fórmula inserida.
    Intervalo de argumento incorreto está sendo usado.", - "SSE.Controllers.Main.errorAutoFilterChange": "A operação não é permitida, uma vez que ela está tentando deslocar células na tabela em sua folha de trabalho.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "A operação não pode ser feita para as células selecionadas, uma vez que você não pode mover uma parte da tabela.
    Selecione outra faixa de dados de modo que toda a tabela seja deslocada e tente novamente.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Não foi possível concluir a operação para o intervalo de células selecionado.
    Selecione um intervalo de dados uniforme interno ou externo à tabela e tente novamente.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "A operação não pode ser realizada por que a área contém células filtrads.
    Torne visíveis os elementos fritados e tente novamente.", - "SSE.Controllers.Main.errorBadImageUrl": "URL da imagem está incorreta", - "SSE.Controllers.Main.errorChangeArray": "Você não pode mudar parte de uma matriz.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Conexão com servidor perdida. O documento não pode ser editado neste momento.", - "SSE.Controllers.Main.errorConnectToServer": "O documento não pode ser gravado. Verifique as configurações de conexão ou entre em contato com o administrador.
    Quando você clicar no botão 'OK', você será solicitado a transferir o documento.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Este comando não pode ser usado com várias seleções.
    Selecione um intervalo único e tente novamente.", - "SSE.Controllers.Main.errorCountArg": "Um erro na fórmula inserida.
    Número incorreto de argumentos está sendo usado.", - "SSE.Controllers.Main.errorCountArgExceed": "Um erro na fórmula inserida.
    Número de argumentos foi excedido.", - "SSE.Controllers.Main.errorCreateDefName": "Os intervalos nomeados existentes não podem ser editados e nos novos não podem ser criados
    no momento, uma vez que alguns deles estão sendo editados.", - "SSE.Controllers.Main.errorDatabaseConnection": "Erro externo.
    Erro de conexão ao banco de dados. Entre em contato com o suporte caso o erro persista.", - "SSE.Controllers.Main.errorDataEncrypted": "Alterações criptografadas foram recebidas, e não podem ser decifradas.", - "SSE.Controllers.Main.errorDataRange": "Intervalo de dados incorreto.", - "SSE.Controllers.Main.errorDataValidate": "O valor que você digitou não é válido.
    Um usuário restringiu valores que podem ser inseridos nesta célula.", - "SSE.Controllers.Main.errorDefaultMessage": "Código do erro: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Ocorreu um erro.
    Use a opção 'Transferir' para gravar a cópia de backup do arquivo em seu computador.", - "SSE.Controllers.Main.errorFilePassProtect": "O documento é protegido por senha e não pode ser aberto.", - "SSE.Controllers.Main.errorFileRequest": "Erro externo.
    Erro de solicitação de arquivo. Entre em contato com o suporte caso o erro persista.", - "SSE.Controllers.Main.errorFileSizeExceed": "O tamanho do arquivo excede o limite de seu servidor.
    Por favor, contate seu administrador de Servidor de Documentos para detalhes.", - "SSE.Controllers.Main.errorFileVKey": "Erro externo.
    Chave de segurança incorreta. Entre em contato com o suporte caso o erro persista.", - "SSE.Controllers.Main.errorFillRange": "Não foi possível preencher o intervalo selecionado de células.
    Todas as células mescladas precisam ser do mesmo tamanho.", - "SSE.Controllers.Main.errorFormulaName": "Um erro na fórmula inserida.
    Nome da fórmula incorreto está sendo usado.", - "SSE.Controllers.Main.errorFormulaParsing": "Erro interno ao analisar a fórmula.", - "SSE.Controllers.Main.errorFrmlMaxLength": "O comprimento de sua fórmula excede o limite de 8192 caracteres.
    Por favor, edite-a e tente novamente.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Você não pode inserir esta fórmula porque ela tem muitos valores,
    referências de células, e/ou nomes.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Os valores de texto em fórmula são limitados a 255 caracteres.
    Use a função CONCATENAR ou o operador de concatenação (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "A função se refere a uma folha que não existe.
    Verifique os dados e tente novamente.", - "SSE.Controllers.Main.errorInvalidRef": "Inserir um nome correto para a seleção ou referência válida para ir para.", - "SSE.Controllers.Main.errorKeyEncrypt": "Descritor de chave desconhecido", - "SSE.Controllers.Main.errorKeyExpire": "Descritor de chave expirado", - "SSE.Controllers.Main.errorLockedAll": "A operação não pode ser concluída uma vez que a folha foi bloqueada por outro usuário.", - "SSE.Controllers.Main.errorLockedCellPivot": "Você não pode alterar os dados dentro de uma tabela dinâmica. ", - "SSE.Controllers.Main.errorLockedWorksheetRename": "A folha não pode ser renomeada no momento uma vez que está sendo renomeada por outro usuário", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Carregamento falhou. Por favor, selecione um arquivo diferente.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Mesclagem falhou.", - "SSE.Controllers.Main.errorMaxPoints": "O máximo número de pontos em séries por gráfico é 4096.", - "SSE.Controllers.Main.errorMoveRange": "Não é possível alterar parte de uma célula mesclada", - "SSE.Controllers.Main.errorMultiCellFormula": "Não são permitidas fórmulas de matriz multicélulas em tabelas.", - "SSE.Controllers.Main.errorOpensource": "Usando a versão comunitária gratuita, você pode abrir documentos apenas para visualização. Para acessar editores web móveis, é necessária uma licença comercial.", - "SSE.Controllers.Main.errorOpenWarning": "Uma das fórmulas do arquivo excede o limite de 8192 caracteres.
    A fórmula foi removida.", - "SSE.Controllers.Main.errorOperandExpected": "A sintaxe de função inserida não está correta. Verifique se você se esqueceu de um dos parênteses - '(' ou ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "A área de copiar e colar não combina.
    Selecione uma área com o mesmo tamanho ou clique na primeira célula em uma linha para colar as células copiadas.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Infelizmente, não é possível imprimir mais de 1500 páginas de uma vez na versão de programa atual.
    Esta restrição será removida nos lançamentos futuros.", - "SSE.Controllers.Main.errorProcessSaveResult": "Salvamento falhou", - "SSE.Controllers.Main.errorServerVersion": "A versão do editor foi atualizada. A página será recarregada para aplicar as alterações.", - "SSE.Controllers.Main.errorSessionAbsolute": "A sessão de edição de documentos expirou. Atualize a página.", - "SSE.Controllers.Main.errorSessionIdle": "O documento ficou sem edição por muito tempo. Atualize a página.", - "SSE.Controllers.Main.errorSessionToken": "A conexão com o servidor foi interrompida. Atualize a página.", - "SSE.Controllers.Main.errorStockChart": "Ordem da linha incorreta. Para criar um gráfico de ações coloque os dados na planilha na seguinte ordem:
    preço de abertura, preço máx., preço mín., preço de fechamento.", - "SSE.Controllers.Main.errorToken": "O token de segurança do documento não foi formado corretamente.
    Entre em contato com o administrador do Document Server.", - "SSE.Controllers.Main.errorTokenExpire": "O token de segurança do documento expirou.
    Entre em contato com o administrador do Document Server.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Erro externo.
    GUID inesperado. Entre em contato com o suporte caso o erro persista.", - "SSE.Controllers.Main.errorUpdateVersion": "A versão do arquivo foi alterada. A página será recarregada.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada.
    Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.", - "SSE.Controllers.Main.errorUserDrop": "O arquivo não pode ser acessado agora.", - "SSE.Controllers.Main.errorUsersExceed": "O número de usuários permitidos pelo plano de preços foi excedido", - "SSE.Controllers.Main.errorViewerDisconnect": "Conexão perdida. Você ainda pode exibir o documento,
    mas não poderá transferir o arquivo até que a conexão seja restaurada e a página recarregada.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Um erro na fórmula inserida.
    Número errado de parênteses está sendo usado.", - "SSE.Controllers.Main.errorWrongOperator": "Um erro na fórmula inserida. Operador errado está sendo usado.
    Corrija o erro.", - "SSE.Controllers.Main.leavePageText": "Você tem alterações não salvas neste documento. Clique em \"Ficar nesta Página\" para aguardar o salvamento automático do documento. Clique em \"Sair desta página\" para descartar as alterações não salvas.", - "SSE.Controllers.Main.loadFontsTextText": "Carregando dados...", - "SSE.Controllers.Main.loadFontsTitleText": "Carregando dados", - "SSE.Controllers.Main.loadFontTextText": "Carregando dados...", - "SSE.Controllers.Main.loadFontTitleText": "Carregando dados", - "SSE.Controllers.Main.loadImagesTextText": "Carregando imagens...", - "SSE.Controllers.Main.loadImagesTitleText": "Carregando imagens", - "SSE.Controllers.Main.loadImageTextText": "Carregando imagem...", - "SSE.Controllers.Main.loadImageTitleText": "Carregando imagem", - "SSE.Controllers.Main.loadingDocumentTextText": "Carregando planilha...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Carregando planilha", - "SSE.Controllers.Main.mailMergeLoadFileText": "Carregando fonte de dados...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Carregando fonte de dados", - "SSE.Controllers.Main.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Main.openErrorText": "Ocorreu um erro ao abrir o arquivo.", - "SSE.Controllers.Main.openTextText": "Abrindo documento...", - "SSE.Controllers.Main.openTitleText": "Abrindo documento", - "SSE.Controllers.Main.pastInMergeAreaError": "Não é possível alterar parte de uma célula mesclada.", - "SSE.Controllers.Main.printTextText": "Imprimindo documento...", - "SSE.Controllers.Main.printTitleText": "Imprimindo documento", - "SSE.Controllers.Main.reloadButtonText": "Recarregar página", - "SSE.Controllers.Main.requestEditFailedMessageText": "Alguém está editando este documento neste momento. Tente novamente mais tarde.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Acesso negado", - "SSE.Controllers.Main.saveErrorText": "Ocorreu um erro ao gravar o arquivo.", - "SSE.Controllers.Main.savePreparingText": "Preparando para gravar", - "SSE.Controllers.Main.savePreparingTitle": "Preparando para gravar. Aguarde...", - "SSE.Controllers.Main.saveTextText": "Salvando documento...", - "SSE.Controllers.Main.saveTitleText": "Salvando documento", - "SSE.Controllers.Main.scriptLoadError": "A conexão está muito lenta, e alguns dos componentes não puderam ser carregados. Por favor, recarregue a página.", - "SSE.Controllers.Main.sendMergeText": "Enviando mesclar...", - "SSE.Controllers.Main.sendMergeTitle": "Enviando Mesclar", - "SSE.Controllers.Main.textAnonymous": "Anônimo", - "SSE.Controllers.Main.textBack": "Voltar", - "SSE.Controllers.Main.textBuyNow": "Visitar site", - "SSE.Controllers.Main.textCancel": "Cancelar", - "SSE.Controllers.Main.textClose": "Fechar", - "SSE.Controllers.Main.textContactUs": "Contate as vendas", - "SSE.Controllers.Main.textCustomLoader": "Por favor, observe que de acordo com os termos de licença, você não tem autorização para alterar o carregador.
    Por favor, contate o Departamento de Vendas para fazer cotação.", - "SSE.Controllers.Main.textDone": "Concluído", - "SSE.Controllers.Main.textGuest": "Convidado", - "SSE.Controllers.Main.textHasMacros": "O arquivo contém macros automáticas.
    Você quer executar macros?", - "SSE.Controllers.Main.textLoadingDocument": "Carregando planilha", - "SSE.Controllers.Main.textNo": "Não", - "SSE.Controllers.Main.textNoLicenseTitle": "Limite de licença atingido", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Recurso pago", - "SSE.Controllers.Main.textPassword": "Senha", - "SSE.Controllers.Main.textPreloader": "Carregando...", - "SSE.Controllers.Main.textRemember": "Lembre-se da minha escolha", - "SSE.Controllers.Main.textShape": "Forma", - "SSE.Controllers.Main.textStrict": "Modo estrito", - "SSE.Controllers.Main.textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo Coedição Rápida.
    Clique no botão \"Modo Estrito\" para alternar para o modo de Coedição Estrita para editar o arquivo sem interferência de outros usuários e enviar suas alterações apenas após você gravá-las. Você pode alternar entre os modos de coedição usando o editor Configurações Avançadas.", - "SSE.Controllers.Main.textUsername": "Nome de usuário", - "SSE.Controllers.Main.textYes": "Sim", - "SSE.Controllers.Main.titleLicenseExp": "Licença expirada", - "SSE.Controllers.Main.titleServerVersion": "Editor atualizado", - "SSE.Controllers.Main.titleUpdateVersion": "Versão alterada", - "SSE.Controllers.Main.txtAccent": "Destacar", - "SSE.Controllers.Main.txtArt": "Seu texto aqui", - "SSE.Controllers.Main.txtBasicShapes": "Formas básicas", - "SSE.Controllers.Main.txtButtons": "Botões", - "SSE.Controllers.Main.txtCallouts": "Textos explicativos", - "SSE.Controllers.Main.txtCharts": "Gráficos", - "SSE.Controllers.Main.txtDelimiter": "Delimitador", - "SSE.Controllers.Main.txtDiagramTitle": "Título do Gráfico", - "SSE.Controllers.Main.txtEditingMode": "Definir modo de edição...", - "SSE.Controllers.Main.txtEncoding": "Codificação", - "SSE.Controllers.Main.txtErrorLoadHistory": "Histórico de carregamento falhou", - "SSE.Controllers.Main.txtFiguredArrows": "Setas figuradas", - "SSE.Controllers.Main.txtLines": "Linhas", - "SSE.Controllers.Main.txtMath": "Matemática", - "SSE.Controllers.Main.txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.", - "SSE.Controllers.Main.txtRectangles": "Retângulos", - "SSE.Controllers.Main.txtSeries": "Série", - "SSE.Controllers.Main.txtSpace": "Espaço", - "SSE.Controllers.Main.txtStarsRibbons": "Estrelas e arco-íris", - "SSE.Controllers.Main.txtStyle_Bad": "Mau", - "SSE.Controllers.Main.txtStyle_Calculation": "Cálculo", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Verificar célula", - "SSE.Controllers.Main.txtStyle_Comma": "Vírgula", - "SSE.Controllers.Main.txtStyle_Currency": "Moeda", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texto explicativo", - "SSE.Controllers.Main.txtStyle_Good": "Bom", - "SSE.Controllers.Main.txtStyle_Heading_1": "Cabeçalho 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Cabeçalho 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Cabeçalho 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Cabeçalho 4", - "SSE.Controllers.Main.txtStyle_Input": "Entrada", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Célula vinculada", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutro", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Nota", - "SSE.Controllers.Main.txtStyle_Output": "Saída", - "SSE.Controllers.Main.txtStyle_Percent": "Por cento", - "SSE.Controllers.Main.txtStyle_Title": "Título", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Texto de aviso", - "SSE.Controllers.Main.txtTab": "Aba", - "SSE.Controllers.Main.txtXAxis": "Eixo X", - "SSE.Controllers.Main.txtYAxis": "Eixo Y", - "SSE.Controllers.Main.unknownErrorText": "Erro desconhecido.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Seu navegador não é suportado.", - "SSE.Controllers.Main.uploadImageExtMessage": "Formato de imagem desconhecido.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Sem imagens carregadas.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Limite máximo do tamanho da imagem excedido.", - "SSE.Controllers.Main.uploadImageTextText": "Carregando imagem...", - "SSE.Controllers.Main.uploadImageTitleText": "Carregando imagem", - "SSE.Controllers.Main.waitText": "Aguarde...", - "SSE.Controllers.Main.warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
    Entre em contato com seu administrador para saber mais.", - "SSE.Controllers.Main.warnLicenseExp": "Sua licença expirou.
    Atualize sua licença e atualize a página.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "A licença expirou.
    Você não tem acesso à funcionalidade de edição de documentos.
    Por favor, contate seu administrador.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "A licença precisa ser renovada.
    Você tem acesso limitado à funcionalidade de edição de documentos.
    Entre em contato com o administrador para obter acesso total.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", - "SSE.Controllers.Main.warnNoLicense": "Você atingiu o limite de conexões simultâneas para editores %1. Este documento será aberto apenas para visualização.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", - "SSE.Controllers.Main.warnProcessRightsChange": "Foi negado a você o direito de editar o arquivo.", - "SSE.Controllers.Search.textNoTextFound": "Texto não encontrado", - "SSE.Controllers.Search.textReplaceAll": "Substituir tudo", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Settings.txtDe": "Deutsch", - "SSE.Controllers.Settings.txtEn": "English", - "SSE.Controllers.Settings.txtEs": "Espanhol", - "SSE.Controllers.Settings.txtFr": "Francês", - "SSE.Controllers.Settings.txtIt": "Italiano", - "SSE.Controllers.Settings.txtPl": "Polonês", - "SSE.Controllers.Settings.txtRu": "Russian", - "SSE.Controllers.Settings.warnDownloadAs": "Se você continuar salvando neste formato, todos os recursos exceto o texto serão perdidos.
    Você tem certeza que quer continuar?", - "SSE.Controllers.Statusbar.cancelButtonText": "Cancelar", - "SSE.Controllers.Statusbar.errNameExists": "Folha de trabalho com este nome já existe.", - "SSE.Controllers.Statusbar.errNameWrongChar": "O nome da folha não pode conter os caracteres: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Nome da folha não deve estar vazio", - "SSE.Controllers.Statusbar.errorLastSheet": "Pasta de trabalho deve ter no mínimo uma planilha visível.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Não é possível excluir a folha de trabalho.", - "SSE.Controllers.Statusbar.menuDelete": "Excluir", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplicado", - "SSE.Controllers.Statusbar.menuHide": "Ocultar", - "SSE.Controllers.Statusbar.menuMore": "Mais", - "SSE.Controllers.Statusbar.menuRename": "Renomear", - "SSE.Controllers.Statusbar.menuUnhide": "Reexibir", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Statusbar.strRenameSheet": "Renomear Folha", - "SSE.Controllers.Statusbar.strSheet": "Folha", - "SSE.Controllers.Statusbar.strSheetName": "Nome da folha", - "SSE.Controllers.Statusbar.textExternalLink": "Link externo", - "SSE.Controllers.Statusbar.warnDeleteSheet": "A folha de trabalho talvez tenha dados. Continuar a operação?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Há alterações não gravadas neste documento. Clique em 'Ficar nesta Página' para aguardar o salvamento automático do documento. Clique em 'Sair desta página' para descartar as alterações não gravadas.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Você saiu do aplicativo", - "SSE.Controllers.Toolbar.leaveButtonText": "Sair desta página", - "SSE.Controllers.Toolbar.stayButtonText": "Ficar nesta página", - "SSE.Views.AddFunction.sCatDateAndTime": "Data e Hora", - "SSE.Views.AddFunction.sCatEngineering": "Engenharia", - "SSE.Views.AddFunction.sCatFinancial": "Financeiro", - "SSE.Views.AddFunction.sCatInformation": "Informações", - "SSE.Views.AddFunction.sCatLogical": "Lógica", - "SSE.Views.AddFunction.sCatLookupAndReference": "Pesquisa e referência", - "SSE.Views.AddFunction.sCatMathematic": "Matemática e trigonometria", - "SSE.Views.AddFunction.sCatStatistical": "Estatística", - "SSE.Views.AddFunction.sCatTextAndData": "Texto e Dados", - "SSE.Views.AddFunction.textBack": "Voltar", - "SSE.Views.AddFunction.textGroups": "Categorias", - "SSE.Views.AddLink.textAddLink": "Adicionar Link", - "SSE.Views.AddLink.textAddress": "endereço", - "SSE.Views.AddLink.textDisplay": "Exibir", - "SSE.Views.AddLink.textExternalLink": "Link externo", - "SSE.Views.AddLink.textInsert": "Inserir", - "SSE.Views.AddLink.textInternalLink": "Intervalo de dados interno", - "SSE.Views.AddLink.textLink": "Link", - "SSE.Views.AddLink.textLinkType": "Tipo de link", - "SSE.Views.AddLink.textRange": "Intervalo", - "SSE.Views.AddLink.textRequired": "Necessário", - "SSE.Views.AddLink.textSelectedRange": "Intervalo selecionado", - "SSE.Views.AddLink.textSheet": "Folha", - "SSE.Views.AddLink.textTip": "Dica de tela", - "SSE.Views.AddOther.textAddComment": "Adicionar comentário", - "SSE.Views.AddOther.textAddress": "endereço", - "SSE.Views.AddOther.textBack": "Voltar", - "SSE.Views.AddOther.textComment": "Comentário", - "SSE.Views.AddOther.textDone": "Concluído", - "SSE.Views.AddOther.textFilter": "Filtro", - "SSE.Views.AddOther.textFromLibrary": "Imagem da biblioteca", - "SSE.Views.AddOther.textFromURL": "Imagem da URL", - "SSE.Views.AddOther.textImageURL": "URL da imagem", - "SSE.Views.AddOther.textInsert": "Inserir", - "SSE.Views.AddOther.textInsertImage": "Inserir imagem", - "SSE.Views.AddOther.textLink": "Link", - "SSE.Views.AddOther.textLinkSettings": "Configurações de link", - "SSE.Views.AddOther.textSort": "Classificar e Filtrar", - "SSE.Views.EditCell.textAccounting": "Contabilidade", - "SSE.Views.EditCell.textAddCustomColor": "Adicionar Cor Personalizada", - "SSE.Views.EditCell.textAlignBottom": "Alinhar à parte inferior", - "SSE.Views.EditCell.textAlignCenter": "Alinhar ao centro", - "SSE.Views.EditCell.textAlignLeft": "Alinhar à esquerda", - "SSE.Views.EditCell.textAlignMiddle": "Alinhar ao meio", - "SSE.Views.EditCell.textAlignRight": "Alinhar à direita", - "SSE.Views.EditCell.textAlignTop": "Alinhar à parte superior", - "SSE.Views.EditCell.textAllBorders": "Todas as bordas", - "SSE.Views.EditCell.textAngleClockwise": "Ângulo no sentido horário", - "SSE.Views.EditCell.textAngleCounterclockwise": "Ângulo no sentido antihorário", - "SSE.Views.EditCell.textBack": "Voltar", - "SSE.Views.EditCell.textBorderStyle": "Estilo de borda", - "SSE.Views.EditCell.textBottomBorder": "Limite inferior", - "SSE.Views.EditCell.textCellStyle": "Estilos de célula", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Cor", - "SSE.Views.EditCell.textCurrency": "Moeda", - "SSE.Views.EditCell.textCustomColor": "Cor personalizada", - "SSE.Views.EditCell.textDate": "Data", - "SSE.Views.EditCell.textDiagDownBorder": "Borda inferior diagonal", - "SSE.Views.EditCell.textDiagUpBorder": "Borda superior diagonal", - "SSE.Views.EditCell.textDollar": "Dólar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Cor de preenchimento", - "SSE.Views.EditCell.textFonts": "Fontes", - "SSE.Views.EditCell.textFormat": "Formato", - "SSE.Views.EditCell.textGeneral": "Geral", - "SSE.Views.EditCell.textHorizontalText": "Texto horizontal", - "SSE.Views.EditCell.textInBorders": "Bordas interiores", - "SSE.Views.EditCell.textInHorBorder": "Limite horizontal interior", - "SSE.Views.EditCell.textInteger": "Integral", - "SSE.Views.EditCell.textInVertBorder": "Limite vertical interior", - "SSE.Views.EditCell.textJustified": "Justificado", - "SSE.Views.EditCell.textLeftBorder": "Limite esquerdo", - "SSE.Views.EditCell.textMedium": "Médio", - "SSE.Views.EditCell.textNoBorder": "Sem limite", - "SSE.Views.EditCell.textNumber": "Número", - "SSE.Views.EditCell.textPercentage": "Porcentagem", - "SSE.Views.EditCell.textPound": "Libra", - "SSE.Views.EditCell.textRightBorder": "Limite direito", - "SSE.Views.EditCell.textRotateTextDown": "Girar Texto para Baixo", - "SSE.Views.EditCell.textRotateTextUp": "Girar Texto para Cima", - "SSE.Views.EditCell.textRouble": "Rublo", - "SSE.Views.EditCell.textScientific": "Científico", - "SSE.Views.EditCell.textSize": "Tamanho", - "SSE.Views.EditCell.textText": "Тexto", - "SSE.Views.EditCell.textTextColor": "Cor do texto", - "SSE.Views.EditCell.textTextFormat": "Formato do texto", - "SSE.Views.EditCell.textTextOrientation": "Orientação do texto", - "SSE.Views.EditCell.textThick": "Espesso", - "SSE.Views.EditCell.textThin": "Fino", - "SSE.Views.EditCell.textTime": "Hora", - "SSE.Views.EditCell.textTopBorder": "Limite superior", - "SSE.Views.EditCell.textVerticalText": "Texto vertical", - "SSE.Views.EditCell.textWrapText": "Quebrar texto automaticamente", - "SSE.Views.EditCell.textYen": "Iene", - "SSE.Views.EditChart.textAddCustomColor": "Adicionar Cor Personalizada", - "SSE.Views.EditChart.textAuto": "Automático", - "SSE.Views.EditChart.textAxisCrosses": "Eixo cruza", - "SSE.Views.EditChart.textAxisOptions": "Opções de eixo", - "SSE.Views.EditChart.textAxisPosition": "Posição de eixo", - "SSE.Views.EditChart.textAxisTitle": "Título do eixo", - "SSE.Views.EditChart.textBack": "Voltar", - "SSE.Views.EditChart.textBackward": "Mover para trás", - "SSE.Views.EditChart.textBorder": "Limite", - "SSE.Views.EditChart.textBottom": "Inferior", - "SSE.Views.EditChart.textChart": "Gráfico", - "SSE.Views.EditChart.textChartTitle": "Título do Gráfico", - "SSE.Views.EditChart.textColor": "Cor", - "SSE.Views.EditChart.textCrossesValue": "Valor cruzado", - "SSE.Views.EditChart.textCustomColor": "Cor personalizada", - "SSE.Views.EditChart.textDataLabels": "Rótulos de dados", - "SSE.Views.EditChart.textDesign": "Design", - "SSE.Views.EditChart.textDisplayUnits": "Exibir unidades", - "SSE.Views.EditChart.textFill": "Preencher", - "SSE.Views.EditChart.textForward": "Mover para frente", - "SSE.Views.EditChart.textGridlines": "Linhas de grade", - "SSE.Views.EditChart.textHorAxis": "Eixo horizontal", - "SSE.Views.EditChart.textHorizontal": "Horizontal", - "SSE.Views.EditChart.textLabelOptions": "Opções de etiqueta", - "SSE.Views.EditChart.textLabelPos": "Posição da etiqueta", - "SSE.Views.EditChart.textLayout": "Layout", - "SSE.Views.EditChart.textLeft": "Esquerda", - "SSE.Views.EditChart.textLeftOverlay": "Sobreposição esquerda", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Principal", - "SSE.Views.EditChart.textMajorMinor": "Maior e Menor", - "SSE.Views.EditChart.textMajorType": "Tipo principal", - "SSE.Views.EditChart.textMaxValue": "Valor máximo", - "SSE.Views.EditChart.textMinor": "Menor", - "SSE.Views.EditChart.textMinorType": "Tipo menor", - "SSE.Views.EditChart.textMinValue": "Valor mínimo", - "SSE.Views.EditChart.textNone": "Nenhum", - "SSE.Views.EditChart.textNoOverlay": "Sem sobreposição", - "SSE.Views.EditChart.textOverlay": "Sobreposição", - "SSE.Views.EditChart.textRemoveChart": "Remover gráfico", - "SSE.Views.EditChart.textReorder": "Reordenar", - "SSE.Views.EditChart.textRight": "Direita", - "SSE.Views.EditChart.textRightOverlay": "Sobreposição direita", - "SSE.Views.EditChart.textRotated": "Girado", - "SSE.Views.EditChart.textSize": "Tamanho", - "SSE.Views.EditChart.textStyle": "Estilo", - "SSE.Views.EditChart.textTickOptions": "Opções de escala", - "SSE.Views.EditChart.textToBackground": "Enviar para plano de fundo", - "SSE.Views.EditChart.textToForeground": "Trazer para primeiro plano", - "SSE.Views.EditChart.textTop": "Parte superior", - "SSE.Views.EditChart.textType": "Tipo", - "SSE.Views.EditChart.textValReverseOrder": "Valores na ordem reversa", - "SSE.Views.EditChart.textVerAxis": "Eixo vertical", - "SSE.Views.EditChart.textVertical": "Vertical", - "SSE.Views.EditHyperlink.textBack": "Voltar", - "SSE.Views.EditHyperlink.textDisplay": "Exibir", - "SSE.Views.EditHyperlink.textEditLink": "Editar Link", - "SSE.Views.EditHyperlink.textExternalLink": "Link externo", - "SSE.Views.EditHyperlink.textInternalLink": "Intervalo de dados interno", - "SSE.Views.EditHyperlink.textLink": "Link", - "SSE.Views.EditHyperlink.textLinkType": "Tipo de link", - "SSE.Views.EditHyperlink.textRange": "Intervalo", - "SSE.Views.EditHyperlink.textRemoveLink": "Remover link", - "SSE.Views.EditHyperlink.textScreenTip": "Dica de tela", - "SSE.Views.EditHyperlink.textSheet": "Folha", - "SSE.Views.EditImage.textAddress": "endereço", - "SSE.Views.EditImage.textBack": "Voltar", - "SSE.Views.EditImage.textBackward": "Mover para trás", - "SSE.Views.EditImage.textDefault": "Tamanho real", - "SSE.Views.EditImage.textForward": "Mover para frente", - "SSE.Views.EditImage.textFromLibrary": "Imagem da biblioteca", - "SSE.Views.EditImage.textFromURL": "Imagem da URL", - "SSE.Views.EditImage.textImageURL": "URL da imagem", - "SSE.Views.EditImage.textLinkSettings": "Configurações de link", - "SSE.Views.EditImage.textRemove": "Remover imagem", - "SSE.Views.EditImage.textReorder": "Reordenar", - "SSE.Views.EditImage.textReplace": "Substituir", - "SSE.Views.EditImage.textReplaceImg": "Substituir imagem", - "SSE.Views.EditImage.textToBackground": "Enviar para plano de fundo", - "SSE.Views.EditImage.textToForeground": "Trazer para primeiro plano", - "SSE.Views.EditShape.textAddCustomColor": "Adicionar Cor Personalizada", - "SSE.Views.EditShape.textBack": "Voltar", - "SSE.Views.EditShape.textBackward": "Mover para trás", - "SSE.Views.EditShape.textBorder": "Limite", - "SSE.Views.EditShape.textColor": "Cor", - "SSE.Views.EditShape.textCustomColor": "Cor personalizada", - "SSE.Views.EditShape.textEffects": "Efeitos", - "SSE.Views.EditShape.textFill": "Preencher", - "SSE.Views.EditShape.textForward": "Mover para frente", - "SSE.Views.EditShape.textOpacity": "Opacidade", - "SSE.Views.EditShape.textRemoveShape": "Remover forma", - "SSE.Views.EditShape.textReorder": "Reordenar", - "SSE.Views.EditShape.textReplace": "Substituir", - "SSE.Views.EditShape.textSize": "Tamanho", - "SSE.Views.EditShape.textStyle": "Estilo", - "SSE.Views.EditShape.textToBackground": "Enviar para plano de fundo", - "SSE.Views.EditShape.textToForeground": "Trazer para primeiro plano", - "SSE.Views.EditText.textAddCustomColor": "Adicionar Cor Personalizada", - "SSE.Views.EditText.textBack": "Voltar", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Cor personalizada", - "SSE.Views.EditText.textFillColor": "Cor de preenchimento", - "SSE.Views.EditText.textFonts": "Fontes", - "SSE.Views.EditText.textSize": "Tamanho", - "SSE.Views.EditText.textTextColor": "Cor do texto", - "SSE.Views.FilterOptions.textClearFilter": "Limpar filtro", - "SSE.Views.FilterOptions.textDeleteFilter": "Excluir Filtro", - "SSE.Views.FilterOptions.textFilter": "Opções de Filtro", - "SSE.Views.Search.textByColumns": "Por colunas", - "SSE.Views.Search.textByRows": "Por linhas", - "SSE.Views.Search.textDone": "Concluído", - "SSE.Views.Search.textFind": "Localizar", - "SSE.Views.Search.textFindAndReplace": "Localizar e substituir", - "SSE.Views.Search.textFormulas": "Fórmulas", - "SSE.Views.Search.textHighlightRes": "Destacar resultados", - "SSE.Views.Search.textLookIn": "Olhar em", - "SSE.Views.Search.textMatchCase": "Diferenciar maiúsculas/minúsculas", - "SSE.Views.Search.textMatchCell": "Corresponder célula", - "SSE.Views.Search.textReplace": "Substituir", - "SSE.Views.Search.textSearch": "Pesquisar", - "SSE.Views.Search.textSearchBy": "Pesquisar", - "SSE.Views.Search.textSearchIn": "Pesquisar em", - "SSE.Views.Search.textSheet": "Folha", - "SSE.Views.Search.textValues": "Valores", - "SSE.Views.Search.textWorkbook": "Pasta de trabalho", - "SSE.Views.Settings.textAbout": "Sobre", - "SSE.Views.Settings.textAddress": "endereço", - "SSE.Views.Settings.textApplication": "Aplicativo", - "SSE.Views.Settings.textApplicationSettings": "Configurações de Aplicativo", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Voltar", - "SSE.Views.Settings.textBottom": "Inferior", - "SSE.Views.Settings.textCentimeter": "Centímetro", - "SSE.Views.Settings.textCollaboration": "Colaboração", - "SSE.Views.Settings.textColorSchemes": "Esquemas de cor", - "SSE.Views.Settings.textComment": "Comentário", - "SSE.Views.Settings.textCommentingDisplay": "Tela de comentários", - "SSE.Views.Settings.textCreated": "Criado", - "SSE.Views.Settings.textCreateDate": "Data de criação", - "SSE.Views.Settings.textCustom": "Personalizar", - "SSE.Views.Settings.textCustomSize": "Tamanho personalizado", - "SSE.Views.Settings.textDisableAll": "Desabilitar tudo", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Desativar todas as macros com uma notificação", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem uma notificação", - "SSE.Views.Settings.textDisplayComments": "Comentários", - "SSE.Views.Settings.textDisplayResolvedComments": "Comentários Solucionados", - "SSE.Views.Settings.textDocInfo": "Informações da planilha", - "SSE.Views.Settings.textDocTitle": "Título da planilha", - "SSE.Views.Settings.textDone": "Concluído", - "SSE.Views.Settings.textDownload": "Transferir", - "SSE.Views.Settings.textDownloadAs": "Transferir como...", - "SSE.Views.Settings.textEditDoc": "Editar documento", - "SSE.Views.Settings.textEmail": "e-mail", - "SSE.Views.Settings.textEnableAll": "Habilitar todos", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Habilitar todas as macros sem uma notificação", - "SSE.Views.Settings.textExample": "Exemplo", - "SSE.Views.Settings.textFind": "Localizar", - "SSE.Views.Settings.textFindAndReplace": "Localizar e substituir", - "SSE.Views.Settings.textFormat": "Formatar", - "SSE.Views.Settings.textFormulaLanguage": "Linguagem de fórmula", - "SSE.Views.Settings.textHelp": "Ajuda", - "SSE.Views.Settings.textHideGridlines": "Ocultar linhas de grade", - "SSE.Views.Settings.textHideHeadings": "Ocultar Cabeçalhos", - "SSE.Views.Settings.textInch": "Polegada", - "SSE.Views.Settings.textLandscape": "Paisagem", - "SSE.Views.Settings.textLastModified": "Última modificação", - "SSE.Views.Settings.textLastModifiedBy": "Última Modificação Por", - "SSE.Views.Settings.textLeft": "Esquerda", - "SSE.Views.Settings.textLoading": "Carregando...", - "SSE.Views.Settings.textLocation": "Localização", - "SSE.Views.Settings.textMacrosSettings": "Configurações de macros", - "SSE.Views.Settings.textMargins": "Margens", - "SSE.Views.Settings.textOrientation": "Orientação", - "SSE.Views.Settings.textOwner": "Proprietário", - "SSE.Views.Settings.textPoint": "Ponto", - "SSE.Views.Settings.textPortrait": "Retrato ", - "SSE.Views.Settings.textPoweredBy": "Desenvolvido por", - "SSE.Views.Settings.textPrint": "Imprimir", - "SSE.Views.Settings.textR1C1Style": "Estilo de Referência R1C1", - "SSE.Views.Settings.textRegionalSettings": "Configurações Regionais", - "SSE.Views.Settings.textRight": "Direita", - "SSE.Views.Settings.textSettings": "Configurações", - "SSE.Views.Settings.textShowNotification": "Mostrar notificação", - "SSE.Views.Settings.textSpreadsheetFormats": "Formatos da Planilha", - "SSE.Views.Settings.textSpreadsheetSettings": "Configurações da Planilha", - "SSE.Views.Settings.textSubject": "Assunto", - "SSE.Views.Settings.textTel": "Tel", - "SSE.Views.Settings.textTitle": "Titulo", - "SSE.Views.Settings.textTop": "Parte superior", - "SSE.Views.Settings.textUnitOfMeasurement": "Unidade de medida", - "SSE.Views.Settings.textUploaded": "Carregado", - "SSE.Views.Settings.textVersion": "Versão", - "SSE.Views.Settings.unknownText": "Desconhecido", - "SSE.Views.Toolbar.textBack": "Voltar" + "About": { + "textAbout": "Sobre", + "textAddress": "Endereço", + "textBack": "Voltar", + "textEmail": "Email", + "textPoweredBy": "Desenvolvido por", + "textTel": "Tel", + "textVersion": "Versão" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Aviso", + "textAddComment": "Adicionar comentário", + "textAddReply": "Adicionar resposta", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textCollaboration": "Colaboração", + "textComments": "Comentários", + "textDeleteComment": "Excluir comentários", + "textDeleteReply": "Excluir resposta", + "textDone": "Concluído", + "textEdit": "Editar", + "textEditComment": "Editar comentário", + "textEditReply": "Editar resposta", + "textEditUser": "Usuários que estão editando o arquivo:", + "textMessageDeleteComment": "Você quer realmente excluir este comentário?", + "textMessageDeleteReply": "Você realmente quer apagar esta resposta?", + "textNoComments": "O documento não contém comentários", + "textReopen": "Reabrir", + "textResolve": "Resolver", + "textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido.", + "textUsers": "Usuários" + }, + "ThemeColorPalette": { + "textCustomColors": "Cores personalizadas", + "textStandartColors": "Cores padrão", + "textThemeColors": "Cores de tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "As ações de copiar, recortar e colar usando o menu de contexto serão executadas apenas no arquivo atual.", + "menuAddComment": "Adicionar comentário", + "menuAddLink": "Adicionar Link", + "menuCancel": "Cancelar", + "menuCell": "Célula", + "menuDelete": "Excluir", + "menuEdit": "Editar", + "menuFreezePanes": "Congelar painéis", + "menuHide": "Ocultar", + "menuMerge": "Mesclar", + "menuMore": "Mais", + "menuOpenLink": "Abrir link", + "menuShow": "Mostrar", + "menuUnfreezePanes": "Descongelar Painéis", + "menuUnmerge": "Desfazer", + "menuUnwrap": "Decodificar", + "menuViewComment": "Ver Comentário", + "menuWrap": "Encapsulamento", + "notcriticalErrorTitle": "Aviso", + "textCopyCutPasteActions": "Copiar, Cortar e Colar", + "textDoNotShowAgain": "Não volte a aparecer", + "warnMergeLostData": "A operação pode destruir os dados nas células selecionadas. Continuar?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Erro", + "errorAccessDeny": "Você está tentando realizar uma ação para a qual não possui direitos.
    Por favor, entre em contato com o seu administrador.", + "errorProcessSaveResult": "O salvamento falhou.", + "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": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.", + "notcriticalErrorTitle": "Aviso", + "SDK": { + "txtAccent": "Acentuação", + "txtAll": "(Todos)", + "txtArt": "Seu texto aqui", + "txtBlank": "Em branco", + "txtByField": "%1 de %2", + "txtClearFilter": "Limpar Filtro", + "txtColLbls": "Etiquetas da coluna", + "txtColumn": "Coluna", + "txtConfidential": "Confidencial", + "txtDate": "Data", + "txtDays": "Dias", + "txtDiagramTitle": "Título do Gráfico", + "txtFile": "Arquivo", + "txtGrandTotal": "Total geral", + "txtGroup": "Grupo", + "txtHours": "Horas", + "txtMinutes": "Minutos", + "txtMonths": "Meses", + "txtMultiSelect": "Seleção Múltiplas (Alt+S)", + "txtOr": "%1 ou %2", + "txtPage": "Página", + "txtPageOf": "Página %1 de %2", + "txtPages": "Páginas", + "txtPreparedBy": "Preparado por", + "txtPrintArea": "Área_de_impressão", + "txtQuarter": "Trim.", + "txtQuarters": "Trimestres", + "txtRow": "Linha", + "txtRowLbls": "Etiquetas de linha", + "txtSeconds": "Segundos", + "txtSeries": "Série", + "txtStyle_Bad": "Mau", + "txtStyle_Calculation": "Cálculo", + "txtStyle_Check_Cell": "Verificar célula", + "txtStyle_Comma": "Vírgula", + "txtStyle_Currency": "Moeda", + "txtStyle_Explanatory_Text": "Texto explicativo", + "txtStyle_Good": "Bom", + "txtStyle_Heading_1": "Cabeçalho 1", + "txtStyle_Heading_2": "Cabeçalho 2", + "txtStyle_Heading_3": "Cabeçalho 3", + "txtStyle_Heading_4": "Cabeçalho 4", + "txtStyle_Input": "Entrada", + "txtStyle_Linked_Cell": "Célula vinculada", + "txtStyle_Neutral": "Neutro", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Nota", + "txtStyle_Output": "Saída", + "txtStyle_Percent": "Por cento", + "txtStyle_Title": "Título", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Texto de aviso", + "txtTab": "Aba", + "txtTable": "Tabela", + "txtTime": "Tempo", + "txtValues": "Valores", + "txtXAxis": "Eixo X", + "txtYAxis": "Eixo Y", + "txtYears": "Anos" + }, + "textAnonymous": "Anônimo", + "textBuyNow": "Visitar website", + "textClose": "Fechar", + "textContactUs": "Contate as vendas", + "textCustomLoader": "Desculpe, você não tem direito de alterar o carregador. Por favor, entre em contato com nosso departamento de vendas para obter um orçamento.", + "textGuest": "Convidado(a)", + "textHasMacros": "O arquivo contém macros automáticas.
    Você quer executar macros?", + "textNo": "Não", + "textNoLicenseTitle": "Limite de licença atingido", + "textPaidFeature": "Recurso pago", + "textRemember": "Lembrar minha escolha", + "textYes": "Sim", + "titleServerVersion": "Editor atualizado", + "titleUpdateVersion": "Versão alterada", + "warnLicenseExceeded": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate seu administrador para saber mais.", + "warnLicenseLimitedNoAccess": "A licença expirou. Você não tem acesso à funcionalidade de edição de documentos. Por favor, entre em contato com seu administrador.", + "warnLicenseLimitedRenewed": "A licença precisa ser renovada. Você tem acesso limitado à funcionalidade de edição de documentos.
    Por favor, contate seu administrador para obter acesso total", + "warnLicenseUsersExceeded": "Você atingiu o limite de usuários para editores %1. Entre em contato com seu administrador para saber mais.", + "warnNoLicense": "Você atingiu o limite de conexões simultâneas para% 1 editores. Este documento será aberto apenas para visualização. Contate a equipe de vendas% 1 para termos de atualização pessoal.", + "warnNoLicenseUsers": "Você atingiu o limite de usuários para editores %1.
    Entre em contato com a equipe de vendas da %1 para obter os termos de atualização pessoais.", + "warnProcessRightsChange": "Você não tem permissão para editar o arquivo." + } + }, + "Error": { + "convertationTimeoutText": "Tempo limite de conversão excedido.", + "criticalErrorExtText": "Pressione 'OK' para voltar para a lista de documentos.", + "criticalErrorTitle": "Erro", + "downloadErrorText": "Download falhou.", + "errorAccessDeny": "Você está tentando realizar uma ação para a qual não possui direitos.
    Por favor, entre em contato com o seu administrador.", + "errorArgsRange": "Um erro na fórmula.
    Intervalo de argumentos incorreto.", + "errorAutoFilterChange": "A operação não é permitida porque está tentando deslocar células em uma tabela em sua folha de trabalho.", + "errorAutoFilterChangeFormatTable": "A operação não poderia ser feita para as células selecionadas, pois não é possível mover uma parte de uma tabela.
    Selecionar outro intervalo de dados para que toda a tabela seja deslocada e tentar novamente.", + "errorAutoFilterDataRange": "A operação não poderia ser feita para o intervalo de células selecionado.
    Selecionar um intervalo de dados uniforme dentro ou fora da tabela e tentar novamente.", + "errorAutoFilterHiddenRange": "A operação não pode ser realizada porque a área contém células filtradas.
    Por favor, desamarre os elementos filtrados e tente novamente.", + "errorBadImageUrl": "URL de imagem está incorreta", + "errorChangeArray": "Você não pode mudar parte de uma matriz.", + "errorConnectToServer": "Não é possível salvar este documento. Verifique as configurações de conexão ou entre em contato com o administrador.
    Ao clicar no botão 'OK', você será solicitado a baixar o documento.", + "errorCopyMultiselectArea": "Este comando não pode ser usado com várias seleções.
    Selecione um intervalo único e tente novamente.", + "errorCountArg": "Um erro na fórmula.
    Número inválido de argumentos.", + "errorCountArgExceed": "Um erro na fórmula.
    Número máximo de argumentos excedido.", + "errorCreateDefName": "Os intervalos nomeados existentes não podem ser editados e os novos não podem ser criados
    no momento, pois alguns deles estão sendo editados.", + "errorDatabaseConnection": "Erro externo.
    Erro de conexão do banco de dados. Entre em contato com o suporte.", + "errorDataEncrypted": "Alteração criptografadas foram recebidas, e não podem ser decifradas.", + "errorDataRange": "Intervalo de dados incorreto.", + "errorDataValidate": "O valor que você digitou não é válido.
    Um usuário restringiu valores que podem ser inseridos nesta célula.", + "errorDefaultMessage": "Código do erro: %1", + "errorEditingDownloadas": "Ocorreu um erro durante o trabalho com o documento.
    Use a opção 'Download' para salvar a cópia de backup do arquivo localmente.", + "errorFilePassProtect": "O arquivo é protegido por senha e não pôde ser aberto.", + "errorFileRequest": "Erro externo.
    Solicitação de arquivo. Por favor, contate o suporte.", + "errorFileSizeExceed": "O tamanho do arquivo excede a limitação de seu servidor.
    Por favor, contate seu administrador para obter detalhes.", + "errorFileVKey": "Erro externo.
    Chave de segurança incorreta. Por favor, contate 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.", + "errorFormulaName": "Um erro na fórmula.
    Nome da fórmula incorreto.", + "errorFormulaParsing": "Erro interno enquanto a fórmula é analisada.", + "errorFrmlMaxLength": "Você não pode adicionar esta fórmula, pois seu comprimento excede o número permitido de caracteres.
    Por favor, edite-a e tente novamente.", + "errorFrmlMaxReference": "Você não pode inserir esta fórmula porque ela tem muitos valores,
    referências de células, e/ou nomes.", + "errorFrmlMaxTextLength": "Os valores de texto nas fórmulas são limitados a 255 caracteres.
    Use a função CONCATENAR ou o 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": "Inserir um nome correto para a seleção ou referência válida para ir para.", + "errorKeyEncrypt": "Descritor de chave desconhecido", + "errorKeyExpire": "Descritor de chave expirado", + "errorLockedAll": "A operação não pode ser concluída uma vez que a folha foi bloqueada por outro usuário.", + "errorLockedCellPivot": "Você não pode alterar a data em uma tabela dinâmica.", + "errorLockedWorksheetRename": "A folha não pode ser renomeada no momento uma vez que está sendo renomeada por outro usuário", + "errorMaxPoints": "O máximo número de pontos em séries por gráfico é 4096.", + "errorMoveRange": "Não é possível alterar uma parte de uma célula mesclada", + "errorMultiCellFormula": "Não são permitidas fórmulas de matriz multicélulas em tabelas.", + "errorOpenWarning": "O comprimento de uma das fórmulas do arquivo excedeu o número permitido de caracteres e foi removido.", + "errorOperandExpected": "A sintaxe da função inserida não está correta. Por favor, verifique se você perdeu um dos parênteses - '(' ou ')'.", + "errorPasteMaxRange": "A área de cópia e cola 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 ao mesmo tempo na versão atual do programa.
    Esta restrição será eliminada nos próximos lançamentos.", + "errorSessionAbsolute": "A sessão de edição do documento expirou. Por favor recarregue a página.", + "errorSessionIdle": "O documento não é editado há muito tempo. Por favor recarregue a página.", + "errorSessionToken": "A conexão com o servidor foi interrompida. Por favor recarregue a página.", + "errorStockChart": "Ordem incorreta das linhas. Para construir um gráfico de ações, coloque os dados na folha na seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fechamento.", + "errorUnexpectedGuid": "Erro externo.
    Diretriz inesperada. Por favor, contate o suporte.", + "errorUpdateVersionOnDisconnect": "A conexão à internet foi restabelecida, e a versão do arquivo foi alterada.
    Antes de continuar seu trabalho, transfira o arquivo ou copie seu conteúdo para assegurar que nada seja perdido, e então, recarregue esta página.", + "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": "A conexão foi perdida. Você ainda pode ver o documento,
    mas não poderá baixá-lo até que a conexão seja restaurada e a página recarregada.", + "errorWrongBracketsCount": "Erro na fórmula.
    Número incorreto de colchetes.", + "errorWrongOperator": "Um erro na fórmula inserida. O operador errado é usado.
    Corrija o erro ou use o botão Esc para cancelar a edição da fórmula.", + "notcriticalErrorTitle": "Aviso", + "openErrorText": "Ocorreu um erro ao abrir o arquivo", + "pastInMergeAreaError": "Não é possível alterar uma parte de uma célula mesclada", + "saveErrorText": "Ocorreu um erro ao gravar o arquivo", + "scriptLoadError": "A conexão está muito lenta, alguns dos componentes não puderam ser carregados. Por favor recarregue a página.", + "unknownErrorText": "Erro desconhecido.", + "uploadImageExtMessage": "Formato de imagem desconhecido.", + "uploadImageFileCountMessage": "Sem imagens carregadas.", + "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Carregando dados...", + "applyChangesTitleText": "Carregando dados", + "confirmMoveCellRange": "O intervalo de células de destino pode conter dados. Continuar a operação?", + "confirmPutMergeRange": "Os dados da fonte contêm células fundidas.
    Serão não fundidas antes de serem coladas na tabela.", + "confirmReplaceFormulaInTable": "As fórmulas na linha do cabeçalho serão removidas e convertidas em texto estático.
    Deseja continuar?", + "downloadTextText": "Baixando documento...", + "downloadTitleText": "Baixando 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", + "notcriticalErrorTitle": "Aviso", + "openTextText": "Abrindo documento...", + "openTitleText": "Abrindo documento", + "printTextText": "Imprimindo documento...", + "printTitleText": "Imprimindo documento", + "savePreparingText": "Preparando para salvar", + "savePreparingTitle": "Preparando para salvar. Aguarde...", + "saveTextText": "Salvando documento...", + "saveTitleText": "Salvando documento", + "textLoadingDocument": "Carregando documento", + "textNo": "Não", + "textOk": "OK", + "textYes": "Sim", + "txtEditingMode": "Definir modo de edição...", + "uploadImageTextText": "Carregando imagem...", + "uploadImageTitleText": "Carregando imagem", + "waitText": "Por favor, aguarde..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Aviso", + "textCancel": "Cancelar", + "textDelete": "Excluir", + "textDuplicate": "Duplicado", + "textErrNameExists": "A folha de trabalho com este nome já existe.", + "textErrNameWrongChar": "O nome da folha não pode conter os caracteres: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Nome da folha não deve estar vazio", + "textErrorLastSheet": "A apostila deve ter pelo menos uma folha de trabalho visível.", + "textErrorRemoveSheet": "Não é possível excluir a folha de trabalho.", + "textHide": "Ocultar", + "textMore": "Mais", + "textRename": "Renomear", + "textRenameSheet": "Renomear Folha", + "textSheet": "Folha", + "textSheetName": "Nome da folha", + "textUnhide": "Reexibir", + "textWarnDeleteSheet": "A folha de trabalho talvez tenha dados. Proceder à operação?" + }, + "Toolbar": { + "dlgLeaveMsgText": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.", + "dlgLeaveTitleText": "Você saiu do aplicativo", + "leaveButtonText": "Sair desta página", + "stayButtonText": "Ficar nesta página" + }, + "View": { + "Add": { + "errorMaxRows": "ERRO! O número máximo de séries de dado por gráfico é 255.", + "errorStockChart": "Ordem incorreta das linhas. Para construir um gráfico de ações, coloque os dados na folha na seguinte ordem:
    preço de abertura, preço máximo, preço mínimo, preço de fechamento.", + "notcriticalErrorTitle": "Aviso", + "sCatDateAndTime": "Data e Hora", + "sCatEngineering": "Engenharia", + "sCatFinancial": "Financeiro", + "sCatInformation": "Informação", + "sCatLogical": "Lógica", + "sCatLookupAndReference": "Pesquisa e referência", + "sCatMathematic": "Matemática e trigonometria", + "sCatStatistical": "Estatística", + "sCatTextAndData": "Texto e Dados", + "textAddLink": "Adicionar Link", + "textAddress": "Endereço", + "textBack": "Voltar", + "textCancel": "Cancelar", + "textChart": "Gráfico", + "textComment": "Comente", + "textDisplay": "Exibir", + "textEmptyImgUrl": "Você precisa especificar o URL da imagem.", + "textExternalLink": "Link externo", + "textFilter": "Filtro", + "textFunction": "Função", + "textGroups": "Categorias", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textInsert": "Inserir", + "textInsertImage": "Inserir imagem", + "textInternalDataRange": "Intervalo de dados interno", + "textInvalidRange": "ERRO! Intervalo de células inválido", + "textLink": "Link", + "textLinkSettings": "Configurações de link", + "textLinkType": "Tipo de link", + "textOther": "Outro", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem da URL", + "textRange": "Intervalo", + "textRequired": "Necessário", + "textScreenTip": "Dica de tela", + "textShape": "Forma", + "textSheet": "Folha", + "textSortAndFilter": "Classificar e Filtrar", + "txtExpand": "Expandir e classificar", + "txtExpandSort": "Os dados próximos à seleção não serão classificados. Você quer expandir a seleção para incluir os dados adjacentes ou continuar com classificando apenas as células selecionadas atualmente?", + "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "txtSorting": "Classificação", + "txtSortSelected": "Classificar selecionado" + }, + "Edit": { + "notcriticalErrorTitle": "Aviso", + "textAccounting": "Contabilidade", + "textActualSize": "Tamanho atual", + "textAddCustomColor": "Adicionar Cor Personalizada", + "textAddress": "Endereço", + "textAlign": "Alinhar", + "textAlignBottom": "Alinhar à parte inferior", + "textAlignCenter": "Alinhar ao centro", + "textAlignLeft": "Alinhar à esquerda", + "textAlignMiddle": "Alinhar ao centro", + "textAlignRight": "Alinhar à direita", + "textAlignTop": "Alinhar em cima", + "textAllBorders": "Todas as bordas", + "textAngleClockwise": "Ângulo no sentido horário", + "textAngleCounterclockwise": "Ângulo no sentido antihorário", + "textAuto": "Automático", + "textAxisCrosses": "Eixos cruzam", + "textAxisOptions": "Opções de eixo", + "textAxisPosition": "Posição de eixo", + "textAxisTitle": "Título do eixo", + "textBack": "Voltar", + "textBetweenTickMarks": "Entre marcas de escala", + "textBillions": "Bilhões", + "textBorder": "Borda", + "textBorderStyle": "Estilo de borda", + "textBottom": "Inferior", + "textBottomBorder": "Limite inferior", + "textBringToForeground": "Trazer para primeiro plano", + "textCell": "Célula", + "textCellStyles": "Estilos de célula", + "textCenter": "Centro", + "textChart": "Gráfico", + "textChartTitle": "Título do Gráfico", + "textClearFilter": "Limpar filtro", + "textColor": "Cor", + "textCross": "Intersecção", + "textCrossesValue": "Valor cruzado", + "textCurrency": "Moeda", + "textCustomColor": "Cor personalizada", + "textDataLabels": "Rótulos de dados", + "textDate": "Data", + "textDefault": "Intervalo selecionado", + "textDeleteFilter": "Excluir Filtro", + "textDesign": "Design", + "textDiagonalDownBorder": "Borda inferior diagonal", + "textDiagonalUpBorder": "Borda superior diagonal", + "textDisplay": "Exibir", + "textDisplayUnits": "Exibir unidades", + "textDollar": "Dólar", + "textEditLink": "Editar Link", + "textEffects": "Efeitos", + "textEmptyImgUrl": "Você precisa especificar o URL da imagem.", + "textEmptyItem": "{Vazio}", + "textErrorMsg": "Você deve escolher no mínimo um valor", + "textErrorTitle": "Aviso", + "textEuro": "Euro", + "textExternalLink": "Link externo", + "textFill": "Preencher", + "textFillColor": "Cor de preenchimento", + "textFilterOptions": "Opções de Filtro", + "textFit": "Ajustar largura", + "textFonts": "Fontes", + "textFormat": "Formato", + "textFraction": "Fração", + "textFromLibrary": "Imagem da biblioteca", + "textFromURL": "Imagem da URL", + "textGeneral": "Geral", + "textGridlines": "Linhas de grade", + "textHigh": "Alto", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Eixo horizontal", + "textHorizontalText": "Texto horizontal", + "textHundredMil": "100.000.000 ", + "textHundreds": "Centenas", + "textHundredThousands": "100.000 ", + "textHyperlink": "Hiperlink", + "textImage": "Imagem", + "textImageURL": "URL da imagem", + "textIn": "Em", + "textInnerBottom": "Parte inferior interna", + "textInnerTop": "Parte superior interna", + "textInsideBorders": "Bordas interiores", + "textInsideHorizontalBorder": "Limite horizontal interior", + "textInsideVerticalBorder": "Limite vertical interior", + "textInteger": "Inteiro", + "textInternalDataRange": "Intervalo de dados interno", + "textInvalidRange": "Intervalo de células inválido", + "textJustified": "Justificado", + "textLabelOptions": "Opções de etiqueta", + "textLabelPosition": "Posição da etiqueta", + "textLayout": "Layout", + "textLeft": "Esquerda", + "textLeftBorder": "Limite esquerdo", + "textLeftOverlay": "Sobreposição esquerda", + "textLegend": "Legenda", + "textLink": "Link", + "textLinkSettings": "Configurações de link", + "textLinkType": "Tipo de link", + "textLow": "Baixo", + "textMajor": "Principal", + "textMajorAndMinor": "Maior e Menor", + "textMajorType": "Tipo principal", + "textMaximumValue": "Valor máximo", + "textMedium": "Médio", + "textMillions": "Milhões", + "textMinimumValue": "Valor mínimo", + "textMinor": "Menor", + "textMinorType": "Tipo menor", + "textMoveBackward": "Mover para trás", + "textMoveForward": "Mover para frente", + "textNextToAxis": "Próximo ao eixo", + "textNoBorder": "Sem limite", + "textNone": "Nenhum", + "textNoOverlay": "Sem sobreposição", + "textNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "textNumber": "Número", + "textOnTickMarks": "Nas marcas de escala", + "textOpacity": "Opacidade", + "textOut": "Fora", + "textOuterTop": "Fora do topo", + "textOutsideBorders": "Bordas externas", + "textOverlay": "Sobreposição", + "textPercentage": "Porcentagem", + "textPictureFromLibrary": "Imagem da biblioteca", + "textPictureFromURL": "Imagem da URL", + "textPound": "Libra", + "textPt": "Pt", + "textRange": "Intervalo", + "textRemoveChart": "Remover gráfico", + "textRemoveImage": "Remover imagem", + "textRemoveLink": "Remover link", + "textRemoveShape": "Remover forma", + "textReorder": "Reordenar", + "textReplace": "Substituir", + "textReplaceImage": "Substituir imagem", + "textRequired": "Necessário", + "textRight": "Direita", + "textRightBorder": "Limite direito", + "textRightOverlay": "Sobreposição direita", + "textRotated": "Rotacionado", + "textRotateTextDown": "Girar Texto para Baixo", + "textRotateTextUp": "Girar Texto para Cima", + "textRouble": "Rublo", + "textScientific": "Científico", + "textScreenTip": "Dica de tela", + "textSelectAll": "Selecionar todos", + "textSelectObjectToEdit": "Selecione o objeto para editar", + "textSendToBackground": "Enviar para plano de fundo", + "textSettings": "Configurações", + "textShape": "Forma", + "textSheet": "Folha", + "textSize": "Tamanho", + "textStyle": "Estilo", + "textTenMillions": "10.000.000 ", + "textTenThousands": "10.000 ", + "textText": "Тexto", + "textTextColor": "Cor do texto", + "textTextFormat": "Formato do texto", + "textTextOrientation": "Orientação do texto", + "textThick": "Espesso", + "textThin": "Fino", + "textThousands": "Milhares", + "textTickOptions": "Opções de escala", + "textTime": "Tempo", + "textTop": "Parte superior", + "textTopBorder": "Limite superior", + "textTrillions": "Trilhões", + "textType": "Tipo", + "textValue": "Valor", + "textValuesInReverseOrder": "Valores na ordem reversa", + "textVertical": "Vertical", + "textVerticalAxis": "Eixo vertical", + "textVerticalText": "Texto vertical", + "textWrapText": "Quebrar texto automaticamente", + "textYen": "Iene", + "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", + "txtSortHigh2Low": "Classificar do maior para o menor", + "txtSortLow2High": "Classificar do menor para o maior" + }, + "Settings": { + "advCSVOptions": "Escolher opções CSV", + "advDRMEnterPassword": "Sua senha, por favor:", + "advDRMOptions": "Arquivo protegido", + "advDRMPassword": "Senha", + "closeButtonText": "Fechar Arquivo", + "notcriticalErrorTitle": "Aviso", + "textAbout": "Sobre", + "textAddress": "Endereço", + "textApplication": "Aplicativo", + "textApplicationSettings": "Configurações de Aplicativo", + "textAuthor": "Autor", + "textBack": "Voltar", + "textBottom": "Inferior", + "textByColumns": "Por colunas", + "textByRows": "Por linhas", + "textCancel": "Cancelar", + "textCentimeter": "Centímetro", + "textCollaboration": "Colaboração", + "textColorSchemes": "Esquemas de cor", + "textComment": "Comente", + "textCommentingDisplay": "Exibição de comentários", + "textComments": "Comentários", + "textCreated": "Criado", + "textCustomSize": "Tamanho personalizado", + "textDisableAll": "Desabilitar tudo", + "textDisableAllMacrosWithNotification": "Desativar todas as macros com uma notificação", + "textDisableAllMacrosWithoutNotification": "Desativar todas as macros sem uma notificação", + "textDone": "Concluído", + "textDownload": "Baixar", + "textDownloadAs": "Baixar como", + "textEmail": "Email", + "textEnableAll": "Habilitar todos", + "textEnableAllMacrosWithoutNotification": "Habilitar todas as macros sem uma notificação", + "textFind": "Localizar", + "textFindAndReplace": "Localizar e substituir", + "textFindAndReplaceAll": "Encontrar e Substituir Tudo", + "textFormat": "Formato", + "textFormulaLanguage": "Linguagem de fórmula", + "textFormulas": "Fórmulas", + "textHelp": "Ajuda", + "textHideGridlines": "Ocultar linhas de grade", + "textHideHeadings": "Ocultar Cabeçalhos", + "textHighlightRes": "Destacar resultados", + "textInch": "Polegada", + "textLandscape": "Paisagem", + "textLastModified": "Última modificação", + "textLastModifiedBy": "Última Modificação Por", + "textLeft": "Esquerda", + "textLocation": "Localização", + "textLookIn": "Olhar em", + "textMacrosSettings": "Configurações de macros", + "textMargins": "Margens", + "textMatchCase": "Diferenciar maiúsculas/minúsculas", + "textMatchCell": "Combinar célula", + "textNoTextFound": "Texto não encontrado", + "textOpenFile": "Inserir a Senha para Abrir o Arquivo", + "textOrientation": "Orientação", + "textOwner": "Proprietário", + "textPoint": "Ponto", + "textPortrait": "Retrato ", + "textPoweredBy": "Desenvolvido por", + "textPrint": "Imprimir", + "textR1C1Style": "Estilo de Referência R1C1", + "textRegionalSettings": "Configurações Regionais", + "textReplace": "Substituir", + "textReplaceAll": "Substituir tudo", + "textResolvedComments": "Comentários Solucionados", + "textRight": "Direita", + "textSearch": "Pesquisar", + "textSearchBy": "Pesquisar", + "textSearchIn": "Pesquisar em", + "textSettings": "Configurações", + "textSheet": "Folha", + "textShowNotification": "Mostrar notificação", + "textSpreadsheetFormats": "Formatos da Planilha", + "textSpreadsheetInfo": "Informações da planilha", + "textSpreadsheetSettings": "Configurações da Planilha", + "textSpreadsheetTitle": "Título da planilha", + "textSubject": "Assunto", + "textTel": "Tel", + "textTitle": "Título", + "textTop": "Parte superior", + "textUnitOfMeasurement": "Unidade de medida", + "textUploaded": "Carregado", + "textValues": "Valores", + "textVersion": "Versão", + "textWorkbook": "Pasta de trabalho", + "txtDelimiter": "Delimitador", + "txtEncoding": "Codificação", + "txtIncorrectPwd": "A senha está incorreta", + "txtProtected": "Ao abrir o arquivo com sua senha, a senha atual será redefinida.", + "txtScheme1": "Office", + "txtScheme10": "Mediana", + "txtScheme11": "Metro", + "txtScheme12": "Módulo", + "txtScheme13": "Opulento", + "txtScheme14": "Balcão envidraçado", + "txtScheme15": "Origem", + "txtScheme16": "Papel", + "txtScheme17": "Solstício", + "txtScheme18": "Técnica", + "txtScheme19": "Viagem", + "txtScheme2": "Escala de cinza", + "txtScheme20": "Urbano", + "txtScheme21": "Verve", + "txtScheme22": "Novo Office", + "txtScheme3": "Ápice", + "txtScheme4": "Aspecto", + "txtScheme5": "Cívico", + "txtScheme6": "Concurso", + "txtScheme7": "Patrimônio Líquido", + "txtScheme8": "Fluxo", + "txtScheme9": "Fundição", + "txtSpace": "Espaço", + "txtTab": "Aba", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index d7a76846e..e7dc8db1a 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -1,34 +1,342 @@ { "About": { "textAbout": "Despre", - "textAddress": "Adresă" + "textAddress": "Adresă", + "textBack": "Înapoi", + "textEmail": "Email", + "textPoweredBy": "Dezvoltat de", + "textTel": "Tel", + "textVersion": "Versiune" }, "Common": { "Collaboration": { + "notcriticalErrorTitle": "Avertisment", "textAddComment": "Adaugă comentariu", - "textAddReply": "Adăugare răspuns" + "textAddReply": "Adăugare răspuns", + "textBack": "Înapoi", + "textCancel": "Anulează", + "textCollaboration": "Colaborare", + "textComments": "Comentarii", + "textDeleteComment": "Ștergere comentariu", + "textDeleteReply": "Ștergere răspuns", + "textDone": "Gata", + "textEdit": "Editare", + "textEditComment": "Editare comentariu", + "textEditReply": "Editare răspuns", + "textEditUser": "Fișierul este editat de către:", + "textMessageDeleteComment": "Sunteți sigur că doriți să stergeți acest comentariu?", + "textMessageDeleteReply": "Sinteți sigur că doriți să ștergeți acest răspuns?", + "textNoComments": "Documentul nu cuprinde comentarii", + "textReopen": "Redeschidere", + "textResolve": "Rezolvare", + "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", + "textUsers": "Utilizatori" + }, + "ThemeColorPalette": { + "textCustomColors": "Culori particularizate", + "textStandartColors": "Culori standard", + "textThemeColors": "Culori temă" } }, "ContextMenu": { + "errorCopyCutPaste": "Operațiuni de copiere, decupare și lipire din meniul contextual se execută numai în fișierul curent.", "menuAddComment": "Adaugă comentariu", - "menuAddLink": "Adăugare link" + "menuAddLink": "Adăugare link", + "menuCancel": "Anulează", + "menuCell": "Celula", + "menuDelete": "Ștergere", + "menuEdit": "Editare", + "menuFreezePanes": "Înghețare panouri", + "menuHide": "Ascunde", + "menuMerge": "Îmbinare", + "menuMore": "Mai multe", + "menuOpenLink": "Deschidere link", + "menuShow": "Afișează", + "menuUnfreezePanes": "Dezghețare panouri", + "menuUnmerge": "Anulare îmbinării", + "menuUnwrap": "Anulare încadrare", + "menuViewComment": "Vizualizarea comentariilor", + "menuWrap": "Încadrare", + "notcriticalErrorTitle": "Avertisment", + "textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", + "textDoNotShowAgain": "Nu mai afișa", + "warnMergeLostData": "Operațiunea poate rezulta în distrugerea datelor din celule selectate. Doriți să continuați?" }, "Controller": { "Main": { + "criticalErrorTitle": "Eroare", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorProcessSaveResult": "Salvarea a eșuat.", + "errorServerVersion": "Editorul a fost actualizat. Pagina va fi reîmprospătată pentru a aplica această actualizare.", + "errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", + "leavePageText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "notcriticalErrorTitle": "Avertisment", "SDK": { - "txtAccent": "Accent" - } + "txtAccent": "Accent", + "txtAll": "(Toate)", + "txtArt": "Textul dvs. aici", + "txtBlank": "(necompletat)", + "txtByField": "%1 din %2", + "txtClearFilter": "Golire filtru (Alt+C)", + "txtColLbls": "Etichete coloană", + "txtColumn": "Coloană", + "txtConfidential": "Confidențial", + "txtDate": "Dată", + "txtDays": "Zile", + "txtDiagramTitle": "Titlu diagramă", + "txtFile": "Fişier", + "txtGrandTotal": "Totaluri generale", + "txtGroup": "Grupare", + "txtHours": "Oră", + "txtMinutes": "minute", + "txtMonths": "Lună", + "txtMultiSelect": "Selecții multiple (Alt+S)", + "txtOr": "%1 sau %2", + "txtPage": "Pagina", + "txtPageOf": "Pagina %1 din %2", + "txtPages": "Pagini", + "txtPreparedBy": "Pregătit de către", + "txtPrintArea": "Zonă_Imprimare", + "txtQuarter": "Trim", + "txtQuarters": "Trimestre", + "txtRow": "Rând", + "txtRowLbls": "Etichete de rând", + "txtSeconds": "Secunde", + "txtSeries": "Serie", + "txtStyle_Bad": "Eronat", + "txtStyle_Calculation": "Calculare", + "txtStyle_Check_Cell": "Verificarea celulei", + "txtStyle_Comma": "Virgulă", + "txtStyle_Currency": "Monedă", + "txtStyle_Explanatory_Text": "Text explicativ", + "txtStyle_Good": "Bun", + "txtStyle_Heading_1": "Titlu 1", + "txtStyle_Heading_2": "Titlu 2", + "txtStyle_Heading_3": "Titlu 3", + "txtStyle_Heading_4": "Titlu 4", + "txtStyle_Input": "Intrare", + "txtStyle_Linked_Cell": "Celulă legată", + "txtStyle_Neutral": "Neutru", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Notă", + "txtStyle_Output": "Ieșirea", + "txtStyle_Percent": "Procent", + "txtStyle_Title": "Titlu", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Mesaj de avertisment", + "txtTab": "Fila", + "txtTable": "Tabel", + "txtTime": "Oră", + "txtValues": "Valori", + "txtXAxis": "Axa X", + "txtYAxis": "Axa Y", + "txtYears": "Ani" + }, + "textAnonymous": "Anonim", + "textBuyNow": "Vizitarea site-ul Web", + "textClose": "Închidere", + "textContactUs": "Contactați Departamentul de Vânzări", + "textCustomLoader": "Cu părere de rău nu aveți dreptul să modificați programul de încărcare. Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", + "textGuest": "Invitat", + "textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", + "textNo": "Nu", + "textNoLicenseTitle": "Ați atins limita stabilită de licență", + "textPaidFeature": "Funcția contra plată", + "textRemember": "Reține opțiunea mea", + "textYes": "Da", + "titleServerVersion": "Editorul a fost actualizat", + "titleUpdateVersion": "Versiunea s-a modificat", + "warnLicenseExceeded": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați administratorul dvs pentru mai multe detalii.", + "warnLicenseLimitedNoAccess": "Licența dvs. a expirat. Nu aveți acces la funcții de editare a documentului.Contactați administratorul dvs. de rețeea.", + "warnLicenseLimitedRenewed": "Licență urmează să fie reînnoită.
    Funcțiile de editare sunt cu acces limitat.
    Pentru a obține acces nelimitat, contactați administratorul dvs. de rețea.", + "warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", + "warnNoLicense": "Ați atins numărul maxim de conexiuni simultane la %1 de editoare. Documentul este disponibil numai pentru vizualizare. Contactați %1 Departamentul de Vânzări pentru acordarea condițiilor personale de actualizare.", + "warnNoLicenseUsers": "Ați atins numărul maxim de utilizatori al %1 editoare. Contactați Grup Vânzări %1 pentru acordarea condițiilor personale de actualizare.", + "warnProcessRightsChange": "Nu aveți permisiunea de editare pentru fișier." } }, + "Error": { + "convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", + "criticalErrorExtText": "Faceți clic pe OK pentru a reveni la lista de documente.", + "criticalErrorTitle": "Eroare", + "downloadErrorText": "Descărcare eșuată.", + "errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dvs.", + "errorArgsRange": "Eroare în formulă.
    Zonă argument incorectă.", + "errorAutoFilterChange": "Operațiunea nu este permisă deoarece este o încercare de a deplasa celulele în tabel din foaia de calcul dvs.", + "errorAutoFilterChangeFormatTable": "Operațiunea nu poate fi efectuată pentru celulele selectate deaorece nu puteți deplasa o parte din tabel.
    Selectați o altă zonă de date pentru mutarea întregului tabel și încercați din nou.", + "errorAutoFilterDataRange": "Operațiunea nu poare fi efectuată pentru celulele selectate.
    Selectați o altă zonă de date uniformă din tabel sau în afara tabelului și încercați din nou.", + "errorAutoFilterHiddenRange": "Operațiunea nu poate fi efectuată deoarece zonă conține celule filtrate.
    Reafișați elementele filtrate și încercați din nou.", + "errorBadImageUrl": "URL-ul imaginii incorectă", + "errorChangeArray": "Nu puteți modifica parte dintr-o matrice.", + "errorConnectToServer": "Salvarea documentului nu este posibilă. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", + "errorCopyMultiselectArea": "Această comandă nu poate fi aplicată la selecții multiple
    Selectați o singură zonă și încercați din nou.", + "errorCountArg": "Eroare în formulă.
    Număr incorect de argumente.", + "errorCountArgExceed": "Eroare în formulă.
    Numărul maxim de argumente a fost depășit.", + "errorCreateDefName": "Zone denumite existente nu pot fi editate, dar nici cele noi nu pot fi create
    deoarece unele dintre acestea sunt editate în momentul de față.", + "errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Vă rugăm să contactați Serviciul de Asistență Clienți.", + "errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", + "errorDataRange": "Zonă de date incorectă.", + "errorDataValidate": "Valoarea introdusă nu este validă
    Unul dintre utilizatori a restricționat valorile pe care utilizatorii le introduc într-o celulă. ", + "errorDefaultMessage": "Codul de eroare: %1", + "errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
    Pentru copierea de rezervă locală utilizați opțiunea de Descărcare.", + "errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", + "errorFileRequest": "Eroare externă.
    Eroare la trimiterea solicitării de fișier. Contactați Serviciul de Asistență Clienți.", + "errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră.", + "errorFileVKey": "Eroare externă.
    Cheia de securitate incorectă. Contactați Seviciul de Asistență Clienți.", + "errorFillRange": "Completarea celulelor selectate nu este posibilă.
    Configurați toate coloanele îmbinate la aceeași dimensiune.", + "errorFormulaName": "Eroare în formulă.
    Numele formulei incorect.", + "errorFormulaParsing": "Eroare internă de parsare cu formulă.", + "errorFrmlMaxLength": "Nu puteți adăuga aceată formulă deaorece lungimea conținutului formulei depășește limita maximă de caractere.
    Editați-o și încercați din nou.", + "errorFrmlMaxReference": "Nu puteți introduce acestă formula deoarece are prea multe valori,
    referințe de celulă, și/sau nume.", + "errorFrmlMaxTextLength": "Valorile de tip text în o formulă pot conține maxim 255 caractere.
    Utilizați funcția CONCATENATE sau operatorul de concentrare text (&).", + "errorFrmlWrongReferences": "Funcția se referă la o foaie inexistentă.
    Verificați datele și încercați din nou.", + "errorInvalidRef": "Introduceți numele din selecție corect sau o referință validă de accesat.", + "errorKeyEncrypt": "Descriptor cheie nerecunoscut", + "errorKeyExpire": "Descriptor cheie a expirat", + "errorLockedAll": "Operațiunea nu poate fi efectuată deoarece foaia a fost blocată de către un alt utilizator.", + "errorLockedCellPivot": "Nu puteți modifica datele manipulând tabel Pivot.", + "errorLockedWorksheetRename": "Deocamdată, nu puteți redenumi foaia deoarece foaia este redenumită de către un alt utilizator", + "errorMaxPoints": "Numărul maxim de puncte de date pe serie în diagramă este limitat la 4096.", + "errorMoveRange": "O parte din celulă îmbinată nu poate fi modificată ", + "errorMultiCellFormula": "Formule de matrice cu mai multe celule nu sunt permise în tabele.", + "errorOpenWarning": "Lungimea conținutului unei formule din foie a depășit
    limita maximă de caractere și a fost eliminată. ", + "errorOperandExpected": "Sintaxa funcției incorectă. Verificați încadrarea în paranteze - '(' sau ')'.", + "errorPasteMaxRange": "Zona de copiere nu corespunde zonei de lipire. Pentru lipirea celulelor copiate, selectați o zonă de aceeași demensiune sau faceți clic pe prima celula din rând.", + "errorPrintMaxPagesCount": "Din păcate, imprimarea a 1500 de pagini deodată nu este posibilă la versiunea curentă a aplicației
    Această restricție va fi eliminată într-o versiunea nouă.", + "errorSessionAbsolute": "Sesiunea de editare a expirat. Încercați să reîmprospătați pagina.", + "errorSessionIdle": "Acțiunile de editare a documentului nu s-au efectuat de ceva timp. Încercați să reîmprospătați pagina.", + "errorSessionToken": "Conexeunea la server s-a întrerupt. Încercați să reîmprospătati pagina.", + "errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", + "errorUnexpectedGuid": "Eroare externă.
    GUID neașteptat. Contactați Seviciul de Asistență Clienți.", + "errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
    Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", + "errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", + "errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", + "errorViewerDisconnect": "Conexiunea a fost pierdută. Încă mai puteți vizualiza documentul,
    dar nu și să-l descărcați până când conexiunea se restabilește și pagina se reîmprospătează.", + "errorWrongBracketsCount": "Eroare în formulă.
    Numărul de paranteze incorect.", + "errorWrongOperator": "Eroare în formulă. Operator necorespunzător.
    Corectați eroarea sau apăsați Esc pentru anularea editărilor formulei.", + "notcriticalErrorTitle": "Avertisment", + "openErrorText": "Eroare la deschiderea fișierului", + "pastInMergeAreaError": "O parte din celulă îmbinată nu poate fi modificată ", + "saveErrorText": "Eroare la salvarea fișierului", + "scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", + "unknownErrorText": "Eroare necunoscută.", + "uploadImageExtMessage": "Format de imagine nerecunoscut.", + "uploadImageFileCountMessage": "Nicio imagine nu a fost încărcată.", + "uploadImageSizeMessage": "Imaginea este prea mare. Limita de dimensiune este de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Încărcarea datelor...", + "applyChangesTitleText": "Încărcare date", + "confirmMoveCellRange": "Celulele din zonă de destinație pot conține datele. Doriți să continuați?", + "confirmPutMergeRange": "Datele sursă conțin celule imbinate.
    Celulele for fi scindate înainte de lipire în tabel.", + "confirmReplaceFormulaInTable": "Formile din rând antet vor fi eliminate și transfomate în text static.
    Sigur doriți să continuați?", + "downloadTextText": "Descărcarea documentului...", + "downloadTitleText": "Descărcarea fișierului", + "loadFontsTextText": "Încărcarea datelor...", + "loadFontsTitleText": "Încărcare date", + "loadFontTextText": "Încărcarea datelor...", + "loadFontTitleText": "Încărcare date", + "loadImagesTextText": "Încărcarea imaginilor...", + "loadImagesTitleText": "Încărcare imagini", + "loadImageTextText": "Încărcarea imaginii...", + "loadImageTitleText": "Încărcare imagine", + "loadingDocumentTextText": "Încărcarea documentului...", + "loadingDocumentTitleText": "Încărcare document", + "notcriticalErrorTitle": "Avertisment", + "openTextText": "Deschiderea fișierului...", + "openTitleText": "Deschiderea fișierului ", + "printTextText": "Imprimarea documentului...", + "printTitleText": "Imprimarea documentului", + "savePreparingText": "Pregătire pentru salvare", + "savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", + "saveTextText": "Salvarea documentului...", + "saveTitleText": "Salvare document", + "textLoadingDocument": "Încărcare document", + "textNo": "Nu", + "textOk": "OK", + "textYes": "Da", + "txtEditingMode": "Setare modul de editare...", + "uploadImageTextText": "Încărcarea imaginii...", + "uploadImageTitleText": "Încărcarea imaginii", + "waitText": "Vă rugăm să așteptați..." + }, "Statusbar": { - "textErrNameWrongChar": "Numele foilor de calcul nu pot să conțină următoarele caractere: \\, /, *, ?, [, ], :" + "notcriticalErrorTitle": "Avertisment", + "textCancel": "Anulează", + "textDelete": "Ștergere", + "textDuplicate": "Dubluri", + "textErrNameExists": "O foaie de calcul cu același nume există deja.", + "textErrNameWrongChar": "Numele foilor de calcul nu pot să conțină următoarele caractere: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Nu lăsați numele foii necompletat", + "textErrorLastSheet": "În registrul de calcul trebuie să fie vizibilă cel puțin o foie de lucru. ", + "textErrorRemoveSheet": "Foaia de calcul nu poate fi ștearsă.", + "textHide": "Ascunde", + "textMore": "Mai multe", + "textRename": "Redenumire", + "textRenameSheet": "Redenumire foaie", + "textSheet": "Foaie", + "textSheetName": "Numele foii", + "textUnhide": "Reafișare", + "textWarnDeleteSheet": "Foaie de calcul poate conține datele. Sigur doriți să continuați?" + }, + "Toolbar": { + "dlgLeaveMsgText": "Nu ați salvat modificările din documentul. Faceți clic pe Rămâi în pagină și așteptați la salvare automată. Faceți clic pe Părăsește aceasta pagina ca să renunțați la toate modificările nesalvate.", + "dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", + "leaveButtonText": "Părăsește această pagina", + "stayButtonText": "Rămâi în pagină" }, "View": { "Add": { + "errorMaxRows": "EROARE! Număr maxim serii de date în diagramă este 225.", + "errorStockChart": "Sortarea rândurilor în ordinea incorectă. Pentru crearea unei diagrame de stoc, datele în foaie trebuie sortate în ordinea următoare:
    prețul de deschidere, prețul maxim, prețul minim, prețul de închidere.", + "notcriticalErrorTitle": "Avertisment", + "sCatDateAndTime": "Dată și oră", + "sCatEngineering": "Inginerie", + "sCatFinancial": "Financiar", + "sCatInformation": "Informații", + "sCatLogical": "Logic", + "sCatLookupAndReference": "Căutare și referință", + "sCatMathematic": "Funcții matematice și trigonometrice", + "sCatStatistical": "Funcții statistice", + "sCatTextAndData": "Text și date", "textAddLink": "Adăugare link", - "textAddress": "Adresă" + "textAddress": "Adresă", + "textBack": "Înapoi", + "textCancel": "Anulează", + "textChart": "Diagramă", + "textComment": "Comentariu", + "textDisplay": "Afișare", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", + "textExternalLink": "Link extern", + "textFilter": "Filtrare", + "textFunction": "Funcție", + "textGroups": "CATEGORII", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textInsert": "Inserare", + "textInsertImage": "Inserare imagine", + "textInternalDataRange": "Zonă de date internă", + "textInvalidRange": "EROARE! Zonă de celule nu este validă", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkType": "Tip link", + "textOther": "Altele", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textRange": "Zona", + "textRequired": "Obligatoriu", + "textScreenTip": "Sfaturi ecran", + "textShape": "Forma", + "textSheet": "Foaie", + "textSortAndFilter": "Sortare și filtrare", + "txtExpand": "Extindere și sortare", + "txtExpandSort": "Datele lângă selecție vor fi sortate. Doriți să extindeți selecția pentru a include datele adiacente sau doriți să continuați cu selecția curentă?", + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "txtSorting": "Sortare", + "txtSortSelected": "Sortarea selecției" }, "Edit": { + "notcriticalErrorTitle": "Avertisment", "textAccounting": "Contabilitate", "textActualSize": "Dimensiunea reală", "textAddCustomColor": "Adăugarea unei culori particularizate", @@ -41,16 +349,289 @@ "textAlignRight": "Aliniere la dreapta", "textAlignTop": "Aliniere sus", "textAllBorders": "Toate borduri", + "textAngleClockwise": "Unghi de rotație în sens orar", + "textAngleCounterclockwise": "Unghi de rotație în sens antiorar", + "textAuto": "Auto", + "textAxisCrosses": "Intersecția cu axă", + "textAxisOptions": "Opțiuni axă", + "textAxisPosition": "Poziție axă", + "textAxisTitle": "Titlu axă", + "textBack": "Înapoi", + "textBetweenTickMarks": "Între gradații", + "textBillions": "Miliarde", + "textBorder": "Bordura", + "textBorderStyle": "Stil bordură", + "textBottom": "Jos", + "textBottomBorder": "Bordura de jos", + "textBringToForeground": "Aducere în prim plan", + "textCell": "Celula", + "textCellStyles": "Stil celula", + "textCenter": "La centru", + "textChart": "Diagramă", + "textChartTitle": "Titlu diagramă", + "textClearFilter": "Golire filtru", + "textColor": "Culoare", + "textCross": "Traversare", + "textCrossesValue": "Punct de traversare", + "textCurrency": "Monedă", + "textCustomColor": "Culoare particularizată", + "textDataLabels": "Etichetele de date", + "textDate": "Dată", + "textDefault": "Zona selectată", + "textDeleteFilter": "Eliminare filtru", + "textDesign": "Proiectare", + "textDiagonalDownBorder": "Bordură diagonală descendentă", + "textDiagonalUpBorder": "Bordură diagonală ascendentă", + "textDisplay": "Afișare", + "textDisplayUnits": "Unități de afișare", + "textDollar": "Dolar", + "textEditLink": "Editare link", + "textEffects": "Efecte", + "textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", "textEmptyItem": "{Necompletat}", + "textErrorMsg": "Selectați cel puțin o valoare", + "textErrorTitle": "Avertisment", + "textEuro": "Euro", + "textExternalLink": "Link extern", + "textFill": "Umplere", + "textFillColor": "Culoare de umplere", + "textFilterOptions": "Opțiuni filtrare", + "textFit": "Potrivire lățime", + "textFonts": "Fonturi", + "textFormat": "Format", + "textFraction": "Fracție", + "textFromLibrary": "Imagine dintr-o bibliotecă ", + "textFromURL": "Imaginea prin URL", + "textGeneral": "General", + "textGridlines": "Linii de grilă", + "textHigh": "Ridicată", + "textHorizontal": "Orizontală", + "textHorizontalAxis": "Axă orizontală", + "textHorizontalText": "Text orizontal", "textHundredMil": "100 000 000", + "textHundreds": "Sute", "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Imagine", + "textImageURL": "URL-ul imaginii", + "textIn": "În", + "textInnerBottom": "În interior în jos", + "textInnerTop": "În interor în sus", + "textInsideBorders": "Borduri în interiorul ", + "textInsideHorizontalBorder": "Bordură orizontală în interiorul ", + "textInsideVerticalBorder": "Bordură verticală în interiorul ", + "textInteger": "Număr întreg", + "textInternalDataRange": "Zonă de date internă", + "textInvalidRange": "Zona de celule nu este validă", + "textJustified": "Aliniat stânga-dreapta", + "textLabelOptions": "Opțiuni etichetă", + "textLabelPosition": "Amplasare etichetă", + "textLayout": "Aspect", + "textLeft": "Stânga", + "textLeftBorder": "Bordură din stânga", + "textLeftOverlay": "Suprapunere din stânga", + "textLegend": "Legenda", + "textLink": "Link", + "textLinkSettings": "Configurarea link", + "textLinkType": "Tip link", + "textLow": "Scăzută", + "textMajor": "Major", + "textMajorAndMinor": "Major și minor", + "textMajorType": "Tip major", + "textMaximumValue": "Limita maximă", + "textMedium": "Mediu", + "textMillions": "Milioane", + "textMinimumValue": "Limita minimă", + "textMinor": "Minor", + "textMinorType": "Tip minor", + "textMoveBackward": "Mutare în ultimul plan", + "textMoveForward": "Mutare înainte", + "textNextToAxis": "Lângă axă", + "textNoBorder": "Fără bordură", + "textNone": "Niciunul", + "textNoOverlay": "Fără suprapunere", + "textNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "textNumber": "Număr", + "textOnTickMarks": "Pe gradații", + "textOpacity": "Transparență", + "textOut": "Din", + "textOuterTop": "În exterior în sus", + "textOutsideBorders": "Borduri în exteriorul", + "textOverlay": "Suprapunere", + "textPercentage": "Procentaj", + "textPictureFromLibrary": "Imagine dintr-o bibliotecă ", + "textPictureFromURL": "Imaginea prin URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Zona", + "textRemoveChart": "Ștergere diagrama", + "textRemoveImage": "Ștergere imagine", + "textRemoveLink": "Ștergere link", + "textRemoveShape": "Stergere forma", + "textReorder": "Reordonare", + "textReplace": "Înlocuire", + "textReplaceImage": "Înlocuire imagine", + "textRequired": "Obligatoriu", + "textRight": "Dreapta", "textRightBorder": "Bordură din dreapta", + "textRightOverlay": "Suprapunerea din dreapta", + "textRotated": "Rotit", + "textRotateTextDown": "Rotirea textului în jos", + "textRotateTextUp": "Rotirea textului în sus", + "textRouble": "Rublă", + "textScientific": "Științific ", + "textScreenTip": "Sfaturi ecran", + "textSelectAll": "Selectare totală", + "textSelectObjectToEdit": "Selectați obiectul pentru editare", + "textSendToBackground": "Trimitere în plan secundar", + "textSettings": "Setări", + "textShape": "Forma", + "textSheet": "Foaie", + "textSize": "Dimensiune", + "textStyle": "Stil", "textTenMillions": "10 000 000", - "textTenThousands": "10 000" + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Culoare text", + "textTextFormat": "Format text", + "textTextOrientation": "Orientarea textului", + "textThick": "Groasă", + "textThin": "Subțire", + "textThousands": "Mii", + "textTickOptions": "Opțiuni gradație", + "textTime": "Oră", + "textTop": "Sus", + "textTopBorder": "Bordură de sus", + "textTrillions": "Trilioane", + "textType": "Tip", + "textValue": "Valoare", + "textValuesInReverseOrder": "Valori în ordine inversă ", + "textVertical": "Verticală", + "textVerticalAxis": "Axa verticală", + "textVerticalText": "Text vertical", + "textWrapText": "Incadrarea textului", + "textYen": "Yen", + "txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", + "txtSortHigh2Low": "Sortare de la cea mai mare la cea mai mică valoare", + "txtSortLow2High": "Sortare de la cea mai mică la cea mai mare valoare" }, "Settings": { + "advCSVOptions": "Alegerea opțiunilor CSV", + "advDRMEnterPassword": "Va rugam sa introduceti parola:", + "advDRMOptions": "Fișierul protejat", + "advDRMPassword": "Parola", + "closeButtonText": "Închide fișierul", + "notcriticalErrorTitle": "Avertisment", "textAbout": "Despre", - "textAddress": "Adresă" + "textAddress": "Adresă", + "textApplication": "Aplicația", + "textApplicationSettings": "Setări Aplicație", + "textAuthor": "Autor", + "textBack": "Înapoi", + "textBottom": "Jos", + "textByColumns": "După coloană", + "textByRows": "După rând", + "textCancel": "Anulează", + "textCentimeter": "Centimetru", + "textCollaboration": "Colaborare", + "textColorSchemes": "Scheme de culori", + "textComment": "Comentariu", + "textCommentingDisplay": "Afișare comentarii", + "textComments": "Comentarii", + "textCreated": "A fost creat la", + "textCustomSize": "Dimensiunea particularizată", + "textDisableAll": "Se dezactivează toate", + "textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzile, cu notificare ", + "textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile, fără notificare", + "textDone": "Gata", + "textDownload": "Descărcare", + "textDownloadAs": "Descărcare ca", + "textEmail": "Email", + "textEnableAll": "Se activează toate", + "textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile, fără notificare", + "textFind": "Găsire", + "textFindAndReplace": "Găsire și înlocuire", + "textFindAndReplaceAll": "Găsire și înlocuire totală", + "textFormat": "Format", + "textFormulaLanguage": "Limba formulă", + "textFormulas": "Formule", + "textHelp": "Ajutor", + "textHideGridlines": "Ascundere linii de grilă", + "textHideHeadings": "Ascundere titluri", + "textHighlightRes": "Evidențierea rezultatelor", + "textInch": "Inch", + "textLandscape": "Vedere", + "textLastModified": "Data ultimei modificări", + "textLastModifiedBy": "Modificat ultima dată de către", + "textLeft": "Stânga", + "textLocation": "Locația", + "textLookIn": "Domenii de căutare", + "textMacrosSettings": "Setări macrocomandă", + "textMargins": "Margini", + "textMatchCase": "Potrivire litere mari și mici", + "textMatchCell": "Potrivire celulă", + "textNoTextFound": "Textul nu a fost găsit", + "textOpenFile": "Introduceți parola pentru deschidere fișier", + "textOrientation": "Orientare", + "textOwner": "Proprietar", + "textPoint": "Punct", + "textPortrait": "Portret", + "textPoweredBy": "Dezvoltat de", + "textPrint": "Imprimare", + "textR1C1Style": "Stilul de referință R1C1", + "textRegionalSettings": "Setări regionale", + "textReplace": "Înlocuire", + "textReplaceAll": "Înlocuire peste tot", + "textResolvedComments": "Comentarii rezolvate", + "textRight": "Dreapta", + "textSearch": "Căutare", + "textSearchBy": "Căutare", + "textSearchIn": "Caută în", + "textSettings": "Setări", + "textSheet": "Foaie", + "textShowNotification": "Afișare notificări", + "textSpreadsheetFormats": "Formate foii de calcul", + "textSpreadsheetInfo": "Informații despre foaie de calcul", + "textSpreadsheetSettings": "Setări foaie de calcul", + "textSpreadsheetTitle": "Titlu foaie de calcul", + "textSubject": "Subiect", + "textTel": "Tel", + "textTitle": "Titlu", + "textTop": "Sus", + "textUnitOfMeasurement": "Unitate de măsură ", + "textUploaded": "S-a încărcat", + "textValues": "Valori", + "textVersion": "Versiune", + "textWorkbook": "Registru de calcul", + "txtDelimiter": "Delimitator", + "txtEncoding": "Codificare", + "txtIncorrectPwd": "Parolă incorectă", + "txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metrou", + "txtScheme12": "Modul", + "txtScheme13": "Opulent", + "txtScheme14": "Foișor", + "txtScheme15": "Origine", + "txtScheme16": "Hârtie", + "txtScheme17": "Solstițiu", + "txtScheme18": "Tehnic", + "txtScheme19": "Turist", + "txtScheme2": "Tonuri de gri", + "txtScheme20": "Urban", + "txtScheme21": "Vervă", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concurență", + "txtScheme7": "Echilibru", + "txtScheme8": "Flux", + "txtScheme9": "Forjă", + "txtSpace": "Spațiu", + "txtTab": "Fila", + "warnDownloadAs": "Dacă salvați în acest format de fișier, este posibil ca unele dintre caracteristici să se piardă, cu excepția textului.
    Sunteți sigur că doriți să continuați?" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 7f5e08ece..2d0b761cf 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -1,576 +1,637 @@ -{ - "About": { - "textAbout": "О программе", - "textAddress": "Адрес", - "textBack": "Назад", - "textEmail": "Еmail", - "textPoweredBy": "Разработано", - "textTel": "Телефон", - "textVersion": "Версия" - }, - "Common": { - "Collaboration": { - "notcriticalErrorTitle": "Внимание", - "textAddComment": "Добавить комментарий", - "textAddReply": "Добавить ответ", - "textBack": "Назад", - "textCancel": "Отмена", - "textCollaboration": "Совместная работа", - "textComments": "Комментарии", - "textDeleteComment": "Удалить комментарий", - "textDeleteReply": "Удалить ответ", - "textDone": "Готово", - "textEdit": "Редактировать", - "textEditComment": "Редактировать комментарий", - "textEditReply": "Редактировать ответ", - "textEditUser": "Пользователи, редактирующие документ:", - "textMessageDeleteComment": "Вы действительно хотите удалить этот комментарий?", - "textMessageDeleteReply": "Вы действительно хотите удалить этот ответ?", - "textNoComments": "Этот документ не содержит комментариев", - "textReopen": "Переоткрыть", - "textResolve": "Решить", - "textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.", - "textUsers": "Пользователи" - }, - "ThemeColorPalette": { - "textCustomColors": "Пользовательские цвета", - "textStandartColors": "Стандартные цвета", - "textThemeColors": "Цвета темы" - } - }, - "ContextMenu": { - "errorCopyCutPaste": "Операции копирования, вырезания и вставки с помощью контекстного меню будут выполняться только в текущем файле.", - "menuAddComment": "Добавить комментарий", - "menuAddLink": "Добавить ссылку", - "menuCancel": "Отмена", - "menuCell": "Ячейка", - "menuDelete": "Удалить", - "menuEdit": "Редактировать", - "menuFreezePanes": "Закрепить области", - "menuHide": "Скрыть", - "menuMerge": "Объединить", - "menuMore": "Ещё", - "menuOpenLink": "Перейти по ссылке", - "menuShow": "Показать", - "menuUnfreezePanes": "Снять закрепление областей", - "menuUnmerge": "Разбить", - "menuUnwrap": "Убрать перенос", - "menuViewComment": "Просмотреть комментарий", - "menuWrap": "Перенос текста", - "notcriticalErrorTitle": "Внимание", - "textCopyCutPasteActions": "Операции копирования, вырезания и вставки", - "textDoNotShowAgain": "Больше не показывать", - "warnMergeLostData": "Операция может привести к удалению данных в выделенных ячейках. Продолжить?" - }, - "Controller": { - "Main": { - "criticalErrorTitle": "Ошибка", - "errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.
    Пожалуйста, обратитесь к администратору.", - "errorProcessSaveResult": "Не удалось завершить сохранение.", - "errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", - "errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.", - "leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", - "notcriticalErrorTitle": "Внимание", - "SDK": { - "txtAccent": "Акцент", - "txtArt": "Введите ваш текст", - "txtDiagramTitle": "Заголовок диаграммы", - "txtSeries": "Ряд", - "txtStyle_Bad": "Плохой", - "txtStyle_Calculation": "Пересчет", - "txtStyle_Check_Cell": "Контрольная ячейка", - "txtStyle_Comma": "Финансовый", - "txtStyle_Currency": "Денежный", - "txtStyle_Explanatory_Text": "Пояснение", - "txtStyle_Good": "Хороший", - "txtStyle_Heading_1": "Заголовок 1", - "txtStyle_Heading_2": "Заголовок 2", - "txtStyle_Heading_3": "Заголовок 3", - "txtStyle_Heading_4": "Заголовок 4", - "txtStyle_Input": "Ввод", - "txtStyle_Linked_Cell": "Связанная ячейка", - "txtStyle_Neutral": "Нейтральный", - "txtStyle_Normal": "Обычный", - "txtStyle_Note": "Примечание", - "txtStyle_Output": "Вывод", - "txtStyle_Percent": "Процентный", - "txtStyle_Title": "Название", - "txtStyle_Total": "Итог", - "txtStyle_Warning_Text": "Текст предупреждения", - "txtXAxis": "Ось X", - "txtYAxis": "Ось Y" - }, - "textAnonymous": "Анонимный пользователь", - "textBuyNow": "Перейти на сайт", - "textClose": "Закрыть", - "textContactUs": "Отдел продаж", - "textCustomLoader": "К сожалению, у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.", - "textGuest": "Гость", - "textHasMacros": "Файл содержит автозапускаемые макросы.
    Хотите запустить макросы?", - "textNo": "Нет", - "textNoLicenseTitle": "Лицензионное ограничение", - "textPaidFeature": "Платная функция", - "textRemember": "Запомнить мой выбор", - "textYes": "Да", - "titleServerVersion": "Редактор обновлен", - "titleUpdateVersion": "Версия изменилась", - "warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр. Свяжитесь с администратором, чтобы узнать больше.", - "warnLicenseLimitedNoAccess": "Истек срок действия лицензии. Нет доступа к функциональности редактирования документов. Пожалуйста, обратитесь к администратору.", - "warnLicenseLimitedRenewed": "Необходимо обновить лицензию. У вас ограниченный доступ к функциональности редактирования документов.
    Пожалуйста, обратитесь к администратору, чтобы получить полный доступ", - "warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1. Свяжитесь с администратором, чтобы узнать больше.", - "warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", - "warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", - "warnProcessRightsChange": "У вас нет прав на редактирование этого файла." - } - }, - "Error": { - "convertationTimeoutText": "Превышено время ожидания конвертации.", - "criticalErrorExtText": "Нажмите 'OK' для возврата к списку документов.", - "criticalErrorTitle": "Ошибка", - "downloadErrorText": "Загрузка не удалась.", - "errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.
    Пожалуйста, обратитесь к администратору.", - "errorArgsRange": "Ошибка в формуле.
    Неверный диапазон аргументов.", - "errorAutoFilterChange": "Операция не разрешена, поскольку предпринимается попытка сдвинуть ячейки таблицы на листе.", - "errorAutoFilterChangeFormatTable": "Эту операцию нельзя выполнить для выделенных ячеек, поскольку нельзя переместить часть таблицы.
    Выберите другой диапазон данных, чтобы перемещалась вся таблица, и повторите попытку.", - "errorAutoFilterDataRange": "Операция не может быть произведена для выбранного диапазона ячеек.
    Выделите однородный диапазон данных внутри или за пределами таблицы и повторите попытку.", - "errorAutoFilterHiddenRange": "Операция не может быть произведена, так как область содержит отфильтрованные ячейки.
    Выведите на экран скрытые фильтром элементы и повторите попытку.", - "errorBadImageUrl": "Неправильный URL-адрес рисунка", - "errorChangeArray": "Нельзя изменить часть массива.", - "errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.
    Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.", - "errorCopyMultiselectArea": "Данная команда неприменима для несвязных диапазонов.
    Выберите один диапазон и повторите попытку.", - "errorCountArg": "Ошибка в формуле.
    Неверное количество аргументов.", - "errorCountArgExceed": "Ошибка в формуле.
    Превышено максимальное количество аргументов.", - "errorCreateDefName": "В настоящий момент нельзя отредактировать существующие именованные диапазоны и создать новые,
    так как некоторые из них редактируются.", - "errorDatabaseConnection": "Внешняя ошибка.
    Ошибка подключения к базе данных. Пожалуйста, обратитесь в службу технической поддержки.", - "errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.", - "errorDataRange": "Некорректный диапазон данных.", - "errorDataValidate": "Введенное значение недопустимо.
    Значения, которые можно ввести в эту ячейку, ограничены.", - "errorDefaultMessage": "Код ошибки: %1", - "errorEditingDownloadas": "В ходе работы с документом произошла ошибка.
    Используйте опцию 'Скачать', чтобы сохранить резервную копию файла локально.", - "errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", - "errorFileRequest": "Внешняя ошибка.
    Ошибка запроса файла. Пожалуйста, обратитесь в службу поддержки.", - "errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
    Обратитесь к администратору для получения дополнительной информации.", - "errorFileVKey": "Внешняя ошибка.
    Неверный ключ безопасности. Пожалуйста, обратитесь в службу поддержки.", - "errorFillRange": "Не удается заполнить выбранный диапазон ячеек.
    Все объединенные ячейки должны быть одного размера.", - "errorFormulaName": "Ошибка в формуле.
    Неверное имя формулы.", - "errorFormulaParsing": "Внутренняя ошибка при синтаксическом анализе формулы.", - "errorFrmlMaxLength": "Нельзя добавить эту формулу, так как ее длина превышает допустимое количество символов.
    Отредактируйте ее и повторите попытку.", - "errorFrmlMaxReference": "Нельзя ввести эту формулу, так как она содержит слишком много значений,
    ссылок на ячейки и/или имен.", - "errorFrmlMaxTextLength": "Длина текстовых значений в формулах не может превышать 255 символов.
    Используйте функцию СЦЕПИТЬ или оператор сцепления (&)", - "errorFrmlWrongReferences": "Функция ссылается на лист, который не существует.
    Проверьте данные и повторите попытку.", - "errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.", - "errorKeyEncrypt": "Неизвестный дескриптор ключа", - "errorKeyExpire": "Срок действия дескриптора ключа истек", - "errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.", - "errorLockedCellPivot": "Нельзя изменить данные в сводной таблице.", - "errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь", - "errorMaxPoints": "Максимальное число точек в серии для диаграммы составляет 4096.", - "errorMoveRange": "Нельзя изменить часть объединенной ячейки", - "errorMultiCellFormula": "Формулы массива с несколькими ячейками не разрешаются в таблицах.", - "errorOpenWarning": "Длина одной из формул в файле превышала
    допустимое количество символов, и формула была удалена.", - "errorOperandExpected": "Синтаксис введенной функции некорректен. Проверьте, не пропущена ли одна из скобок - '(' или ')'.", - "errorPasteMaxRange": "Область копирования не соответствует области вставки. Для вставки скопированных ячеек выделите область такого же размера или щелкните по первой ячейке в строке.", - "errorPrintMaxPagesCount": "К сожалению, в текущей версии программы нельзя напечатать более 1500 страниц за один раз.
    Это ограничение будет устранено в последующих версиях.", - "errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", - "errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", - "errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", - "errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
    цена открытия, максимальная цена, минимальная цена, цена закрытия.", - "errorUnexpectedGuid": "Внешняя ошибка.
    Непредвиденный идентификатор GUID. Пожалуйста, обратитесь в службу поддержки.", - "errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
    Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", - "errorUserDrop": "В настоящий момент файл недоступен.", - "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", - "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
    но не сможете скачать его до восстановления подключения и обновления страницы.", - "errorWrongBracketsCount": "Ошибка в формуле.
    Неверное количество скобок.", - "errorWrongOperator": "Ошибка во введенной формуле. Использован неправильный оператор.
    Исправьте ошибку или используйте клавишу Esc для отмены редактирования формулы.", - "notcriticalErrorTitle": "Внимание", - "openErrorText": "При открытии файла произошла ошибка", - "pastInMergeAreaError": "Нельзя изменить часть объединенной ячейки", - "saveErrorText": "При сохранении файла произошла ошибка", - "scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.", - "unknownErrorText": "Неизвестная ошибка.", - "uploadImageExtMessage": "Неизвестный формат рисунка.", - "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", - "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." - }, - "LongActions": { - "applyChangesTextText": "Загрузка данных...", - "applyChangesTitleText": "Загрузка данных", - "confirmMoveCellRange": "Конечный диапазон ячеек может содержать данные. Продолжить операцию?", - "confirmPutMergeRange": "Исходные данные содержат объединенные ячейки.
    Перед вставкой в таблицу они будут разделены.", - "confirmReplaceFormulaInTable": "Формулы в строке заголовка будут удалены и преобразованы в статический текст.
    Вы хотите продолжить?", - "downloadTextText": "Загрузка документа...", - "downloadTitleText": "Загрузка документа", - "loadFontsTextText": "Загрузка данных...", - "loadFontsTitleText": "Загрузка данных", - "loadFontTextText": "Загрузка данных...", - "loadFontTitleText": "Загрузка данных", - "loadImagesTextText": "Загрузка рисунков...", - "loadImagesTitleText": "Загрузка рисунков", - "loadImageTextText": "Загрузка рисунка...", - "loadImageTitleText": "Загрузка рисунка", - "loadingDocumentTextText": "Загрузка документа...", - "loadingDocumentTitleText": "Загрузка документа", - "notcriticalErrorTitle": "Внимание", - "openTextText": "Открытие документа...", - "openTitleText": "Открытие документа", - "printTextText": "Печать документа...", - "printTitleText": "Печать документа", - "savePreparingText": "Подготовка к сохранению", - "savePreparingTitle": "Подготовка к сохранению. Пожалуйста, подождите...", - "saveTextText": "Сохранение документа...", - "saveTitleText": "Сохранение документа", - "textLoadingDocument": "Загрузка документа", - "textNo": "Нет", - "textOk": "Ok", - "textYes": "Да", - "txtEditingMode": "Установка режима редактирования...", - "uploadImageTextText": "Загрузка рисунка...", - "uploadImageTitleText": "Загрузка рисунка", - "waitText": "Пожалуйста, подождите..." - }, - "Statusbar": { - "notcriticalErrorTitle": "Внимание", - "textCancel": "Отмена", - "textDelete": "Удалить", - "textDuplicate": "Дублировать", - "textErrNameExists": "Лист с таким именем уже существует.", - "textErrNameWrongChar": "Имя листа не может содержать символы: \\, /, *, ?, [, ], :", - "textErrNotEmpty": "Имя листа не должно быть пустым", - "textErrorLastSheet": "Книга должна содержать хотя бы один видимый лист.", - "textErrorRemoveSheet": "Не удалось удалить лист.", - "textHide": "Скрыть", - "textMore": "Ещё", - "textRename": "Переименовать", - "textRenameSheet": "Переименовать лист", - "textSheet": "Лист", - "textSheetName": "Имя листа", - "textUnhide": "Показать", - "textWarnDeleteSheet": "Лист может содержать данные. Продолжить операцию?" - }, - "Toolbar": { - "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", - "dlgLeaveTitleText": "Вы выходите из приложения", - "leaveButtonText": "Уйти со страницы", - "stayButtonText": "Остаться на странице" - }, - "View": { - "Add": { - "errorMaxRows": "ОШИБКА! Максимальное число рядов данных для одной диаграммы - 255.", - "errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
    цена открытия, максимальная цена, минимальная цена, цена закрытия.", - "notcriticalErrorTitle": "Внимание", - "sCatDateAndTime": "Дата и время", - "sCatEngineering": "Инженерные", - "sCatFinancial": "Финансовые", - "sCatInformation": "Информационные", - "sCatLogical": "Логические", - "sCatLookupAndReference": "Поиск и ссылки", - "sCatMathematic": "Математические", - "sCatStatistical": "Статистические", - "sCatTextAndData": "Текст и данные", - "textAddLink": "Добавить ссылку", - "textAddress": "Адрес", - "textBack": "Назад", - "textChart": "Диаграмма", - "textComment": "Комментарий", - "textDisplay": "Отображать", - "textEmptyImgUrl": "Необходимо указать URL рисунка.", - "textExternalLink": "Внешняя ссылка", - "textFilter": "Фильтр", - "textFunction": "Функция", - "textGroups": "КАТЕГОРИИ", - "textImage": "Рисунок", - "textImageURL": "URL рисунка", - "textInsert": "Вставить", - "textInsertImage": "Вставить рисунок", - "textInternalDataRange": "Внутренний диапазон данных", - "textInvalidRange": "ОШИБКА! Недопустимый диапазон ячеек", - "textLink": "Ссылка", - "textLinkSettings": "Настройки ссылки", - "textLinkType": "Тип ссылки", - "textOther": "Другое", - "textPictureFromLibrary": "Рисунок из библиотеки", - "textPictureFromURL": "Рисунок по URL", - "textRange": "Диапазон", - "textRequired": "Обязательно", - "textScreenTip": "Подсказка", - "textShape": "Фигура", - "textSheet": "Лист", - "textSortAndFilter": "Сортировка и фильтрация", - "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"" - }, - "Edit": { - "notcriticalErrorTitle": "Внимание", - "textAccounting": "Финансовый", - "textActualSize": "Реальный размер", - "textAddCustomColor": "Добавить пользовательский цвет", - "textAddress": "Адрес", - "textAlign": "Выравнивание", - "textAlignBottom": "По нижнему краю", - "textAlignCenter": "По центру", - "textAlignLeft": "По левому краю", - "textAlignMiddle": "По середине", - "textAlignRight": "По правому краю", - "textAlignTop": "По верхнему краю", - "textAllBorders": "Все границы", - "textAngleClockwise": "Текст по часовой стрелке", - "textAngleCounterclockwise": "Текст против часовой стрелки", - "textAuto": "Авто", - "textAxisCrosses": "Пересечение с осью", - "textAxisOptions": "Параметры оси", - "textAxisPosition": "Положение оси", - "textAxisTitle": "Название оси", - "textBack": "Назад", - "textBetweenTickMarks": "Между делениями", - "textBillions": "Миллиарды", - "textBorder": "Граница", - "textBorderStyle": "Стиль границ", - "textBottom": "Снизу", - "textBottomBorder": "Нижняя граница", - "textBringToForeground": "Перенести на передний план", - "textCell": "Ячейка", - "textCellStyles": "Стили ячеек", - "textCenter": "По центру", - "textChart": "Диаграмма", - "textChartTitle": "Заголовок диаграммы", - "textClearFilter": "Очистить фильтр", - "textColor": "Цвет", - "textCross": "На пересечении", - "textCrossesValue": "Значение", - "textCurrency": "Денежный", - "textCustomColor": "Пользовательский цвет", - "textDataLabels": "Подписи данных", - "textDate": "Дата", - "textDefault": "Выбранный диапазон", - "textDeleteFilter": "Удалить фильтр", - "textDesign": "Вид", - "textDiagonalDownBorder": "Диагональная граница сверху вниз", - "textDiagonalUpBorder": "Диагональная граница снизу вверх", - "textDisplay": "Отображать", - "textDisplayUnits": "Единицы отображения", - "textDollar": "Доллар", - "textEditLink": "Редактировать ссылку", - "textEffects": "Эффекты", - "textEmptyImgUrl": "Необходимо указать URL рисунка.", - "textEmptyItem": "{Пустые}", - "textErrorMsg": "Необходимо выбрать хотя бы одно значение", - "textErrorTitle": "Внимание", - "textEuro": "Евро", - "textExternalLink": "Внешняя ссылка", - "textFill": "Заливка", - "textFillColor": "Цвет заливки", - "textFilterOptions": "Параметры фильтра", - "textFit": "По ширине", - "textFonts": "Шрифты", - "textFormat": "Формат", - "textFraction": "Дробный", - "textFromLibrary": "Рисунок из библиотеки", - "textFromURL": "Рисунок по URL", - "textGeneral": "Общий", - "textGridlines": "Линии сетки", - "textHigh": "Выше", - "textHorizontal": "По горизонтали", - "textHorizontalAxis": "Горизонтальная ось", - "textHorizontalText": "Горизонтальный текст", - "textHundredMil": "100 000 000", - "textHundreds": "Сотни", - "textHundredThousands": "100 000", - "textHyperlink": "Гиперссылка", - "textImage": "Рисунок", - "textImageURL": "URL рисунка", - "textIn": "Внутри", - "textInnerBottom": "Внутри снизу", - "textInnerTop": "Внутри сверху", - "textInsideBorders": "Внутренние границы", - "textInsideHorizontalBorder": "Внутренняя горизонтальная граница", - "textInsideVerticalBorder": "Внутренняя вертикальная граница", - "textInteger": "Целочисленный", - "textInternalDataRange": "Внутренний диапазон данных", - "textInvalidRange": "Недопустимый диапазон ячеек", - "textJustified": "По ширине", - "textLabelOptions": "Параметры подписи", - "textLabelPosition": "Положение подписи", - "textLayout": "Макет", - "textLeft": "Слева", - "textLeftBorder": "Левая граница", - "textLeftOverlay": "Наложение слева", - "textLegend": "Условные обозначения", - "textLink": "Ссылка", - "textLinkSettings": "Настройки ссылки", - "textLinkType": "Тип ссылки", - "textLow": "Ниже", - "textMajor": "Основные", - "textMajorAndMinor": "Основные и дополнительные", - "textMajorType": "Основной тип", - "textMaximumValue": "Максимум", - "textMedium": "Средние", - "textMillions": "Миллионы", - "textMinimumValue": "Минимум", - "textMinor": "Дополнительные", - "textMinorType": "Дополнительный тип", - "textMoveBackward": "Перенести назад", - "textMoveForward": "Перенести вперед", - "textNextToAxis": "Рядом с осью", - "textNoBorder": "Без границ", - "textNone": "Нет", - "textNoOverlay": "Без наложения", - "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", - "textNumber": "Числовой", - "textOnTickMarks": "Деления", - "textOpacity": "Прозрачность", - "textOut": "Снаружи", - "textOuterTop": "Снаружи сверху", - "textOutsideBorders": "Внешние границы", - "textOverlay": "Наложение", - "textPercentage": "Процентный", - "textPictureFromLibrary": "Рисунок из библиотеки", - "textPictureFromURL": "Рисунок по URL", - "textPound": "Фунт", - "textPt": "пт", - "textRange": "Диапазон", - "textRemoveChart": "Удалить диаграмму", - "textRemoveImage": "Удалить рисунок", - "textRemoveLink": "Удалить ссылку", - "textRemoveShape": "Удалить фигуру", - "textReorder": "Порядок", - "textReplace": "Заменить", - "textReplaceImage": "Заменить рисунок", - "textRequired": "Обязательно", - "textRight": "Справа", - "textRightBorder": "Правая граница", - "textRightOverlay": "Наложение справа", - "textRotated": "Повернутое", - "textRotateTextDown": "Повернуть текст вниз", - "textRotateTextUp": "Повернуть текст вверх", - "textRouble": "Рубль", - "textScientific": "Научный", - "textScreenTip": "Подсказка", - "textSelectAll": "Выделить всё", - "textSelectObjectToEdit": "Выберите объект для редактирования", - "textSendToBackground": "Перенести на задний план", - "textSettings": "Настройки", - "textShape": "Фигура", - "textSheet": "Лист", - "textSize": "Размер", - "textStyle": "Стиль", - "textTenMillions": "10 000 000", - "textTenThousands": "10 000", - "textText": "Текст", - "textTextColor": "Цвет текста", - "textTextFormat": "Формат текста", - "textTextOrientation": "Ориентация текста", - "textThick": "Толстые", - "textThin": "Тонкие", - "textThousands": "Тысячи", - "textTickOptions": "Параметры делений", - "textTime": "Время", - "textTop": "Сверху", - "textTopBorder": "Верхняя граница", - "textTrillions": "Триллионы", - "textType": "Тип", - "textValue": "Значение", - "textValuesInReverseOrder": "Значения в обратном порядке", - "textVertical": "По вертикали", - "textVerticalAxis": "Вертикальная ось", - "textVerticalText": "Вертикальный текст", - "textWrapText": "Перенос текста", - "textYen": "Йена", - "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"" - }, - "Settings": { - "advCSVOptions": "Выбрать параметры CSV", - "advDRMEnterPassword": "Введите пароль:", - "advDRMOptions": "Защищенный файл", - "advDRMPassword": "Пароль", - "closeButtonText": "Закрыть файл", - "notcriticalErrorTitle": "Внимание", - "textAbout": "О программе", - "textAddress": "Адрес", - "textApplication": "Приложение", - "textApplicationSettings": "Настройки приложения", - "textAuthor": "Автор", - "textBack": "Назад", - "textBottom": "Снизу", - "textByColumns": "По столбцам", - "textByRows": "По строкам", - "textCancel": "Отмена", - "textCentimeter": "Сантиметр", - "textCollaboration": "Совместная работа", - "textColorSchemes": "Цветовые схемы", - "textComment": "Комментарий", - "textCommentingDisplay": "Отображение комментариев", - "textComments": "Комментарии", - "textCreated": "Создана", - "textCustomSize": "Особый размер", - "textDisableAll": "Отключить все", - "textDisableAllMacrosWithNotification": "Отключить все макросы с уведомлением", - "textDisableAllMacrosWithoutNotification": "Отключить все макросы без уведомления", - "textDone": "Готово", - "textDownload": "Скачать", - "textDownloadAs": "Скачать как", - "textEmail": "Еmail", - "textEnableAll": "Включить все", - "textEnableAllMacrosWithoutNotification": "Включить все макросы без уведомления", - "textFind": "Поиск", - "textFindAndReplace": "Поиск и замена", - "textFindAndReplaceAll": "Найти и заменить все", - "textFormat": "Формат", - "textFormulaLanguage": "Язык формул", - "textFormulas": "Формулы", - "textHelp": "Справка", - "textHideGridlines": "Скрыть линии сетки", - "textHideHeadings": "Скрыть заголовки", - "textHighlightRes": "Выделить результаты", - "textInch": "Дюйм", - "textLandscape": "Альбомная", - "textLastModified": "Последнее изменение", - "textLastModifiedBy": "Автор последнего изменения", - "textLeft": "Слева", - "textLocation": "Размещение", - "textLookIn": "Область поиска", - "textMacrosSettings": "Настройки макросов", - "textMargins": "Поля", - "textMatchCase": "С учетом регистра", - "textMatchCell": "Сопоставление ячеек", - "textNoTextFound": "Текст не найден", - "textOpenFile": "Введите пароль для открытия файла", - "textOrientation": "Ориентация", - "textOwner": "Владелец", - "textPoint": "Пункт", - "textPortrait": "Книжная", - "textPoweredBy": "Разработано", - "textPrint": "Печать", - "textR1C1Style": "Стиль ссылок R1C1", - "textRegionalSettings": "Региональные параметры", - "textReplace": "Заменить", - "textReplaceAll": "Заменить все", - "textResolvedComments": "Решенные комментарии", - "textRight": "Справа", - "textSearch": "Поиск", - "textSearchBy": "Поиск", - "textSearchIn": "Искать", - "textSettings": "Настройки", - "textSheet": "Лист", - "textShowNotification": "Показывать уведомление", - "textSpreadsheetFormats": "Форматы таблицы", - "textSpreadsheetInfo": "Информация о таблице", - "textSpreadsheetSettings": "Настройки таблицы", - "textSpreadsheetTitle": "Название таблицы", - "textSubject": "Тема", - "textTel": "Телефон", - "textTitle": "Название", - "textTop": "Сверху", - "textUnitOfMeasurement": "Единица измерения", - "textUploaded": "Загружена", - "textValues": "Значения", - "textVersion": "Версия", - "textWorkbook": "В книге", - "txtDelimiter": "Разделитель", - "txtEncoding": "Кодировка", - "txtIncorrectPwd": "Неверный пароль", - "txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен", - "txtSpace": "Пробел", - "txtTab": "Табуляция", - "warnDownloadAs": "Если вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
    Вы действительно хотите продолжить?" - } - } +{ + "About": { + "textAbout": "О программе", + "textAddress": "Адрес", + "textBack": "Назад", + "textEmail": "Еmail", + "textPoweredBy": "Разработано", + "textTel": "Телефон", + "textVersion": "Версия" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Внимание", + "textAddComment": "Добавить комментарий", + "textAddReply": "Добавить ответ", + "textBack": "Назад", + "textCancel": "Отмена", + "textCollaboration": "Совместная работа", + "textComments": "Комментарии", + "textDeleteComment": "Удалить комментарий", + "textDeleteReply": "Удалить ответ", + "textDone": "Готово", + "textEdit": "Редактировать", + "textEditComment": "Редактировать комментарий", + "textEditReply": "Редактировать ответ", + "textEditUser": "Пользователи, редактирующие документ:", + "textMessageDeleteComment": "Вы действительно хотите удалить этот комментарий?", + "textMessageDeleteReply": "Вы действительно хотите удалить этот ответ?", + "textNoComments": "Этот документ не содержит комментариев", + "textReopen": "Переоткрыть", + "textResolve": "Решить", + "textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.", + "textUsers": "Пользователи" + }, + "ThemeColorPalette": { + "textCustomColors": "Пользовательские цвета", + "textStandartColors": "Стандартные цвета", + "textThemeColors": "Цвета темы" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Операции копирования, вырезания и вставки с помощью контекстного меню будут выполняться только в текущем файле.", + "menuAddComment": "Добавить комментарий", + "menuAddLink": "Добавить ссылку", + "menuCancel": "Отмена", + "menuCell": "Ячейка", + "menuDelete": "Удалить", + "menuEdit": "Редактировать", + "menuFreezePanes": "Закрепить области", + "menuHide": "Скрыть", + "menuMerge": "Объединить", + "menuMore": "Ещё", + "menuOpenLink": "Перейти по ссылке", + "menuShow": "Показать", + "menuUnfreezePanes": "Снять закрепление областей", + "menuUnmerge": "Разбить", + "menuUnwrap": "Убрать перенос", + "menuViewComment": "Просмотреть комментарий", + "menuWrap": "Перенос текста", + "notcriticalErrorTitle": "Внимание", + "textCopyCutPasteActions": "Операции копирования, вырезания и вставки", + "textDoNotShowAgain": "Больше не показывать", + "warnMergeLostData": "Операция может привести к удалению данных в выделенных ячейках. Продолжить?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Ошибка", + "errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.
    Пожалуйста, обратитесь к администратору.", + "errorProcessSaveResult": "Не удалось завершить сохранение.", + "errorServerVersion": "Версия редактора была обновлена. Страница будет перезагружена, чтобы применить изменения.", + "errorUpdateVersion": "Версия файла была изменена. Страница будет перезагружена.", + "leavePageText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", + "notcriticalErrorTitle": "Внимание", + "SDK": { + "txtAccent": "Акцент", + "txtAll": "(Все)", + "txtArt": "Введите ваш текст", + "txtBlank": "(пусто)", + "txtByField": "%1 из %2", + "txtClearFilter": "Очистить фильтр (Alt+C)", + "txtColLbls": "Названия столбцов", + "txtColumn": "Столбец", + "txtConfidential": "Конфиденциально", + "txtDate": "Дата", + "txtDays": "Дни", + "txtDiagramTitle": "Заголовок диаграммы", + "txtFile": "Файл", + "txtGrandTotal": "Общий итог", + "txtGroup": "Сгруппировать", + "txtHours": "Часы", + "txtMinutes": "Минуты", + "txtMonths": "Месяцы", + "txtMultiSelect": "Множественный выбор (Alt+S)", + "txtOr": "%1 или %2", + "txtPage": "Страница", + "txtPageOf": "Страница %1 из %2", + "txtPages": "Страницы", + "txtPreparedBy": "Подготовил:", + "txtPrintArea": "Область_печати", + "txtQuarter": "Кв-л", + "txtQuarters": "Кварталы", + "txtRow": "Строка", + "txtRowLbls": "Названия строк", + "txtSeconds": "Секунды", + "txtSeries": "Ряд", + "txtStyle_Bad": "Плохой", + "txtStyle_Calculation": "Пересчет", + "txtStyle_Check_Cell": "Контрольная ячейка", + "txtStyle_Comma": "Финансовый", + "txtStyle_Currency": "Денежный", + "txtStyle_Explanatory_Text": "Пояснение", + "txtStyle_Good": "Хороший", + "txtStyle_Heading_1": "Заголовок 1", + "txtStyle_Heading_2": "Заголовок 2", + "txtStyle_Heading_3": "Заголовок 3", + "txtStyle_Heading_4": "Заголовок 4", + "txtStyle_Input": "Ввод", + "txtStyle_Linked_Cell": "Связанная ячейка", + "txtStyle_Neutral": "Нейтральный", + "txtStyle_Normal": "Обычный", + "txtStyle_Note": "Примечание", + "txtStyle_Output": "Вывод", + "txtStyle_Percent": "Процентный", + "txtStyle_Title": "Название", + "txtStyle_Total": "Итог", + "txtStyle_Warning_Text": "Текст предупреждения", + "txtTab": "Табуляция", + "txtTable": "Таблица", + "txtTime": "Время", + "txtValues": "Значения", + "txtXAxis": "Ось X", + "txtYAxis": "Ось Y", + "txtYears": "Годы" + }, + "textAnonymous": "Анонимный пользователь", + "textBuyNow": "Перейти на сайт", + "textClose": "Закрыть", + "textContactUs": "Отдел продаж", + "textCustomLoader": "К сожалению, у вас нет прав изменять экран, отображаемый при загрузке. Пожалуйста, обратитесь в наш отдел продаж, чтобы сделать запрос.", + "textGuest": "Гость", + "textHasMacros": "Файл содержит автозапускаемые макросы.
    Хотите запустить макросы?", + "textNo": "Нет", + "textNoLicenseTitle": "Лицензионное ограничение", + "textPaidFeature": "Платная функция", + "textRemember": "Запомнить мой выбор", + "textYes": "Да", + "titleServerVersion": "Редактор обновлен", + "titleUpdateVersion": "Версия изменилась", + "warnLicenseExceeded": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт только на просмотр. Свяжитесь с администратором, чтобы узнать больше.", + "warnLicenseLimitedNoAccess": "Истек срок действия лицензии. Нет доступа к функциональности редактирования документов. Пожалуйста, обратитесь к администратору.", + "warnLicenseLimitedRenewed": "Необходимо обновить лицензию. У вас ограниченный доступ к функциональности редактирования документов.
    Пожалуйста, обратитесь к администратору, чтобы получить полный доступ", + "warnLicenseUsersExceeded": "Вы достигли лимита на количество пользователей редакторов %1. Свяжитесь с администратором, чтобы узнать больше.", + "warnNoLicense": "Вы достигли лимита на одновременные подключения к редакторам %1. Этот документ будет открыт на просмотр. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", + "warnNoLicenseUsers": "Вы достигли лимита на количество пользователей редакторов %1. Напишите в отдел продаж %1, чтобы обсудить индивидуальные условия обновления.", + "warnProcessRightsChange": "У вас нет прав на редактирование этого файла." + } + }, + "Error": { + "convertationTimeoutText": "Превышено время ожидания конвертации.", + "criticalErrorExtText": "Нажмите 'OK' для возврата к списку документов.", + "criticalErrorTitle": "Ошибка", + "downloadErrorText": "Загрузка не удалась.", + "errorAccessDeny": "Вы пытаетесь выполнить действие, на которое у вас нет прав.
    Пожалуйста, обратитесь к администратору.", + "errorArgsRange": "Ошибка в формуле.
    Неверный диапазон аргументов.", + "errorAutoFilterChange": "Операция не разрешена, поскольку предпринимается попытка сдвинуть ячейки таблицы на листе.", + "errorAutoFilterChangeFormatTable": "Эту операцию нельзя выполнить для выделенных ячеек, поскольку нельзя переместить часть таблицы.
    Выберите другой диапазон данных, чтобы перемещалась вся таблица, и повторите попытку.", + "errorAutoFilterDataRange": "Операция не может быть произведена для выбранного диапазона ячеек.
    Выделите однородный диапазон данных внутри или за пределами таблицы и повторите попытку.", + "errorAutoFilterHiddenRange": "Операция не может быть произведена, так как область содержит отфильтрованные ячейки.
    Выведите на экран скрытые фильтром элементы и повторите попытку.", + "errorBadImageUrl": "Неправильный URL-адрес рисунка", + "errorChangeArray": "Нельзя изменить часть массива.", + "errorConnectToServer": "Не удается сохранить документ. Проверьте параметры подключения или обратитесь к вашему администратору.
    Когда вы нажмете на кнопку 'OK', вам будет предложено скачать документ.", + "errorCopyMultiselectArea": "Данная команда неприменима для несвязных диапазонов.
    Выберите один диапазон и повторите попытку.", + "errorCountArg": "Ошибка в формуле.
    Неверное количество аргументов.", + "errorCountArgExceed": "Ошибка в формуле.
    Превышено максимальное количество аргументов.", + "errorCreateDefName": "В настоящий момент нельзя отредактировать существующие именованные диапазоны и создать новые,
    так как некоторые из них редактируются.", + "errorDatabaseConnection": "Внешняя ошибка.
    Ошибка подключения к базе данных. Пожалуйста, обратитесь в службу технической поддержки.", + "errorDataEncrypted": "Получены зашифрованные изменения, их нельзя расшифровать.", + "errorDataRange": "Некорректный диапазон данных.", + "errorDataValidate": "Введенное значение недопустимо.
    Значения, которые можно ввести в эту ячейку, ограничены.", + "errorDefaultMessage": "Код ошибки: %1", + "errorEditingDownloadas": "В ходе работы с документом произошла ошибка.
    Используйте опцию 'Скачать', чтобы сохранить резервную копию файла локально.", + "errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", + "errorFileRequest": "Внешняя ошибка.
    Ошибка запроса файла. Пожалуйста, обратитесь в службу поддержки.", + "errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
    Обратитесь к администратору для получения дополнительной информации.", + "errorFileVKey": "Внешняя ошибка.
    Неверный ключ безопасности. Пожалуйста, обратитесь в службу поддержки.", + "errorFillRange": "Не удается заполнить выбранный диапазон ячеек.
    Все объединенные ячейки должны быть одного размера.", + "errorFormulaName": "Ошибка в формуле.
    Неверное имя формулы.", + "errorFormulaParsing": "Внутренняя ошибка при синтаксическом анализе формулы.", + "errorFrmlMaxLength": "Нельзя добавить эту формулу, так как ее длина превышает допустимое количество символов.
    Отредактируйте ее и повторите попытку.", + "errorFrmlMaxReference": "Нельзя ввести эту формулу, так как она содержит слишком много значений,
    ссылок на ячейки и/или имен.", + "errorFrmlMaxTextLength": "Длина текстовых значений в формулах не может превышать 255 символов.
    Используйте функцию СЦЕПИТЬ или оператор сцепления (&)", + "errorFrmlWrongReferences": "Функция ссылается на лист, который не существует.
    Проверьте данные и повторите попытку.", + "errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.", + "errorKeyEncrypt": "Неизвестный дескриптор ключа", + "errorKeyExpire": "Срок действия дескриптора ключа истек", + "errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.", + "errorLockedCellPivot": "Нельзя изменить данные в сводной таблице.", + "errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь", + "errorMaxPoints": "Максимальное число точек в серии для диаграммы составляет 4096.", + "errorMoveRange": "Нельзя изменить часть объединенной ячейки", + "errorMultiCellFormula": "Формулы массива с несколькими ячейками не разрешаются в таблицах.", + "errorOpenWarning": "Длина одной из формул в файле превышала
    допустимое количество символов, и формула была удалена.", + "errorOperandExpected": "Синтаксис введенной функции некорректен. Проверьте, не пропущена ли одна из скобок - '(' или ')'.", + "errorPasteMaxRange": "Область копирования не соответствует области вставки. Для вставки скопированных ячеек выделите область такого же размера или щелкните по первой ячейке в строке.", + "errorPrintMaxPagesCount": "К сожалению, в текущей версии программы нельзя напечатать более 1500 страниц за один раз.
    Это ограничение будет устранено в последующих версиях.", + "errorSessionAbsolute": "Время сеанса редактирования документа истекло. Пожалуйста, обновите страницу.", + "errorSessionIdle": "Документ долгое время не редактировался. Пожалуйста, обновите страницу.", + "errorSessionToken": "Подключение к серверу было прервано. Пожалуйста, обновите страницу.", + "errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
    цена открытия, максимальная цена, минимальная цена, цена закрытия.", + "errorUnexpectedGuid": "Внешняя ошибка.
    Непредвиденный идентификатор GUID. Пожалуйста, обратитесь в службу поддержки.", + "errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
    Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", + "errorUserDrop": "В настоящий момент файл недоступен.", + "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", + "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
    но не сможете скачать его до восстановления подключения и обновления страницы.", + "errorWrongBracketsCount": "Ошибка в формуле.
    Неверное количество скобок.", + "errorWrongOperator": "Ошибка во введенной формуле. Использован неправильный оператор.
    Исправьте ошибку или используйте клавишу Esc для отмены редактирования формулы.", + "notcriticalErrorTitle": "Внимание", + "openErrorText": "При открытии файла произошла ошибка", + "pastInMergeAreaError": "Нельзя изменить часть объединенной ячейки", + "saveErrorText": "При сохранении файла произошла ошибка", + "scriptLoadError": "Слишком медленное подключение, некоторые компоненты не удалось загрузить. Пожалуйста, обновите страницу.", + "unknownErrorText": "Неизвестная ошибка.", + "uploadImageExtMessage": "Неизвестный формат рисунка.", + "uploadImageFileCountMessage": "Ни одного рисунка не загружено.", + "uploadImageSizeMessage": "Слишком большой рисунок. Максимальный размер - 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Загрузка данных...", + "applyChangesTitleText": "Загрузка данных", + "confirmMoveCellRange": "Конечный диапазон ячеек может содержать данные. Продолжить операцию?", + "confirmPutMergeRange": "Исходные данные содержат объединенные ячейки.
    Перед вставкой в таблицу они будут разделены.", + "confirmReplaceFormulaInTable": "Формулы в строке заголовка будут удалены и преобразованы в статический текст.
    Вы хотите продолжить?", + "downloadTextText": "Загрузка документа...", + "downloadTitleText": "Загрузка документа", + "loadFontsTextText": "Загрузка данных...", + "loadFontsTitleText": "Загрузка данных", + "loadFontTextText": "Загрузка данных...", + "loadFontTitleText": "Загрузка данных", + "loadImagesTextText": "Загрузка рисунков...", + "loadImagesTitleText": "Загрузка рисунков", + "loadImageTextText": "Загрузка рисунка...", + "loadImageTitleText": "Загрузка рисунка", + "loadingDocumentTextText": "Загрузка документа...", + "loadingDocumentTitleText": "Загрузка документа", + "notcriticalErrorTitle": "Внимание", + "openTextText": "Открытие документа...", + "openTitleText": "Открытие документа", + "printTextText": "Печать документа...", + "printTitleText": "Печать документа", + "savePreparingText": "Подготовка к сохранению", + "savePreparingTitle": "Подготовка к сохранению. Пожалуйста, подождите...", + "saveTextText": "Сохранение документа...", + "saveTitleText": "Сохранение документа", + "textLoadingDocument": "Загрузка документа", + "textNo": "Нет", + "textOk": "Ok", + "textYes": "Да", + "txtEditingMode": "Установка режима редактирования...", + "uploadImageTextText": "Загрузка рисунка...", + "uploadImageTitleText": "Загрузка рисунка", + "waitText": "Пожалуйста, подождите..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Внимание", + "textCancel": "Отмена", + "textDelete": "Удалить", + "textDuplicate": "Дублировать", + "textErrNameExists": "Лист с таким именем уже существует.", + "textErrNameWrongChar": "Имя листа не может содержать символы: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Имя листа не должно быть пустым", + "textErrorLastSheet": "Книга должна содержать хотя бы один видимый лист.", + "textErrorRemoveSheet": "Не удалось удалить лист.", + "textHide": "Скрыть", + "textMore": "Ещё", + "textRename": "Переименовать", + "textRenameSheet": "Переименовать лист", + "textSheet": "Лист", + "textSheetName": "Имя листа", + "textUnhide": "Показать", + "textWarnDeleteSheet": "Лист может содержать данные. Продолжить операцию?" + }, + "Toolbar": { + "dlgLeaveMsgText": "В документе есть несохраненные изменения. Нажмите 'Остаться на странице', чтобы дождаться автосохранения. Нажмите 'Уйти со страницы', чтобы сбросить все несохраненные изменения.", + "dlgLeaveTitleText": "Вы выходите из приложения", + "leaveButtonText": "Уйти со страницы", + "stayButtonText": "Остаться на странице" + }, + "View": { + "Add": { + "errorMaxRows": "ОШИБКА! Максимальное число рядов данных для одной диаграммы - 255.", + "errorStockChart": "Неверный порядок строк. Чтобы создать биржевую диаграмму, расположите данные на листе в следующем порядке:
    цена открытия, максимальная цена, минимальная цена, цена закрытия.", + "notcriticalErrorTitle": "Внимание", + "sCatDateAndTime": "Дата и время", + "sCatEngineering": "Инженерные", + "sCatFinancial": "Финансовые", + "sCatInformation": "Информационные", + "sCatLogical": "Логические", + "sCatLookupAndReference": "Поиск и ссылки", + "sCatMathematic": "Математические", + "sCatStatistical": "Статистические", + "sCatTextAndData": "Текст и данные", + "textAddLink": "Добавить ссылку", + "textAddress": "Адрес", + "textBack": "Назад", + "textCancel": "Отмена", + "textChart": "Диаграмма", + "textComment": "Комментарий", + "textDisplay": "Отображать", + "textEmptyImgUrl": "Необходимо указать URL рисунка.", + "textExternalLink": "Внешняя ссылка", + "textFilter": "Фильтр", + "textFunction": "Функция", + "textGroups": "КАТЕГОРИИ", + "textImage": "Рисунок", + "textImageURL": "URL рисунка", + "textInsert": "Вставить", + "textInsertImage": "Вставить рисунок", + "textInternalDataRange": "Внутренний диапазон данных", + "textInvalidRange": "ОШИБКА! Недопустимый диапазон ячеек", + "textLink": "Ссылка", + "textLinkSettings": "Настройки ссылки", + "textLinkType": "Тип ссылки", + "textOther": "Другое", + "textPictureFromLibrary": "Рисунок из библиотеки", + "textPictureFromURL": "Рисунок по URL", + "textRange": "Диапазон", + "textRequired": "Обязательно", + "textScreenTip": "Подсказка", + "textShape": "Фигура", + "textSheet": "Лист", + "textSortAndFilter": "Сортировка и фильтрация", + "txtExpand": "Расширить и сортировать", + "txtExpandSort": "Данные рядом с выделенным диапазоном не будут отсортированы. Вы хотите расширить выделенный диапазон, чтобы включить данные из смежных ячеек, или продолжить сортировку только выделенного диапазона?", + "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", + "txtSorting": "Сортировка", + "txtSortSelected": "Сортировать выделенное" + }, + "Edit": { + "notcriticalErrorTitle": "Внимание", + "textAccounting": "Финансовый", + "textActualSize": "Реальный размер", + "textAddCustomColor": "Добавить пользовательский цвет", + "textAddress": "Адрес", + "textAlign": "Выравнивание", + "textAlignBottom": "По нижнему краю", + "textAlignCenter": "По центру", + "textAlignLeft": "По левому краю", + "textAlignMiddle": "По середине", + "textAlignRight": "По правому краю", + "textAlignTop": "По верхнему краю", + "textAllBorders": "Все границы", + "textAngleClockwise": "Текст по часовой стрелке", + "textAngleCounterclockwise": "Текст против часовой стрелки", + "textAuto": "Авто", + "textAxisCrosses": "Пересечение с осью", + "textAxisOptions": "Параметры оси", + "textAxisPosition": "Положение оси", + "textAxisTitle": "Название оси", + "textBack": "Назад", + "textBetweenTickMarks": "Между делениями", + "textBillions": "Миллиарды", + "textBorder": "Граница", + "textBorderStyle": "Стиль границ", + "textBottom": "Снизу", + "textBottomBorder": "Нижняя граница", + "textBringToForeground": "Перенести на передний план", + "textCell": "Ячейка", + "textCellStyles": "Стили ячеек", + "textCenter": "По центру", + "textChart": "Диаграмма", + "textChartTitle": "Заголовок диаграммы", + "textClearFilter": "Очистить фильтр", + "textColor": "Цвет", + "textCross": "На пересечении", + "textCrossesValue": "Значение", + "textCurrency": "Денежный", + "textCustomColor": "Пользовательский цвет", + "textDataLabels": "Подписи данных", + "textDate": "Дата", + "textDefault": "Выбранный диапазон", + "textDeleteFilter": "Удалить фильтр", + "textDesign": "Вид", + "textDiagonalDownBorder": "Диагональная граница сверху вниз", + "textDiagonalUpBorder": "Диагональная граница снизу вверх", + "textDisplay": "Отображать", + "textDisplayUnits": "Единицы отображения", + "textDollar": "Доллар", + "textEditLink": "Редактировать ссылку", + "textEffects": "Эффекты", + "textEmptyImgUrl": "Необходимо указать URL рисунка.", + "textEmptyItem": "{Пустые}", + "textErrorMsg": "Необходимо выбрать хотя бы одно значение", + "textErrorTitle": "Внимание", + "textEuro": "Евро", + "textExternalLink": "Внешняя ссылка", + "textFill": "Заливка", + "textFillColor": "Цвет заливки", + "textFilterOptions": "Параметры фильтра", + "textFit": "По ширине", + "textFonts": "Шрифты", + "textFormat": "Формат", + "textFraction": "Дробный", + "textFromLibrary": "Рисунок из библиотеки", + "textFromURL": "Рисунок по URL", + "textGeneral": "Общий", + "textGridlines": "Линии сетки", + "textHigh": "Выше", + "textHorizontal": "По горизонтали", + "textHorizontalAxis": "Горизонтальная ось", + "textHorizontalText": "Горизонтальный текст", + "textHundredMil": "100 000 000", + "textHundreds": "Сотни", + "textHundredThousands": "100 000", + "textHyperlink": "Гиперссылка", + "textImage": "Рисунок", + "textImageURL": "URL рисунка", + "textIn": "Внутри", + "textInnerBottom": "Внутри снизу", + "textInnerTop": "Внутри сверху", + "textInsideBorders": "Внутренние границы", + "textInsideHorizontalBorder": "Внутренняя горизонтальная граница", + "textInsideVerticalBorder": "Внутренняя вертикальная граница", + "textInteger": "Целочисленный", + "textInternalDataRange": "Внутренний диапазон данных", + "textInvalidRange": "Недопустимый диапазон ячеек", + "textJustified": "По ширине", + "textLabelOptions": "Параметры подписи", + "textLabelPosition": "Положение подписи", + "textLayout": "Макет", + "textLeft": "Слева", + "textLeftBorder": "Левая граница", + "textLeftOverlay": "Наложение слева", + "textLegend": "Условные обозначения", + "textLink": "Ссылка", + "textLinkSettings": "Настройки ссылки", + "textLinkType": "Тип ссылки", + "textLow": "Ниже", + "textMajor": "Основные", + "textMajorAndMinor": "Основные и дополнительные", + "textMajorType": "Основной тип", + "textMaximumValue": "Максимум", + "textMedium": "Средние", + "textMillions": "Миллионы", + "textMinimumValue": "Минимум", + "textMinor": "Дополнительные", + "textMinorType": "Дополнительный тип", + "textMoveBackward": "Перенести назад", + "textMoveForward": "Перенести вперед", + "textNextToAxis": "Рядом с осью", + "textNoBorder": "Без границ", + "textNone": "Нет", + "textNoOverlay": "Без наложения", + "textNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", + "textNumber": "Числовой", + "textOnTickMarks": "Деления", + "textOpacity": "Непрозрачность", + "textOut": "Снаружи", + "textOuterTop": "Снаружи сверху", + "textOutsideBorders": "Внешние границы", + "textOverlay": "Наложение", + "textPercentage": "Процентный", + "textPictureFromLibrary": "Рисунок из библиотеки", + "textPictureFromURL": "Рисунок по URL", + "textPound": "Фунт", + "textPt": "пт", + "textRange": "Диапазон", + "textRemoveChart": "Удалить диаграмму", + "textRemoveImage": "Удалить рисунок", + "textRemoveLink": "Удалить ссылку", + "textRemoveShape": "Удалить фигуру", + "textReorder": "Порядок", + "textReplace": "Заменить", + "textReplaceImage": "Заменить рисунок", + "textRequired": "Обязательно", + "textRight": "Справа", + "textRightBorder": "Правая граница", + "textRightOverlay": "Наложение справа", + "textRotated": "Повернутое", + "textRotateTextDown": "Повернуть текст вниз", + "textRotateTextUp": "Повернуть текст вверх", + "textRouble": "Рубль", + "textScientific": "Научный", + "textScreenTip": "Подсказка", + "textSelectAll": "Выделить всё", + "textSelectObjectToEdit": "Выберите объект для редактирования", + "textSendToBackground": "Перенести на задний план", + "textSettings": "Настройки", + "textShape": "Фигура", + "textSheet": "Лист", + "textSize": "Размер", + "textStyle": "Стиль", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Текст", + "textTextColor": "Цвет текста", + "textTextFormat": "Формат текста", + "textTextOrientation": "Ориентация текста", + "textThick": "Толстые", + "textThin": "Тонкие", + "textThousands": "Тысячи", + "textTickOptions": "Параметры делений", + "textTime": "Время", + "textTop": "Сверху", + "textTopBorder": "Верхняя граница", + "textTrillions": "Триллионы", + "textType": "Тип", + "textValue": "Значение", + "textValuesInReverseOrder": "Значения в обратном порядке", + "textVertical": "По вертикали", + "textVerticalAxis": "Вертикальная ось", + "textVerticalText": "Вертикальный текст", + "textWrapText": "Перенос текста", + "textYen": "Йена", + "txtNotUrl": "Это поле должно быть URL-адресом в формате \"http://www.example.com\"", + "txtSortHigh2Low": "Сортировка по убыванию", + "txtSortLow2High": "Сортировка по возрастанию" + }, + "Settings": { + "advCSVOptions": "Выбрать параметры CSV", + "advDRMEnterPassword": "Введите пароль:", + "advDRMOptions": "Защищенный файл", + "advDRMPassword": "Пароль", + "closeButtonText": "Закрыть файл", + "notcriticalErrorTitle": "Внимание", + "textAbout": "О программе", + "textAddress": "Адрес", + "textApplication": "Приложение", + "textApplicationSettings": "Настройки приложения", + "textAuthor": "Автор", + "textBack": "Назад", + "textBottom": "Снизу", + "textByColumns": "По столбцам", + "textByRows": "По строкам", + "textCancel": "Отмена", + "textCentimeter": "Сантиметр", + "textCollaboration": "Совместная работа", + "textColorSchemes": "Цветовые схемы", + "textComment": "Комментарий", + "textCommentingDisplay": "Отображение комментариев", + "textComments": "Комментарии", + "textCreated": "Создана", + "textCustomSize": "Особый размер", + "textDisableAll": "Отключить все", + "textDisableAllMacrosWithNotification": "Отключить все макросы с уведомлением", + "textDisableAllMacrosWithoutNotification": "Отключить все макросы без уведомления", + "textDone": "Готово", + "textDownload": "Скачать", + "textDownloadAs": "Скачать как", + "textEmail": "Еmail", + "textEnableAll": "Включить все", + "textEnableAllMacrosWithoutNotification": "Включить все макросы без уведомления", + "textFind": "Поиск", + "textFindAndReplace": "Поиск и замена", + "textFindAndReplaceAll": "Найти и заменить все", + "textFormat": "Формат", + "textFormulaLanguage": "Язык формул", + "textFormulas": "Формулы", + "textHelp": "Справка", + "textHideGridlines": "Скрыть линии сетки", + "textHideHeadings": "Скрыть заголовки", + "textHighlightRes": "Выделить результаты", + "textInch": "Дюйм", + "textLandscape": "Альбомная", + "textLastModified": "Последнее изменение", + "textLastModifiedBy": "Автор последнего изменения", + "textLeft": "Слева", + "textLocation": "Размещение", + "textLookIn": "Область поиска", + "textMacrosSettings": "Настройки макросов", + "textMargins": "Поля", + "textMatchCase": "С учетом регистра", + "textMatchCell": "Сопоставление ячеек", + "textNoTextFound": "Текст не найден", + "textOpenFile": "Введите пароль для открытия файла", + "textOrientation": "Ориентация", + "textOwner": "Владелец", + "textPoint": "Пункт", + "textPortrait": "Книжная", + "textPoweredBy": "Разработано", + "textPrint": "Печать", + "textR1C1Style": "Стиль ссылок R1C1", + "textRegionalSettings": "Региональные параметры", + "textReplace": "Заменить", + "textReplaceAll": "Заменить все", + "textResolvedComments": "Решенные комментарии", + "textRight": "Справа", + "textSearch": "Поиск", + "textSearchBy": "Поиск", + "textSearchIn": "Искать", + "textSettings": "Настройки", + "textSheet": "Лист", + "textShowNotification": "Показывать уведомление", + "textSpreadsheetFormats": "Форматы таблицы", + "textSpreadsheetInfo": "Информация о таблице", + "textSpreadsheetSettings": "Настройки таблицы", + "textSpreadsheetTitle": "Название таблицы", + "textSubject": "Тема", + "textTel": "Телефон", + "textTitle": "Название", + "textTop": "Сверху", + "textUnitOfMeasurement": "Единица измерения", + "textUploaded": "Загружена", + "textValues": "Значения", + "textVersion": "Версия", + "textWorkbook": "В книге", + "txtDelimiter": "Разделитель", + "txtEncoding": "Кодировка", + "txtIncorrectPwd": "Неверный пароль", + "txtProtected": "Как только вы введете пароль и откроете файл, текущий пароль к файлу будет сброшен", + "txtScheme1": "Стандартная", + "txtScheme10": "Обычная", + "txtScheme11": "Метро", + "txtScheme12": "Модульная", + "txtScheme13": "Изящная", + "txtScheme14": "Эркер", + "txtScheme15": "Начальная", + "txtScheme16": "Бумажная", + "txtScheme17": "Солнцестояние", + "txtScheme18": "Техническая", + "txtScheme19": "Трек", + "txtScheme2": "Оттенки серого", + "txtScheme20": "Городская", + "txtScheme21": "Яркая", + "txtScheme22": "Новая офисная", + "txtScheme3": "Апекс", + "txtScheme4": "Аспект", + "txtScheme5": "Официальная", + "txtScheme6": "Открытая", + "txtScheme7": "Справедливость", + "txtScheme8": "Поток", + "txtScheme9": "Литейная", + "txtSpace": "Пробел", + "txtTab": "Табуляция", + "warnDownloadAs": "Если вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
    Вы действительно хотите продолжить?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index b6cb47f7e..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -1,658 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Pridať odpoveď", - "Common.Controllers.Collaboration.textCancel": "Zrušiť", - "Common.Controllers.Collaboration.textDeleteComment": "Vymazať komentár", - "Common.Controllers.Collaboration.textDeleteReply": "Vymazať odpoveď", - "Common.Controllers.Collaboration.textDone": "Hotovo", - "Common.Controllers.Collaboration.textEdit": "Upraviť", - "Common.Controllers.Collaboration.textEditUser": "Používatelia, ktorí súbor práve upravujú:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Naozaj chcete zmazať tento komentár?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Naozaj chcete zmazať túto odpoveď?", - "Common.Controllers.Collaboration.textReopen": "Znovu otvoriť", - "Common.Controllers.Collaboration.textResolve": "Vyriešiť", - "Common.Controllers.Collaboration.textYes": "Áno", - "Common.UI.ThemeColorPalette.textCustomColors": "Užívateľsky určená farba", - "Common.UI.ThemeColorPalette.textStandartColors": "Štandardné farby", - "Common.UI.ThemeColorPalette.textThemeColors": "Farebné témy", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Pridať odpoveď", - "Common.Views.Collaboration.textBack": "Späť", - "Common.Views.Collaboration.textCancel": "Zrušiť", - "Common.Views.Collaboration.textCollaboration": "Spolupráca", - "Common.Views.Collaboration.textDone": "Hotovo", - "Common.Views.Collaboration.textEditReply": "Upraviť odpoveď", - "Common.Views.Collaboration.textEditUsers": "Používatelia", - "Common.Views.Collaboration.textEditСomment": "Upraviť komentár", - "Common.Views.Collaboration.textNoComments": "Táto tabuľka neobsahuje komentáre", - "Common.Views.Collaboration.textСomments": "Komentáre", - "SSE.Controllers.AddChart.txtDiagramTitle": "Názov grafu", - "SSE.Controllers.AddChart.txtSeries": "Rady", - "SSE.Controllers.AddChart.txtXAxis": "Os X", - "SSE.Controllers.AddChart.txtYAxis": "Os Y", - "SSE.Controllers.AddContainer.textChart": "Graf", - "SSE.Controllers.AddContainer.textFormula": "Funkcia", - "SSE.Controllers.AddContainer.textImage": "Obrázok", - "SSE.Controllers.AddContainer.textOther": "Ostatný", - "SSE.Controllers.AddContainer.textShape": "Tvar", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.AddLink.textInvalidRange": "CHYBA! Neplatný rozsah buniek", - "SSE.Controllers.AddLink.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.AddOther.textCancel": "Zrušiť", - "SSE.Controllers.AddOther.textContinue": "Pokračovať", - "SSE.Controllers.AddOther.textDelete": "Vymazať", - "SSE.Controllers.AddOther.textDeleteDraft": "Naozaj chcete zmazať koncept?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Musíte upresniť URL obrázka.", - "SSE.Controllers.AddOther.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Akcie kopírovania, vystrihovania a vkladania pomocou kontextovej ponuky sa budú vykonávať iba v práve otvorenom súbore.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Pridať komentár", - "SSE.Controllers.DocumentHolder.menuAddLink": "Pridať odkaz", - "SSE.Controllers.DocumentHolder.menuCell": "Bunka", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopírovať", - "SSE.Controllers.DocumentHolder.menuCut": "Vystrihnúť", - "SSE.Controllers.DocumentHolder.menuDelete": "Vymazať", - "SSE.Controllers.DocumentHolder.menuEdit": "Upraviť", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Ukotviť priečky", - "SSE.Controllers.DocumentHolder.menuHide": "Skryť", - "SSE.Controllers.DocumentHolder.menuMerge": "Zlúčiť", - "SSE.Controllers.DocumentHolder.menuMore": "Viac", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Otvoriť odkaz", - "SSE.Controllers.DocumentHolder.menuPaste": "Vložiť", - "SSE.Controllers.DocumentHolder.menuShow": "Zobraziť", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Zrušiť ukotvenie priečky", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Zrušiť zlúčenie", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Rozbaliť", - "SSE.Controllers.DocumentHolder.menuViewComment": "Zobraziť komentár", - "SSE.Controllers.DocumentHolder.menuWrap": "Zabaliť", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.DocumentHolder.sheetCancel": "Zrušiť", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Kopírovať, vystrihnúť a prilepiť", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Znova už nezobrazovať", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Iba údaje z ľavej hornej bunky zostanú v zlúčenej bunke.
    Ste si istý, že chcete pokračovať?", - "SSE.Controllers.EditCell.textAuto": "Automaticky", - "SSE.Controllers.EditCell.textFonts": "Písma", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "CHYBA! Maximálny počet dátových radov na graf je 255.", - "SSE.Controllers.EditChart.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    začiatočná cena, max cena, min cena, konečná cena.", - "SSE.Controllers.EditChart.textAuto": "Automaticky", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Medzi značkami rozsahu", - "SSE.Controllers.EditChart.textBillions": "Miliardy", - "SSE.Controllers.EditChart.textBottom": "Dole", - "SSE.Controllers.EditChart.textCenter": "Stred", - "SSE.Controllers.EditChart.textCross": "Pretínať", - "SSE.Controllers.EditChart.textCustom": "Vlastný", - "SSE.Controllers.EditChart.textFit": "Prispôsobiť šírku", - "SSE.Controllers.EditChart.textFixed": "Fixný/napravený", - "SSE.Controllers.EditChart.textHigh": "Vysoko", - "SSE.Controllers.EditChart.textHorizontal": "Vodorovný", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Stovky", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "v", - "SSE.Controllers.EditChart.textInnerBottom": "Vnútri dole", - "SSE.Controllers.EditChart.textInnerTop": "Vnútri hore", - "SSE.Controllers.EditChart.textLeft": "Vľavo", - "SSE.Controllers.EditChart.textLeftOverlay": "Ľavé prekrytie", - "SSE.Controllers.EditChart.textLow": "Nízko", - "SSE.Controllers.EditChart.textManual": "Manuál/ručný", - "SSE.Controllers.EditChart.textMaxValue": "Maximálna hodnota", - "SSE.Controllers.EditChart.textMillions": "Milióny", - "SSE.Controllers.EditChart.textMinValue": "Minimálna hodnota", - "SSE.Controllers.EditChart.textNextToAxis": "Vedľa osi", - "SSE.Controllers.EditChart.textNone": "Žiadny", - "SSE.Controllers.EditChart.textNoOverlay": "Žiadne prekrytie", - "SSE.Controllers.EditChart.textOnTickMarks": "Na značkách", - "SSE.Controllers.EditChart.textOut": "Von", - "SSE.Controllers.EditChart.textOuterTop": "Mimo hore", - "SSE.Controllers.EditChart.textOverlay": "Prekrytie", - "SSE.Controllers.EditChart.textRight": "Vpravo", - "SSE.Controllers.EditChart.textRightOverlay": "Pravé prekrytie", - "SSE.Controllers.EditChart.textRotated": "Otočený", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Tisíce", - "SSE.Controllers.EditChart.textTop": "Hore", - "SSE.Controllers.EditChart.textTrillions": "Bilióny", - "SSE.Controllers.EditChart.textValue": "Hodnota", - "SSE.Controllers.EditContainer.textCell": "Bunka", - "SSE.Controllers.EditContainer.textChart": "Graf", - "SSE.Controllers.EditContainer.textHyperlink": "Hypertextový odkaz", - "SSE.Controllers.EditContainer.textImage": "Obrázok", - "SSE.Controllers.EditContainer.textSettings": "Nastavenia", - "SSE.Controllers.EditContainer.textShape": "Tvar", - "SSE.Controllers.EditContainer.textTable": "Tabuľka", - "SSE.Controllers.EditContainer.textText": "Text", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.EditHyperlink.textDefault": "Vybraný rozsah", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Musíte upresniť URL obrázka.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Externý odkaz", - "SSE.Controllers.EditHyperlink.textInternalLink": "Interný rozsah údajov", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Neplatný rozsah buniek", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Toto pole by malo byť vo formáte \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Je potrebné, aby ste špecifikovali URL obrázka.", - "SSE.Controllers.EditImage.txtNotUrl": "Toto pole by malo byť vo formáte 'http://www.example.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Prázdne}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Musíte vybrať aspoň jednu hodnotu", - "SSE.Controllers.FilterOptions.textErrorTitle": "Upozornenie", - "SSE.Controllers.FilterOptions.textSelectAll": "Vybrať všetko", - "SSE.Controllers.Main.advCSVOptions": "Vybrať možnosti CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Zadajte svoje heslo:", - "SSE.Controllers.Main.advDRMOptions": "Chránený súbor", - "SSE.Controllers.Main.advDRMPassword": "Heslo", - "SSE.Controllers.Main.applyChangesTextText": "Načítavanie dát...", - "SSE.Controllers.Main.applyChangesTitleText": "Načítavanie dát", - "SSE.Controllers.Main.closeButtonText": "Zatvoriť súbor", - "SSE.Controllers.Main.convertationTimeoutText": "Prekročený čas konverzie.", - "SSE.Controllers.Main.criticalErrorExtText": "Stlačením tlačidla 'OK' sa vrátite do zoznamu dokumentov.", - "SSE.Controllers.Main.criticalErrorTitle": "Chyba", - "SSE.Controllers.Main.downloadErrorText": "Sťahovanie zlyhalo.", - "SSE.Controllers.Main.downloadMergeText": "Sťahovanie...", - "SSE.Controllers.Main.downloadMergeTitle": "Sťahovanie", - "SSE.Controllers.Main.downloadTextText": "Sťahovanie dokumentu...", - "SSE.Controllers.Main.downloadTitleText": "Sťahovanie dokumentu", - "SSE.Controllers.Main.errorAccessDeny": "Pokúšate sa vykonať akciu, na ktorú nemáte práva.
    Prosím, kontaktujte svojho správcu dokumentového servera. ", - "SSE.Controllers.Main.errorArgsRange": "Chyba v zadanom vzorci.
    Používa sa nesprávny rozsah argumentov.", - "SSE.Controllers.Main.errorAutoFilterChange": "Operácia nie je povolená, pretože sa pokúša posunúť bunky do tabuľky na pracovnom hárku.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Operácia nemôže byť vykonaná pre vybrané bunky, pretože nemôžete presunúť časť tabuľky.
    Vyberte iný rozsah údajov tak, aby sa celá tabuľka posunula a skúste to znova.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Operáciu nemožno vykonať pre vybraný rozsah buniek.
    Vyberte jednotný dátový rozsah, iný ako existujúci, a skúste to znova.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operáciu nemožno vykonať, pretože oblasť obsahuje filtrované bunky.
    Odkryte filtrované prvky a skúste to znova.", - "SSE.Controllers.Main.errorBadImageUrl": "Adresa URL obrázku je nesprávna", - "SSE.Controllers.Main.errorChangeArray": "Nie je možné meniť časť poľa.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Serverové pripojenie sa stratilo. Práve teraz nie je možné dokument upravovať.", - "SSE.Controllers.Main.errorConnectToServer": "Dokument sa nepodarilo uložiť. Prosím, skontrolujte nastavenia pripojenia alebo kontaktujte správcu.
    Po kliknutí na tlačidlo 'OK' sa zobrazí výzva na prevzatie dokumentu.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Tento príkaz sa nedá použiť s viacerými výbermi.
    Vyberte jeden rozsah a skúste to znova.", - "SSE.Controllers.Main.errorCountArg": "Chyba v zadanom vzorci.
    Používa sa nesprávny počet argumentov.", - "SSE.Controllers.Main.errorCountArgExceed": "Chyba v zadanom vzorci.
    Počet argumentov je prekročený.", - "SSE.Controllers.Main.errorCreateDefName": "Existujúce pomenované rozsahy nemožno upraviť a nové nemôžu byť momentálne vytvorené
    , keďže niektoré z nich sú práve editované.", - "SSE.Controllers.Main.errorDatabaseConnection": "Externá chyba.
    Chyba spojenia databázy. Prosím, kontaktujte podporu ak chyba pretrváva. ", - "SSE.Controllers.Main.errorDataEncrypted": "Boli prijaté zašifrované zmeny, nemožno ich dekódovať.", - "SSE.Controllers.Main.errorDataRange": "Nesprávny rozsah údajov.", - "SSE.Controllers.Main.errorDefaultMessage": "Kód chyby: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Pri práci na dokumente sa vyskytla chyba.
    Použite voľbu \"Stiahnuť\" a uložte si súbor ako zálohu na svoj počítač.", - "SSE.Controllers.Main.errorFilePassProtect": "Dokument je chránený heslom a nie je možné ho otvoriť.", - "SSE.Controllers.Main.errorFileRequest": "Externá chyba.
    Chyba požiadavky súboru. Ak chyba pretrváva, kontaktujte podporu.", - "SSE.Controllers.Main.errorFileSizeExceed": "Veľkosť súboru prekračuje limity vášho servera.
    Pre ďalšie podrobnosti kontaktujte prosím vášho správcu dokumentového servera.", - "SSE.Controllers.Main.errorFileVKey": "Externá chyba.
    Nesprávny bezpečnostný kľúč. Ak chyba pretrváva, kontaktujte podporu.", - "SSE.Controllers.Main.errorFillRange": "Nepodarilo sa vyplniť vybraný rozsah buniek.
    Všetky zlúčené bunky musia mať rovnakú veľkosť.", - "SSE.Controllers.Main.errorFormulaName": "Chyba v zadanom vzorci.
    Používa sa nesprávny názov vzorca.", - "SSE.Controllers.Main.errorFormulaParsing": "Interná chyba pri analýze vzorca.", - "SSE.Controllers.Main.errorFrmlMaxLength": "Dĺžka vášho vzorca prekračuje limit 8192 znakov.
    Prosím, upravte ho a skúste znova.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Vzorec nemôžete vložiť, pretože má priveľa hodnôt,
    odkazov na bunky, a/alebo názvov.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Textové hodnoty vo vzorcoch sú obmedzené na 255 znakov.
    Použite operáciu CONCATENATE alebo operátor zreťazenia (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Funkcia sa týka listu, ktorý neexistuje.
    Skontrolujte prosím údaje a skúste to znova.", - "SSE.Controllers.Main.errorInvalidRef": "Zadajte správny názov pre výber alebo platný odkaz, na ktorý chcete prejsť.", - "SSE.Controllers.Main.errorKeyEncrypt": "Neznámy kľúč deskriptoru", - "SSE.Controllers.Main.errorKeyExpire": "Kľúč deskriptora vypršal", - "SSE.Controllers.Main.errorLockedAll": "Operáciu nemožno vykonať, pretože list bol zamknutý iným používateľom.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "List nemôže byť momentálne premenovaný, pretože je premenovaný iným používateľom", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Načítavanie zlyhalo", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Zlúčenie zlyhalo.", - "SSE.Controllers.Main.errorMaxPoints": "Maximálny počet bodov v sérii na jeden graf je 4096.", - "SSE.Controllers.Main.errorMoveRange": "Nie je možné zmeniť časť zlúčenej bunky", - "SSE.Controllers.Main.errorMultiCellFormula": "V tabuľkách nie sú dovolené vzorce pre pole s viacerými bunkami", - "SSE.Controllers.Main.errorOpensource": "Pomocou bezplatnej verzie Community môžete otvoriť dokumenty iba na prezeranie. Na prístup k mobilným webovým editorom je potrebná komerčná licencia.", - "SSE.Controllers.Main.errorOpenWarning": "Dĺžka jedného zo vzorcov v súbore prekročila
    povolený počet znakov a bola odstránená.", - "SSE.Controllers.Main.errorOperandExpected": "Zadaná funkcia syntax nie je správna. Skontrolujte prosím, či chýba jedna zo zátvoriek-'(' alebo ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Oblasť kopírovania a prilepovania sa nezhoduje.
    Prosím, vyberte oblasť s rovnakou veľkosťou alebo kliknite na prvú bunku v rade a vložte skopírované bunky.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Bohužiaľ, nie je možné v aktuálnej verzii programu vytlačiť viac ako 1500 strán naraz.
    Toto obmedzenie bude odstránené v najbližších vydaniach.", - "SSE.Controllers.Main.errorProcessSaveResult": "Ukladanie zlyhalo", - "SSE.Controllers.Main.errorServerVersion": "Verzia editora bola aktualizovaná. Stránka sa opätovne načíta, aby sa vykonali zmeny.", - "SSE.Controllers.Main.errorSessionAbsolute": "Režim editácie dokumentu vypršal. Prosím, načítajte stránku znova.", - "SSE.Controllers.Main.errorSessionIdle": "Dokument nebol dlho upravovaný. Prosím, načítajte stránku znova.", - "SSE.Controllers.Main.errorSessionToken": "Spojenie so serverom bolo prerušené. Prosím, načítajte stránku znova.", - "SSE.Controllers.Main.errorStockChart": "Nesprávne poradie riadkov. Ak chcete vytvoriť burzový graf, umiestnite údaje na hárok v nasledujúcom poradí:
    začiatočná cena, max cena, min cena, konečná cena.", - "SSE.Controllers.Main.errorToken": "Rámec platnosti zabezpečenia dokumentu nie je správne vytvorený.
    Prosím, kontaktujte svojho správcu dokumentového servera. ", - "SSE.Controllers.Main.errorTokenExpire": "Rámec platnosti zabezpečenia dokumentu vypršal.
    Prosím, kontaktujte svojho správcu dokumentového servera. ", - "SSE.Controllers.Main.errorUnexpectedGuid": "Externá chyba.
    Neočakávaná GUID. Ak chyba pretrváva, kontaktujte podporu.", - "SSE.Controllers.Main.errorUpdateVersion": "Verzia súboru bola zmenená. Stránka sa znova načíta.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internetové pripojenie bolo obnovené a verzia súboru bola zmenená.
    Predtým, než budete pokračovať v práci, potrebujete si stiahnuť súbor alebo kópiu jeho obsahu, aby sa nič nestratilo. Potom znovu načítajte stránku.", - "SSE.Controllers.Main.errorUserDrop": "K súboru nie je možné práve teraz získať prístup.", - "SSE.Controllers.Main.errorUsersExceed": "Počet používateľov povolených cenovým plánom bol prekročený", - "SSE.Controllers.Main.errorViewerDisconnect": "Spojenie sa stratilo. Dokument môžete zobraziť,
    ale nebude možné ho prevziať, kým sa obnoví spojenie.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Chyba v zadanom vzorci.
    Používa sa nesprávny počet zátvoriek.", - "SSE.Controllers.Main.errorWrongOperator": "Chyba v zadanom vzorci. Používa sa nesprávny operátor.
    Prosím, opravte chybu.", - "SSE.Controllers.Main.leavePageText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", - "SSE.Controllers.Main.loadFontsTextText": "Načítavanie dát...", - "SSE.Controllers.Main.loadFontsTitleText": "Načítavanie dát", - "SSE.Controllers.Main.loadFontTextText": "Načítavanie dát...", - "SSE.Controllers.Main.loadFontTitleText": "Načítavanie dát", - "SSE.Controllers.Main.loadImagesTextText": "Načítavanie obrázkov...", - "SSE.Controllers.Main.loadImagesTitleText": "Načítanie obrázkov", - "SSE.Controllers.Main.loadImageTextText": "Načítanie obrázku ..", - "SSE.Controllers.Main.loadImageTitleText": "Načítavanie obrázku", - "SSE.Controllers.Main.loadingDocumentTextText": "Načítavanie dokumentu...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Načítavanie dokumentu", - "SSE.Controllers.Main.mailMergeLoadFileText": "Načítavanie zdroja údajov...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Načítavanie zdroja údajov", - "SSE.Controllers.Main.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.Main.openErrorText": "Pri otváraní súboru sa vyskytla chyba.", - "SSE.Controllers.Main.openTextText": "Otváranie dokumentu...", - "SSE.Controllers.Main.openTitleText": "Otváranie dokumentu", - "SSE.Controllers.Main.pastInMergeAreaError": "Nie je možné zmeniť časť zlúčenej bunky", - "SSE.Controllers.Main.printTextText": "Tlač dokumentu...", - "SSE.Controllers.Main.printTitleText": "Tlač dokumentu", - "SSE.Controllers.Main.reloadButtonText": "Obnoviť stránku", - "SSE.Controllers.Main.requestEditFailedMessageText": "Niekto tento dokument práve upravuje. Skúste neskôr prosím.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Prístup zamietnutý", - "SSE.Controllers.Main.saveErrorText": "Pri ukladaní súboru sa vyskytla chyba", - "SSE.Controllers.Main.savePreparingText": "Príprava na uloženie", - "SSE.Controllers.Main.savePreparingTitle": "Príprava na uloženie. Prosím čakajte...", - "SSE.Controllers.Main.saveTextText": "Ukladanie dokumentu...", - "SSE.Controllers.Main.saveTitleText": "Ukladanie dokumentu", - "SSE.Controllers.Main.scriptLoadError": "Spojenie je príliš pomalé, niektoré komponenty nemožno nahrať. Obnovte prosím stránku.", - "SSE.Controllers.Main.sendMergeText": "Odoslanie zlúčenia...", - "SSE.Controllers.Main.sendMergeTitle": "Odoslanie zlúčenia", - "SSE.Controllers.Main.textAnonymous": "Anonymný", - "SSE.Controllers.Main.textBack": "Späť", - "SSE.Controllers.Main.textBuyNow": "Navštíviť webovú stránku", - "SSE.Controllers.Main.textCancel": "Zrušiť", - "SSE.Controllers.Main.textClose": "Zatvoriť", - "SSE.Controllers.Main.textContactUs": "Obchodné oddelenie", - "SSE.Controllers.Main.textCustomLoader": "Majte na pamäti, že podľa podmienok licencie nie ste oprávnený meniť načítač.
    Pre získanie ponuky sa obráťte na naše obchodné oddelenie.", - "SSE.Controllers.Main.textDone": "Hotovo", - "SSE.Controllers.Main.textGuest": "Hosť", - "SSE.Controllers.Main.textHasMacros": "Súbor obsahuje automatické makrá.
    Chcete spustiť makrá?", - "SSE.Controllers.Main.textLoadingDocument": "Načítavanie dokumentu", - "SSE.Controllers.Main.textNo": "Nie", - "SSE.Controllers.Main.textNoLicenseTitle": "Bol dosiahnutý limit licencie", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Platená funkcia", - "SSE.Controllers.Main.textPassword": "Heslo", - "SSE.Controllers.Main.textPreloader": "Nahrávanie...", - "SSE.Controllers.Main.textRemember": "Pamätať si moju voľbu pre všetky súbory", - "SSE.Controllers.Main.textShape": "Tvar", - "SSE.Controllers.Main.textStrict": "Prísny režim", - "SSE.Controllers.Main.textTryUndoRedo": "Funkcie späť/zopakovať sú vypnuté pre rýchly spolueditačný režim.
    Kliknite na tlačítko \"Prísny režim\", aby ste prešli do prísneho spolueditačného režimu a aby ste upravovali súbor bez rušenia ostatných užívateľov a odosielali vaše zmeny iba po ich uložení. Pomocou Rozšírených nastavení editoru môžete prepínať medzi spolueditačnými režimami.", - "SSE.Controllers.Main.textUsername": "Užívateľské meno", - "SSE.Controllers.Main.textYes": "Áno", - "SSE.Controllers.Main.titleLicenseExp": "Platnosť licencie uplynula", - "SSE.Controllers.Main.titleServerVersion": "Editor bol aktualizovaný", - "SSE.Controllers.Main.titleUpdateVersion": "Verzia bola zmenená", - "SSE.Controllers.Main.txtAccent": "Akcent", - "SSE.Controllers.Main.txtArt": "Váš text tu", - "SSE.Controllers.Main.txtBasicShapes": "Základné tvary", - "SSE.Controllers.Main.txtButtons": "Tlačidlá", - "SSE.Controllers.Main.txtCallouts": "Popisky obrázku", - "SSE.Controllers.Main.txtCharts": "Grafy", - "SSE.Controllers.Main.txtDelimiter": "Oddeľovač", - "SSE.Controllers.Main.txtDiagramTitle": "Názov grafu", - "SSE.Controllers.Main.txtEditingMode": "Nastaviť režim úprav ...", - "SSE.Controllers.Main.txtEncoding": "Kódovanie", - "SSE.Controllers.Main.txtErrorLoadHistory": "Načítavanie histórie zlyhalo", - "SSE.Controllers.Main.txtFiguredArrows": "Šipky", - "SSE.Controllers.Main.txtLines": "Riadky/čiary", - "SSE.Controllers.Main.txtMath": "Matematika", - "SSE.Controllers.Main.txtProtected": "Akonáhle vložíte heslo a otvoríte súbor, terajšie heslo sa zresetuje.", - "SSE.Controllers.Main.txtRectangles": "Obdĺžniky", - "SSE.Controllers.Main.txtSeries": "Rady", - "SSE.Controllers.Main.txtSpace": "Priestor", - "SSE.Controllers.Main.txtStarsRibbons": "Hviezdy a stuhy", - "SSE.Controllers.Main.txtStyle_Bad": "Zlý/chybný", - "SSE.Controllers.Main.txtStyle_Calculation": "Kalkulácia", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Skontrolovať bunku", - "SSE.Controllers.Main.txtStyle_Comma": "Čiarka", - "SSE.Controllers.Main.txtStyle_Currency": "Mena", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Vysvetľujúci text", - "SSE.Controllers.Main.txtStyle_Good": "Dobrý", - "SSE.Controllers.Main.txtStyle_Heading_1": "Nadpis 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Nadpis 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Nadpis 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Nadpis 4", - "SSE.Controllers.Main.txtStyle_Input": "Vstup/vstupná jednotka", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Spojená bunka", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutrálny", - "SSE.Controllers.Main.txtStyle_Normal": "Normálny", - "SSE.Controllers.Main.txtStyle_Note": "Poznámka", - "SSE.Controllers.Main.txtStyle_Output": "Výstup", - "SSE.Controllers.Main.txtStyle_Percent": "Percento", - "SSE.Controllers.Main.txtStyle_Title": "Názov", - "SSE.Controllers.Main.txtStyle_Total": "Celkovo", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Varovný text", - "SSE.Controllers.Main.txtTab": "Tabulátor", - "SSE.Controllers.Main.txtXAxis": "Os X", - "SSE.Controllers.Main.txtYAxis": "Os Y", - "SSE.Controllers.Main.unknownErrorText": "Neznáma chyba.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Váš prehliadač nie je podporovaný.", - "SSE.Controllers.Main.uploadImageExtMessage": "Neznámy formát obrázka.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Neboli načítané žiadne obrázky.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Prekročená maximálna veľkosť obrázka", - "SSE.Controllers.Main.uploadImageTextText": "Nahrávanie obrázku...", - "SSE.Controllers.Main.uploadImageTitleText": "Nahrávanie obrázku", - "SSE.Controllers.Main.waitText": "Prosím čakajte...", - "SSE.Controllers.Main.warnLicenseExceeded": "Počet súbežných spojení s dokumentovým serverom bol prekročený a dokument bude znovu otvorený iba na prezeranie.
    Pre ďalšie informácie kontaktujte prosím vášho správcu.", - "SSE.Controllers.Main.warnLicenseExp": "Vaša licencia vypršala.
    Prosím, aktualizujte si svoju licenciu a obnovte stránku.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia vypršala.
    K funkcii úprav dokumentu už nemáte prístup.
    Kontaktujte svojho administrátora, prosím.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Je potrebné obnoviť licenciu.
    K funkciám úprav dokumentov máte obmedzený prístup.
    Pre získanie úplného prístupu kontaktujte prosím svojho administrátora.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Limit %1 súbežných užívateľov bol prekročený.
    Pre ďalšie informácie kontaktujte prosím vášho správcu.", - "SSE.Controllers.Main.warnNoLicense": "Táto verzia aplikácie %1 editors má určité obmedzenia pre súbežné pripojenia k dokumentovému serveru.
    Ak potrebujete viac, zvážte aktualizáciu aktuálnej licencie alebo zakúpenie komerčnej.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Táto verzia %1 editors má určité obmedzenia pre spolupracujúcich používateľov.
    Ak potrebujete viac, zvážte aktualizáciu vašej aktuálnej licencie alebo kúpu komerčnej.", - "SSE.Controllers.Main.warnProcessRightsChange": "Bolo vám zamietnuté právo upravovať súbor.", - "SSE.Controllers.Search.textNoTextFound": "Text nebol nájdený", - "SSE.Controllers.Search.textReplaceAll": "Nahradiť všetko", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.Settings.txtDe": "Nemčina", - "SSE.Controllers.Settings.txtEn": "Angličtina", - "SSE.Controllers.Settings.txtEs": "Španielsky", - "SSE.Controllers.Settings.txtFr": "Francúzsky", - "SSE.Controllers.Settings.txtIt": "Talianský", - "SSE.Controllers.Settings.txtPl": "Poľština", - "SSE.Controllers.Settings.txtRu": "Ruština", - "SSE.Controllers.Settings.warnDownloadAs": "Ak budete pokračovať v ukladaní v tomto formáte, všetky funkcie okrem textu sa stratia.
    Ste si istý, že chcete pokračovať?", - "SSE.Controllers.Statusbar.cancelButtonText": "Zrušiť", - "SSE.Controllers.Statusbar.errNameExists": "Zošit s rovnakým názvom už existuje.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Názov hárku nemôže obsahovať znaky: \\, /, *, ?, [,], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Názov listu nesmie byť prázdny", - "SSE.Controllers.Statusbar.errorLastSheet": "Pracovný zošit musí mať aspoň jeden viditeľný pracovný list.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Pracovný list sa nedá odstrániť.", - "SSE.Controllers.Statusbar.menuDelete": "Vymazať", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplikát", - "SSE.Controllers.Statusbar.menuHide": "Skryť", - "SSE.Controllers.Statusbar.menuMore": "Viac", - "SSE.Controllers.Statusbar.menuRename": "Premenovať", - "SSE.Controllers.Statusbar.menuUnhide": "Odkryť", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Upozornenie", - "SSE.Controllers.Statusbar.strRenameSheet": "Premenovať list", - "SSE.Controllers.Statusbar.strSheet": "List", - "SSE.Controllers.Statusbar.strSheetName": "Názov listu", - "SSE.Controllers.Statusbar.textExternalLink": "Externý odkaz", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Pracovný list môže mať údaje. Vykonať operáciu?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "V tomto dokumente máte neuložené zmeny. Kliknutím na položku 'Zostať na tejto stránke' čakáte na automatické uloženie dokumentu. Kliknutím na položku 'Odísť z tejto stránky' odstránite všetky neuložené zmeny.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Opúšťate aplikáciu", - "SSE.Controllers.Toolbar.leaveButtonText": "Opustiť túto stránku", - "SSE.Controllers.Toolbar.stayButtonText": "Zostať na tejto stránke", - "SSE.Views.AddFunction.sCatDateAndTime": "Dátum a čas", - "SSE.Views.AddFunction.sCatEngineering": "Inžinierstvo", - "SSE.Views.AddFunction.sCatFinancial": "Finančné", - "SSE.Views.AddFunction.sCatInformation": "Informácie", - "SSE.Views.AddFunction.sCatLogical": "Logické", - "SSE.Views.AddFunction.sCatLookupAndReference": "Vyhľadávanie a referencie", - "SSE.Views.AddFunction.sCatMathematic": "Matematika a trigonometria", - "SSE.Views.AddFunction.sCatStatistical": "Štatistické", - "SSE.Views.AddFunction.sCatTextAndData": "Text a dáta", - "SSE.Views.AddFunction.textBack": "Späť", - "SSE.Views.AddFunction.textGroups": "Kategórie", - "SSE.Views.AddLink.textAddLink": "Pridať odkaz", - "SSE.Views.AddLink.textAddress": "Adresa", - "SSE.Views.AddLink.textDisplay": "Zobraziť", - "SSE.Views.AddLink.textExternalLink": "Externý odkaz", - "SSE.Views.AddLink.textInsert": "Vložiť", - "SSE.Views.AddLink.textInternalLink": "Interný rozsah údajov", - "SSE.Views.AddLink.textLink": "Odkaz", - "SSE.Views.AddLink.textLinkType": "Typ odkazu", - "SSE.Views.AddLink.textRange": "Rozsah", - "SSE.Views.AddLink.textRequired": "Vyžadovaný", - "SSE.Views.AddLink.textSelectedRange": "Vybraný rozsah", - "SSE.Views.AddLink.textSheet": "List", - "SSE.Views.AddLink.textTip": "Nápoveda", - "SSE.Views.AddOther.textAddComment": "Pridať komentár", - "SSE.Views.AddOther.textAddress": "Adresa", - "SSE.Views.AddOther.textBack": "Späť", - "SSE.Views.AddOther.textComment": "Komentár", - "SSE.Views.AddOther.textDone": "Hotovo", - "SSE.Views.AddOther.textFilter": "Filter", - "SSE.Views.AddOther.textFromLibrary": "Obrázok z Knižnice", - "SSE.Views.AddOther.textFromURL": "Obrázok z URL adresy", - "SSE.Views.AddOther.textImageURL": "URL obrázka", - "SSE.Views.AddOther.textInsert": "Vložiť", - "SSE.Views.AddOther.textInsertImage": "Vložiť obrázok", - "SSE.Views.AddOther.textLink": "Odkaz", - "SSE.Views.AddOther.textLinkSettings": "Nastavenia odkazu", - "SSE.Views.AddOther.textSort": "Zoradiť a filtrovať", - "SSE.Views.EditCell.textAccounting": "Účtovníctvo", - "SSE.Views.EditCell.textAddCustomColor": "Pridať užívateľsky určenú farbu", - "SSE.Views.EditCell.textAlignBottom": "Zarovnať dole", - "SSE.Views.EditCell.textAlignCenter": "Centrovať", - "SSE.Views.EditCell.textAlignLeft": "Zarovnať doľava", - "SSE.Views.EditCell.textAlignMiddle": "Zarovnať na stred", - "SSE.Views.EditCell.textAlignRight": "Zarovnať doprava", - "SSE.Views.EditCell.textAlignTop": "Zarovnať nahor", - "SSE.Views.EditCell.textAllBorders": "Všetky orámovania", - "SSE.Views.EditCell.textAngleClockwise": "Otočiť v smere hodinových ručičiek", - "SSE.Views.EditCell.textAngleCounterclockwise": "Otočiť proti smeru hodinových ručičiek", - "SSE.Views.EditCell.textBack": "Späť", - "SSE.Views.EditCell.textBorderStyle": "Štýl orámovania", - "SSE.Views.EditCell.textBottomBorder": "Spodné orámovanie", - "SSE.Views.EditCell.textCellStyle": "Štýly bunky", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Farba", - "SSE.Views.EditCell.textCurrency": "Mena", - "SSE.Views.EditCell.textCustomColor": "Užívateľsky určená farba", - "SSE.Views.EditCell.textDate": "Dátum", - "SSE.Views.EditCell.textDiagDownBorder": "Orámovanie diagonálne nadol", - "SSE.Views.EditCell.textDiagUpBorder": "Orámovanie diagonálne nahor", - "SSE.Views.EditCell.textDollar": "Dolár", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Vyplniť farbou", - "SSE.Views.EditCell.textFonts": "Písma", - "SSE.Views.EditCell.textFormat": "Formát", - "SSE.Views.EditCell.textGeneral": "Všeobecné", - "SSE.Views.EditCell.textHorizontalText": "Horizontálny Text", - "SSE.Views.EditCell.textInBorders": "Vnútorné orámovanie", - "SSE.Views.EditCell.textInHorBorder": "Vnútorné horizontálne orámovanie", - "SSE.Views.EditCell.textInteger": "Celé číslo", - "SSE.Views.EditCell.textInVertBorder": "Vnútorné vertikálne orámovanie", - "SSE.Views.EditCell.textJustified": "Podľa okrajov", - "SSE.Views.EditCell.textLeftBorder": "Ľavé orámovanie", - "SSE.Views.EditCell.textMedium": "Stredný", - "SSE.Views.EditCell.textNoBorder": "Bez orámovania", - "SSE.Views.EditCell.textNumber": "Číslo", - "SSE.Views.EditCell.textPercentage": "Percentuálny podiel", - "SSE.Views.EditCell.textPound": "Libra (britská mena)", - "SSE.Views.EditCell.textRightBorder": "Pravé orámovanie", - "SSE.Views.EditCell.textRotateTextDown": "Otočiť text nadol", - "SSE.Views.EditCell.textRotateTextUp": "Otočiť text nahor", - "SSE.Views.EditCell.textRouble": "Rubeľ", - "SSE.Views.EditCell.textScientific": "Vedecký", - "SSE.Views.EditCell.textSize": "Veľkosť", - "SSE.Views.EditCell.textText": "Text", - "SSE.Views.EditCell.textTextColor": "Farba textu", - "SSE.Views.EditCell.textTextFormat": "Formát textu", - "SSE.Views.EditCell.textTextOrientation": "Orientácia textu", - "SSE.Views.EditCell.textThick": "Hrubý/tučný", - "SSE.Views.EditCell.textThin": "Tenký", - "SSE.Views.EditCell.textTime": "Čas", - "SSE.Views.EditCell.textTopBorder": "Horné orámovanie", - "SSE.Views.EditCell.textVerticalText": "Vertikálny text", - "SSE.Views.EditCell.textWrapText": "Obtekanie textu", - "SSE.Views.EditCell.textYen": "yen/menová jednotka Japonska", - "SSE.Views.EditChart.textAddCustomColor": "Pridať užívateľsky určenú farbu", - "SSE.Views.EditChart.textAuto": "Automaticky", - "SSE.Views.EditChart.textAxisCrosses": "Kríženie os", - "SSE.Views.EditChart.textAxisOptions": "Možnosti osi", - "SSE.Views.EditChart.textAxisPosition": "Umiestnenie osi", - "SSE.Views.EditChart.textAxisTitle": "Názov osi", - "SSE.Views.EditChart.textBack": "Späť", - "SSE.Views.EditChart.textBackward": "Posunúť späť", - "SSE.Views.EditChart.textBorder": "Orámovanie", - "SSE.Views.EditChart.textBottom": "Dole", - "SSE.Views.EditChart.textChart": "Graf", - "SSE.Views.EditChart.textChartTitle": "Názov grafu", - "SSE.Views.EditChart.textColor": "Farba", - "SSE.Views.EditChart.textCrossesValue": "Prekračuje hodnotu", - "SSE.Views.EditChart.textCustomColor": "Užívateľsky určená farba", - "SSE.Views.EditChart.textDataLabels": "Popisky dát", - "SSE.Views.EditChart.textDesign": "Dizajn/náčrt", - "SSE.Views.EditChart.textDisplayUnits": "Zobrazovacie jednotky", - "SSE.Views.EditChart.textFill": "Vyplniť", - "SSE.Views.EditChart.textForward": "Posunúť vpred", - "SSE.Views.EditChart.textGridlines": "Mriežky", - "SSE.Views.EditChart.textHorAxis": "Vodorovná os", - "SSE.Views.EditChart.textHorizontal": "Vodorovný", - "SSE.Views.EditChart.textLabelOptions": "Možnosti menoviek", - "SSE.Views.EditChart.textLabelPos": "Umiestnenie menoviek", - "SSE.Views.EditChart.textLayout": "Rozloženie", - "SSE.Views.EditChart.textLeft": "Vľavo", - "SSE.Views.EditChart.textLeftOverlay": "Ľavé prekrytie", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Hlavný", - "SSE.Views.EditChart.textMajorMinor": "Hlavný a vedľajší", - "SSE.Views.EditChart.textMajorType": "Hlavná značka", - "SSE.Views.EditChart.textMaxValue": "Maximálna hodnota", - "SSE.Views.EditChart.textMinor": "Vedľajší", - "SSE.Views.EditChart.textMinorType": "Vedľajšia značka", - "SSE.Views.EditChart.textMinValue": "Minimálna hodnota", - "SSE.Views.EditChart.textNone": "Žiadny", - "SSE.Views.EditChart.textNoOverlay": "Žiadne prekrytie", - "SSE.Views.EditChart.textOverlay": "Prekrytie", - "SSE.Views.EditChart.textRemoveChart": "Odstrániť graf", - "SSE.Views.EditChart.textReorder": "Znovu usporiadať/zmena poradia", - "SSE.Views.EditChart.textRight": "Vpravo", - "SSE.Views.EditChart.textRightOverlay": "Pravé prekrytie", - "SSE.Views.EditChart.textRotated": "Otočený", - "SSE.Views.EditChart.textSize": "Veľkosť", - "SSE.Views.EditChart.textStyle": "Štýl", - "SSE.Views.EditChart.textTickOptions": "Možnosti značiek", - "SSE.Views.EditChart.textToBackground": "Presunúť do pozadia", - "SSE.Views.EditChart.textToForeground": "Premiestniť do popredia", - "SSE.Views.EditChart.textTop": "Hore", - "SSE.Views.EditChart.textType": "Typ", - "SSE.Views.EditChart.textValReverseOrder": "Hodnoty v opačnom poradí", - "SSE.Views.EditChart.textVerAxis": "Vertikálna os", - "SSE.Views.EditChart.textVertical": "Zvislý", - "SSE.Views.EditHyperlink.textBack": "Späť", - "SSE.Views.EditHyperlink.textDisplay": "Zobraziť", - "SSE.Views.EditHyperlink.textEditLink": "Upraviť odkaz", - "SSE.Views.EditHyperlink.textExternalLink": "Externý odkaz", - "SSE.Views.EditHyperlink.textInternalLink": "Interný rozsah údajov", - "SSE.Views.EditHyperlink.textLink": "Odkaz", - "SSE.Views.EditHyperlink.textLinkType": "Typ odkazu", - "SSE.Views.EditHyperlink.textRange": "Rozsah", - "SSE.Views.EditHyperlink.textRemoveLink": "Odstrániť odkaz", - "SSE.Views.EditHyperlink.textScreenTip": "Nápoveda", - "SSE.Views.EditHyperlink.textSheet": "List", - "SSE.Views.EditImage.textAddress": "Adresa", - "SSE.Views.EditImage.textBack": "Späť", - "SSE.Views.EditImage.textBackward": "Posunúť späť", - "SSE.Views.EditImage.textDefault": "Aktuálna veľkosť", - "SSE.Views.EditImage.textForward": "Posunúť vpred", - "SSE.Views.EditImage.textFromLibrary": "Obrázok z Knižnice", - "SSE.Views.EditImage.textFromURL": "Obrázok z URL adresy", - "SSE.Views.EditImage.textImageURL": "URL obrázka", - "SSE.Views.EditImage.textLinkSettings": "Nastavenia odkazu", - "SSE.Views.EditImage.textRemove": "Odstrániť obrázok", - "SSE.Views.EditImage.textReorder": "Znovu usporiadať/zmena poradia", - "SSE.Views.EditImage.textReplace": "Nahradiť", - "SSE.Views.EditImage.textReplaceImg": "Nahradiť obrázok", - "SSE.Views.EditImage.textToBackground": "Presunúť do pozadia", - "SSE.Views.EditImage.textToForeground": "Premiestniť do popredia", - "SSE.Views.EditShape.textAddCustomColor": "Pridať užívateľsky určenú farbu", - "SSE.Views.EditShape.textBack": "Späť", - "SSE.Views.EditShape.textBackward": "Posunúť späť", - "SSE.Views.EditShape.textBorder": "Orámovanie", - "SSE.Views.EditShape.textColor": "Farba", - "SSE.Views.EditShape.textCustomColor": "Užívateľsky určená farba", - "SSE.Views.EditShape.textEffects": "Efekty", - "SSE.Views.EditShape.textFill": "Vyplniť", - "SSE.Views.EditShape.textForward": "Posunúť vpred", - "SSE.Views.EditShape.textOpacity": "Priehľadnosť", - "SSE.Views.EditShape.textRemoveShape": "Odstrániť tvar", - "SSE.Views.EditShape.textReorder": "Znovu usporiadať/zmena poradia", - "SSE.Views.EditShape.textReplace": "Nahradiť", - "SSE.Views.EditShape.textSize": "Veľkosť", - "SSE.Views.EditShape.textStyle": "Štýl", - "SSE.Views.EditShape.textToBackground": "Presunúť do pozadia", - "SSE.Views.EditShape.textToForeground": "Premiestniť do popredia", - "SSE.Views.EditText.textAddCustomColor": "Pridať užívateľsky určenú farbu", - "SSE.Views.EditText.textBack": "Späť", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Užívateľsky určená farba", - "SSE.Views.EditText.textFillColor": "Vyplniť farbou", - "SSE.Views.EditText.textFonts": "Písma", - "SSE.Views.EditText.textSize": "Veľkosť", - "SSE.Views.EditText.textTextColor": "Farba textu", - "SSE.Views.FilterOptions.textClearFilter": "Vyčistiť filter", - "SSE.Views.FilterOptions.textDeleteFilter": "Vymazať filter", - "SSE.Views.FilterOptions.textFilter": "Predvoľby filtra", - "SSE.Views.Search.textByColumns": "Podľa stĺpcov", - "SSE.Views.Search.textByRows": "Podľa riadkov", - "SSE.Views.Search.textDone": "Hotovo", - "SSE.Views.Search.textFind": "Nájsť", - "SSE.Views.Search.textFindAndReplace": "Nájsť a nahradiť", - "SSE.Views.Search.textFormulas": "Vzorce", - "SSE.Views.Search.textHighlightRes": "Zvýrazniť výsledky", - "SSE.Views.Search.textLookIn": "Hľadať v", - "SSE.Views.Search.textMatchCase": "Zhodný prípad", - "SSE.Views.Search.textMatchCell": "Prispôsobiť bunku", - "SSE.Views.Search.textReplace": "Nahradiť", - "SSE.Views.Search.textSearch": "Hľadať", - "SSE.Views.Search.textSearchBy": "Hľadať", - "SSE.Views.Search.textSearchIn": "Hľadať v", - "SSE.Views.Search.textSheet": "List", - "SSE.Views.Search.textValues": "Hodnoty", - "SSE.Views.Search.textWorkbook": "Zošit", - "SSE.Views.Settings.textAbout": "O aplikácii", - "SSE.Views.Settings.textAddress": "adresa", - "SSE.Views.Settings.textApplication": "Aplikácia", - "SSE.Views.Settings.textApplicationSettings": "Nastavenia aplikácie", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Späť", - "SSE.Views.Settings.textBottom": "Dole", - "SSE.Views.Settings.textCentimeter": "Centimeter", - "SSE.Views.Settings.textCollaboration": "Spolupráca", - "SSE.Views.Settings.textColorSchemes": "Schéma farieb", - "SSE.Views.Settings.textComment": "Komentár", - "SSE.Views.Settings.textCommentingDisplay": "Zobrazenie komentárov", - "SSE.Views.Settings.textCreated": "Vytvorené", - "SSE.Views.Settings.textCreateDate": "Dátum vytvorenia", - "SSE.Views.Settings.textCustom": "Užívateľsky určený", - "SSE.Views.Settings.textCustomSize": "Užívateľsky určená veľkosť", - "SSE.Views.Settings.textDisableAll": "Zablokovať všetko", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Zablokovať všetky makrá s upozornením", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Zablokovať všetky makrá bez upozornenia", - "SSE.Views.Settings.textDisplayComments": "Komentáre", - "SSE.Views.Settings.textDisplayResolvedComments": "Vyriešené komentáre", - "SSE.Views.Settings.textDocInfo": "Informácie tabuľky", - "SSE.Views.Settings.textDocTitle": "Názov zošitu", - "SSE.Views.Settings.textDone": "Hotovo", - "SSE.Views.Settings.textDownload": "Stiahnuť", - "SSE.Views.Settings.textDownloadAs": "Stiahnuť ako...", - "SSE.Views.Settings.textEditDoc": "Upraviť dokument", - "SSE.Views.Settings.textEmail": "E-mail", - "SSE.Views.Settings.textEnableAll": "Povoliť všetko", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Povoliť všetky makrá bez oznámenia", - "SSE.Views.Settings.textExample": "Ukážka", - "SSE.Views.Settings.textFind": "Nájsť", - "SSE.Views.Settings.textFindAndReplace": "Nájsť a nahradiť", - "SSE.Views.Settings.textFormat": "Formát", - "SSE.Views.Settings.textFormulaLanguage": "Jazyk vzorcov", - "SSE.Views.Settings.textHelp": "Pomoc", - "SSE.Views.Settings.textHideGridlines": "Skryť mriežku", - "SSE.Views.Settings.textHideHeadings": "Skryť záhlavia", - "SSE.Views.Settings.textInch": "Palec", - "SSE.Views.Settings.textLandscape": "Na šírku", - "SSE.Views.Settings.textLastModified": "Naposledy upravené", - "SSE.Views.Settings.textLastModifiedBy": "Naposledy upravil(a) ", - "SSE.Views.Settings.textLeft": "Vľavo", - "SSE.Views.Settings.textLoading": "Nahrávanie...", - "SSE.Views.Settings.textLocation": "Umiestnenie", - "SSE.Views.Settings.textMacrosSettings": "Nastavenia makier", - "SSE.Views.Settings.textMargins": "Okraje", - "SSE.Views.Settings.textOrientation": "Orientácia", - "SSE.Views.Settings.textOwner": "Majiteľ", - "SSE.Views.Settings.textPoint": "Bod", - "SSE.Views.Settings.textPortrait": "Na výšku", - "SSE.Views.Settings.textPoweredBy": "Poháňaný ", - "SSE.Views.Settings.textPrint": "Tlačiť", - "SSE.Views.Settings.textR1C1Style": "Štýl referencie R1C1", - "SSE.Views.Settings.textRegionalSettings": "Miestne nastavenia", - "SSE.Views.Settings.textRight": "Vpravo", - "SSE.Views.Settings.textSettings": "Nastavenia", - "SSE.Views.Settings.textShowNotification": "Ukázať oznámenie", - "SSE.Views.Settings.textSpreadsheetFormats": "Formáty zošita", - "SSE.Views.Settings.textSpreadsheetSettings": "Nastavenie listu", - "SSE.Views.Settings.textSubject": "Predmet", - "SSE.Views.Settings.textTel": "Tel", - "SSE.Views.Settings.textTitle": "Názov", - "SSE.Views.Settings.textTop": "Hore", - "SSE.Views.Settings.textUnitOfMeasurement": "Jednotka merania", - "SSE.Views.Settings.textUploaded": "Nahrané", - "SSE.Views.Settings.textVersion": "Verzia", - "SSE.Views.Settings.unknownText": "Neznámy", - "SSE.Views.Toolbar.textBack": "Späť" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 9a8211e3d..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -1,564 +1,637 @@ { - "Common.Controllers.Collaboration.textAddReply": "Dodaj odgovor", - "Common.Controllers.Collaboration.textCancel": "Prekliči", - "Common.Controllers.Collaboration.textDeleteComment": "Izbriši komentar", - "Common.Controllers.Collaboration.textDeleteReply": "Izbriši odgovor", - "Common.Controllers.Collaboration.textDone": "Končano", - "Common.Controllers.Collaboration.textEdit": "Uredi", - "Common.Controllers.Collaboration.textEditUser": "Uporabniki, ki urejajo datoteko:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Ste prepričani da želite izbrisati ta komentar?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Želite res izbrisati ta odgovor?", - "Common.Controllers.Collaboration.textReopen": "Ponovno odpri", - "Common.Controllers.Collaboration.textResolve": "Razreši", - "Common.Controllers.Collaboration.textYes": "Da", - "Common.UI.ThemeColorPalette.textCustomColors": "Barve po meri", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardne barve", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Dodaj odgovor", - "Common.Views.Collaboration.textBack": "Nazaj", - "Common.Views.Collaboration.textCancel": "Prekliči", - "Common.Views.Collaboration.textCollaboration": "Skupinsko delo", - "Common.Views.Collaboration.textDone": "Končano", - "Common.Views.Collaboration.textEditReply": "Uredi odgovor", - "Common.Views.Collaboration.textEditUsers": "Uporabniki", - "Common.Views.Collaboration.textEditСomment": "Uredi komentar", - "Common.Views.Collaboration.textСomments": "Komentarji", - "SSE.Controllers.AddChart.txtDiagramTitle": "Naslov grafa", - "SSE.Controllers.AddChart.txtSeries": "Niz", - "SSE.Controllers.AddChart.txtXAxis": "X os", - "SSE.Controllers.AddChart.txtYAxis": "Y os", - "SSE.Controllers.AddContainer.textChart": "Graf", - "SSE.Controllers.AddContainer.textFormula": "Funkcija", - "SSE.Controllers.AddContainer.textImage": "Slika", - "SSE.Controllers.AddContainer.textOther": "Drugo", - "SSE.Controllers.AddContainer.textShape": "Oblika", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Opozorilo", - "SSE.Controllers.AddLink.textInvalidRange": "NAPAKA! Neveljaven razpon celic", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Opozorilo", - "SSE.Controllers.AddOther.textCancel": "Prekliči", - "SSE.Controllers.AddOther.textContinue": "Nadaljuj", - "SSE.Controllers.AddOther.textDelete": "Izbriši", - "SSE.Controllers.AddOther.textDeleteDraft": "Ali res želite izbrisati osnutek?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Določiti morate URL slike.", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Dejanja kopiranja, rezanja in lepljenja s kontekstnim menijem se izvajajo samo v trenutni datoteki.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Dodaj komentar", - "SSE.Controllers.DocumentHolder.menuAddLink": "Dodaj povezavo", - "SSE.Controllers.DocumentHolder.menuCell": "Celica", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopiraj", - "SSE.Controllers.DocumentHolder.menuCut": "Izreži", - "SSE.Controllers.DocumentHolder.menuDelete": "Izbriši", - "SSE.Controllers.DocumentHolder.menuEdit": "Uredi", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Zamrzni plošče", - "SSE.Controllers.DocumentHolder.menuHide": "Skrij", - "SSE.Controllers.DocumentHolder.menuMerge": "Združi", - "SSE.Controllers.DocumentHolder.menuMore": "Več", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Odpri povezavo", - "SSE.Controllers.DocumentHolder.menuPaste": "Prilepi", - "SSE.Controllers.DocumentHolder.menuShow": "Pokaži", - "SSE.Controllers.DocumentHolder.menuViewComment": "Ogled komentarja", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Opozorilo", - "SSE.Controllers.DocumentHolder.sheetCancel": "Zapri", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Kopiraj, izreži in prilepi dejanja", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne pokaži znova", - "SSE.Controllers.EditCell.textAuto": "Samodejno", - "SSE.Controllers.EditCell.textFonts": "Fonti", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "NAPAKA! Največje število podatkovnih serij na grafikonu je 255.", - "SSE.Controllers.EditChart.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
    otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", - "SSE.Controllers.EditChart.textAuto": "Samodejno", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Med obkljukanimi oznakami", - "SSE.Controllers.EditChart.textBillions": "Milijarde", - "SSE.Controllers.EditChart.textBottom": "Dno", - "SSE.Controllers.EditChart.textCenter": "Na sredino", - "SSE.Controllers.EditChart.textCross": "Križ", - "SSE.Controllers.EditChart.textCustom": "Po meri", - "SSE.Controllers.EditChart.textFixed": "Določeno", - "SSE.Controllers.EditChart.textHigh": "Visoko", - "SSE.Controllers.EditChart.textHorizontal": "Horizontalen", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Stotine", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "v", - "SSE.Controllers.EditChart.textInnerBottom": "Notranje dno", - "SSE.Controllers.EditChart.textInnerTop": "Notranji vrh", - "SSE.Controllers.EditChart.textLeft": "Levo", - "SSE.Controllers.EditChart.textLow": "Nizko", - "SSE.Controllers.EditChart.textManual": "Ročno", - "SSE.Controllers.EditChart.textMaxValue": "Maksimalna vrednost", - "SSE.Controllers.EditChart.textMillions": "Milijoni", - "SSE.Controllers.EditChart.textMinValue": "Minimalna vrednost", - "SSE.Controllers.EditChart.textNextToAxis": "Poleg osi", - "SSE.Controllers.EditChart.textNone": "nič", - "SSE.Controllers.EditChart.textNoOverlay": "Ni prekrivanja", - "SSE.Controllers.EditChart.textOnTickMarks": "Na obkljukanih oznakah", - "SSE.Controllers.EditChart.textOuterTop": "Zunanji vrh", - "SSE.Controllers.EditChart.textRight": "Desno", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Tisočine", - "SSE.Controllers.EditChart.textTop": "Vrh", - "SSE.Controllers.EditChart.textValue": "Vrednost", - "SSE.Controllers.EditContainer.textCell": "Celica", - "SSE.Controllers.EditContainer.textChart": "Graf", - "SSE.Controllers.EditContainer.textHyperlink": "Hiperpovezava", - "SSE.Controllers.EditContainer.textImage": "Slika", - "SSE.Controllers.EditContainer.textSettings": "Nastavitve", - "SSE.Controllers.EditContainer.textShape": "Oblika", - "SSE.Controllers.EditContainer.textTable": "Tabela", - "SSE.Controllers.EditContainer.textText": "Besedilo", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Opozorilo", - "SSE.Controllers.EditHyperlink.textDefault": "Izbrano območje", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Določiti morate URL slike.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Zunanja povezava", - "SSE.Controllers.EditHyperlink.textInternalLink": "Notranje območje podatkov", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Opozorilo", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Določiti morate URL slike.", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Blanks}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Izbrati morate vsaj eno vrednost", - "SSE.Controllers.FilterOptions.textErrorTitle": "Opozorilo", - "SSE.Controllers.FilterOptions.textSelectAll": "Izberi vse", - "SSE.Controllers.Main.advCSVOptions": "Izberite CSV opcijo", - "SSE.Controllers.Main.advDRMEnterPassword": "Vnesite geslo:", - "SSE.Controllers.Main.advDRMOptions": "Zaščitena datoteka", - "SSE.Controllers.Main.advDRMPassword": "Geslo", - "SSE.Controllers.Main.applyChangesTextText": "Nalaganje podatkov ...", - "SSE.Controllers.Main.applyChangesTitleText": "Nalaganje podatkov", - "SSE.Controllers.Main.closeButtonText": "Zapri datoteko", - "SSE.Controllers.Main.convertationTimeoutText": "Pretvorbena prekinitev presežena.", - "SSE.Controllers.Main.criticalErrorExtText": "Pritisnite »V redu«, da se vrnete na seznam dokumentov.", - "SSE.Controllers.Main.criticalErrorTitle": "Napaka", - "SSE.Controllers.Main.downloadErrorText": "Prenos ni uspel.", - "SSE.Controllers.Main.downloadMergeText": "Prenašanje ...", - "SSE.Controllers.Main.downloadMergeTitle": "Prenašanje", - "SSE.Controllers.Main.downloadTextText": "Prenašanje razpredelnice ...", - "SSE.Controllers.Main.downloadTitleText": "Prenašanje razpredelnice", - "SSE.Controllers.Main.errorAccessDeny": "Poskušate izvesti dejanje, za katerega nimate pravic.
    Obrnite se na skrbnika strežnika dokumentov.", - "SSE.Controllers.Main.errorArgsRange": "Napaka v vneseni formuli.
    Uporabljen je napačen razpon argumentov.", - "SSE.Controllers.Main.errorBadImageUrl": "URL slike je napačen", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Povezava s strežnikom izgubljena. Dokumenta v tem trenutku ne morete urejati.", - "SSE.Controllers.Main.errorCountArg": "Napaka v vneseni formuli.
    Uporabljena je nepravilna številka argumentov.", - "SSE.Controllers.Main.errorCountArgExceed": "Napaka v vneseni formuli.
    Število argumentov je preseženo.", - "SSE.Controllers.Main.errorDatabaseConnection": "Zunanja napaka.
    Napaka povezave baze podatkov. V primeru, da napaka ni odpravljena, prosim kontaktirajte ekipo za pomoč.", - "SSE.Controllers.Main.errorDataEncrypted": "Prejete so šifrirane spremembe, ki jih ni mogoče razvozlati.", - "SSE.Controllers.Main.errorDataRange": "Nepravilen obseg podatkov.", - "SSE.Controllers.Main.errorDefaultMessage": "Koda napake: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Med delom z dokumentom je prišlo do napake.
    Z možnostjo »Prenos« shranite varnostno kopijo datoteke na trdi disk računalnika.", - "SSE.Controllers.Main.errorFileRequest": "Zunanja napaka.
    Napaka zahteve datoteke. Prosim kontaktirijate pomoč, če napaka ni odpravljena.", - "SSE.Controllers.Main.errorFileVKey": "Zunanja napaka.
    Nepravilen varnostni ključ. Prosim kontaktirajte pomoč, če napaka ni odpravljena.", - "SSE.Controllers.Main.errorFillRange": "Ni bilo mogoče izponiti izbranega območja celic.
    Vse združene celice morajo biti enake velikosti.", - "SSE.Controllers.Main.errorFormulaName": "Napaka v vneseni formuli.
    Uporabljeno je nepravilno ime formule.", - "SSE.Controllers.Main.errorFormulaParsing": "Notranja napaka pri razčlenjevanju formule.", - "SSE.Controllers.Main.errorInvalidRef": "Vnesite pravilno ime za izbiro ali veljavno referenco, ki jo želite najti.", - "SSE.Controllers.Main.errorKeyEncrypt": "Neznan ključni deskriptor", - "SSE.Controllers.Main.errorKeyExpire": "Ključni deskriptor je potekel", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Nalaganje dokumenta ni uspelo. Izberite drugo datoteko.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Spajanje je neuspešno", - "SSE.Controllers.Main.errorMoveRange": "Dela združene celice ni mogoče spremeniti", - "SSE.Controllers.Main.errorProcessSaveResult": "Shranjevanje ni bilo uspešno", - "SSE.Controllers.Main.errorStockChart": "Nepravilen vrstni red vrstic. Za izgradnjo razpredelnice delnic podatke na strani navedite v sledečem vrstnem redu:
    otvoritvena cena, maksimalna cena, minimalna cena, zaključna cena.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Zunanja napaka.
    Nepričakovan GUID. Če težava ni odstranjena prosim kontaktirajte pomoč.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Povezava s spletom je bila obnovljena in spremenjena je različica datoteke.
    Preden nadaljujete z delom, morate datoteko prenesti ali kopirati njeno vsebino, da se prepričate, da se nič ne izgubi, in nato znova naložite to stran.", - "SSE.Controllers.Main.errorViewerDisconnect": "Povezava je izgubljena. Dokument si lahko še vedno ogledate,
    vendar ga ne boste mogli prenesti, dokler se povezava ne vzpostavi in ​​stran ponovno naloži.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Napaka v vneseni formuli.
    Uporabljeno je napačno število oklepajev.", - "SSE.Controllers.Main.errorWrongOperator": "Napaka v vneseni formuli.
    Uporabljen je napačen operator.", - "SSE.Controllers.Main.leavePageText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", - "SSE.Controllers.Main.loadFontsTextText": "Nalaganje podatkov ...", - "SSE.Controllers.Main.loadFontsTitleText": "Nalaganje podatkov", - "SSE.Controllers.Main.loadFontTextText": "Nalaganje podatkov ...", - "SSE.Controllers.Main.loadFontTitleText": "Nalaganje podatkov", - "SSE.Controllers.Main.loadImagesTextText": "Nalaganje slik ...", - "SSE.Controllers.Main.loadImagesTitleText": "Nalaganje slik", - "SSE.Controllers.Main.loadImageTextText": "Nalaganje slike ...", - "SSE.Controllers.Main.loadImageTitleText": "Nalaganje slike", - "SSE.Controllers.Main.loadingDocumentTextText": "Nalaganja preglednice ...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Nalaganje razpredelnice", - "SSE.Controllers.Main.mailMergeLoadFileText": "Nalaganje vira podatkov ...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Nalaganje vira podatkov", - "SSE.Controllers.Main.notcriticalErrorTitle": "Opozorilo", - "SSE.Controllers.Main.openErrorText": "Prišlo je do težave med odpiranjem datoteke.", - "SSE.Controllers.Main.openTextText": "Odpiranje dokumenta ...", - "SSE.Controllers.Main.openTitleText": "Odpiranje dokumenta", - "SSE.Controllers.Main.pastInMergeAreaError": "Dela združene celice ni mogoče spremeniti", - "SSE.Controllers.Main.printTextText": "Tiskanje dokumenta ...", - "SSE.Controllers.Main.printTitleText": "Tiskanje dokumenta", - "SSE.Controllers.Main.reloadButtonText": "Osveži stran", - "SSE.Controllers.Main.requestEditFailedMessageText": "Nekdo v tem trenutku ureja ta dokument. Prosim ponovno poskusite kasneje.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Dostop zavrnjen", - "SSE.Controllers.Main.saveErrorText": "Prišlo je do težave med shranjevanjem datoteke.", - "SSE.Controllers.Main.savePreparingText": "Priprava na shranjevanje", - "SSE.Controllers.Main.savePreparingTitle": "Priprava na shranjevanje. Prosim počakajte ...", - "SSE.Controllers.Main.saveTextText": "Shranjevanje dokumenta ...", - "SSE.Controllers.Main.saveTitleText": "Shranjevanje dokumenta", - "SSE.Controllers.Main.textAnonymous": "Anonimno", - "SSE.Controllers.Main.textBack": "Nazaj", - "SSE.Controllers.Main.textBuyNow": "Obišči spletno mesto", - "SSE.Controllers.Main.textCancel": "Zapri", - "SSE.Controllers.Main.textClose": "Zapri", - "SSE.Controllers.Main.textContactUs": "Kontaktirajte oddelek za prodajo", - "SSE.Controllers.Main.textCustomLoader": "Upoštevajte, da v skladu s pogoji licence niste upravičeni do menjave Loader-ja.
    Za ponudbo se obrnite na naš prodajni oddelek.", - "SSE.Controllers.Main.textDone": "Končano", - "SSE.Controllers.Main.textLoadingDocument": "Nalaganje razpredelnice", - "SSE.Controllers.Main.textNo": "Ne", - "SSE.Controllers.Main.textNoLicenseTitle": "%1 omejitev povezave", - "SSE.Controllers.Main.textOK": "V redu", - "SSE.Controllers.Main.textPaidFeature": "Plačljive funkcije", - "SSE.Controllers.Main.textPassword": "Geslo", - "SSE.Controllers.Main.textPreloader": "Nalaganje ...", - "SSE.Controllers.Main.textRemember": "Zapomni si mojo izbiro", - "SSE.Controllers.Main.textShape": "Oblika", - "SSE.Controllers.Main.textUsername": "Uporabniško ime", - "SSE.Controllers.Main.textYes": "Da", - "SSE.Controllers.Main.titleLicenseExp": "Licenca je potekla", - "SSE.Controllers.Main.titleServerVersion": "Urednik je bil posodobljen", - "SSE.Controllers.Main.titleUpdateVersion": "Različica spremenjena", - "SSE.Controllers.Main.txtAccent": "Preglas", - "SSE.Controllers.Main.txtArt": "Vaše besedilo pride tukaj.", - "SSE.Controllers.Main.txtBasicShapes": "Osnovne oblike", - "SSE.Controllers.Main.txtButtons": "Gumbi", - "SSE.Controllers.Main.txtCallouts": "Oblački", - "SSE.Controllers.Main.txtCharts": "Grafi", - "SSE.Controllers.Main.txtDelimiter": "Ločilo", - "SSE.Controllers.Main.txtDiagramTitle": "Naslov grafa", - "SSE.Controllers.Main.txtEditingMode": "Nastavi način urejanja ...", - "SSE.Controllers.Main.txtEncoding": "Kodiranje", - "SSE.Controllers.Main.txtErrorLoadHistory": "Nalaganje zgodovine je bilo neuspešno", - "SSE.Controllers.Main.txtFiguredArrows": "Figurirane puščice", - "SSE.Controllers.Main.txtLines": "Vrstice", - "SSE.Controllers.Main.txtMath": "Matematika", - "SSE.Controllers.Main.txtRectangles": "Pravokotniki", - "SSE.Controllers.Main.txtSeries": "Niz", - "SSE.Controllers.Main.txtSpace": "Razmik", - "SSE.Controllers.Main.txtStarsRibbons": "Zvezde & Trakovi", - "SSE.Controllers.Main.txtStyle_Bad": "Slabo", - "SSE.Controllers.Main.txtStyle_Calculation": "Računaje", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Preveri celico", - "SSE.Controllers.Main.txtStyle_Comma": "Vejica", - "SSE.Controllers.Main.txtStyle_Currency": "Valuta", - "SSE.Controllers.Main.txtStyle_Good": "Dobro", - "SSE.Controllers.Main.txtStyle_Heading_1": "Naslov 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Naslov 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Naslov 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Naslov 4", - "SSE.Controllers.Main.txtStyle_Input": "Vnos", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Povezana celica", - "SSE.Controllers.Main.txtStyle_Normal": "Normalno", - "SSE.Controllers.Main.txtStyle_Note": "Opomba", - "SSE.Controllers.Main.txtStyle_Output": "Izpis", - "SSE.Controllers.Main.txtStyle_Percent": "Odstotek", - "SSE.Controllers.Main.txtStyle_Title": "Naslov", - "SSE.Controllers.Main.txtTab": "Zavihek", - "SSE.Controllers.Main.txtXAxis": "X os", - "SSE.Controllers.Main.txtYAxis": "Y os", - "SSE.Controllers.Main.unknownErrorText": "Neznana napaka.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Vaš brskalnik ni podprt.", - "SSE.Controllers.Main.uploadImageExtMessage": "Neznan format slike.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Ni naloženih slik.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Limit maksimalne velikosti slike presežen.", - "SSE.Controllers.Main.uploadImageTextText": "Nalaganje slike ...", - "SSE.Controllers.Main.uploadImageTitleText": "Nalaganje slike", - "SSE.Controllers.Main.waitText": "Prosimo počakajte ...", - "SSE.Controllers.Main.warnLicenseExceeded": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
    Če želite izvedeti več, se obrnite na skrbnika.", - "SSE.Controllers.Main.warnLicenseExp": "Vaša licnenca je potekla.
    Prosimo nadgradite licenco in osvežite stran.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Dosegli ste omejitev uporabnikov za %1 urednike. Če želite izvedeti več, se obrnite na skrbnika.", - "SSE.Controllers.Main.warnNoLicense": "Dosegli ste omejitev za istočasno povezavo z urejevalniki %1. Ta dokument bo na voljo samo za ogled.
    Za osebne pogoje nadgradnje se obrnite na% 1 prodajno ekipo.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Dosegli ste omejitev uporabnika za %1 urednike. Za osebne pogoje nadgradnje se obrnite na %1 prodajno ekipo.", - "SSE.Controllers.Main.warnProcessRightsChange": "Pravica, da urejate datoteko je bila zavrnjena.", - "SSE.Controllers.Search.textNoTextFound": "Besedila ni mogoče najti", - "SSE.Controllers.Search.textReplaceAll": "Zamenjaj vse", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Opozorilo", - "SSE.Controllers.Settings.warnDownloadAs": "Če boste nadaljevali s shranjevanje v tem formatu bodo vse funkcije razen besedila izgubljene.
    Ste prepričani, da želite nadaljevati?", - "SSE.Controllers.Statusbar.cancelButtonText": "Zapri", - "SSE.Controllers.Statusbar.errNameExists": "Delovni zvezek s tem imenom že obstaja.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Ime lista ne more vsebovati znakov: \\\\, /, *,?, [,],:", - "SSE.Controllers.Statusbar.errNotEmpty": "Ime lista ne sme biti prazno", - "SSE.Controllers.Statusbar.errorLastSheet": "Delovni zvezek mora imeti vsaj eno vidno delovno stran.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Ni mogoče izbrisati delovnega lista.", - "SSE.Controllers.Statusbar.menuDelete": "Izbriši", - "SSE.Controllers.Statusbar.menuDuplicate": "Podvoji", - "SSE.Controllers.Statusbar.menuHide": "Skrij", - "SSE.Controllers.Statusbar.menuMore": "Več", - "SSE.Controllers.Statusbar.menuRename": "Preimenuj", - "SSE.Controllers.Statusbar.menuUnhide": "Prikaži", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Opozorilo", - "SSE.Controllers.Statusbar.strRenameSheet": "Preimenuj zvezek", - "SSE.Controllers.Statusbar.strSheet": "Stran", - "SSE.Controllers.Statusbar.strSheetName": "Ime strani", - "SSE.Controllers.Statusbar.textExternalLink": "Zunanja povezava", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "V tem dokumentu se nahajajo neshranjene spremembe. Kliknite »Ostani na tej strani«, da počakate na samodejno shranjevanje dokumenta. Kliknite »Zapusti to stran«, če želite zavreči vse neshranjene spremembe.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Zapuščate aplikacijo", - "SSE.Controllers.Toolbar.leaveButtonText": "Zapusti to stran", - "SSE.Controllers.Toolbar.stayButtonText": "Ostani na tej strani", - "SSE.Views.AddFunction.sCatDateAndTime": "Datum in čas", - "SSE.Views.AddFunction.sCatEngineering": "Inžinirstvo", - "SSE.Views.AddFunction.sCatFinancial": "Finance", - "SSE.Views.AddFunction.sCatInformation": "Informacije", - "SSE.Views.AddFunction.sCatLogical": "Logika", - "SSE.Views.AddFunction.sCatLookupAndReference": "Iskanje in reference", - "SSE.Views.AddFunction.sCatMathematic": "Matematika in trigonometrija", - "SSE.Views.AddFunction.sCatStatistical": "Statistika", - "SSE.Views.AddFunction.sCatTextAndData": "Besedilo in podatki", - "SSE.Views.AddFunction.textBack": "Nazaj", - "SSE.Views.AddFunction.textGroups": "Kategorije", - "SSE.Views.AddLink.textAddLink": "Dodaj povezavo", - "SSE.Views.AddLink.textAddress": "Naslov", - "SSE.Views.AddLink.textDisplay": "Prikaži", - "SSE.Views.AddLink.textExternalLink": "Zunanja povezava", - "SSE.Views.AddLink.textInsert": "Vstavi", - "SSE.Views.AddLink.textInternalLink": "Notranje območje podatkov", - "SSE.Views.AddLink.textLink": "Povezava", - "SSE.Views.AddLink.textLinkType": "Vrsta povezave", - "SSE.Views.AddLink.textRange": "Razpon", - "SSE.Views.AddLink.textRequired": "Zahtevano", - "SSE.Views.AddLink.textSelectedRange": "Izbrano območje", - "SSE.Views.AddLink.textSheet": "Stran", - "SSE.Views.AddLink.textTip": "Nasvet", - "SSE.Views.AddOther.textAddComment": "Dodaj komentar", - "SSE.Views.AddOther.textAddress": "Naslov", - "SSE.Views.AddOther.textBack": "Nazaj", - "SSE.Views.AddOther.textComment": "Komentar", - "SSE.Views.AddOther.textDone": "Končano", - "SSE.Views.AddOther.textFilter": "Filter", - "SSE.Views.AddOther.textFromLibrary": "Slika iz knjižnice", - "SSE.Views.AddOther.textFromURL": "Slika iz URL", - "SSE.Views.AddOther.textImageURL": "URL naslov slike", - "SSE.Views.AddOther.textInsert": "Vstavi", - "SSE.Views.AddOther.textInsertImage": "Vstavi sliko", - "SSE.Views.AddOther.textLink": "Povezava", - "SSE.Views.AddOther.textLinkSettings": "Nastavitve povezave", - "SSE.Views.AddOther.textSort": "Razvrsti in filtriraj", - "SSE.Views.EditCell.textAccounting": "Računovodstvo", - "SSE.Views.EditCell.textAddCustomColor": "Dodaj barvo po meri", - "SSE.Views.EditCell.textAlignBottom": "Poravnaj dno", - "SSE.Views.EditCell.textAlignCenter": "Poravnava na sredino", - "SSE.Views.EditCell.textAlignLeft": "Poravnaj levo", - "SSE.Views.EditCell.textAlignMiddle": "Poravnaj na sredino", - "SSE.Views.EditCell.textAlignRight": "Poravnaj desno", - "SSE.Views.EditCell.textAlignTop": "Poravnaj na vrh", - "SSE.Views.EditCell.textAllBorders": "Vse obrobe", - "SSE.Views.EditCell.textAngleClockwise": "Kot v smeri urinega kazalca", - "SSE.Views.EditCell.textAngleCounterclockwise": "Kot v nasprotni smeri urinega kazalca", - "SSE.Views.EditCell.textBack": "Nazaj", - "SSE.Views.EditCell.textBorderStyle": "Slogi obrob", - "SSE.Views.EditCell.textBottomBorder": "Obrobe gumbov", - "SSE.Views.EditCell.textCellStyle": "Oblikovanje celice", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Barva", - "SSE.Views.EditCell.textCurrency": "Valuta", - "SSE.Views.EditCell.textCustomColor": "Barva po meri", - "SSE.Views.EditCell.textDate": "Datum", - "SSE.Views.EditCell.textDiagDownBorder": "Diagonalna spodnja meja", - "SSE.Views.EditCell.textDiagUpBorder": "Diagonalna zgornja meja", - "SSE.Views.EditCell.textDollar": "Ameriški dolar ", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Barva za zapolnitev", - "SSE.Views.EditCell.textFonts": "Fonti", - "SSE.Views.EditCell.textFormat": "Format", - "SSE.Views.EditCell.textGeneral": "Splošno", - "SSE.Views.EditCell.textHorizontalText": "Horizontalno besedilo", - "SSE.Views.EditCell.textInBorders": "Vstavi meje", - "SSE.Views.EditCell.textInteger": "Celoštevilčno", - "SSE.Views.EditCell.textJustified": "Obojestransko", - "SSE.Views.EditCell.textMedium": "Srednje", - "SSE.Views.EditCell.textNoBorder": "Brez obrob", - "SSE.Views.EditCell.textNumber": "Številka", - "SSE.Views.EditCell.textPercentage": "Odstotek", - "SSE.Views.EditCell.textPound": "Britanski funt", - "SSE.Views.EditCell.textScientific": "Znanstveni", - "SSE.Views.EditCell.textSize": "Velikost", - "SSE.Views.EditCell.textText": "Besedilo", - "SSE.Views.EditCell.textTextColor": "Barva besedila", - "SSE.Views.EditCell.textTextFormat": "Besedilna formula", - "SSE.Views.EditCell.textTextOrientation": "Orientacija besedila", - "SSE.Views.EditCell.textThick": "Širok", - "SSE.Views.EditCell.textThin": "Ozek", - "SSE.Views.EditCell.textTime": "Čas", - "SSE.Views.EditCell.textVerticalText": "Vertikalno besedilo", - "SSE.Views.EditCell.textWrapText": "Ukrivi besedilo", - "SSE.Views.EditChart.textAddCustomColor": "Dodaj barvo po meri", - "SSE.Views.EditChart.textAuto": "Samodejno", - "SSE.Views.EditChart.textAxisCrosses": "Križi osi", - "SSE.Views.EditChart.textAxisOptions": "Možnosti osi", - "SSE.Views.EditChart.textAxisPosition": "Položaj osi", - "SSE.Views.EditChart.textAxisTitle": "Naziv osi", - "SSE.Views.EditChart.textBack": "Nazaj", - "SSE.Views.EditChart.textBackward": "Premakni nazaj", - "SSE.Views.EditChart.textBorder": "Obrobe", - "SSE.Views.EditChart.textBottom": "Dno", - "SSE.Views.EditChart.textChart": "Graf", - "SSE.Views.EditChart.textChartTitle": "Naslov grafa", - "SSE.Views.EditChart.textColor": "Barva", - "SSE.Views.EditChart.textCrossesValue": "Vrednost preseka", - "SSE.Views.EditChart.textCustomColor": "Barva po meri", - "SSE.Views.EditChart.textDataLabels": "Oznake podatkov", - "SSE.Views.EditChart.textDesign": "Oblikovanje", - "SSE.Views.EditChart.textDisplayUnits": "Prikaži enote", - "SSE.Views.EditChart.textFill": "Zapolni", - "SSE.Views.EditChart.textForward": "Premakni naprej", - "SSE.Views.EditChart.textGridlines": "Mreža", - "SSE.Views.EditChart.textHorAxis": "Horizontalne osi", - "SSE.Views.EditChart.textHorizontal": "Horizontalno", - "SSE.Views.EditChart.textLabelOptions": "Možnosti oznake", - "SSE.Views.EditChart.textLabelPos": "Položaj oznake", - "SSE.Views.EditChart.textLayout": "Postavitev", - "SSE.Views.EditChart.textLeft": "Levo", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Primarni", - "SSE.Views.EditChart.textMajorMinor": "Primarni in sekundarni", - "SSE.Views.EditChart.textMajorType": "Primarna vrsta", - "SSE.Views.EditChart.textMaxValue": "Maksimalna vrednost", - "SSE.Views.EditChart.textMinor": "Majhen", - "SSE.Views.EditChart.textMinorType": "Manjša vrsta", - "SSE.Views.EditChart.textMinValue": "Minimalna vrednost", - "SSE.Views.EditChart.textNone": "nič", - "SSE.Views.EditChart.textNoOverlay": "Ni prekrivanja", - "SSE.Views.EditChart.textRemoveChart": "Odstrani graf", - "SSE.Views.EditChart.textReorder": "Preuredi", - "SSE.Views.EditChart.textRight": "Desno", - "SSE.Views.EditChart.textSize": "Velikost", - "SSE.Views.EditChart.textStyle": "Slog", - "SSE.Views.EditChart.textToBackground": "Pošlji v ozadje", - "SSE.Views.EditChart.textToForeground": "Premakni v ospredje", - "SSE.Views.EditChart.textTop": "Vrh", - "SSE.Views.EditChart.textValReverseOrder": "Vrednosti v obratnem vrstnem redu", - "SSE.Views.EditChart.textVerAxis": "Vertikalne osi", - "SSE.Views.EditChart.textVertical": "Vertikalen", - "SSE.Views.EditHyperlink.textBack": "Nazaj", - "SSE.Views.EditHyperlink.textDisplay": "Prikaži", - "SSE.Views.EditHyperlink.textEditLink": "Uredi povezavo", - "SSE.Views.EditHyperlink.textExternalLink": "Zunanja povezava", - "SSE.Views.EditHyperlink.textInternalLink": "Notranje območje podatkov", - "SSE.Views.EditHyperlink.textLink": "Povezava", - "SSE.Views.EditHyperlink.textLinkType": "Vrsta povezave", - "SSE.Views.EditHyperlink.textRange": "Razpon", - "SSE.Views.EditHyperlink.textRemoveLink": "Odstrani povezavo", - "SSE.Views.EditHyperlink.textScreenTip": "Nasvet", - "SSE.Views.EditHyperlink.textSheet": "Stran", - "SSE.Views.EditImage.textAddress": "Naslov", - "SSE.Views.EditImage.textBack": "Nazaj", - "SSE.Views.EditImage.textBackward": "Premakni nazaj", - "SSE.Views.EditImage.textDefault": "Dejanska velikost", - "SSE.Views.EditImage.textForward": "Premakni naprej", - "SSE.Views.EditImage.textFromLibrary": "Slika iz knjižnice", - "SSE.Views.EditImage.textFromURL": "Slika iz URL", - "SSE.Views.EditImage.textImageURL": "URL naslov slike", - "SSE.Views.EditImage.textLinkSettings": "Nastavitve povezave", - "SSE.Views.EditImage.textRemove": "Odstrani sliko", - "SSE.Views.EditImage.textReorder": "Preuredi", - "SSE.Views.EditImage.textReplace": "Zamenjaj", - "SSE.Views.EditImage.textReplaceImg": "Zamenjaj sliko", - "SSE.Views.EditImage.textToBackground": "Pošlji v ozadje", - "SSE.Views.EditImage.textToForeground": "Premakni v ospredje", - "SSE.Views.EditShape.textAddCustomColor": "Dodaj barvo po meri", - "SSE.Views.EditShape.textBack": "Nazaj", - "SSE.Views.EditShape.textBackward": "Premakni nazaj", - "SSE.Views.EditShape.textBorder": "Obrobe", - "SSE.Views.EditShape.textColor": "Barva", - "SSE.Views.EditShape.textCustomColor": "Barva po meri", - "SSE.Views.EditShape.textEffects": "Učinki", - "SSE.Views.EditShape.textFill": "Zapolni", - "SSE.Views.EditShape.textForward": "Premakni naprej", - "SSE.Views.EditShape.textOpacity": "Prosojnost", - "SSE.Views.EditShape.textRemoveShape": "Odstrani obliko", - "SSE.Views.EditShape.textReorder": "Preuredi", - "SSE.Views.EditShape.textReplace": "Zamenjaj", - "SSE.Views.EditShape.textSize": "Velikost", - "SSE.Views.EditShape.textStyle": "Slog", - "SSE.Views.EditShape.textToBackground": "Pošlji v ozadje", - "SSE.Views.EditShape.textToForeground": "Premakni v ospredje", - "SSE.Views.EditText.textAddCustomColor": "Dodaj barvo po meri", - "SSE.Views.EditText.textBack": "Nazaj", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Barva po meri", - "SSE.Views.EditText.textFillColor": "Barva za zapolnitev", - "SSE.Views.EditText.textFonts": "Fonti", - "SSE.Views.EditText.textSize": "Velikost", - "SSE.Views.EditText.textTextColor": "Barva besedila", - "SSE.Views.FilterOptions.textClearFilter": "Počisti filter", - "SSE.Views.FilterOptions.textDeleteFilter": "Odstrani filtre", - "SSE.Views.FilterOptions.textFilter": "Možnosti filtra", - "SSE.Views.Search.textByColumns": "Po stolpcih", - "SSE.Views.Search.textByRows": "Po vrsticah", - "SSE.Views.Search.textDone": "Končano", - "SSE.Views.Search.textFind": "Najdi", - "SSE.Views.Search.textFindAndReplace": "Najdi in zamenjaj", - "SSE.Views.Search.textFormulas": "Formule", - "SSE.Views.Search.textHighlightRes": "Označi rezultate", - "SSE.Views.Search.textLookIn": "Poglej v", - "SSE.Views.Search.textReplace": "Zamenjaj", - "SSE.Views.Search.textSearch": "Iskanje", - "SSE.Views.Search.textSearchBy": "Iskanje", - "SSE.Views.Search.textSearchIn": "Išči v", - "SSE.Views.Search.textSheet": "Stran", - "SSE.Views.Search.textValues": "Vrednosti", - "SSE.Views.Search.textWorkbook": "Delovni zvezek", - "SSE.Views.Settings.textAbout": "O programu", - "SSE.Views.Settings.textAddress": "naslov", - "SSE.Views.Settings.textApplication": "Aplikacija", - "SSE.Views.Settings.textApplicationSettings": "Nastavitve aplikacije", - "SSE.Views.Settings.textAuthor": "Avtor", - "SSE.Views.Settings.textBack": "Nazaj", - "SSE.Views.Settings.textBottom": "Dno", - "SSE.Views.Settings.textCentimeter": "Centimeter", - "SSE.Views.Settings.textCollaboration": "Skupinsko delo", - "SSE.Views.Settings.textColorSchemes": "Barvna shema", - "SSE.Views.Settings.textComment": "Komentar", - "SSE.Views.Settings.textCommentingDisplay": "Prikaz komentarjev", - "SSE.Views.Settings.textCreated": "Ustvarjeno", - "SSE.Views.Settings.textCreateDate": "Datum nastanka", - "SSE.Views.Settings.textCustom": "Po meri", - "SSE.Views.Settings.textCustomSize": "Velikost po meri", - "SSE.Views.Settings.textDisableAll": "Onemogoči vse", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Onemogoči vse makroje z obvestilom", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Onemogoči vse makroje brez obvestila", - "SSE.Views.Settings.textDisplayComments": "Komentarji", - "SSE.Views.Settings.textDisplayResolvedComments": "Reši komentar", - "SSE.Views.Settings.textDocInfo": "Informacije o tabeli", - "SSE.Views.Settings.textDone": "Končano", - "SSE.Views.Settings.textDownload": "Prenesi", - "SSE.Views.Settings.textDownloadAs": "Prenesi kot ...", - "SSE.Views.Settings.textEditDoc": "Uredi dokument", - "SSE.Views.Settings.textEmail": "e-naslov", - "SSE.Views.Settings.textEnableAll": "Omogoči vse", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Omogoči vse makroje brez obvestila", - "SSE.Views.Settings.textExample": "Primer", - "SSE.Views.Settings.textFind": "Najdi", - "SSE.Views.Settings.textFindAndReplace": "Najdi in zamenjaj", - "SSE.Views.Settings.textFormat": "Format", - "SSE.Views.Settings.textFormulaLanguage": "Jezik formule", - "SSE.Views.Settings.textHelp": "Pomoč", - "SSE.Views.Settings.textHideGridlines": "Skrij mrežne črte", - "SSE.Views.Settings.textHideHeadings": "Skrij naslove", - "SSE.Views.Settings.textInch": "Palec", - "SSE.Views.Settings.textLandscape": "Ležeče", - "SSE.Views.Settings.textLastModified": "Nazadnje spremenjeno", - "SSE.Views.Settings.textLastModifiedBy": "Nazadnje spremenjenil/a", - "SSE.Views.Settings.textLeft": "Levo", - "SSE.Views.Settings.textLoading": "Nalaganje ...", - "SSE.Views.Settings.textLocation": "Lokacija", - "SSE.Views.Settings.textMacrosSettings": "Nastavitve makrojev", - "SSE.Views.Settings.textMargins": "Robovi", - "SSE.Views.Settings.textOrientation": "Usmerjenost", - "SSE.Views.Settings.textOwner": "Lastnik", - "SSE.Views.Settings.textPoint": "Točka", - "SSE.Views.Settings.textPortrait": "Pokončno", - "SSE.Views.Settings.textPoweredBy": "Poganja", - "SSE.Views.Settings.textPrint": "Natisni", - "SSE.Views.Settings.textRegionalSettings": "Regionalne nastavitve", - "SSE.Views.Settings.textRight": "Desno", - "SSE.Views.Settings.textSettings": "Nastavitve", - "SSE.Views.Settings.textShowNotification": "Prikaži obvestila", - "SSE.Views.Settings.textSubject": "Zadeva", - "SSE.Views.Settings.textTel": "Telefon", - "SSE.Views.Settings.textTitle": "Naslov", - "SSE.Views.Settings.textTop": "Vrh", - "SSE.Views.Settings.textUnitOfMeasurement": "Merilna enota", - "SSE.Views.Settings.textUploaded": "Naloženo", - "SSE.Views.Settings.textVersion": "Različica", - "SSE.Views.Settings.unknownText": "Neznan", - "SSE.Views.Toolbar.textBack": "Nazaj" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index d04458d65..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -1,485 +1,637 @@ { - "Common.UI.ThemeColorPalette.textStandartColors": "Standart Renkler", - "Common.UI.ThemeColorPalette.textThemeColors": "Tema Renkleri", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "SSE.Controllers.AddChart.txtDiagramTitle": "Grafik başlığı", - "SSE.Controllers.AddChart.txtSeries": "Seriler", - "SSE.Controllers.AddChart.txtXAxis": "X Ekseni", - "SSE.Controllers.AddChart.txtYAxis": "Y Ekseni", - "SSE.Controllers.AddContainer.textChart": "Grafik", - "SSE.Controllers.AddContainer.textFormula": "Fonksiyon", - "SSE.Controllers.AddContainer.textImage": "Resim", - "SSE.Controllers.AddContainer.textOther": "Diğer", - "SSE.Controllers.AddContainer.textShape": "Şekil", - "SSE.Controllers.AddLink.textInvalidRange": "HATA! Geçersiz hücre aralığı", - "SSE.Controllers.AddLink.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmak zorundadır", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", - "SSE.Controllers.AddOther.txtNotUrl": "Bu alan 'http://www.example.com' formatında bir URL olmak zorundadır", - "SSE.Controllers.DocumentHolder.menuAddLink": "Link Ekle", - "SSE.Controllers.DocumentHolder.menuCell": "Hücre", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopyala", - "SSE.Controllers.DocumentHolder.menuCut": "Kes", - "SSE.Controllers.DocumentHolder.menuDelete": "Sil", - "SSE.Controllers.DocumentHolder.menuEdit": "Düzenle", - "SSE.Controllers.DocumentHolder.menuHide": "Gizle", - "SSE.Controllers.DocumentHolder.menuMerge": "Birleştir", - "SSE.Controllers.DocumentHolder.menuMore": "Daha fazla", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Linki Aç", - "SSE.Controllers.DocumentHolder.menuPaste": "Yapıştır", - "SSE.Controllers.DocumentHolder.menuShow": "Göster", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Birleştirmeyi kaldır", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Kaydırmayı kaldır", - "SSE.Controllers.DocumentHolder.menuWrap": "Metni Kaydır", - "SSE.Controllers.DocumentHolder.sheetCancel": "İptal", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Sadece üst sol hücredeki veri birleştirilmiş hücrede kalacaktır.
    Devam etmek istediğinizden emin misiniz?", - "SSE.Controllers.EditCell.textAuto": "Otomatik", - "SSE.Controllers.EditCell.textFonts": "Yazı Tipleri", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "HATA! Veri serisi grafik başına en fazla 255 olabilir.", - "SSE.Controllers.EditChart.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
    açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı.", - "SSE.Controllers.EditChart.textAuto": "Otomatik", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Tik İşaretleri Arasında", - "SSE.Controllers.EditChart.textBillions": "Milyar", - "SSE.Controllers.EditChart.textBottom": "Alt", - "SSE.Controllers.EditChart.textCenter": "Orta", - "SSE.Controllers.EditChart.textCross": "Çarpı", - "SSE.Controllers.EditChart.textCustom": "Özel", - "SSE.Controllers.EditChart.textFit": "Genişliğe Sığdır", - "SSE.Controllers.EditChart.textFixed": "Sabit", - "SSE.Controllers.EditChart.textHigh": "Yüksek", - "SSE.Controllers.EditChart.textHorizontal": "Yatay", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Yüzler", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "içinde", - "SSE.Controllers.EditChart.textInnerBottom": "İç Alt", - "SSE.Controllers.EditChart.textInnerTop": "İç Üst", - "SSE.Controllers.EditChart.textLeft": "Sol", - "SSE.Controllers.EditChart.textLeftOverlay": "Sol Bindirme", - "SSE.Controllers.EditChart.textLow": "Düşük", - "SSE.Controllers.EditChart.textManual": "Manüel", - "SSE.Controllers.EditChart.textMaxValue": "Maksimum Değer", - "SSE.Controllers.EditChart.textMillions": "Milyon", - "SSE.Controllers.EditChart.textMinValue": "Minimum Değer", - "SSE.Controllers.EditChart.textNextToAxis": "Eksen yanına", - "SSE.Controllers.EditChart.textNone": "Hiçbiri", - "SSE.Controllers.EditChart.textNoOverlay": "Bindirme yok", - "SSE.Controllers.EditChart.textOnTickMarks": "Tik İşaretlerinde", - "SSE.Controllers.EditChart.textOut": "Dışarı", - "SSE.Controllers.EditChart.textOuterTop": "Dış Üst", - "SSE.Controllers.EditChart.textOverlay": "Bindirme", - "SSE.Controllers.EditChart.textRight": "Sağ", - "SSE.Controllers.EditChart.textRightOverlay": "Sağ Bindirme", - "SSE.Controllers.EditChart.textRotated": "Döndürülmüş", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Binler", - "SSE.Controllers.EditChart.textTop": "Üst", - "SSE.Controllers.EditChart.textTrillions": "Trilyonlar", - "SSE.Controllers.EditChart.textValue": "Değer", - "SSE.Controllers.EditContainer.textCell": "Hücre", - "SSE.Controllers.EditContainer.textChart": "Grafik", - "SSE.Controllers.EditContainer.textHyperlink": "Hiper Link", - "SSE.Controllers.EditContainer.textImage": "Resim", - "SSE.Controllers.EditContainer.textSettings": "Ayarlar", - "SSE.Controllers.EditContainer.textShape": "Şekil", - "SSE.Controllers.EditContainer.textTable": "Tablo", - "SSE.Controllers.EditContainer.textText": "Metin", - "SSE.Controllers.EditHyperlink.textDefault": "Seçili aralık", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Resim URL'si belirtmelisiniz.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Harici Bağlantı", - "SSE.Controllers.EditHyperlink.textInternalLink": "Dahili Veri Aralığı", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Geçersiz hücre aralığı", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Bu alan \"http://www.example.com\" formatında bir URL olmak zorundadır", - "SSE.Controllers.Main.advCSVOptions": "CSV Seçenekleri Belirle", - "SSE.Controllers.Main.advDRMEnterPassword": "Şifrenizi girin:", - "SSE.Controllers.Main.advDRMOptions": "Korumalı Dosya", - "SSE.Controllers.Main.advDRMPassword": "Şifre", - "SSE.Controllers.Main.applyChangesTextText": "Veri yükleniyor...", - "SSE.Controllers.Main.applyChangesTitleText": "Veri Yükleniyor", - "SSE.Controllers.Main.convertationTimeoutText": "Değişim süresi aşıldı.", - "SSE.Controllers.Main.criticalErrorExtText": "Belge listesine dönmek için 'TAMAM' tuşuna tıklayın.", - "SSE.Controllers.Main.criticalErrorTitle": "Hata", - "SSE.Controllers.Main.downloadErrorText": "İndirme başarısız oldu.", - "SSE.Controllers.Main.downloadMergeText": "İndiriliyor...", - "SSE.Controllers.Main.downloadMergeTitle": "İndiriliyor", - "SSE.Controllers.Main.downloadTextText": "Belge indiriliyor...", - "SSE.Controllers.Main.downloadTitleText": "Belge indiriliyor", - "SSE.Controllers.Main.errorAccessDeny": "Hakkınız olmayan bir eylem gerçekleştirmeye çalışıyorsunuz.
    Lütfen Belge Sunucu yöneticinize başvurun.", - "SSE.Controllers.Main.errorArgsRange": "Girilen formülde hata oluştu.
    Yanlış argüman aralığı kullanıldı.", - "SSE.Controllers.Main.errorAutoFilterChange": "İşlem iş tablonuzdaki tablodaki hücreleri kaldırmaya çalıştığından gerçekleştirilemiyor.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Tablonun bir kısmı hareket ettirilemeyeceği için işlem tamamlanamadı.
    Başka bir veri aralığı seçerek tüm tabloyu kaydırın ve tekrar deneyin.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Seçilen hücre aralığı için operasyon tamamlanamadı.
    Farklı bir monoton veri aralığı seçin ve tekrar deneyin.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "İşlem yapılamıyor çünkü alanda filtreli hücrelet mevcut.
    Lütfen filtreli elemanların gizliliğini kaldırın ve tekrar deneyin.", - "SSE.Controllers.Main.errorBadImageUrl": "Resim URL'si yanlış", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Sunucu bağlantısı kesildi. Belge şu an düzenlenemez.", - "SSE.Controllers.Main.errorConnectToServer": "Belge kaydedilemedi. Lütfen internet bağlantınızı kontrol edin veya yöneticiniz ile iletişime geçin.
    'TAMAM' tuşuna tıkladığınızda belgeyi indirebileceksiniz.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Bu komut çoklu seçimlerle kullanılamaz.
    Tek bir aralık seçin ve tekrar deneyin.", - "SSE.Controllers.Main.errorCountArg": "Girilen formülde hata oluştu.
    Yanlış argüman sayısı kullanıldı.", - "SSE.Controllers.Main.errorCountArgExceed": "Girilen formülde hata oluştu.
    Argüman sayısı aşıldı.", - "SSE.Controllers.Main.errorCreateDefName": "Mevcut ad aralığı düzenlenemiyor ve yenileri şu anda oluşturulamıyor
    çünkü bazıları başkaları tarafından düzenleniyor.", - "SSE.Controllers.Main.errorDatabaseConnection": "Harici hata.
    Veri tabanı bağlantı hatası. Hata devam ederse lütfen destek ile iletişime geçin.", - "SSE.Controllers.Main.errorDataRange": "Yanlış veri aralığı.", - "SSE.Controllers.Main.errorDefaultMessage": "Hata kodu: %1", - "SSE.Controllers.Main.errorFilePassProtect": "Belge şifre korumalı ve açılamadı.", - "SSE.Controllers.Main.errorFileRequest": "Harici hata.
    Dosya istek hatası. Sorun devam ederse lütfen destekle iletişime geçiniz.", - "SSE.Controllers.Main.errorFileVKey": "Harici hata.
    Yanlış güvenlik anahtarı. Problem devam ederse lütfen destekle iletişime geçin.", - "SSE.Controllers.Main.errorFillRange": "Seçili hücre aralığı doldurulamıyor.
    Birleştirilen tüm hücrelerin aynı boyutta olması gerekir.", - "SSE.Controllers.Main.errorFormulaName": "Girilen formülde hata oluştu.
    Yanlış formül ismi kullanıldı.", - "SSE.Controllers.Main.errorFormulaParsing": "Formül öğelerine ayrılırken dahili hata", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Fonksiyon olmayan bir iş tablosuna bağlı.
    Lütfen veriyi kontrol edin ve tekrar deneyin.", - "SSE.Controllers.Main.errorInvalidRef": "Seçim için doğru bir ad veya geçerli bir referans girin.", - "SSE.Controllers.Main.errorKeyEncrypt": "Bilinmeyen anahtar tanımlayıcı", - "SSE.Controllers.Main.errorKeyExpire": "Anahtar tanımlayıcının süresi doldu", - "SSE.Controllers.Main.errorLockedAll": "İşlem yapılamıyor çünkü iş tablosu başka bir kullanıcı tarafından kilitlenmiş.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "İş tablosu yeniden adlandırılamıyor çünkü başka bir kullanıcı tarafından yeniden adlandırılıyor", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Yükleme başarısız", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Birleştirme başarısız.", - "SSE.Controllers.Main.errorMoveRange": "Birleştirilmiş hücrenin parçası değiştirilemez", - "SSE.Controllers.Main.errorOpenWarning": "Belgedeki formüllerin birinin uzunluğu
    izin verilen karakter sayısını aştı ve kaldırıldı.", - "SSE.Controllers.Main.errorOperandExpected": "Girilen fonksiyon kodu hatalı. Lütfen parantezlerinizi kontrol edin - '(' veya ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Kopyalama ve yapıştırma alanları eşleşmişyor.
    Lütfen aynı boyutta bir alan seçin veya kopyalanmış hücrelere yapıştırmak için satırdaki ilk hücreyi seçin.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Maalesef 1500 sayfadan fazla yazdırmak mevcut program sürümü ile mümkün değildir.
    Bu kısıt, önümüzdeki güncellemeler ile kaldırılacaktır.", - "SSE.Controllers.Main.errorProcessSaveResult": "Kaydetme başarısız oldu", - "SSE.Controllers.Main.errorServerVersion": "Editör versiyonu güncellendi. Sayfa yenilenerek değişiklikler uygulanacaktır.", - "SSE.Controllers.Main.errorSessionAbsolute": "Belge düzenleme oturumu sona erdi. Lütfen sayfayı yeniden yükleyin.", - "SSE.Controllers.Main.errorSessionIdle": "Belge oldukça uzun süredir düzenlenmedi. Lütfen sayfayı yeniden yükleyin.", - "SSE.Controllers.Main.errorSessionToken": "Sunucu bağlantısı yarıda kesildi. Lütfen sayfayı yeniden yükleyin.", - "SSE.Controllers.Main.errorStockChart": "Yanlış dizi sırası. Stok grafiği oluşturma için tablodaki verileri şu sırada yerleştirin:
    açılış fiyatı, maksimum fiyat, minimum fiyat, kapanış fiyatı.", - "SSE.Controllers.Main.errorToken": "Belge güvenlik belirteci doğru şekilde oluşturulmamış.
    Lütfen Belge Sunucu yöneticinize başvurun.", - "SSE.Controllers.Main.errorTokenExpire": "Belge güvenlik belirteci süresi doldu.
    Lütfen Belge Sunucusu yöneticinize başvurun.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Harici hata.
    Beklenmeyen GUID. Hata devam ederse lütfen destekle iletişime geçiniz.", - "SSE.Controllers.Main.errorUpdateVersion": "Dosya versiyonu değiştirildi. Sayfa yenilenecektir.", - "SSE.Controllers.Main.errorUserDrop": "Belgeye şu an erişilemiyor.", - "SSE.Controllers.Main.errorUsersExceed": "Fiyat planının izin verdiği kullanıcı sayısı aşıldı", - "SSE.Controllers.Main.errorViewerDisconnect": "Bağlantı kaybedildi. Yine belgeyi görüntüleyebilirsiniz,
    bağlantı geri gelmeden önce indirme işlemi yapılamayacak.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Girilen formülde hata oluştu.
    Yanlış sayıda köşeli parantez kullanıldı.", - "SSE.Controllers.Main.errorWrongOperator": "Girilen formülde hata oluştu. Yanlış operatör kullanıldı.
    Lütfen hatayı düzeltin.", - "SSE.Controllers.Main.leavePageText": "Bu belgede kaydedilmemiş değişiklikleriniz var. 'Sayfada Kal' tuşuna tıklayarak otomatik kaydetmeyi bekleyebilirsiniz. 'Sayfadan Ayrıl' tuşuna tıklarsanız kaydedilmemiş tüm değişiklikler silinecektir.", - "SSE.Controllers.Main.loadFontsTextText": "Veri yükleniyor...", - "SSE.Controllers.Main.loadFontsTitleText": "Veri Yükleniyor", - "SSE.Controllers.Main.loadFontTextText": "Veri yükleniyor...", - "SSE.Controllers.Main.loadFontTitleText": "Veri Yükleniyor", - "SSE.Controllers.Main.loadImagesTextText": "Resimler yükleniyor...", - "SSE.Controllers.Main.loadImagesTitleText": "Resimler yükleniyor", - "SSE.Controllers.Main.loadImageTextText": "Resim yükleniyor...", - "SSE.Controllers.Main.loadImageTitleText": "Resim yükleniyor", - "SSE.Controllers.Main.loadingDocumentTextText": "Belge yükleniyor...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Belge yükleniyor", - "SSE.Controllers.Main.mailMergeLoadFileText": "Veri Kaynağı Yükleniyor...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Veri Kaynağı Yükleniyor", - "SSE.Controllers.Main.notcriticalErrorTitle": "Uyarı", - "SSE.Controllers.Main.openErrorText": "Dosya açılırken bir hata oluştu", - "SSE.Controllers.Main.openTextText": "Belge açılıyor...", - "SSE.Controllers.Main.openTitleText": "Belge Açılıyor", - "SSE.Controllers.Main.printTextText": "Belge yazdırılıyor...", - "SSE.Controllers.Main.printTitleText": "Belge Yazdırılıyor", - "SSE.Controllers.Main.reloadButtonText": "Sayfayı Yenile", - "SSE.Controllers.Main.requestEditFailedMessageText": "Şu anda bu belge başka birisi tarafından düzenleniyor. Lütfen daha sonra tekrar deneyin.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Erişim reddedildi", - "SSE.Controllers.Main.saveErrorText": "Dosya kaydedilirken bir hata oluştu", - "SSE.Controllers.Main.savePreparingText": "Kaydetmeye hazırlanıyor", - "SSE.Controllers.Main.savePreparingTitle": "Kaydetmeye hazırlanıyor. Lütfen bekleyin...", - "SSE.Controllers.Main.saveTextText": "Belge kaydediliyor...", - "SSE.Controllers.Main.saveTitleText": "Belge Kaydediliyor", - "SSE.Controllers.Main.sendMergeText": "Birleştirme Gönderiliyor...", - "SSE.Controllers.Main.sendMergeTitle": "Birleştirme Gönderiliyor", - "SSE.Controllers.Main.textAnonymous": "Anonim", - "SSE.Controllers.Main.textBack": "Geri", - "SSE.Controllers.Main.textBuyNow": "Websitesini ziyaret edin", - "SSE.Controllers.Main.textCancel": "İptal", - "SSE.Controllers.Main.textClose": "Kapat", - "SSE.Controllers.Main.textContactUs": "Satış departmanı", - "SSE.Controllers.Main.textDone": "Bitti", - "SSE.Controllers.Main.textLoadingDocument": "Belge yükleniyor", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE açık kaynak sürümü", - "SSE.Controllers.Main.textOK": "TAMAM", - "SSE.Controllers.Main.textPassword": "Şifre", - "SSE.Controllers.Main.textPreloader": "Yükleniyor...", - "SSE.Controllers.Main.textShape": "Şekil", - "SSE.Controllers.Main.textStrict": "Katı mod", - "SSE.Controllers.Main.textTryUndoRedo": "Geri al/İleri al fonksiyonları hızlı birlikte çalışma modunda devre dışı kalır.
    'Katı mod' tuşuna tıklayarak Katı birlikte 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ğlayın. Ortak çalışma moduna tekrar dönmek için Gelişmiş ayarları kullanabilirsiniz.", - "SSE.Controllers.Main.textUsername": "Kullanıcı adı", - "SSE.Controllers.Main.titleLicenseExp": "Lisans süresi doldu", - "SSE.Controllers.Main.titleServerVersion": "Editör güncellendi", - "SSE.Controllers.Main.titleUpdateVersion": "Versiyon değiştirildi", - "SSE.Controllers.Main.txtAccent": "Aksan", - "SSE.Controllers.Main.txtArt": "Metni buraya giriniz", - "SSE.Controllers.Main.txtBasicShapes": "Temel Şekiller", - "SSE.Controllers.Main.txtButtons": "Maddeler", - "SSE.Controllers.Main.txtCallouts": "Belirtme Çizgileri", - "SSE.Controllers.Main.txtCharts": "Grafikler", - "SSE.Controllers.Main.txtDelimiter": "Sınırlayıcı", - "SSE.Controllers.Main.txtDiagramTitle": "Grafik başlığı", - "SSE.Controllers.Main.txtEditingMode": "Düzenleme modunu belirle...", - "SSE.Controllers.Main.txtEncoding": "Kodlama", - "SSE.Controllers.Main.txtErrorLoadHistory": "Geçmiş yüklemesi başarısız", - "SSE.Controllers.Main.txtFiguredArrows": "Şekilli Oklar", - "SSE.Controllers.Main.txtLines": "Satırlar", - "SSE.Controllers.Main.txtMath": "Matematik", - "SSE.Controllers.Main.txtRectangles": "Dikdörtgenler", - "SSE.Controllers.Main.txtSeries": "Seriler", - "SSE.Controllers.Main.txtSpace": "Boşluk", - "SSE.Controllers.Main.txtStarsRibbons": "Yıldızlar & Kurdeleler", - "SSE.Controllers.Main.txtStyle_Bad": "Kötü", - "SSE.Controllers.Main.txtStyle_Calculation": "Hesaplama", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Hücreyi İşaretle", - "SSE.Controllers.Main.txtStyle_Comma": "Virgül", - "SSE.Controllers.Main.txtStyle_Currency": "Para Birimi", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Açıklayıcı Metin", - "SSE.Controllers.Main.txtStyle_Good": "İyi", - "SSE.Controllers.Main.txtStyle_Heading_1": "Başlık 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Başlık 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Başlık 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Başlık 4", - "SSE.Controllers.Main.txtStyle_Input": "Girdi", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Bağlı Hücre", - "SSE.Controllers.Main.txtStyle_Neutral": "Nötr", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Not", - "SSE.Controllers.Main.txtStyle_Output": "Çıktı", - "SSE.Controllers.Main.txtStyle_Percent": "Yüzde", - "SSE.Controllers.Main.txtStyle_Title": "Başlık", - "SSE.Controllers.Main.txtStyle_Total": "Toplam", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Uyarı Metni", - "SSE.Controllers.Main.txtTab": "Sekme", - "SSE.Controllers.Main.txtXAxis": "X Ekseni", - "SSE.Controllers.Main.txtYAxis": "Y Ekseni", - "SSE.Controllers.Main.unknownErrorText": "Bilinmeyen hata.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Tarayıcınız desteklenmiyor.", - "SSE.Controllers.Main.uploadImageExtMessage": "Bilinmeyen resim formatı.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Resim yüklenmedi.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Maksimum resim boyutu aşıldı.", - "SSE.Controllers.Main.uploadImageTextText": "Resim yükleniyor...", - "SSE.Controllers.Main.uploadImageTitleText": "Resim Yükleniyor", - "SSE.Controllers.Main.warnLicenseExp": "Lisansınızın süresi doldu.
    Lütfen lisansınızı güncelleyin ve sayfayı yenileyin.", - "SSE.Controllers.Main.warnNoLicense": "%1'ın açık kaynaklı bir sürümünü kullanıyorsunuz. Sürüm, belge sunucusuna eş zamanlı bağlantılar için sınırlamalar getiriyor (bir seferde 20 bağlantı).
    Daha fazla bilgiye ihtiyacınız varsa, ticari bir lisans satın almayı düşünün lütfen.", - "SSE.Controllers.Main.warnProcessRightsChange": "Dosyayı düzenleme hakkınız reddedildi", - "SSE.Controllers.Search.textNoTextFound": "Metin bulunamadı", - "SSE.Controllers.Search.textReplaceAll": "Tümünü Değiştir", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Uyarı", - "SSE.Controllers.Settings.warnDownloadAs": "Kaydetmeye bu formatta devam ederseniz metin dışında tüm özellikler kaybolacak.
    Devam etmek istediğinizden emin misiniz?", - "SSE.Controllers.Statusbar.errorLastSheet": "Not defterinde en az bir görünür çalışma tablosu olmalıdır.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Çalışma kağıdı silinemiyor.", - "SSE.Controllers.Statusbar.menuDelete": "Sil", - "SSE.Controllers.Statusbar.menuDuplicate": "Çoğalt", - "SSE.Controllers.Statusbar.menuHide": "Gizle", - "SSE.Controllers.Statusbar.menuUnhide": "Gizlemeyi kaldır", - "SSE.Controllers.Statusbar.strSheet": "Tablo", - "SSE.Controllers.Statusbar.textExternalLink": "Harici Bağlantı", - "SSE.Controllers.Statusbar.warnDeleteSheet": "İş tablosunda veri olabilir. İşleme devam etmek istiyor musunuz?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Bu belgede kaydedilmemiş değişiklikleriniz var. 'Sayfada Kal' tuşuna tıklayarak otomatik kaydetmeyi bekleyebilirsiniz. 'Sayfadan Ayrıl' tuşuna tıklarsanız kaydedilmemiş tüm değişiklikler silinecektir.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Uygulamadan çıktınız", - "SSE.Controllers.Toolbar.leaveButtonText": "Bu Sayfadan Ayrıl", - "SSE.Controllers.Toolbar.stayButtonText": "Bu Sayfada Kal", - "SSE.Views.AddFunction.sCatDateAndTime": "Tarih ve saat", - "SSE.Views.AddFunction.sCatEngineering": "Mühendislik", - "SSE.Views.AddFunction.sCatFinancial": "Finansal", - "SSE.Views.AddFunction.sCatInformation": "Bilgi", - "SSE.Views.AddFunction.sCatLogical": "Mantıklı", - "SSE.Views.AddFunction.sCatLookupAndReference": "Lookup ve Referans", - "SSE.Views.AddFunction.sCatMathematic": "Matematik ve trigonometri", - "SSE.Views.AddFunction.sCatStatistical": "İstatistiksel", - "SSE.Views.AddFunction.sCatTextAndData": "Metin ve veri", - "SSE.Views.AddFunction.textBack": "Geri", - "SSE.Views.AddFunction.textGroups": "Kategoriler", - "SSE.Views.AddLink.textAddLink": "Link Ekle", - "SSE.Views.AddLink.textAddress": "Adres", - "SSE.Views.AddLink.textDisplay": "Görünüm", - "SSE.Views.AddLink.textExternalLink": "Harici Bağlantı", - "SSE.Views.AddLink.textInsert": "Ekle", - "SSE.Views.AddLink.textInternalLink": "Dahili Veri Aralığı", - "SSE.Views.AddLink.textLink": "Link", - "SSE.Views.AddLink.textLinkType": "Link Tipi", - "SSE.Views.AddLink.textRange": "Aralık", - "SSE.Views.AddLink.textRequired": "Gerekli", - "SSE.Views.AddLink.textSheet": "Tablo", - "SSE.Views.AddLink.textTip": "Ekran İpucu", - "SSE.Views.AddOther.textAddress": "Adres", - "SSE.Views.AddOther.textBack": "Geri", - "SSE.Views.AddOther.textFilter": "Filtre", - "SSE.Views.AddOther.textFromLibrary": "Kütüphane'den Resim", - "SSE.Views.AddOther.textFromURL": "URL'den resim", - "SSE.Views.AddOther.textImageURL": "Resim URL'si", - "SSE.Views.AddOther.textInsert": "Ekle", - "SSE.Views.AddOther.textInsertImage": "Resim Ekle", - "SSE.Views.AddOther.textLink": "Link", - "SSE.Views.AddOther.textSort": "Sırala ve Filtrele", - "SSE.Views.EditCell.textAccounting": "Muhasebe", - "SSE.Views.EditCell.textAlignBottom": "Alta Hizala", - "SSE.Views.EditCell.textAlignCenter": "Ortaya Hizala", - "SSE.Views.EditCell.textAlignLeft": "Sola Hizala", - "SSE.Views.EditCell.textAlignMiddle": "Ortaya hizala", - "SSE.Views.EditCell.textAlignRight": "Sağa Hizala", - "SSE.Views.EditCell.textAlignTop": "Üste Hizala", - "SSE.Views.EditCell.textAllBorders": "Tüm Sınırlar", - "SSE.Views.EditCell.textBack": "Geri", - "SSE.Views.EditCell.textBorderStyle": "Sınır Stili", - "SSE.Views.EditCell.textBottomBorder": "Alt Sınır", - "SSE.Views.EditCell.textCellStyle": "Hücre Tipleri", - "SSE.Views.EditCell.textColor": "Renk", - "SSE.Views.EditCell.textCurrency": "Para Birimi", - "SSE.Views.EditCell.textDate": "Tarih", - "SSE.Views.EditCell.textDiagDownBorder": "Diyagonal Aşağı Sınır", - "SSE.Views.EditCell.textDiagUpBorder": "Diyagonal Yukarı Sınır", - "SSE.Views.EditCell.textDollar": "Dolar", - "SSE.Views.EditCell.textEuro": "Avro", - "SSE.Views.EditCell.textFillColor": "Doldur Rengi", - "SSE.Views.EditCell.textFonts": "Yazı Tipleri", - "SSE.Views.EditCell.textFormat": "Format", - "SSE.Views.EditCell.textGeneral": "Genel", - "SSE.Views.EditCell.textInBorders": "İç Sınırlar", - "SSE.Views.EditCell.textInHorBorder": "İç Yatay Sınır", - "SSE.Views.EditCell.textInteger": "Tamsayı", - "SSE.Views.EditCell.textInVertBorder": "İç dikey Sınır", - "SSE.Views.EditCell.textJustified": "İki yana yaslı", - "SSE.Views.EditCell.textLeftBorder": "Sol Sınır", - "SSE.Views.EditCell.textMedium": "Orta", - "SSE.Views.EditCell.textNoBorder": "Sınırsız", - "SSE.Views.EditCell.textNumber": "Sayı", - "SSE.Views.EditCell.textPercentage": "Yüzde", - "SSE.Views.EditCell.textPound": "Pound", - "SSE.Views.EditCell.textRightBorder": "Sağ Sınır", - "SSE.Views.EditCell.textRouble": "Ruble", - "SSE.Views.EditCell.textScientific": "Bilimsel", - "SSE.Views.EditCell.textSize": "Boyut", - "SSE.Views.EditCell.textText": "Metin", - "SSE.Views.EditCell.textTextColor": "Metin Rengi", - "SSE.Views.EditCell.textTextFormat": "Metin formatı", - "SSE.Views.EditCell.textThick": "Katı", - "SSE.Views.EditCell.textThin": "İnce", - "SSE.Views.EditCell.textTime": "Saat", - "SSE.Views.EditCell.textTopBorder": "Üst Sınır", - "SSE.Views.EditCell.textWrapText": "Metni Kaydır", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAuto": "Otomatik", - "SSE.Views.EditChart.textAxisCrosses": "Eksen Kesişmeleri", - "SSE.Views.EditChart.textAxisOptions": "Eksen Seçenekleri", - "SSE.Views.EditChart.textAxisPosition": "Eksen Pozisyonu", - "SSE.Views.EditChart.textAxisTitle": "Eksen Başlığı", - "SSE.Views.EditChart.textBack": "Geri", - "SSE.Views.EditChart.textBackward": "Geri Taşı", - "SSE.Views.EditChart.textBorder": "Sınır", - "SSE.Views.EditChart.textBottom": "Alt", - "SSE.Views.EditChart.textChart": "Grafik", - "SSE.Views.EditChart.textChartTitle": "Grafik başlığı", - "SSE.Views.EditChart.textColor": "Renk", - "SSE.Views.EditChart.textCrossesValue": "Çarpma Değeri", - "SSE.Views.EditChart.textDataLabels": "Veri Etiketleri", - "SSE.Views.EditChart.textDesign": "Tasarım", - "SSE.Views.EditChart.textDisplayUnits": "Görünen Birimler", - "SSE.Views.EditChart.textFill": "Doldur", - "SSE.Views.EditChart.textForward": "İleri Taşı", - "SSE.Views.EditChart.textHorAxis": "Yatay Eksen", - "SSE.Views.EditChart.textHorizontal": "Yatay", - "SSE.Views.EditChart.textLabelOptions": "Etiket Seçenekleri", - "SSE.Views.EditChart.textLabelPos": "Etiket Pozisyonu", - "SSE.Views.EditChart.textLayout": "Tasarım", - "SSE.Views.EditChart.textLeft": "Sol", - "SSE.Views.EditChart.textLeftOverlay": "Sol Bindirme", - "SSE.Views.EditChart.textLegend": "Gösterge", - "SSE.Views.EditChart.textMajor": "Majör", - "SSE.Views.EditChart.textMajorMinor": "Majör ve Minör", - "SSE.Views.EditChart.textMajorType": "Majör Tipi", - "SSE.Views.EditChart.textMaxValue": "Maksimum Değer", - "SSE.Views.EditChart.textMinor": "Minör", - "SSE.Views.EditChart.textMinorType": "Minör Tipi", - "SSE.Views.EditChart.textMinValue": "Minimum Değer", - "SSE.Views.EditChart.textNone": "Hiçbiri", - "SSE.Views.EditChart.textNoOverlay": "Bindirme yok", - "SSE.Views.EditChart.textOverlay": "Bindirme", - "SSE.Views.EditChart.textRemoveChart": "Grafiği Kaldır", - "SSE.Views.EditChart.textReorder": "Yeniden Sırala", - "SSE.Views.EditChart.textRight": "Sağ", - "SSE.Views.EditChart.textRightOverlay": "Sağ Bindirme", - "SSE.Views.EditChart.textRotated": "Döndürülmüş", - "SSE.Views.EditChart.textSize": "Boyut", - "SSE.Views.EditChart.textStyle": "Stil", - "SSE.Views.EditChart.textTickOptions": "Tik Seçenekleri", - "SSE.Views.EditChart.textToBackground": "Arka Plana gönder", - "SSE.Views.EditChart.textToForeground": "Ön Plana Getir", - "SSE.Views.EditChart.textTop": "Üst", - "SSE.Views.EditChart.textType": "Tip", - "SSE.Views.EditChart.textValReverseOrder": "Ters Sıralanmış Değerler", - "SSE.Views.EditChart.textVerAxis": "Dikey Eksen", - "SSE.Views.EditChart.textVertical": "Dikey", - "SSE.Views.EditHyperlink.textBack": "Geri", - "SSE.Views.EditHyperlink.textDisplay": "Görünüm", - "SSE.Views.EditHyperlink.textEditLink": "Link Düzenle", - "SSE.Views.EditHyperlink.textExternalLink": "Harici Bağlantı", - "SSE.Views.EditHyperlink.textInternalLink": "Dahili Veri Aralığı", - "SSE.Views.EditHyperlink.textLink": "Link", - "SSE.Views.EditHyperlink.textLinkType": "Link Tipi", - "SSE.Views.EditHyperlink.textRange": "Aralık", - "SSE.Views.EditHyperlink.textRemoveLink": "Linki Kaldır", - "SSE.Views.EditHyperlink.textScreenTip": "Ekran İpucu", - "SSE.Views.EditHyperlink.textSheet": "Tablo", - "SSE.Views.EditImage.textAddress": "Adres", - "SSE.Views.EditImage.textBack": "Geri", - "SSE.Views.EditImage.textBackward": "Geri Taşı", - "SSE.Views.EditImage.textDefault": "Varsayılan Boyut", - "SSE.Views.EditImage.textForward": "İleri Taşı", - "SSE.Views.EditImage.textFromLibrary": "Kütüphane'den Resim", - "SSE.Views.EditImage.textFromURL": "URL'den resim", - "SSE.Views.EditImage.textImageURL": "Resim URL'si", - "SSE.Views.EditImage.textLinkSettings": "Link Ayarları", - "SSE.Views.EditImage.textRemove": "Resmi Kaldır", - "SSE.Views.EditImage.textReorder": "Yeniden Sırala", - "SSE.Views.EditImage.textReplace": "Değiştir", - "SSE.Views.EditImage.textReplaceImg": "Resmi Değiştir", - "SSE.Views.EditImage.textToBackground": "Arka Plana gönder", - "SSE.Views.EditImage.textToForeground": "Ön Plana Getir", - "SSE.Views.EditShape.textBack": "Geri", - "SSE.Views.EditShape.textBackward": "Geri Taşı", - "SSE.Views.EditShape.textBorder": "Sınır", - "SSE.Views.EditShape.textColor": "Renk", - "SSE.Views.EditShape.textEffects": "Efektler", - "SSE.Views.EditShape.textFill": "Doldur", - "SSE.Views.EditShape.textForward": "İleri Taşı", - "SSE.Views.EditShape.textOpacity": "Opasite", - "SSE.Views.EditShape.textRemoveShape": "Şekli Kaldır", - "SSE.Views.EditShape.textReorder": "Yeniden Sırala", - "SSE.Views.EditShape.textReplace": "Değiştir", - "SSE.Views.EditShape.textSize": "Boyut", - "SSE.Views.EditShape.textStyle": "Stil", - "SSE.Views.EditShape.textToBackground": "Arka Plana gönder", - "SSE.Views.EditShape.textToForeground": "Ön Plana Getir", - "SSE.Views.EditText.textBack": "Geri", - "SSE.Views.EditText.textFillColor": "Doldur Rengi", - "SSE.Views.EditText.textFonts": "Yazı Tipleri", - "SSE.Views.EditText.textSize": "Boyut", - "SSE.Views.EditText.textTextColor": "Metin Rengi", - "SSE.Views.Search.textDone": "Bitti", - "SSE.Views.Search.textFind": "Bul", - "SSE.Views.Search.textFindAndReplace": "Bul ve Değiştir", - "SSE.Views.Search.textMatchCase": "Büyük Küçük Harfe Duyarlı", - "SSE.Views.Search.textMatchCell": "Hücre Eşleştir", - "SSE.Views.Search.textReplace": "Değiştir", - "SSE.Views.Search.textSearch": "Ara", - "SSE.Views.Search.textSearchIn": "İçinde Ara", - "SSE.Views.Search.textSheet": "Tablo", - "SSE.Views.Search.textWorkbook": "İş Tablosu", - "SSE.Views.Settings.textAbout": "Hakkında", - "SSE.Views.Settings.textAddress": "adres", - "SSE.Views.Settings.textAuthor": "Yazar", - "SSE.Views.Settings.textBack": "Geri", - "SSE.Views.Settings.textCreateDate": "Oluşturulma tarihi", - "SSE.Views.Settings.textDocInfo": "İş Tablosu Bilgisi", - "SSE.Views.Settings.textDocTitle": "Spreadsheet Başlığı", - "SSE.Views.Settings.textDone": "Bitti", - "SSE.Views.Settings.textDownload": "İndir", - "SSE.Views.Settings.textDownloadAs": "Farklı Kaydet...", - "SSE.Views.Settings.textEditDoc": "Belge Düzenle", - "SSE.Views.Settings.textEmail": "e-posta", - "SSE.Views.Settings.textFind": "Bul", - "SSE.Views.Settings.textFindAndReplace": "Bul ve Değiştir", - "SSE.Views.Settings.textHelp": "Yardım", - "SSE.Views.Settings.textLoading": "Yükleniyor...", - "SSE.Views.Settings.textPoweredBy": "Sunucu", - "SSE.Views.Settings.textSettings": "Ayarlar", - "SSE.Views.Settings.textTel": "telefon", - "SSE.Views.Settings.textVersion": "Versiyon", - "SSE.Views.Settings.unknownText": "Bilinmeyen", - "SSE.Views.Toolbar.textBack": "Geri" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 0dd041d1c..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -1,490 +1,637 @@ { - "Common.UI.ThemeColorPalette.textStandartColors": "Стандартні кольори", - "Common.UI.ThemeColorPalette.textThemeColors": "Кольорові теми", - "Common.Utils.Metric.txtCm": "см", - "Common.Utils.Metric.txtPt": "Пт", - "SSE.Controllers.AddChart.txtDiagramTitle": "Назва діграми", - "SSE.Controllers.AddChart.txtSeries": "Серії", - "SSE.Controllers.AddChart.txtXAxis": "X Ось", - "SSE.Controllers.AddChart.txtYAxis": "Y ось", - "SSE.Controllers.AddContainer.textChart": "Діаграма", - "SSE.Controllers.AddContainer.textFormula": "Функція", - "SSE.Controllers.AddContainer.textImage": "Зображення", - "SSE.Controllers.AddContainer.textOther": "Інший", - "SSE.Controllers.AddContainer.textShape": "Форма", - "SSE.Controllers.AddLink.textInvalidRange": "ПОМИЛКА! Невірний діапазон клітин", - "SSE.Controllers.AddLink.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Потрібно вказати URL-адресу зображення.", - "SSE.Controllers.AddOther.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "SSE.Controllers.DocumentHolder.menuAddLink": "Додати посилання", - "SSE.Controllers.DocumentHolder.menuCell": "Клітинка", - "SSE.Controllers.DocumentHolder.menuCopy": "Копіювати", - "SSE.Controllers.DocumentHolder.menuCut": "Вирізати", - "SSE.Controllers.DocumentHolder.menuDelete": "Видалити", - "SSE.Controllers.DocumentHolder.menuEdit": "Редагувати", - "SSE.Controllers.DocumentHolder.menuHide": "Приховати", - "SSE.Controllers.DocumentHolder.menuMerge": "Злиття", - "SSE.Controllers.DocumentHolder.menuMore": "Більше", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Відкрити посилання", - "SSE.Controllers.DocumentHolder.menuPaste": "Вставити", - "SSE.Controllers.DocumentHolder.menuShow": "Відобразити", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Розібрати", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Розгорнути", - "SSE.Controllers.DocumentHolder.menuWrap": "Обернути", - "SSE.Controllers.DocumentHolder.sheetCancel": "Скасувати", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Дані лише з верхньої лівої клітинки залишаться в об'єднаній клітині.
    Ви впевнені, що хочете продовжити?", - "SSE.Controllers.EditCell.textAuto": "Авто", - "SSE.Controllers.EditCell.textFonts": "Шрифти", - "SSE.Controllers.EditCell.textPt": "Пт", - "SSE.Controllers.EditChart.errorMaxRows": "ПОМИЛКА! Максимальна кількість даних на кожній діаграмі становить 255.", - "SSE.Controllers.EditChart.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", - "SSE.Controllers.EditChart.textAuto": "Авто", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Між відмітками", - "SSE.Controllers.EditChart.textBillions": "Мільярди", - "SSE.Controllers.EditChart.textBottom": "Внизу", - "SSE.Controllers.EditChart.textCenter": "Центр", - "SSE.Controllers.EditChart.textCross": "Перетинати", - "SSE.Controllers.EditChart.textCustom": "Користувальницький", - "SSE.Controllers.EditChart.textFit": "Підходяща ширина", - "SSE.Controllers.EditChart.textFixed": "Зафіксований", - "SSE.Controllers.EditChart.textHigh": "Високий", - "SSE.Controllers.EditChart.textHorizontal": "Горізонтальний", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Сотні", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "в", - "SSE.Controllers.EditChart.textInnerBottom": "Внутрішнє Нижнє", - "SSE.Controllers.EditChart.textInnerTop": "Внутрішній Топ", - "SSE.Controllers.EditChart.textLeft": "Лівий", - "SSE.Controllers.EditChart.textLeftOverlay": "Ліве накладення", - "SSE.Controllers.EditChart.textLow": "Низький", - "SSE.Controllers.EditChart.textManual": "Вручну", - "SSE.Controllers.EditChart.textMaxValue": "Максимальне значення", - "SSE.Controllers.EditChart.textMillions": "Мільйони", - "SSE.Controllers.EditChart.textMinValue": "Мінімальне значення", - "SSE.Controllers.EditChart.textNextToAxis": "Біля вісі", - "SSE.Controllers.EditChart.textNone": "Жоден", - "SSE.Controllers.EditChart.textNoOverlay": "Немає накладання", - "SSE.Controllers.EditChart.textOnTickMarks": "На квитках марок", - "SSE.Controllers.EditChart.textOut": "з", - "SSE.Controllers.EditChart.textOuterTop": "Зовнішній зверху", - "SSE.Controllers.EditChart.textOverlay": "Накладання", - "SSE.Controllers.EditChart.textRight": "Право", - "SSE.Controllers.EditChart.textRightOverlay": "Праве накладення", - "SSE.Controllers.EditChart.textRotated": "Поворот", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Тисячі", - "SSE.Controllers.EditChart.textTop": "Верх", - "SSE.Controllers.EditChart.textTrillions": "Трильйони", - "SSE.Controllers.EditChart.textValue": "Значення", - "SSE.Controllers.EditContainer.textCell": "Клітинка", - "SSE.Controllers.EditContainer.textChart": "Діаграма", - "SSE.Controllers.EditContainer.textHyperlink": "Гіперсилка", - "SSE.Controllers.EditContainer.textImage": "Зображення", - "SSE.Controllers.EditContainer.textSettings": "Налаштування", - "SSE.Controllers.EditContainer.textShape": "Форма", - "SSE.Controllers.EditContainer.textTable": "Таблиця", - "SSE.Controllers.EditContainer.textText": "Текст", - "SSE.Controllers.EditHyperlink.textDefault": "Вибраний діапазон", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Потрібно вказати URL-адресу зображення.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Зовнішнє посилання", - "SSE.Controllers.EditHyperlink.textInternalLink": "Внутрішній діапазон даних", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Невірний діапазон клітин", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Це поле має бути URL-адресою у форматі \"http://www.example.com\"", - "SSE.Controllers.Main.advCSVOptions": "Виберіть параметри CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Введіть свій пароль:", - "SSE.Controllers.Main.advDRMOptions": "Захищений файл", - "SSE.Controllers.Main.advDRMPassword": "Пароль", - "SSE.Controllers.Main.applyChangesTextText": "Завантаження дати...", - "SSE.Controllers.Main.applyChangesTitleText": "Дата завантаження", - "SSE.Controllers.Main.convertationTimeoutText": "Термін переходу перевищено.", - "SSE.Controllers.Main.criticalErrorExtText": "Натисніть \"ОК\", щоб повернутися до списку документів.", - "SSE.Controllers.Main.criticalErrorTitle": "Помилка", - "SSE.Controllers.Main.downloadErrorText": "Завантаження не вдалося", - "SSE.Controllers.Main.downloadMergeText": "Завантаження...", - "SSE.Controllers.Main.downloadMergeTitle": "Завантаження", - "SSE.Controllers.Main.downloadTextText": "Завантаження документу...", - "SSE.Controllers.Main.downloadTitleText": "Завантаження документу", - "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.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.errorDataRange": "Неправильний діапазон даних.", - "SSE.Controllers.Main.errorDefaultMessage": "Код помилки: %1 ", - "SSE.Controllers.Main.errorFilePassProtect": "Документ захищений паролем і його неможливо відкрити.", - "SSE.Controllers.Main.errorFileRequest": "Зовнішня помилка.
    Помилка запиту файлу. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", - "SSE.Controllers.Main.errorFileVKey": "Зовнішня помилка.
    Невірний ключ безпеки. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", - "SSE.Controllers.Main.errorFillRange": "Не вдалося заповнити вибраний діапазон клітин.
    Усі об'єднані клітинки повинні мати однаковий розмір.", - "SSE.Controllers.Main.errorFormulaName": "Помилка введеної формули.
    Використовується невірна назва формули.", - "SSE.Controllers.Main.errorFormulaParsing": "Внутрішня помилка при аналізі формули.", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Ця функція стосується аркуша, який не існує.
    Будь ласка, перевірте дані та повторіть спробу.", - "SSE.Controllers.Main.errorInvalidRef": "Введіть правильне ім'я для вибору або дійсної посилання для переходу.", - "SSE.Controllers.Main.errorKeyEncrypt": "Невідомий дескриптор ключа", - "SSE.Controllers.Main.errorKeyExpire": "Ключовий дескриптор закінчився", - "SSE.Controllers.Main.errorLockedAll": "Операція не може бути виконана, оскільки цей аркуш заблоковано іншим користувачем.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "Лист не можна перейменувати на даний момент, оскільки його перейменує інший користувач", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Завантаження не вдалося", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Помилка Об'єднання", - "SSE.Controllers.Main.errorMoveRange": "Неможливо змінити частину об'єднаної клітинки", - "SSE.Controllers.Main.errorOpenWarning": "Довжина однієї з формул у файлі перевищила дозволену
    кількість символів, і вона була вилучена.", - "SSE.Controllers.Main.errorOperandExpected": "Синтаксис введеної функції невірний. Будь ласка, перевірте, чи відсутня одна з дужок - '(' або ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Область копіювання та вставки не збігається.
    Будь ласка, виберіть область з таким самим розміром або натисніть першу комірку у рядку, щоб вставити скопійовані клітинки.", - "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.errorStockChart": "Невірний порядок рядків. Щоб побудувати фондову діаграму, помістіть дані на аркуші в наступному порядку: ціна відкриття, максимальна ціна, мінімальна ціна, ціна закриття.", - "SSE.Controllers.Main.errorToken": "Токен безпеки документа не правильно сформовано.
    Будь ласка, зв'яжіться з адміністратором вашого Сервера документів.", - "SSE.Controllers.Main.errorTokenExpire": "Термін дії токену безпеки документа закінчився.
    Будь ласка, зв'яжіться зі своїм адміністратором сервера документів.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Зовнішня помилка.
    Неочікуваний GUID. Будь ласка, зв'яжіться зі службою підтримки, якщо помилка не зникне.", - "SSE.Controllers.Main.errorUpdateVersion": "Версія файлу була змінена. Сторінка буде перезавантажена.", - "SSE.Controllers.Main.errorUserDrop": "На даний момент файл не доступний.", - "SSE.Controllers.Main.errorUsersExceed": "Перевищено кількість користувачів, дозволених планом ціноутворення", - "SSE.Controllers.Main.errorViewerDisconnect": "З'єднання втрачено. Ви все ще можете переглянути документ
    , але не зможете завантажувати його до відновлення.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Помилка введеної формули.
    Використовується неправильне число дужок .", - "SSE.Controllers.Main.errorWrongOperator": "Помилка введеної формули. Використовується неправильний оператор.
    Будь ласка, виправте помилку.", - "SSE.Controllers.Main.leavePageText": "У цьому документі є незбережені зміни. Натисніть \"Залишатися на цій сторінці\", щоб дочекатись автоматичного збереження документа. Натисніть \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", - "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.loadingDocumentTextText": "Завантаження документа...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Завантаження документа", - "SSE.Controllers.Main.mailMergeLoadFileText": "Завантаження джерела даних...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Завантаження джерела даних", - "SSE.Controllers.Main.notcriticalErrorTitle": "Застереження", - "SSE.Controllers.Main.openErrorText": "Під час відкриття файлу сталася помилка", - "SSE.Controllers.Main.openTextText": "Відкриття документа...", - "SSE.Controllers.Main.openTitleText": "Відкриття документа", - "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.savePreparingText": "Підготовка до зберігання", - "SSE.Controllers.Main.savePreparingTitle": "Підготовка до зберігання. Будь ласка, зачекайте...", - "SSE.Controllers.Main.saveTextText": "Збереження документа...", - "SSE.Controllers.Main.saveTitleText": "Збереження документа", - "SSE.Controllers.Main.sendMergeText": "Відправлення злиття...", - "SSE.Controllers.Main.sendMergeTitle": "Відправлення злиття", - "SSE.Controllers.Main.textAnonymous": "Гість", - "SSE.Controllers.Main.textBack": "Назад", - "SSE.Controllers.Main.textBuyNow": "Відвідати сайт", - "SSE.Controllers.Main.textCancel": "Скасувати", - "SSE.Controllers.Main.textClose": "Закрити", - "SSE.Controllers.Main.textContactUs": "Відділ продажів", - "SSE.Controllers.Main.textDone": "Готово", - "SSE.Controllers.Main.textLoadingDocument": "Завантаження документа", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE відкрита версія", - "SSE.Controllers.Main.textOK": "OК", - "SSE.Controllers.Main.textPassword": "Пароль", - "SSE.Controllers.Main.textPreloader": "Завантаження...", - "SSE.Controllers.Main.textShape": "Форма", - "SSE.Controllers.Main.textStrict": "суворий режим", - "SSE.Controllers.Main.textTryUndoRedo": "Функції Undo / Redo відключені для режиму швидкого редагування.
    Натисніть кнопку \"Суворий режим\", щоб перейти до режиму суворого редагування, щоб редагувати файл без втручання інших користувачів та відправляти зміни лише після збереження. Ви можете переключатися між режимами спільного редагування за допомогою редактора Додаткові параметри.", - "SSE.Controllers.Main.textUsername": "Ім'я користувача", - "SSE.Controllers.Main.titleLicenseExp": "Термін дії ліцензії закінчився", - "SSE.Controllers.Main.titleServerVersion": "Редактор оновлено", - "SSE.Controllers.Main.titleUpdateVersion": "Версію змінено", - "SSE.Controllers.Main.txtAccent": "Акцент", - "SSE.Controllers.Main.txtArt": "Ваш текст тут", - "SSE.Controllers.Main.txtBasicShapes": "Основні форми", - "SSE.Controllers.Main.txtButtons": "Кнопки", - "SSE.Controllers.Main.txtCallouts": "Виноски", - "SSE.Controllers.Main.txtCharts": "Діаграми", - "SSE.Controllers.Main.txtDelimiter": "Розділювач", - "SSE.Controllers.Main.txtDiagramTitle": "Назва діграми", - "SSE.Controllers.Main.txtEditingMode": "Встановити режим редагування ...", - "SSE.Controllers.Main.txtEncoding": "Кодування", - "SSE.Controllers.Main.txtErrorLoadHistory": "Помилка завантаження історії", - "SSE.Controllers.Main.txtFiguredArrows": "Фігурні стрілки", - "SSE.Controllers.Main.txtLines": "Рядки", - "SSE.Controllers.Main.txtMath": "Математика", - "SSE.Controllers.Main.txtRectangles": "Прямокутники", - "SSE.Controllers.Main.txtSeries": "Серії", - "SSE.Controllers.Main.txtSpace": "Пробіл", - "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.txtXAxis": "X Ось", - "SSE.Controllers.Main.txtYAxis": "Y ось", - "SSE.Controllers.Main.unknownErrorText": "Невідома помилка.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не підтримується", - "SSE.Controllers.Main.uploadImageExtMessage": "Невідомий формат зображення.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Не завантажено жодного зображення.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Максимальний розмір зображення перевищено.", - "SSE.Controllers.Main.uploadImageTextText": "Завантаження зображення...", - "SSE.Controllers.Main.uploadImageTitleText": "Завантаження зображення", - "SSE.Controllers.Main.warnLicenseExp": "Термін дії вашої ліцензії минув.
    Будь ласка, оновіть свою ліцензію та оновіть сторінку.", - "SSE.Controllers.Main.warnNoLicense": "Ви використовуєте відкриту версію %1. Ця версія має обмеження для одночасного підключення до сервера документів (20 підключень за один раз).
    Якщо вам потрібно більше, подумайте про придбання комерційної ліцензії.", - "SSE.Controllers.Main.warnProcessRightsChange": "Вам відмовлено у наданні права редагувати файл.", - "SSE.Controllers.Search.textNoTextFound": "Текст не знайдено", - "SSE.Controllers.Search.textReplaceAll": "Замінити усе", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Застереження", - "SSE.Controllers.Settings.txtDe": "Німецький", - "SSE.Controllers.Settings.txtEn": "Англійська", - "SSE.Controllers.Settings.txtPl": "Польський", - "SSE.Controllers.Settings.txtRu": "Російський", - "SSE.Controllers.Settings.warnDownloadAs": "Якщо ви продовжите збереження в цьому форматі, всі функції, окрім тексту, буде втрачено.
    Ви впевнені, що хочете продовжити?", - "SSE.Controllers.Statusbar.errorLastSheet": "Робоча книга повинна мати щонайменше один видимий аркуш.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Неможливо видалити робочий аркуш.", - "SSE.Controllers.Statusbar.menuDelete": "Видалити", - "SSE.Controllers.Statusbar.menuDuplicate": "Дублювати", - "SSE.Controllers.Statusbar.menuHide": "Приховати", - "SSE.Controllers.Statusbar.menuUnhide": "Відкрити", - "SSE.Controllers.Statusbar.strSheet": "Лист", - "SSE.Controllers.Statusbar.textExternalLink": "Зовнішнє посилання", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Робочий аркуш може мати дані. Продовжити операцію?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "У цьому документі є незбережені зміни. Натисніть \"Залишатися на цій сторінці\", щоб дочекатись автоматичного збереження документа. Натисніть \"Покинути цю сторінку\", щоб відхилити всі незбережені зміни.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Ви залишили заявку", - "SSE.Controllers.Toolbar.leaveButtonText": "Залишити цю сторінку", - "SSE.Controllers.Toolbar.stayButtonText": "Залишатись на цій сторінці", - "SSE.Views.AddFunction.sCatDateAndTime": "Дата і час", - "SSE.Views.AddFunction.sCatEngineering": "Інженерія", - "SSE.Views.AddFunction.sCatFinancial": "Фінансовий", - "SSE.Views.AddFunction.sCatInformation": "Інформація", - "SSE.Views.AddFunction.sCatLogical": "Логічний", - "SSE.Views.AddFunction.sCatLookupAndReference": "Пошук та довідка", - "SSE.Views.AddFunction.sCatMathematic": "Математика та тригонометрія", - "SSE.Views.AddFunction.sCatStatistical": "Статистичний", - "SSE.Views.AddFunction.sCatTextAndData": "Текст і дата", - "SSE.Views.AddFunction.textBack": "Назад", - "SSE.Views.AddFunction.textGroups": "Категорії", - "SSE.Views.AddLink.textAddLink": "Додати посилання", - "SSE.Views.AddLink.textAddress": "Адреса", - "SSE.Views.AddLink.textDisplay": "Дісплей", - "SSE.Views.AddLink.textExternalLink": "Зовнішнє посилання", - "SSE.Views.AddLink.textInsert": "Вставити", - "SSE.Views.AddLink.textInternalLink": "Внутрішній діапазон даних", - "SSE.Views.AddLink.textLink": "Посилання", - "SSE.Views.AddLink.textLinkType": "Тип посилання", - "SSE.Views.AddLink.textRange": "Діапазон", - "SSE.Views.AddLink.textRequired": "Вимагається", - "SSE.Views.AddLink.textSheet": "Лист", - "SSE.Views.AddLink.textTip": "Підказка для екрана", - "SSE.Views.AddOther.textAddress": "Адреса", - "SSE.Views.AddOther.textBack": "Назад", - "SSE.Views.AddOther.textFilter": "Фільтр", - "SSE.Views.AddOther.textFromLibrary": "Зображення з бібліотеки", - "SSE.Views.AddOther.textFromURL": "Зображення з URL", - "SSE.Views.AddOther.textImageURL": "URL зображення", - "SSE.Views.AddOther.textInsert": "Вставити", - "SSE.Views.AddOther.textInsertImage": "Вставити зображення", - "SSE.Views.AddOther.textLink": "Посилання", - "SSE.Views.AddOther.textSort": "Сортувати і отфільтрувати", - "SSE.Views.EditCell.textAccounting": "Бухгалтерський облік", - "SSE.Views.EditCell.textAlignBottom": "Вирівняти знизу", - "SSE.Views.EditCell.textAlignCenter": "Вирівняти центр", - "SSE.Views.EditCell.textAlignLeft": "Вирівняти зліва", - "SSE.Views.EditCell.textAlignMiddle": "Вирівняти посередині", - "SSE.Views.EditCell.textAlignRight": "Вирівняти справа", - "SSE.Views.EditCell.textAlignTop": "Вирівняти догори", - "SSE.Views.EditCell.textAllBorders": "Всі кордони", - "SSE.Views.EditCell.textBack": "Назад", - "SSE.Views.EditCell.textBorderStyle": "Стиль межі", - "SSE.Views.EditCell.textBottomBorder": "Межа знизу", - "SSE.Views.EditCell.textCellStyle": "Стилі клітини", - "SSE.Views.EditCell.textColor": "Колір", - "SSE.Views.EditCell.textCurrency": "Валюта", - "SSE.Views.EditCell.textDate": "Дата", - "SSE.Views.EditCell.textDiagDownBorder": "Діагональ внизу межі", - "SSE.Views.EditCell.textDiagUpBorder": "Діагональ вгорі межі", - "SSE.Views.EditCell.textDollar": "Долар", - "SSE.Views.EditCell.textEuro": "Євро", - "SSE.Views.EditCell.textFillColor": "Заповнити кольором", - "SSE.Views.EditCell.textFonts": "Шрифти", - "SSE.Views.EditCell.textFormat": "Формат", - "SSE.Views.EditCell.textGeneral": "Загальні", - "SSE.Views.EditCell.textInBorders": "Всередині кордонів", - "SSE.Views.EditCell.textInHorBorder": "Всередині горизонтального кордону", - "SSE.Views.EditCell.textInteger": "Ціле число", - "SSE.Views.EditCell.textInVertBorder": "Всередині вертикального кордону", - "SSE.Views.EditCell.textJustified": "Обгрунтовано", - "SSE.Views.EditCell.textLeftBorder": "Ліва межа", - "SSE.Views.EditCell.textMedium": "Середній", - "SSE.Views.EditCell.textNoBorder": "Немає кородонів", - "SSE.Views.EditCell.textNumber": "Номер", - "SSE.Views.EditCell.textPercentage": "відсотковий вміст", - "SSE.Views.EditCell.textPound": "Фунт", - "SSE.Views.EditCell.textRightBorder": "Права межа", - "SSE.Views.EditCell.textRouble": "Рубль", - "SSE.Views.EditCell.textScientific": "Науковий", - "SSE.Views.EditCell.textSize": "Розмір", - "SSE.Views.EditCell.textText": "Текст", - "SSE.Views.EditCell.textTextColor": "Колір тексту", - "SSE.Views.EditCell.textTextFormat": "Формат тексту", - "SSE.Views.EditCell.textThick": "Товстий", - "SSE.Views.EditCell.textThin": "Тонкий", - "SSE.Views.EditCell.textTime": "Час", - "SSE.Views.EditCell.textTopBorder": "Межа угорі", - "SSE.Views.EditCell.textWrapText": "Обернути текст", - "SSE.Views.EditCell.textYen": "Йен", - "SSE.Views.EditChart.textAuto": "Авто", - "SSE.Views.EditChart.textAxisCrosses": "Осі Хрести", - "SSE.Views.EditChart.textAxisOptions": "Параметри осей", - "SSE.Views.EditChart.textAxisPosition": "Позиція осі", - "SSE.Views.EditChart.textAxisTitle": "Назва осі", - "SSE.Views.EditChart.textBack": "Назад", - "SSE.Views.EditChart.textBackward": "Перемістити назад", - "SSE.Views.EditChart.textBorder": "Межа", - "SSE.Views.EditChart.textBottom": "Внизу", - "SSE.Views.EditChart.textChart": "Діаграма", - "SSE.Views.EditChart.textChartTitle": "Назва діграми", - "SSE.Views.EditChart.textColor": "Колір", - "SSE.Views.EditChart.textCrossesValue": "Перекреслювати значення", - "SSE.Views.EditChart.textDataLabels": "Підписи даних", - "SSE.Views.EditChart.textDesign": "Дизайн", - "SSE.Views.EditChart.textDisplayUnits": "Елементи відображення", - "SSE.Views.EditChart.textFill": "Заповнити", - "SSE.Views.EditChart.textForward": "Перемістити вперед", - "SSE.Views.EditChart.textHorAxis": "Горизонтальна вісь", - "SSE.Views.EditChart.textHorizontal": "Горізонтальний", - "SSE.Views.EditChart.textLabelOptions": "Варіанти маркування", - "SSE.Views.EditChart.textLabelPos": "Позиції маркування", - "SSE.Views.EditChart.textLayout": "Макет", - "SSE.Views.EditChart.textLeft": "Лівий", - "SSE.Views.EditChart.textLeftOverlay": "Ліве накладення", - "SSE.Views.EditChart.textLegend": "Підпис", - "SSE.Views.EditChart.textMajor": "Мажор", - "SSE.Views.EditChart.textMajorMinor": "Мажор та мінор", - "SSE.Views.EditChart.textMajorType": "Значний тип", - "SSE.Views.EditChart.textMaxValue": "Максимальне значення", - "SSE.Views.EditChart.textMinor": "Мінор", - "SSE.Views.EditChart.textMinorType": "Маленький тип", - "SSE.Views.EditChart.textMinValue": "Мінімальне значення", - "SSE.Views.EditChart.textNone": "Жоден", - "SSE.Views.EditChart.textNoOverlay": "Немає накладання", - "SSE.Views.EditChart.textOverlay": "Накладання", - "SSE.Views.EditChart.textRemoveChart": "Видалити діаграму", - "SSE.Views.EditChart.textReorder": "Змінити порядок", - "SSE.Views.EditChart.textRight": "Право", - "SSE.Views.EditChart.textRightOverlay": "Праве накладення", - "SSE.Views.EditChart.textRotated": "Поворот", - "SSE.Views.EditChart.textSize": "Розмір", - "SSE.Views.EditChart.textStyle": "Стиль", - "SSE.Views.EditChart.textTickOptions": "Перевірте варіанти", - "SSE.Views.EditChart.textToBackground": "Надіслати до фону", - "SSE.Views.EditChart.textToForeground": "Перенести на передній план", - "SSE.Views.EditChart.textTop": "Верх", - "SSE.Views.EditChart.textType": "Тип", - "SSE.Views.EditChart.textValReverseOrder": "Значення у зворотному порядку", - "SSE.Views.EditChart.textVerAxis": "Вертикальні вісі", - "SSE.Views.EditChart.textVertical": "Вертикальний", - "SSE.Views.EditHyperlink.textBack": "Назад", - "SSE.Views.EditHyperlink.textDisplay": "Дісплей", - "SSE.Views.EditHyperlink.textEditLink": "Редагувати посилання", - "SSE.Views.EditHyperlink.textExternalLink": "Зовнішнє посилання", - "SSE.Views.EditHyperlink.textInternalLink": "Внутрішній діапазон даних", - "SSE.Views.EditHyperlink.textLink": "Посилання", - "SSE.Views.EditHyperlink.textLinkType": "Тип посилання", - "SSE.Views.EditHyperlink.textRange": "Діапазон", - "SSE.Views.EditHyperlink.textRemoveLink": "Видалити посилання", - "SSE.Views.EditHyperlink.textScreenTip": "Підказка для екрана", - "SSE.Views.EditHyperlink.textSheet": "Лист", - "SSE.Views.EditImage.textAddress": "Адреса", - "SSE.Views.EditImage.textBack": "Назад", - "SSE.Views.EditImage.textBackward": "Перемістити назад", - "SSE.Views.EditImage.textDefault": "За замовчуванням", - "SSE.Views.EditImage.textForward": "Перемістити вперед", - "SSE.Views.EditImage.textFromLibrary": "Зображення з бібліотеки", - "SSE.Views.EditImage.textFromURL": "Зображення з URL", - "SSE.Views.EditImage.textImageURL": "URL зображення", - "SSE.Views.EditImage.textLinkSettings": "Налаштування посилання", - "SSE.Views.EditImage.textRemove": "Видалити зображення", - "SSE.Views.EditImage.textReorder": "Змінити порядок", - "SSE.Views.EditImage.textReplace": "Замінити", - "SSE.Views.EditImage.textReplaceImg": "Замінити зображення", - "SSE.Views.EditImage.textToBackground": "Надіслати до фону", - "SSE.Views.EditImage.textToForeground": "Перенести на передній план", - "SSE.Views.EditShape.textBack": "Назад", - "SSE.Views.EditShape.textBackward": "Перемістити назад", - "SSE.Views.EditShape.textBorder": "Межа", - "SSE.Views.EditShape.textColor": "Колір", - "SSE.Views.EditShape.textEffects": "Ефекти", - "SSE.Views.EditShape.textFill": "Заповнити", - "SSE.Views.EditShape.textForward": "Перемістити вперед", - "SSE.Views.EditShape.textOpacity": "Непрозорість", - "SSE.Views.EditShape.textRemoveShape": "Видалити форму", - "SSE.Views.EditShape.textReorder": "Змінити порядок", - "SSE.Views.EditShape.textReplace": "Замінити", - "SSE.Views.EditShape.textSize": "Розмір", - "SSE.Views.EditShape.textStyle": "Стиль", - "SSE.Views.EditShape.textToBackground": "Надіслати до фону", - "SSE.Views.EditShape.textToForeground": "Перенести на передній план", - "SSE.Views.EditText.textBack": "Назад", - "SSE.Views.EditText.textFillColor": "Заповнити кольором", - "SSE.Views.EditText.textFonts": "Шрифти", - "SSE.Views.EditText.textSize": "Розмір", - "SSE.Views.EditText.textTextColor": "Колір тексту", - "SSE.Views.Search.textDone": "Готово", - "SSE.Views.Search.textFind": "Знайти", - "SSE.Views.Search.textFindAndReplace": "Знайти та перемістити", - "SSE.Views.Search.textMatchCase": "Додати обставини", - "SSE.Views.Search.textMatchCell": "Додати клітини", - "SSE.Views.Search.textReplace": "Замінити", - "SSE.Views.Search.textSearch": "Пошук", - "SSE.Views.Search.textSearchIn": "шукати в", - "SSE.Views.Search.textSheet": "Лист", - "SSE.Views.Search.textWorkbook": "Робоча книга", - "SSE.Views.Settings.textAbout": "Про", - "SSE.Views.Settings.textAddress": "Адреса", - "SSE.Views.Settings.textAuthor": "Автор", - "SSE.Views.Settings.textBack": "Назад", - "SSE.Views.Settings.textCollaboration": "Співпраця", - "SSE.Views.Settings.textCreateDate": "Дата створення", - "SSE.Views.Settings.textDocInfo": "Інформація про електронну таблицю", - "SSE.Views.Settings.textDocTitle": "Назва електронної таблиці", - "SSE.Views.Settings.textDone": "Готово", - "SSE.Views.Settings.textDownload": "Скачати", - "SSE.Views.Settings.textDownloadAs": "Завантажити як...", - "SSE.Views.Settings.textEditDoc": "Редагувати документ", - "SSE.Views.Settings.textEmail": "Електронна пошта", - "SSE.Views.Settings.textFind": "Знайти", - "SSE.Views.Settings.textFindAndReplace": "Знайти та перемістити", - "SSE.Views.Settings.textHelp": "Допомога", - "SSE.Views.Settings.textLoading": "Завантаження...", - "SSE.Views.Settings.textPoweredBy": "Під керуванням", - "SSE.Views.Settings.textSettings": "Налаштування", - "SSE.Views.Settings.textTel": "Телефон", - "SSE.Views.Settings.textVersion": "Версія", - "SSE.Views.Settings.unknownText": "Невідомий", - "SSE.Views.Toolbar.textBack": "Назад" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 2e8db0054..7724d1d16 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -1,488 +1,637 @@ { - "Common.UI.ThemeColorPalette.textStandartColors": "Màu chuẩn", - "Common.UI.ThemeColorPalette.textThemeColors": "Màu theme", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "SSE.Controllers.AddChart.txtDiagramTitle": "Tiêu đề biểu đồ", - "SSE.Controllers.AddChart.txtSeries": "Chuỗi", - "SSE.Controllers.AddChart.txtXAxis": "Trục X", - "SSE.Controllers.AddChart.txtYAxis": "Trục Y", - "SSE.Controllers.AddContainer.textChart": "Biểu đồ", - "SSE.Controllers.AddContainer.textFormula": "Hàm số", - "SSE.Controllers.AddContainer.textImage": "Hình ảnh", - "SSE.Controllers.AddContainer.textOther": "Khác", - "SSE.Controllers.AddContainer.textShape": "Hình dạng", - "SSE.Controllers.AddLink.textInvalidRange": "LỖI! Phạm vi ô không hợp lệ", - "SSE.Controllers.AddLink.txtNotUrl": "Trường này phải là URL có định dạng 'http://www.example.com'", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Bạn cần chỉ định URL hình ảnh.", - "SSE.Controllers.AddOther.txtNotUrl": "Trường này phải là URL có định dạng 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.menuAddLink": "Thêm liên kết", - "SSE.Controllers.DocumentHolder.menuCell": "Ô", - "SSE.Controllers.DocumentHolder.menuCopy": "Sao chép", - "SSE.Controllers.DocumentHolder.menuCut": "Cắt", - "SSE.Controllers.DocumentHolder.menuDelete": "Xóa", - "SSE.Controllers.DocumentHolder.menuEdit": "Chỉnh sửa", - "SSE.Controllers.DocumentHolder.menuHide": "Ẩn", - "SSE.Controllers.DocumentHolder.menuMerge": "Trộn", - "SSE.Controllers.DocumentHolder.menuMore": "Thêm", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Mở liên kết", - "SSE.Controllers.DocumentHolder.menuPaste": "Dán", - "SSE.Controllers.DocumentHolder.menuShow": "Hiển thị", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Bỏ gộp", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Bỏ ngắt dòng", - "SSE.Controllers.DocumentHolder.menuWrap": "Ngắt dòng", - "SSE.Controllers.DocumentHolder.sheetCancel": "Hủy", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Chỉ dữ liệu từ ô phía trên bên trái sẽ vẫn nằm trong ô được gộp.
    Bạn có chắc là muốn tiếp tục?", - "SSE.Controllers.EditCell.textAuto": "Tự động", - "SSE.Controllers.EditCell.textFonts": "Phông chữ", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "LỖI! Số chuỗi dữ liệu tối đa cho mỗi biểu đồ là 255.", - "SSE.Controllers.EditChart.errorStockChart": "Thứ tự hàng không chính xác. Để xây dựng một biểu đồ chứng khoán đặt dữ liệu trên giấy theo thứ tự sau:
    giá mở phiên, giá cao nhất, giá thấp nhất, giá đóng phiên.", - "SSE.Controllers.EditChart.textAuto": "Tự động", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Giữa các dấu kiểm", - "SSE.Controllers.EditChart.textBillions": "Hàng tỷ", - "SSE.Controllers.EditChart.textBottom": "Dưới cùng", - "SSE.Controllers.EditChart.textCenter": "Trung tâm", - "SSE.Controllers.EditChart.textCross": "Chéo", - "SSE.Controllers.EditChart.textCustom": "Tuỳ chỉnh", - "SSE.Controllers.EditChart.textFit": "Vừa chiều rộng", - "SSE.Controllers.EditChart.textFixed": "Cố định", - "SSE.Controllers.EditChart.textHigh": "Cao", - "SSE.Controllers.EditChart.textHorizontal": "Nằm ngang", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Hàng trăm", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "Trong", - "SSE.Controllers.EditChart.textInnerBottom": "Dưới cùng bên trong", - "SSE.Controllers.EditChart.textInnerTop": "Trên cùng bên trong", - "SSE.Controllers.EditChart.textLeft": "Trái", - "SSE.Controllers.EditChart.textLeftOverlay": "Xếp chồng bên trái", - "SSE.Controllers.EditChart.textLow": "Thấp", - "SSE.Controllers.EditChart.textManual": "Thủ công", - "SSE.Controllers.EditChart.textMaxValue": "Giá trị lớn nhất", - "SSE.Controllers.EditChart.textMillions": "Hàng triệu", - "SSE.Controllers.EditChart.textMinValue": "Giá trị nhỏ nhất", - "SSE.Controllers.EditChart.textNextToAxis": "Bên cạnh trục", - "SSE.Controllers.EditChart.textNone": "Không", - "SSE.Controllers.EditChart.textNoOverlay": "Không Xếp chồng", - "SSE.Controllers.EditChart.textOnTickMarks": "Bằng dấu kiểm", - "SSE.Controllers.EditChart.textOut": "Ngoài", - "SSE.Controllers.EditChart.textOuterTop": "Trên cùng bên ngoài", - "SSE.Controllers.EditChart.textOverlay": "Xếp chồng", - "SSE.Controllers.EditChart.textRight": "Bên phải", - "SSE.Controllers.EditChart.textRightOverlay": "Xếp chồng bên phải", - "SSE.Controllers.EditChart.textRotated": "Được xoay", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Hàng nghìn", - "SSE.Controllers.EditChart.textTop": "Trên cùng", - "SSE.Controllers.EditChart.textTrillions": "Hàng nghìn tỷ", - "SSE.Controllers.EditChart.textValue": "Giá trị", - "SSE.Controllers.EditContainer.textCell": "Ô", - "SSE.Controllers.EditContainer.textChart": "Biểu đồ", - "SSE.Controllers.EditContainer.textHyperlink": "Siêu liên kết", - "SSE.Controllers.EditContainer.textImage": "Hình ảnh", - "SSE.Controllers.EditContainer.textSettings": "Cài đặt", - "SSE.Controllers.EditContainer.textShape": "Hình dạng", - "SSE.Controllers.EditContainer.textTable": "Bảng", - "SSE.Controllers.EditContainer.textText": "Văn bản", - "SSE.Controllers.EditHyperlink.textDefault": "Phạm vi đã chọn", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Bạn cần chỉ định URL hình ảnh.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Liên kết ngoài", - "SSE.Controllers.EditHyperlink.textInternalLink": "Phạm vi dữ liệu nội bộ", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Phạm vi ô không hợp lệ", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Trường này phải là URL có định dạng \"http://www.example.com\"", - "SSE.Controllers.Main.advCSVOptions": "Chọn tùy chọn CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Nhập mật khẩu của bạn:", - "SSE.Controllers.Main.advDRMOptions": "File được bảo vệ", - "SSE.Controllers.Main.advDRMPassword": "Mật khẩu", - "SSE.Controllers.Main.applyChangesTextText": "Đang tải dữ liệu...", - "SSE.Controllers.Main.applyChangesTitleText": "Đang tải Dữ liệu", - "SSE.Controllers.Main.convertationTimeoutText": "Đã quá thời gian chờ chuyển đổi.", - "SSE.Controllers.Main.criticalErrorExtText": "Ấn 'OK' để trở lại danh sách tài liệu.", - "SSE.Controllers.Main.criticalErrorTitle": "Lỗi", - "SSE.Controllers.Main.downloadErrorText": "Tải về không thành công.", - "SSE.Controllers.Main.downloadMergeText": "Đang tải...", - "SSE.Controllers.Main.downloadMergeTitle": "Đang tải về", - "SSE.Controllers.Main.downloadTextText": "Đang tải tài liệu...", - "SSE.Controllers.Main.downloadTitleText": "Đang tải tài liệu...", - "SSE.Controllers.Main.errorAccessDeny": "Bạn đang cố gắng thực hiện hành động mà bạn không có quyền.
    Vui lòng liên hệ với quản trị viên Server Tài liệu của bạn.", - "SSE.Controllers.Main.errorArgsRange": "Lỗi trong công thức đã nhập.
    Phạm vi đối số không chính xác.", - "SSE.Controllers.Main.errorAutoFilterChange": "Thao tác này không được phép, vì nó đang cố gắng chuyển các ô trong một bảng vào trang tính của bạn.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Không thể thực hiện thao tác với các ô đã chọn vì bạn không thể di chuyển một phần của bảng.
    Chọn phạm vi dữ liệu khác để toàn bộ bảng được di chuyển và thử lại.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Không thể thực hiện thao tác cho phạm vi ô đã chọn.
    Chọn phạm vi dữ liệu thống nhất khác với phạm vi hiện tại và thử lại.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Không thể thực hiện thao tác vì vùng này chứa các ô được lọc.
    Vui lòng bỏ ẩn các phần tử được lọc và thử lại.", - "SSE.Controllers.Main.errorBadImageUrl": "URL hình ảnh không chính xác", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Mất kết nối server. Không thể chỉnh sửa tài liệu ngay lúc này.", - "SSE.Controllers.Main.errorConnectToServer": "Không thể lưu tài liệu. Vui lòng kiểm tra cài đặt kết nối hoặc liên hệ với quản trị viên của bạn.
    Khi bạn nhấp vào nút 'OK', bạn sẽ được nhắc tải xuống tài liệu.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Không thể sử dụng lệnh này với nhiều lựa chọn.
    Chọn một phạm vi và thử lại.", - "SSE.Controllers.Main.errorCountArg": "Lỗi trong công thức đã nhập.
    Không dùng đúng số lượng đối số.", - "SSE.Controllers.Main.errorCountArgExceed": "Lỗi trong công thức đã nhập.
    Đã vượt quá số lượng đối số.", - "SSE.Controllers.Main.errorCreateDefName": "Không thể chỉnh sửa các phạm vi được đặt tên hiện tại và hiện thời không thể tạo các phạm vi mới vì một số trong đó đang được chỉnh sửa.", - "SSE.Controllers.Main.errorDatabaseConnection": "Lỗi bên ngoài.
    Lỗi kết nối cơ sở dữ liệu. Vui lòng liên hệ bộ phận hỗ trợ trong trường hợp lỗi vẫn còn.", - "SSE.Controllers.Main.errorDataRange": "Phạm vi dữ liệu không chính xác.", - "SSE.Controllers.Main.errorDefaultMessage": "Mã lỗi: %1", - "SSE.Controllers.Main.errorFilePassProtect": "Tài liệu được bảo vệ bằng mật khẩu và không thể mở được.", - "SSE.Controllers.Main.errorFileRequest": "Lỗi bên ngoài.
    Lỗi yêu cầu file. Vui lòng liên hệ với bộ phận hỗ trợ trong trường hợp lỗi vẫn còn.", - "SSE.Controllers.Main.errorFileVKey": "Lỗi bên ngoài.
    Key bảo mật không chính xác. Vui lòng liên hệ với bộ phận hỗ trợ trong trường hợp lỗi vẫn còn.", - "SSE.Controllers.Main.errorFillRange": "Không thể điền vào phạm vi các ô đã chọn.
    Tất cả các ô được gộp phải có cùng kích thước.", - "SSE.Controllers.Main.errorFormulaName": "Lỗi trong công thức đã nhập.
    Tên công thức không chính xác.", - "SSE.Controllers.Main.errorFormulaParsing": "Lỗi nội bộ khi phân tích cú pháp công thức.", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Hàm này đề cập đến một trang tính không tồn tại.
    Vui lòng kiểm tra dữ liệu và thử lại.", - "SSE.Controllers.Main.errorInvalidRef": "Nhập đúng tên cho vùng chọn hoặc tham chiếu hợp lệ để đi đến.", - "SSE.Controllers.Main.errorKeyEncrypt": "Key descriptor không xác định", - "SSE.Controllers.Main.errorKeyExpire": "Key của descriptor đã hết hạn", - "SSE.Controllers.Main.errorLockedAll": "Thao tác không thể được thực hiện vì trang tính đã bị khóa bởi một người dùng khác.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "Hiện tại bạn không thể đổi tên trang tính này vì nó đang được đổi tên bởi một người dùng khác", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Tải không thành công", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Trộn không thành công.", - "SSE.Controllers.Main.errorMoveRange": "Không thể thay đổi phần ô đã gộp", - "SSE.Controllers.Main.errorOpenWarning": "Chiều dài của một trong các công thức trong file này vượt quá
    số ký tự cho phép và nó đã bị xóa.", - "SSE.Controllers.Main.errorOperandExpected": "Cú pháp hàm được nhập vào không chính xác. Vui lòng kiểm tra xem bạn có thiếu một trong các dấu ngoặc - '(' hoặc ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "Vùng sao chép và dán không trùng khớp.
    Vui lòng chọn vùng có cùng kích thước hoặc nhấp vào ô đầu tiên trong một hàng để dán các ô được sao chép.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Rất tiếc là không thể cùng lúc in nhiều hơn 1500 trang trong phiên bản chương trình hiện tại.
    Hạn chế này sẽ bị xóa trong các bản phát hành sắp tới.", - "SSE.Controllers.Main.errorProcessSaveResult": "Lưu không thành công", - "SSE.Controllers.Main.errorServerVersion": "Phiên bản trình chỉnh sửa này đã được cập nhật. Trang sẽ được tải lại để áp dụng các thay đổi.", - "SSE.Controllers.Main.errorSessionAbsolute": "Phiên chỉnh sửa tài liệu đã hết hạn. Vui lòng tải lại trang.", - "SSE.Controllers.Main.errorSessionIdle": "Tài liệu đã không được chỉnh sửa trong một thời gian khá dài. Vui lòng tải lại trang.", - "SSE.Controllers.Main.errorSessionToken": "Kết nối với server bị gián đoạn. Vui lòng tải lại trang.", - "SSE.Controllers.Main.errorStockChart": "Thứ tự hàng không chính xác. Để xây dựng một biểu đồ chứng khoán đặt dữ liệu trên giấy theo thứ tự sau:
    giá mở phiên, giá cao nhất, giá thấp nhất, giá đóng phiên.", - "SSE.Controllers.Main.errorToken": "Token bảo mật tài liệu không được tạo đúng.
    Vui lòng liên hệ với quản trị viên Server Tài liệu của bạn.", - "SSE.Controllers.Main.errorTokenExpire": "Token bảo mật tài liệu đã hết hạn.
    Vui lòng liên hệ với quản trị viên Server Tài liệu của bạn.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Lỗi bên ngoài.
    GUID ngoài ý muốn. Vui lòng liên hệ với bộ phận hỗ trợ trong trường hợp lỗi vẫn còn.", - "SSE.Controllers.Main.errorUpdateVersion": "Phiên bản file này đã được thay đổi. Trang này sẽ được tải lại.", - "SSE.Controllers.Main.errorUserDrop": "Không thể truy cập file ngay lúc này.", - "SSE.Controllers.Main.errorUsersExceed": "Đã vượt quá số người dùng được phép của gói dịch vụ này", - "SSE.Controllers.Main.errorViewerDisconnect": "Mất kết nối. Bạn vẫn có thể xem tài liệu,
    nhưng sẽ không thể tải về cho đến khi kết nối được khôi phục.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Lỗi trong công thức đã nhập.
    Đã sử dụng sai số dấu ngoặc.", - "SSE.Controllers.Main.errorWrongOperator": "Lỗi trong công thức đã nhập. Dùng sai toán tử.
    Vui lòng sửa lỗi.", - "SSE.Controllers.Main.leavePageText": "Bạn có những thay đổi chưa lưu trong tài liệu này. Nhấp vào 'Ở lại Trang này' để chờ tự động lưu tài liệu. Nhấp vào 'Rời Trang này' để bỏ tất cả các thay đổi chưa lưu.", - "SSE.Controllers.Main.loadFontsTextText": "Đang tải dữ liệu...", - "SSE.Controllers.Main.loadFontsTitleText": "Đang tải Dữ liệu", - "SSE.Controllers.Main.loadFontTextText": "Đang tải dữ liệu...", - "SSE.Controllers.Main.loadFontTitleText": "Đang tải Dữ liệu", - "SSE.Controllers.Main.loadImagesTextText": "Đang tải hình ảnh...", - "SSE.Controllers.Main.loadImagesTitleText": "Đang tải hình ảnh", - "SSE.Controllers.Main.loadImageTextText": "Đang tải hình ảnh...", - "SSE.Controllers.Main.loadImageTitleText": "Đang tải hình ảnh", - "SSE.Controllers.Main.loadingDocumentTextText": "Đang tải tài liệu...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Đang tải tài liệu", - "SSE.Controllers.Main.mailMergeLoadFileText": "Đang tải nguồn dữ liệu...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Đang tải nguồn dữ liệu", - "SSE.Controllers.Main.notcriticalErrorTitle": "Cảnh báo", - "SSE.Controllers.Main.openErrorText": "Xảy ra lỗi khi mở file", - "SSE.Controllers.Main.openTextText": "Đang mở tài liệu...", - "SSE.Controllers.Main.openTitleText": "Đang mở tài liệu...", - "SSE.Controllers.Main.printTextText": "Đang in Tài liệu...", - "SSE.Controllers.Main.printTitleText": "Đang in Tài liệu", - "SSE.Controllers.Main.reloadButtonText": "Tải lại Trang", - "SSE.Controllers.Main.requestEditFailedMessageText": "Hiện có ai đó đang chỉnh sửa tài liệu này. Vui lòng thử lại sau.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Truy cập bị từ chối", - "SSE.Controllers.Main.saveErrorText": "Xảy ra lỗi khi lưu file", - "SSE.Controllers.Main.savePreparingText": "Chuẩn bị lưu", - "SSE.Controllers.Main.savePreparingTitle": "Chuẩn bị lưu. Vui lòng chờ...", - "SSE.Controllers.Main.saveTextText": "Đang lưu tài liệu...", - "SSE.Controllers.Main.saveTitleText": "Đang lưu tài liệu...", - "SSE.Controllers.Main.sendMergeText": "Đang gửi Trộn...", - "SSE.Controllers.Main.sendMergeTitle": "Đang gửi Trộn", - "SSE.Controllers.Main.textAnonymous": "Nặc danh", - "SSE.Controllers.Main.textBack": "Quay lại", - "SSE.Controllers.Main.textBuyNow": "Truy cập trang web", - "SSE.Controllers.Main.textCancel": "Hủy", - "SSE.Controllers.Main.textClose": "Đóng", - "SSE.Controllers.Main.textContactUs": "Phòng kinh doanh", - "SSE.Controllers.Main.textDone": "Hoàn tất", - "SSE.Controllers.Main.textLoadingDocument": "Đang tải tài liệu", - "SSE.Controllers.Main.textNoLicenseTitle": "Phiên bản mã nguồn mở ONLYOFFICE", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPassword": "Mật khẩu", - "SSE.Controllers.Main.textPreloader": "Đang tải...", - "SSE.Controllers.Main.textShape": "Hình dạng", - "SSE.Controllers.Main.textStrict": "Chế độ nghiêm ngặt", - "SSE.Controllers.Main.textTryUndoRedo": "Các chức năng Hoàn tác/Làm lại bị vô hiệu hóa cho chế độ đồng chỉnh sửa Nhanh.
    Nhấp vào nút 'Chế độ nghiêm ngặt' để chuyển sang chế độ đồng chỉnh sửa Nghiêm ngặt để chỉnh sửa các file mà không có sự can thiệp của người dùng khác và gửi các thay đổi của bạn chỉ sau khi bạn đã lưu. Bạn có thể chuyển đổi giữa các chế độ đồng chỉnh sửa bằng cách sử dụng Cài đặt Nâng cao trình biên tập.", - "SSE.Controllers.Main.textUsername": "Tên đăng nhập", - "SSE.Controllers.Main.titleLicenseExp": "Giấy phép hết hạn", - "SSE.Controllers.Main.titleServerVersion": "Đã cập nhật trình chỉnh sửa", - "SSE.Controllers.Main.titleUpdateVersion": "Đã thay đổi phiên bản", - "SSE.Controllers.Main.txtAccent": "Dấu phụ", - "SSE.Controllers.Main.txtArt": "Văn bản của bạn ở đây", - "SSE.Controllers.Main.txtBasicShapes": "Hình dạng cơ bản", - "SSE.Controllers.Main.txtButtons": "Nút", - "SSE.Controllers.Main.txtCallouts": "Callout", - "SSE.Controllers.Main.txtCharts": "Biểu đồ", - "SSE.Controllers.Main.txtDelimiter": "Dấu phân cách", - "SSE.Controllers.Main.txtDiagramTitle": "Tiêu đề biểu đồ", - "SSE.Controllers.Main.txtEditingMode": "Đặt chế độ chỉnh sửa...", - "SSE.Controllers.Main.txtEncoding": "Mã hóa", - "SSE.Controllers.Main.txtErrorLoadHistory": "Tải lịch sử không thành công", - "SSE.Controllers.Main.txtFiguredArrows": "Mũi tên có hình vẽ", - "SSE.Controllers.Main.txtLines": "Đường kẻ", - "SSE.Controllers.Main.txtMath": "Toán", - "SSE.Controllers.Main.txtRectangles": "Hình chữ nhật", - "SSE.Controllers.Main.txtSeries": "Chuỗi", - "SSE.Controllers.Main.txtSpace": "Khoảng cách", - "SSE.Controllers.Main.txtStarsRibbons": "Sao & Ruy-băng", - "SSE.Controllers.Main.txtStyle_Bad": "Xấu", - "SSE.Controllers.Main.txtStyle_Calculation": "Tính toán", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Ô đánh dấu kiểm", - "SSE.Controllers.Main.txtStyle_Comma": "Phẩy", - "SSE.Controllers.Main.txtStyle_Currency": "Tiền tệ", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Văn bản giải thích", - "SSE.Controllers.Main.txtStyle_Good": "Tốt", - "SSE.Controllers.Main.txtStyle_Heading_1": "Tiêu đề 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Tiêu đề 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Tiêu đề 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Tiêu đề 4", - "SSE.Controllers.Main.txtStyle_Input": "Đầu vào", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Ô được liên kết", - "SSE.Controllers.Main.txtStyle_Neutral": "Trung tính", - "SSE.Controllers.Main.txtStyle_Normal": "Thường", - "SSE.Controllers.Main.txtStyle_Note": "Lưu ý", - "SSE.Controllers.Main.txtStyle_Output": "Đầu ra", - "SSE.Controllers.Main.txtStyle_Percent": "Phần trăm", - "SSE.Controllers.Main.txtStyle_Title": "Tiêu đề", - "SSE.Controllers.Main.txtStyle_Total": "Tổng cộng", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Văn bản Cảnh báo", - "SSE.Controllers.Main.txtTab": "Tab", - "SSE.Controllers.Main.txtXAxis": "Trục X", - "SSE.Controllers.Main.txtYAxis": "Trục Y", - "SSE.Controllers.Main.unknownErrorText": "Lỗi không xác định.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Trình duyệt của bạn không được hỗ trợ.", - "SSE.Controllers.Main.uploadImageExtMessage": "Định dạng hình ảnh không xác định.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Không có hình ảnh được tải lên.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Đã vượt quá giới hạn kích thước tối đa của hình ảnh.", - "SSE.Controllers.Main.uploadImageTextText": "Đang tải lên hình ảnh...", - "SSE.Controllers.Main.uploadImageTitleText": "Đang tải lên hình ảnh", - "SSE.Controllers.Main.warnLicenseExp": "Giấy phép của bạn đã hết hạn.
    Vui lòng cập nhật giấy phép và làm mới trang.", - "SSE.Controllers.Main.warnNoLicense": "Bạn đang sử dụng phiên bản nguồn mở của %1. Phiên bản có giới hạn các kết nối đồng thời với server tài liệu (20 kết nối cùng một lúc).
    Nếu bạn cần thêm, hãy cân nhắc mua giấy phép thương mại.", - "SSE.Controllers.Main.warnProcessRightsChange": "Bạn đã bị từ chối quyền chỉnh sửa file này.", - "SSE.Controllers.Search.textNoTextFound": "Không tìm thấy nội dung", - "SSE.Controllers.Search.textReplaceAll": "Thay thế tất cả", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Cảnh báo", - "SSE.Controllers.Settings.txtEn": "Tiếng anh", - "SSE.Controllers.Settings.txtPl": "Đánh bóng", - "SSE.Controllers.Settings.txtRu": "Nga", - "SSE.Controllers.Settings.warnDownloadAs": "Nếu bạn tiếp tục lưu ở định dạng này tất cả các tính năng trừ văn bản sẽ bị mất.
    Bạn có chắc là muốn tiếp tục?", - "SSE.Controllers.Statusbar.errorLastSheet": "Workbook phải có ít nhất một bảng tính hiển thị.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Không thể xóa bảng tính.", - "SSE.Controllers.Statusbar.menuDelete": "Xóa", - "SSE.Controllers.Statusbar.menuDuplicate": "Nhân bản", - "SSE.Controllers.Statusbar.menuHide": "Ẩn", - "SSE.Controllers.Statusbar.menuUnhide": "Bỏ ẩn", - "SSE.Controllers.Statusbar.strSheet": "Trang tính", - "SSE.Controllers.Statusbar.textExternalLink": "Liên kết ngoài", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Bảng tính này có thể có dữ liệu. Tiếp tục thực hiện?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Bạn có những thay đổi chưa lưu trong tài liệu này. Nhấp vào 'Ở lại Trang này' để chờ tự động lưu tài liệu. Nhấp vào 'Rời Trang này' để bỏ tất cả các thay đổi chưa lưu.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Bạn rời khỏi ứng dụng", - "SSE.Controllers.Toolbar.leaveButtonText": "Rời trang này", - "SSE.Controllers.Toolbar.stayButtonText": "Ở lại trang này", - "SSE.Views.AddFunction.sCatDateAndTime": "Ngày và giờ", - "SSE.Views.AddFunction.sCatEngineering": "Kỹ thuật", - "SSE.Views.AddFunction.sCatFinancial": "Tài chính", - "SSE.Views.AddFunction.sCatInformation": "Thông tin", - "SSE.Views.AddFunction.sCatLogical": "Logic", - "SSE.Views.AddFunction.sCatLookupAndReference": "Tìm kiếm và Tham chiếu", - "SSE.Views.AddFunction.sCatMathematic": "Toán và lượng giác", - "SSE.Views.AddFunction.sCatStatistical": "Thống kê", - "SSE.Views.AddFunction.sCatTextAndData": "Văn bản và dữ liệu", - "SSE.Views.AddFunction.textBack": "Quay lại", - "SSE.Views.AddFunction.textGroups": "Danh mục", - "SSE.Views.AddLink.textAddLink": "Thêm liên kết", - "SSE.Views.AddLink.textAddress": "Địa chỉ", - "SSE.Views.AddLink.textDisplay": "Hiển thị", - "SSE.Views.AddLink.textExternalLink": "Liên kết ngoài", - "SSE.Views.AddLink.textInsert": "Chèn", - "SSE.Views.AddLink.textInternalLink": "Phạm vi dữ liệu nội bộ", - "SSE.Views.AddLink.textLink": "Liên kết", - "SSE.Views.AddLink.textLinkType": "Loại liên kết", - "SSE.Views.AddLink.textRange": "Phạm vi", - "SSE.Views.AddLink.textRequired": "Bắt buộc", - "SSE.Views.AddLink.textSheet": "Trang tính", - "SSE.Views.AddLink.textTip": "Screen Tip", - "SSE.Views.AddOther.textAddress": "Địa chỉ", - "SSE.Views.AddOther.textBack": "Quay lại", - "SSE.Views.AddOther.textFilter": "Lọc", - "SSE.Views.AddOther.textFromLibrary": "Hình ảnh từ Thư viện", - "SSE.Views.AddOther.textFromURL": "Hình ảnh từ URL", - "SSE.Views.AddOther.textImageURL": "URL hình ảnh", - "SSE.Views.AddOther.textInsert": "Chèn", - "SSE.Views.AddOther.textInsertImage": "Chèn hình ảnh", - "SSE.Views.AddOther.textLink": "Liên kết", - "SSE.Views.AddOther.textSort": "Sắp xếp và Lọc", - "SSE.Views.EditCell.textAccounting": "Kế toán", - "SSE.Views.EditCell.textAlignBottom": "Căn dưới cùng", - "SSE.Views.EditCell.textAlignCenter": "Căn trung tâm", - "SSE.Views.EditCell.textAlignLeft": "Căn trái", - "SSE.Views.EditCell.textAlignMiddle": "Căn giữa", - "SSE.Views.EditCell.textAlignRight": "Căn phải", - "SSE.Views.EditCell.textAlignTop": "Căn trên cùng", - "SSE.Views.EditCell.textAllBorders": "Tất cả viền", - "SSE.Views.EditCell.textBack": "Quay lại", - "SSE.Views.EditCell.textBorderStyle": "Kiểu đường viền", - "SSE.Views.EditCell.textBottomBorder": "Đường viền dưới cùng", - "SSE.Views.EditCell.textCellStyle": "Kiểu ô", - "SSE.Views.EditCell.textColor": "Màu sắc", - "SSE.Views.EditCell.textCurrency": "Tiền tệ", - "SSE.Views.EditCell.textDate": "Ngày", - "SSE.Views.EditCell.textDiagDownBorder": "Đường viền đường chéo xuống", - "SSE.Views.EditCell.textDiagUpBorder": "Đường viền đường chéo lên", - "SSE.Views.EditCell.textDollar": "Đô la", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Đổ màu", - "SSE.Views.EditCell.textFonts": "Phông chữ", - "SSE.Views.EditCell.textFormat": "Định dạng", - "SSE.Views.EditCell.textGeneral": "Tổng quát", - "SSE.Views.EditCell.textInBorders": "Đường viền trong", - "SSE.Views.EditCell.textInHorBorder": "Đường viền ngang bên trong", - "SSE.Views.EditCell.textInteger": "Số nguyên", - "SSE.Views.EditCell.textInVertBorder": "Đường viền dọc bên trong", - "SSE.Views.EditCell.textJustified": "Canh đều", - "SSE.Views.EditCell.textLeftBorder": "Đường viền trái", - "SSE.Views.EditCell.textMedium": "Trung bình", - "SSE.Views.EditCell.textNoBorder": "Không viền", - "SSE.Views.EditCell.textNumber": "Số", - "SSE.Views.EditCell.textPercentage": "Phần trăm", - "SSE.Views.EditCell.textPound": "Pound", - "SSE.Views.EditCell.textRightBorder": "Đường viền phải", - "SSE.Views.EditCell.textRouble": "Rúp", - "SSE.Views.EditCell.textScientific": "Khoa học", - "SSE.Views.EditCell.textSize": "Kích thước", - "SSE.Views.EditCell.textText": "Văn bản", - "SSE.Views.EditCell.textTextColor": "Màu chữ", - "SSE.Views.EditCell.textTextFormat": "Định dạng chữ", - "SSE.Views.EditCell.textThick": "Dày", - "SSE.Views.EditCell.textThin": "Mỏng", - "SSE.Views.EditCell.textTime": "Thời gian", - "SSE.Views.EditCell.textTopBorder": "Viền trên cùng", - "SSE.Views.EditCell.textWrapText": "Ngắt dòng", - "SSE.Views.EditCell.textYen": "Yên", - "SSE.Views.EditChart.textAuto": "Tự động", - "SSE.Views.EditChart.textAxisCrosses": "Trục giao nhau", - "SSE.Views.EditChart.textAxisOptions": "Tùy chọn trục", - "SSE.Views.EditChart.textAxisPosition": "Vị trí trục", - "SSE.Views.EditChart.textAxisTitle": "Tiêu đề trục", - "SSE.Views.EditChart.textBack": "Quay lại", - "SSE.Views.EditChart.textBackward": "Di chuyển ngược lại", - "SSE.Views.EditChart.textBorder": "Đường viền", - "SSE.Views.EditChart.textBottom": "Dưới cùng", - "SSE.Views.EditChart.textChart": "Biểu đồ", - "SSE.Views.EditChart.textChartTitle": "Tiêu đề biểu đồ", - "SSE.Views.EditChart.textColor": "Màu sắc", - "SSE.Views.EditChart.textCrossesValue": "Giá trị chéo", - "SSE.Views.EditChart.textDataLabels": "Nhãn dữ liệu", - "SSE.Views.EditChart.textDesign": "Thiết kế", - "SSE.Views.EditChart.textDisplayUnits": "Hiển thị đơn vị", - "SSE.Views.EditChart.textFill": "Đổ màu", - "SSE.Views.EditChart.textForward": "Di chuyển tiến lên", - "SSE.Views.EditChart.textHorAxis": "Trục ngang", - "SSE.Views.EditChart.textHorizontal": "Nằm ngang", - "SSE.Views.EditChart.textLabelOptions": "Tùy chọn Nhãn", - "SSE.Views.EditChart.textLabelPos": "Vị trí Nhãn", - "SSE.Views.EditChart.textLayout": "Bố cục", - "SSE.Views.EditChart.textLeft": "Trái", - "SSE.Views.EditChart.textLeftOverlay": "Xếp chồng bên trái", - "SSE.Views.EditChart.textLegend": "Chú thích", - "SSE.Views.EditChart.textMajor": "Chính", - "SSE.Views.EditChart.textMajorMinor": "Chính và Phụ", - "SSE.Views.EditChart.textMajorType": "Loại chính", - "SSE.Views.EditChart.textMaxValue": "Giá trị lớn nhất", - "SSE.Views.EditChart.textMinor": "Phụ", - "SSE.Views.EditChart.textMinorType": "Loại phụ", - "SSE.Views.EditChart.textMinValue": "Giá trị nhỏ nhất", - "SSE.Views.EditChart.textNone": "Không", - "SSE.Views.EditChart.textNoOverlay": "Không Xếp chồng", - "SSE.Views.EditChart.textOverlay": "Xếp chồng", - "SSE.Views.EditChart.textRemoveChart": "Xóa biểu đồ", - "SSE.Views.EditChart.textReorder": "Đặt lại", - "SSE.Views.EditChart.textRight": "Bên phải", - "SSE.Views.EditChart.textRightOverlay": "Xếp chồng bên phải", - "SSE.Views.EditChart.textRotated": "Được xoay", - "SSE.Views.EditChart.textSize": "Kích thước", - "SSE.Views.EditChart.textStyle": "Kiểu", - "SSE.Views.EditChart.textTickOptions": "Tùy chọn dấu kiểm", - "SSE.Views.EditChart.textToBackground": "Gửi tới Nền", - "SSE.Views.EditChart.textToForeground": "Đưa lên Cận cảnh", - "SSE.Views.EditChart.textTop": "Trên cùng", - "SSE.Views.EditChart.textType": "Loại", - "SSE.Views.EditChart.textValReverseOrder": "Giá trị theo thứ tự ngược", - "SSE.Views.EditChart.textVerAxis": "Trục đứng", - "SSE.Views.EditChart.textVertical": "Chiều dọc", - "SSE.Views.EditHyperlink.textBack": "Quay lại", - "SSE.Views.EditHyperlink.textDisplay": "Hiển thị", - "SSE.Views.EditHyperlink.textEditLink": "Chỉnh sửa Liên kết", - "SSE.Views.EditHyperlink.textExternalLink": "Liên kết ngoài", - "SSE.Views.EditHyperlink.textInternalLink": "Phạm vi dữ liệu nội bộ", - "SSE.Views.EditHyperlink.textLink": "Liên kết", - "SSE.Views.EditHyperlink.textLinkType": "Loại liên kết", - "SSE.Views.EditHyperlink.textRange": "Phạm vi", - "SSE.Views.EditHyperlink.textRemoveLink": "Xóa liên kết", - "SSE.Views.EditHyperlink.textScreenTip": "Screen Tip", - "SSE.Views.EditHyperlink.textSheet": "Trang tính", - "SSE.Views.EditImage.textAddress": "Địa chỉ", - "SSE.Views.EditImage.textBack": "Quay lại", - "SSE.Views.EditImage.textBackward": "Di chuyển ngược lại", - "SSE.Views.EditImage.textDefault": "Kích thước mặc định", - "SSE.Views.EditImage.textForward": "Di chuyển tiến lên", - "SSE.Views.EditImage.textFromLibrary": "Hình ảnh từ Thư viện", - "SSE.Views.EditImage.textFromURL": "Hình ảnh từ URL", - "SSE.Views.EditImage.textImageURL": "URL hình ảnh", - "SSE.Views.EditImage.textLinkSettings": "Cài đặt Liên kết", - "SSE.Views.EditImage.textRemove": "Xóa hình ảnh", - "SSE.Views.EditImage.textReorder": "Đặt lại", - "SSE.Views.EditImage.textReplace": "Thay thế", - "SSE.Views.EditImage.textReplaceImg": "Thay thế ảnh", - "SSE.Views.EditImage.textToBackground": "Gửi tới Nền", - "SSE.Views.EditImage.textToForeground": "Đưa lên Cận cảnh", - "SSE.Views.EditShape.textBack": "Quay lại", - "SSE.Views.EditShape.textBackward": "Di chuyển ngược lại", - "SSE.Views.EditShape.textBorder": "Đường viền", - "SSE.Views.EditShape.textColor": "Màu sắc", - "SSE.Views.EditShape.textEffects": "Hiệu ứng", - "SSE.Views.EditShape.textFill": "Đổ màu", - "SSE.Views.EditShape.textForward": "Di chuyển tiến lên", - "SSE.Views.EditShape.textOpacity": "Độ mờ", - "SSE.Views.EditShape.textRemoveShape": "Xóa hình", - "SSE.Views.EditShape.textReorder": "Đặt lại", - "SSE.Views.EditShape.textReplace": "Thay thế", - "SSE.Views.EditShape.textSize": "Kích thước", - "SSE.Views.EditShape.textStyle": "Kiểu", - "SSE.Views.EditShape.textToBackground": "Gửi tới Nền", - "SSE.Views.EditShape.textToForeground": "Đưa lên Cận cảnh", - "SSE.Views.EditText.textBack": "Quay lại", - "SSE.Views.EditText.textFillColor": "Đổ màu", - "SSE.Views.EditText.textFonts": "Phông chữ", - "SSE.Views.EditText.textSize": "Kích thước", - "SSE.Views.EditText.textTextColor": "Màu chữ", - "SSE.Views.Search.textDone": "Hoàn tất", - "SSE.Views.Search.textFind": "Tìm", - "SSE.Views.Search.textFindAndReplace": "Tìm và Thay thế", - "SSE.Views.Search.textMatchCase": "Phù hợp với trường hợp", - "SSE.Views.Search.textMatchCell": "Phù hợp với ô", - "SSE.Views.Search.textReplace": "Thay thế", - "SSE.Views.Search.textSearch": "Tìm kiếm", - "SSE.Views.Search.textSearchIn": "Tìm kiếm trong", - "SSE.Views.Search.textSheet": "Trang tính", - "SSE.Views.Search.textWorkbook": "Workbook", - "SSE.Views.Settings.textAbout": "Giới thiệu", - "SSE.Views.Settings.textAddress": "địa chỉ", - "SSE.Views.Settings.textAuthor": "Tác giả", - "SSE.Views.Settings.textBack": "Quay lại", - "SSE.Views.Settings.textCreateDate": "Ngày tạo", - "SSE.Views.Settings.textDocInfo": "Thông tin bảng tính", - "SSE.Views.Settings.textDocTitle": "Tiêu đề Bảng tính", - "SSE.Views.Settings.textDone": "Hoàn tất", - "SSE.Views.Settings.textDownload": "Tải về", - "SSE.Views.Settings.textDownloadAs": "Tải về dưới dạng...", - "SSE.Views.Settings.textEditDoc": "Chỉnh sửa Tài liệu", - "SSE.Views.Settings.textEmail": "email", - "SSE.Views.Settings.textFind": "Tìm", - "SSE.Views.Settings.textFindAndReplace": "Tìm và Thay thế", - "SSE.Views.Settings.textHelp": "Trợ giúp", - "SSE.Views.Settings.textLoading": "Đang tải...", - "SSE.Views.Settings.textPoweredBy": "Được hỗ trợ bởi", - "SSE.Views.Settings.textSettings": "Cài đặt", - "SSE.Views.Settings.textTel": "ĐT", - "SSE.Views.Settings.textVersion": "Phiên bản", - "SSE.Views.Settings.unknownText": "Không xác định", - "SSE.Views.Toolbar.textBack": "Quay lại" + "About": { + "textAbout": "About", + "textAddress": "Address", + "textBack": "Back", + "textEmail": "Email", + "textPoweredBy": "Powered By", + "textTel": "Tel", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warning", + "textAddComment": "Add Comment", + "textAddReply": "Add Reply", + "textBack": "Back", + "textCancel": "Cancel", + "textCollaboration": "Collaboration", + "textComments": "Comments", + "textDeleteComment": "Delete Comment", + "textDeleteReply": "Delete Reply", + "textDone": "Done", + "textEdit": "Edit", + "textEditComment": "Edit Comment", + "textEditReply": "Edit Reply", + "textEditUser": "Users who are editing the file:", + "textMessageDeleteComment": "Do you really want to delete this comment?", + "textMessageDeleteReply": "Do you really want to delete this reply?", + "textNoComments": "This document doesn't contain comments", + "textReopen": "Reopen", + "textResolve": "Resolve", + "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "textUsers": "Users" + }, + "ThemeColorPalette": { + "textCustomColors": "Custom Colors", + "textStandartColors": "Standard Colors", + "textThemeColors": "Theme Colors" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", + "menuAddComment": "Add Comment", + "menuAddLink": "Add Link", + "menuCancel": "Cancel", + "menuCell": "Cell", + "menuDelete": "Delete", + "menuEdit": "Edit", + "menuFreezePanes": "Freeze Panes", + "menuHide": "Hide", + "menuMerge": "Merge", + "menuMore": "More", + "menuOpenLink": "Open Link", + "menuShow": "Show", + "menuUnfreezePanes": "Unfreeze Panes", + "menuUnmerge": "Unmerge", + "menuUnwrap": "Unwrap", + "menuViewComment": "View Comment", + "menuWrap": "Wrap", + "notcriticalErrorTitle": "Warning", + "textCopyCutPasteActions": "Copy, Cut and Paste Actions", + "textDoNotShowAgain": "Don't show again", + "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorProcessSaveResult": "Saving is failed.", + "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "notcriticalErrorTitle": "Warning", + "SDK": { + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "textAnonymous": "Anonymous", + "textBuyNow": "Visit website", + "textClose": "Close", + "textContactUs": "Contact sales", + "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", + "textGuest": "Guest", + "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", + "textNo": "No", + "textNoLicenseTitle": "License limit reached", + "textPaidFeature": "Paid feature", + "textRemember": "Remember my choice", + "textYes": "Yes", + "titleServerVersion": "Editor updated", + "titleUpdateVersion": "Version changed", + "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", + "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", + "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
    Please contact your administrator to get full access", + "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", + "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "warnProcessRightsChange": "You don't have permission to edit the file." + } + }, + "Error": { + "convertationTimeoutText": "Conversion timeout exceeded.", + "criticalErrorExtText": "Press 'OK' to go back to the document list.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Download failed.", + "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please, contact your admin.", + "errorArgsRange": "An error in the formula.
    Incorrect arguments range.", + "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", + "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
    Select another data range so that the whole table is shifted and try again.", + "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
    Select a uniform data range inside or outside the table and try again.", + "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please, unhide the filtered elements and try again.", + "errorBadImageUrl": "Image url is incorrect", + "errorChangeArray": "You cannot change part of an array.", + "errorConnectToServer": "Can't save this doc. Check your connection settings or contact your admin.
    When you click the 'OK' button, you will be prompted to download the document.", + "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", + "errorCountArg": "An error in the formula.
    Invalid number of arguments.", + "errorCountArgExceed": "An error in the formula.
    Maximum number of arguments exceeded.", + "errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
    at the moment as some of them are being edited.", + "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", + "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "errorDataRange": "Incorrect data range.", + "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", + "errorDefaultMessage": "Error code: %1", + "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy locally.", + "errorFilePassProtect": "The file is password protected and could not be opened.", + "errorFileRequest": "External error.
    File Request. Please, contact support.", + "errorFileSizeExceed": "The file size exceeds your server limitation.
    Please, contact your admin for details.", + "errorFileVKey": "External error.
    Incorrect security key. Please, contact support.", + "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", + "errorFormulaName": "An error in the formula.
    Incorrect formula name.", + "errorFormulaParsing": "Internal error while the formula parsing.", + "errorFrmlMaxLength": "You cannot add this formula as its length exceeds the allowed number of characters.
    Please, edit it and try again.", + "errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
    cell references, and/or names.", + "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", + "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please, check the data and try again.", + "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "errorKeyEncrypt": "Unknown key descriptor", + "errorKeyExpire": "Key descriptor expired", + "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "errorLockedCellPivot": "You cannot change data inside a pivot table.", + "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "errorMoveRange": "Cannot change a part of a merged cell", + "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", + "errorOperandExpected": "The entered function syntax is not correct. Please, check if you missed one of the parentheses - '(' or ')'.", + "errorPasteMaxRange": "The copy and paste area does not match. Please, select an area of the same size or click the first cell in a row to paste the copied cells.", + "errorPrintMaxPagesCount": "Unfortunately, it’s not possible to print more than 1500 pages at once in the current version of the program.
    This restriction will be eliminated in upcoming releases.", + "errorSessionAbsolute": "The document editing session has expired. Please, reload the page.", + "errorSessionIdle": "The document has not been edited for quite a long time. Please, reload the page.", + "errorSessionToken": "The connection to the server has been interrupted. Please, reload the page.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", + "errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
    Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "errorUserDrop": "The file cannot be accessed right now.", + "errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but you won't be able to download it until the connection is restored and the page is reloaded.", + "errorWrongBracketsCount": "An error in the formula.
    Wrong number of brackets.", + "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
    Correct the error or use the Esc button to cancel the formula editing.", + "notcriticalErrorTitle": "Warning", + "openErrorText": "An error has occurred while opening the file", + "pastInMergeAreaError": "Cannot change a part of a merged cell", + "saveErrorText": "An error has occurred while saving the file", + "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", + "unknownErrorText": "Unknown error.", + "uploadImageExtMessage": "Unknown image format.", + "uploadImageFileCountMessage": "No images uploaded.", + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Loading data...", + "applyChangesTitleText": "Loading Data", + "confirmMoveCellRange": "The destination cells range can contain data. Continue the operation?", + "confirmPutMergeRange": "The source data contains merged cells.
    They will be unmerged before they are pasted into the table.", + "confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
    Do you want to continue?", + "downloadTextText": "Downloading document...", + "downloadTitleText": "Downloading Document", + "loadFontsTextText": "Loading data...", + "loadFontsTitleText": "Loading Data", + "loadFontTextText": "Loading data...", + "loadFontTitleText": "Loading Data", + "loadImagesTextText": "Loading images...", + "loadImagesTitleText": "Loading Images", + "loadImageTextText": "Loading image...", + "loadImageTitleText": "Loading Image", + "loadingDocumentTextText": "Loading document...", + "loadingDocumentTitleText": "Loading document", + "notcriticalErrorTitle": "Warning", + "openTextText": "Opening document...", + "openTitleText": "Opening Document", + "printTextText": "Printing document...", + "printTitleText": "Printing Document", + "savePreparingText": "Preparing to save", + "savePreparingTitle": "Preparing to save. Please wait...", + "saveTextText": "Saving document...", + "saveTitleText": "Saving Document", + "textLoadingDocument": "Loading document", + "textNo": "No", + "textOk": "Ok", + "textYes": "Yes", + "txtEditingMode": "Set editing mode...", + "uploadImageTextText": "Uploading image...", + "uploadImageTitleText": "Uploading Image", + "waitText": "Please, wait..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warning", + "textCancel": "Cancel", + "textDelete": "Delete", + "textDuplicate": "Duplicate", + "textErrNameExists": "Worksheet with this name already exists.", + "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Sheet name must not be empty", + "textErrorLastSheet": "The workbook must have at least one visible worksheet.", + "textErrorRemoveSheet": "Can't delete the worksheet.", + "textHide": "Hide", + "textMore": "More", + "textRename": "Rename", + "textRenameSheet": "Rename Sheet", + "textSheet": "Sheet", + "textSheetName": "Sheet Name", + "textUnhide": "Unhide", + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + }, + "Toolbar": { + "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", + "dlgLeaveTitleText": "You leave the application", + "leaveButtonText": "Leave this Page", + "stayButtonText": "Stay on this Page" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", + "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
    opening price, max price, min price, closing price.", + "notcriticalErrorTitle": "Warning", + "sCatDateAndTime": "Date and time", + "sCatEngineering": "Engineering", + "sCatFinancial": "Financial", + "sCatInformation": "Information", + "sCatLogical": "Logical", + "sCatLookupAndReference": "Lookup and Reference", + "sCatMathematic": "Math and trigonometry", + "sCatStatistical": "Statistical", + "sCatTextAndData": "Text and data", + "textAddLink": "Add Link", + "textAddress": "Address", + "textBack": "Back", + "textCancel": "Cancel", + "textChart": "Chart", + "textComment": "Comment", + "textDisplay": "Display", + "textEmptyImgUrl": "You need to specify the image URL.", + "textExternalLink": "External Link", + "textFilter": "Filter", + "textFunction": "Function", + "textGroups": "CATEGORIES", + "textImage": "Image", + "textImageURL": "Image URL", + "textInsert": "Insert", + "textInsertImage": "Insert Image", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "ERROR! Invalid cells range", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textOther": "Other", + "textPictureFromLibrary": "Picture from library", + "textPictureFromURL": "Picture from URL", + "textRange": "Range", + "textRequired": "Required", + "textScreenTip": "Screen Tip", + "textShape": "Shape", + "textSheet": "Sheet", + "textSortAndFilter": "Sort and Filter", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" + }, + "Edit": { + "notcriticalErrorTitle": "Warning", + "textAccounting": "Accounting", + "textActualSize": "Actual Size", + "textAddCustomColor": "Add Custom Color", + "textAddress": "Address", + "textAlign": "Align", + "textAlignBottom": "Align Bottom", + "textAlignCenter": "Align Center", + "textAlignLeft": "Align Left", + "textAlignMiddle": "Align Middle", + "textAlignRight": "Align Right", + "textAlignTop": "Align Top", + "textAllBorders": "All Borders", + "textAngleClockwise": "Angle Clockwise", + "textAngleCounterclockwise": "Angle Counterclockwise", + "textAuto": "Auto", + "textAxisCrosses": "Axis Crosses", + "textAxisOptions": "Axis Options", + "textAxisPosition": "Axis Position", + "textAxisTitle": "Axis Title", + "textBack": "Back", + "textBetweenTickMarks": "Between Tick Marks", + "textBillions": "Billions", + "textBorder": "Border", + "textBorderStyle": "Border Style", + "textBottom": "Bottom", + "textBottomBorder": "Bottom Border", + "textBringToForeground": "Bring to Foreground", + "textCell": "Cell", + "textCellStyles": "Cell Styles", + "textCenter": "Center", + "textChart": "Chart", + "textChartTitle": "Chart Title", + "textClearFilter": "Clear Filter", + "textColor": "Color", + "textCross": "Cross", + "textCrossesValue": "Crosses Value", + "textCurrency": "Currency", + "textCustomColor": "Custom Color", + "textDataLabels": "Data Labels", + "textDate": "Date", + "textDefault": "Selected range", + "textDeleteFilter": "Delete Filter", + "textDesign": "Design", + "textDiagonalDownBorder": "Diagonal Down Border", + "textDiagonalUpBorder": "Diagonal Up Border", + "textDisplay": "Display", + "textDisplayUnits": "Display Units", + "textDollar": "Dollar", + "textEditLink": "Edit Link", + "textEffects": "Effects", + "textEmptyImgUrl": "You need to specify the image URL.", + "textEmptyItem": "{Blanks}", + "textErrorMsg": "You must choose at least one value", + "textErrorTitle": "Warning", + "textEuro": "Euro", + "textExternalLink": "External Link", + "textFill": "Fill", + "textFillColor": "Fill Color", + "textFilterOptions": "Filter Options", + "textFit": "Fit Width", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fraction", + "textFromLibrary": "Picture from Library", + "textFromURL": "Picture from URL", + "textGeneral": "General", + "textGridlines": "Gridlines", + "textHigh": "High", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontal Axis", + "textHorizontalText": "Horizontal Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hundreds", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Image", + "textImageURL": "Image URL", + "textIn": "In", + "textInnerBottom": "Inner Bottom", + "textInnerTop": "Inner Top", + "textInsideBorders": "Inside Borders", + "textInsideHorizontalBorder": "Inside Horizontal Border", + "textInsideVerticalBorder": "Inside Vertical Border", + "textInteger": "Integer", + "textInternalDataRange": "Internal Data Range", + "textInvalidRange": "Invalid cells range", + "textJustified": "Justified", + "textLabelOptions": "Label Options", + "textLabelPosition": "Label Position", + "textLayout": "Layout", + "textLeft": "Left", + "textLeftBorder": "Left Border", + "textLeftOverlay": "Left Overlay", + "textLegend": "Legend", + "textLink": "Link", + "textLinkSettings": "Link Settings", + "textLinkType": "Link Type", + "textLow": "Low", + "textMajor": "Major", + "textMajorAndMinor": "Major And Minor", + "textMajorType": "Major Type", + "textMaximumValue": "Maximum Value", + "textMedium": "Medium", + "textMillions": "Millions", + "textMinimumValue": "Minimum Value", + "textMinor": "Minor", + "textMinorType": "Minor Type", + "textMoveBackward": "Move Backward", + "textMoveForward": "Move Forward", + "textNextToAxis": "Next to Axis", + "textNoBorder": "No Border", + "textNone": "None", + "textNoOverlay": "No Overlay", + "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "textNumber": "Number", + "textOnTickMarks": "On Tick Marks", + "textOpacity": "Opacity", + "textOut": "Out", + "textOuterTop": "Outer Top", + "textOutsideBorders": "Outside Borders", + "textOverlay": "Overlay", + "textPercentage": "Percentage", + "textPictureFromLibrary": "Picture from Library", + "textPictureFromURL": "Picture from URL", + "textPound": "Pound", + "textPt": "pt", + "textRange": "Range", + "textRemoveChart": "Remove Chart", + "textRemoveImage": "Remove Image", + "textRemoveLink": "Remove Link", + "textRemoveShape": "Remove Shape", + "textReorder": "Reorder", + "textReplace": "Replace", + "textReplaceImage": "Replace Image", + "textRequired": "Required", + "textRight": "Right", + "textRightBorder": "Right Border", + "textRightOverlay": "Right Overlay", + "textRotated": "Rotated", + "textRotateTextDown": "Rotate Text Down", + "textRotateTextUp": "Rotate Text Up", + "textRouble": "Rouble", + "textScientific": "Scientific", + "textScreenTip": "Screen Tip", + "textSelectAll": "Select All", + "textSelectObjectToEdit": "Select object to edit", + "textSendToBackground": "Send to Background", + "textSettings": "Settings", + "textShape": "Shape", + "textSheet": "Sheet", + "textSize": "Size", + "textStyle": "Style", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Text Color", + "textTextFormat": "Text Format", + "textTextOrientation": "Text Orientation", + "textThick": "Thick", + "textThin": "Thin", + "textThousands": "Thousands", + "textTickOptions": "Tick Options", + "textTime": "Time", + "textTop": "Top", + "textTopBorder": "Top Border", + "textTrillions": "Trillions", + "textType": "Type", + "textValue": "Value", + "textValuesInReverseOrder": "Values in Reverse Order", + "textVertical": "Vertical", + "textVerticalAxis": "Vertical Axis", + "textVerticalText": "Vertical Text", + "textWrapText": "Wrap Text", + "textYen": "Yen", + "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" + }, + "Settings": { + "advCSVOptions": "Choose CSV options", + "advDRMEnterPassword": "Your password, please:", + "advDRMOptions": "Protected File", + "advDRMPassword": "Password", + "closeButtonText": "Close File", + "notcriticalErrorTitle": "Warning", + "textAbout": "About", + "textAddress": "Address", + "textApplication": "Application", + "textApplicationSettings": "Application Settings", + "textAuthor": "Author", + "textBack": "Back", + "textBottom": "Bottom", + "textByColumns": "By columns", + "textByRows": "By rows", + "textCancel": "Cancel", + "textCentimeter": "Centimeter", + "textCollaboration": "Collaboration", + "textColorSchemes": "Color Schemes", + "textComment": "Comment", + "textCommentingDisplay": "Commenting Display", + "textComments": "Comments", + "textCreated": "Created", + "textCustomSize": "Custom Size", + "textDisableAll": "Disable All", + "textDisableAllMacrosWithNotification": "Disable all macros with a notification", + "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", + "textDone": "Done", + "textDownload": "Download", + "textDownloadAs": "Download As", + "textEmail": "Email", + "textEnableAll": "Enable All", + "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", + "textFind": "Find", + "textFindAndReplace": "Find and Replace", + "textFindAndReplaceAll": "Find and Replace All", + "textFormat": "Format", + "textFormulaLanguage": "Formula Language", + "textFormulas": "Formulas", + "textHelp": "Help", + "textHideGridlines": "Hide Gridlines", + "textHideHeadings": "Hide Headings", + "textHighlightRes": "Highlight results", + "textInch": "Inch", + "textLandscape": "Landscape", + "textLastModified": "Last Modified", + "textLastModifiedBy": "Last Modified By", + "textLeft": "Left", + "textLocation": "Location", + "textLookIn": "Look In", + "textMacrosSettings": "Macros Settings", + "textMargins": "Margins", + "textMatchCase": "Match Case", + "textMatchCell": "Match Cell", + "textNoTextFound": "Text not found", + "textOpenFile": "Enter a password to open the file", + "textOrientation": "Orientation", + "textOwner": "Owner", + "textPoint": "Point", + "textPortrait": "Portrait", + "textPoweredBy": "Powered By", + "textPrint": "Print", + "textR1C1Style": "R1C1 Reference Style", + "textRegionalSettings": "Regional Settings", + "textReplace": "Replace", + "textReplaceAll": "Replace All", + "textResolvedComments": "Resolved Comments", + "textRight": "Right", + "textSearch": "Search", + "textSearchBy": "Search", + "textSearchIn": "Search In", + "textSettings": "Settings", + "textSheet": "Sheet", + "textShowNotification": "Show Notification", + "textSpreadsheetFormats": "Spreadsheet Formats", + "textSpreadsheetInfo": "Spreadsheet Info", + "textSpreadsheetSettings": "Spreadsheet Settings", + "textSpreadsheetTitle": "Spreadsheet Title", + "textSubject": "Subject", + "textTel": "Tel", + "textTitle": "Title", + "textTop": "Top", + "textUnitOfMeasurement": "Unit Of Measurement", + "textUploaded": "Uploaded", + "textValues": "Values", + "textVersion": "Version", + "textWorkbook": "Workbook", + "txtDelimiter": "Delimiter", + "txtEncoding": "Encoding", + "txtIncorrectPwd": "Password is incorrect", + "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry", + "txtSpace": "Space", + "txtTab": "Tab", + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 6c3c1a04b..8c30de436 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -98,7 +98,39 @@ "txtStyle_Total": "总计", "txtStyle_Warning_Text": "警告文本", "txtXAxis": "X轴", - "txtYAxis": "Y轴" + "txtYAxis": "Y轴", + "txtAll": "(All)", + "txtBlank": "(blank)", + "txtByField": "%1 of %2", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtOr": "%1 or %2", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtYears": "Years" }, "textAnonymous": "匿名", "textBuyNow": "访问网站", @@ -296,7 +328,12 @@ "textShape": "形状", "textSheet": "表格", "textSortAndFilter": "排序和过滤", - "txtNotUrl": "该字段应为“http://www.example.com”格式的URL" + "txtNotUrl": "该字段应为“http://www.example.com”格式的URL", + "textCancel": "Cancel", + "txtExpand": "Expand and sort", + "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "txtSorting": "Sorting", + "txtSortSelected": "Sort selected" }, "Edit": { "notcriticalErrorTitle": "警告", @@ -474,7 +511,9 @@ "textVerticalText": "纵向文本", "textWrapText": "文字换行", "textYen": "日元", - "txtNotUrl": "该字段应为“http://www.example.com”格式的URL" + "txtNotUrl": "该字段应为“http://www.example.com”格式的URL", + "txtSortHigh2Low": "Sort Highest to Lowest", + "txtSortLow2High": "Sort Lowest to Highest" }, "Settings": { "advCSVOptions": "选择CSV选项", @@ -483,6 +522,7 @@ "advDRMPassword": "密码", "closeButtonText": "关闭文件", "notcriticalErrorTitle": "警告", + "textAbout": "关于", "textAddress": "地址", "textApplication": "应用", "textApplicationSettings": "应用设置", @@ -569,7 +609,29 @@ "txtProtected": "在您输入密码和打开文件后,该文件的当前密码将被重置", "txtSpace": "空格", "txtTab": "标签", - "warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
    您确定要继续吗?" + "warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
    您确定要继续吗?", + "txtScheme1": "Office", + "txtScheme10": "Median", + "txtScheme11": "Metro", + "txtScheme12": "Module", + "txtScheme13": "Opulent", + "txtScheme14": "Oriel", + "txtScheme15": "Origin", + "txtScheme16": "Paper", + "txtScheme17": "Solstice", + "txtScheme18": "Technic", + "txtScheme19": "Trek", + "txtScheme2": "Grayscale", + "txtScheme20": "Urban", + "txtScheme21": "Verve", + "txtScheme22": "New Office", + "txtScheme3": "Apex", + "txtScheme4": "Aspect", + "txtScheme5": "Civic", + "txtScheme6": "Concourse", + "txtScheme7": "Equity", + "txtScheme8": "Flow", + "txtScheme9": "Foundry" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/app.js b/apps/spreadsheeteditor/mobile/src/app.js index ab1e87de8..ff8dd9ae5 100644 --- a/apps/spreadsheeteditor/mobile/src/app.js +++ b/apps/spreadsheeteditor/mobile/src/app.js @@ -36,7 +36,7 @@ Framework7.use(Framework7React); ReactDOM.render( - + diff --git a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx index 1170be25b..06db117bf 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/CellEditor.jsx @@ -6,16 +6,23 @@ const CellEditor = props => { useEffect(() => { Common.Notifications.on('engineCreated', api => { api.asc_registerCallback('asc_onSelectionNameChanged', onApiCellSelection.bind(this)); + api.asc_registerCallback('asc_onSelectionChanged', onApiSelectionChanged.bind(this)); }); }, []); const [cellName, setCellName] = useState(''); + const [stateCoauth, setCoauthDisabled] = useState(null); const onApiCellSelection = info => { setCellName(typeof(info)=='string' ? info : info.asc_getName()); }; + const onApiSelectionChanged = info => { + setCoauthDisabled(info.asc_getLocked() === true || info.asc_getLockedTable() === true || info.asc_getLockedPivotTable()===true); + } + return }; diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index 4af867c16..86d2dffaa 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -187,7 +187,7 @@ class ContextMenu extends ContextMenuController { let iscellmenu, isrowmenu, iscolmenu, isallmenu, ischartmenu, isimagemenu, istextshapemenu, isshapemenu, istextchartmenu; const seltype = cellinfo.asc_getSelectionType(); - const isComments = cellinfo.asc_getComments().length > 0; //prohibit adding multiple comments in one cell; + const hasComments = cellinfo.asc_getComments(); //prohibit adding multiple comments in one cell; switch (seltype) { case Asc.c_oAscSelectionType.RangeCells: iscellmenu = true; break; @@ -212,14 +212,14 @@ class ContextMenu extends ContextMenuController { event: 'openlink' }); } - if (canViewComments && isComments) { + if (canViewComments && hasComments && hasComments.length>0) { itemsText.push({ caption: _t.menuViewComment, event: 'viewcomment' }); } - if (iscellmenu && !api.isCellEdited && canCoAuthoring && canComments && !isComments) { + if (iscellmenu && !api.isCellEdited && canCoAuthoring && canComments && hasComments && hasComments.length<1) { itemsText.push({ caption: _t.menuAddComment, event: 'addcomment' diff --git a/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx b/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx new file mode 100644 index 000000000..d99271a38 --- /dev/null +++ b/apps/spreadsheeteditor/mobile/src/controller/Encoding.jsx @@ -0,0 +1,99 @@ +import React, { Component } from 'react'; +import { Device } from '../../../../common/mobile/utils/device'; +import { f7 } from "framework7-react"; +import { Encoding } from "../view/Encoding"; +import { withTranslation } from 'react-i18next'; + +class EncodingController extends Component { + constructor(props) { + super(props); + + const { t } = this.props; + const _t = t("View.Settings", { returnObjects: true }); + + this.valuesDelimeter = [4, 2, 3, 1, 5]; + this.namesDelimeter = [_t.txtComma, _t.txtSemicolon, _t.txtColon, _t.txtTab, _t.txtSpace]; + this.onSaveFormat = this.onSaveFormat.bind(this); + this.closeModal = this.closeModal.bind(this); + this.state = { + isOpen: false + }; + + Common.Notifications.on('engineCreated', api => { + api.asc_registerCallback('asc_onAdvancedOptions', (type, advOptions, mode, formatOptions) => { + this.initEncoding(type, advOptions, mode, formatOptions); + }); + }); + + Common.Notifications.on('openEncoding', (type, advOptions, mode, formatOptions) => { + this.initEncoding(type, advOptions, mode, formatOptions); + }); + } + + initEncoding(type, advOptions, mode, formatOptions) { + if(type === Asc.c_oAscAdvancedOptionsID.CSV) { + Common.Notifications.trigger('preloader:close'); + Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); + + this.mode = mode; + this.advOptions = advOptions; + this.formatOptions = formatOptions; + this.pages = []; + this.pagesName = []; + + const recommendedSettings = this.advOptions.asc_getRecommendedSettings(); + + this.initPages(); + this.valueEncoding = recommendedSettings.asc_getCodePage(); + this.valueDelimeter = recommendedSettings && recommendedSettings.asc_getDelimiter() ? recommendedSettings.asc_getDelimiter() : 4; + + this.setState({ + isOpen: true + }); + } + } + + initPages() { + for (let page of this.advOptions.asc_getCodePages()) { + this.pages.push(page.asc_getCodePage()); + this.pagesName.push(page.asc_getCodePageName()); + } + } + + closeModal() { + f7.sheet.close('.encoding-popup', true); + this.setState({isOpen: false}); + } + + onSaveFormat(valueEncoding, valueDelimeter) { + const api = Common.EditorApi.get(); + + this.closeModal(); + + if(this.mode === 2) { + this.formatOptions && this.formatOptions.asc_setAdvancedOptions(new Asc.asc_CTextOptions(valueEncoding, valueDelimeter)); + api.asc_DownloadAs(this.formatOptions); + } else { + api.asc_setAdvancedOptions(Asc.c_oAscAdvancedOptionsID.CSV, new Asc.asc_CTextOptions(valueEncoding, valueDelimeter)); + } + } + + render() { + return ( + this.state.isOpen && + + ); + } +} + +export default withTranslation()(EncodingController); \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx index 702300374..1dad32e42 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx @@ -302,6 +302,10 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu case Asc.c_oAscError.ID.UpdateVersion: config.msg = _t.errorUpdateVersionOnDisconnect; break; + + case Asc.c_oAscError.ID.ChangeOnProtectedSheet: + config.msg = _t.errorChangeOnProtectedSheet; + break; default: config.msg = _t.errorDefaultMessage.replace('%1', id); diff --git a/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx b/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx index d1c950bb6..131ba83e4 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx @@ -63,6 +63,7 @@ const FilterOptionsController = () => { const onClearFilter = () => { const api = Common.EditorApi.get(); if(api) api.asc_clearFilter(); + setCheckSort(''); }; const onDeleteFilter = () => { @@ -79,21 +80,17 @@ const FilterOptionsController = () => { const setClearDisable = (config) => { let arr = config.asc_getValues(); let lenCheck = arr.filter((item) => item.visible == true).length; - lenCheck == arr.length ? setIsValid(true) : setIsValid(false) + lenCheck == arr.length ? setIsValid(true) : setIsValid(false); }; const setDataFilterCells = (config) => { - function isNumeric(value) { - return !isNaN(parseFloat(value)) && isFinite(value); - } - let value = null, isnumber = null, arrCells = []; config.asc_getValues().forEach((item, index) => { value = item.asc_getText(); - isnumber = isNumeric(value); + isnumber = !isNaN(parseFloat(value)) && isFinite(value); arrCells.push({ id : index, @@ -111,12 +108,7 @@ const FilterOptionsController = () => { const onUpdateCell = (id, state) => { const api = Common.EditorApi.get(); - if ( id == 'all' ) { - listVal.forEach(item => item.check = state); - } else { - listVal[id].check = state; - } - + id == 'all' ? listVal.forEach(item => item.check = state) : listVal[id].check = state; setListValue([...listVal]); if ( listVal.some(item => item.check) ) { diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 34d72d1af..9b04def60 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -18,8 +18,11 @@ import ErrorController from "./Error"; import app from "../page/app"; import About from "../../../../common/mobile/lib/view/About"; import PluginsController from '../../../../common/mobile/lib/controller/Plugins.jsx'; +import EncodingController from "./Encoding"; +import { StatusbarController } from "./Statusbar"; @inject( + "users", "storeAppOptions", "storeFocusObjects", "storeCellSettings", @@ -27,7 +30,8 @@ import PluginsController from '../../../../common/mobile/lib/controller/Plugins. "storeChartSettings", "storeSpreadsheetSettings", "storeSpreadsheetInfo", - "storeApplicationSettings" + "storeApplicationSettings", + "storeToolbarSettings" ) class MainController extends Component { constructor(props) { @@ -344,6 +348,11 @@ class MainController extends Component { const styleSize = this.props.storeCellSettings.styleSize; this.api.asc_setThumbnailStylesSizes(styleSize.width, styleSize.height); + // Text settings + + const storeTextSettings = this.props.storeTextSettings; + storeTextSettings.resetFontsRecent(LocalStorage.getItem('sse-settings-recent-fonts')); + // Spreadsheet Settings this.api.asc_registerCallback('asc_onSendThemeColorSchemes', schemes => { @@ -355,10 +364,38 @@ class MainController extends Component { this.api.asc_registerCallback('asc_onAdvancedOptions', (type, advOptions, mode, formatOptions) => { const {t} = this.props; const _t = t("View.Settings", { returnObjects: true }); - onAdvancedOptions(type, advOptions, mode, formatOptions, _t, this._isDocReady, this.props.storeAppOptions.canRequestClose,this.isDRM); - if(type == Asc.c_oAscAdvancedOptionsID.DRM) this.isDRM = true; + if(type == Asc.c_oAscAdvancedOptionsID.DRM) { + onAdvancedOptions(type, _t, this._isDocReady, this.props.storeAppOptions.canRequestClose, this.isDRM); + this.isDRM = true; + } }); + // Toolbar settings + + const storeToolbarSettings = this.props.storeToolbarSettings; + this.api.asc_registerCallback('asc_onCanUndoChanged', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanUndo(can); + }); + this.api.asc_registerCallback('asc_onCanRedoChanged', (can) => { + if (this.props.users.isDisconnected) return; + storeToolbarSettings.setCanRedo(can); + }); + + const storeFocusObjects = this.props.storeFocusObjects; + this.api.asc_registerCallback('asc_onEditCell', (state) => { + if (state == Asc.c_oAscCellEditorState.editStart || state == Asc.c_oAscCellEditorState.editEnd) { + const isEditCell = state === Asc.c_oAscCellEditorState.editStart; + if (storeFocusObjects.isEditCell !== isEditCell) { + storeFocusObjects.setEditCell(isEditCell); + } + } else { + const isFormula = state === Asc.c_oAscCellEditorState.editFormula; + if (storeFocusObjects.editFormulaMode !== isFormula) { + storeFocusObjects.setEditFormulaMode(isFormula); + } + } + }); } _onLongActionEnd(type, id) { @@ -618,9 +655,9 @@ class MainController extends Component { } } - onDownloadUrl () { + onDownloadUrl (url, fileType) { if (this._state.isFromGatewayDownloadAs) { - Common.Gateway.downloadAs(url); + Common.Gateway.downloadAs(url, fileType); } this._state.isFromGatewayDownloadAs = false; @@ -799,12 +836,14 @@ class MainController extends Component { + + ) } diff --git a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx index 47d3840c2..cb71e6993 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx @@ -1,85 +1,39 @@ import React, { Fragment, useEffect, useState } from 'react'; import {StatusbarView} from '../view/Statusbar'; -import { inject } from 'mobx-react'; +import { inject, observer } from 'mobx-react'; import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import { Device } from '../../../../common/mobile/utils/device'; -const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { - const {sheets, storeAppOptions, users} = props; - const {t} = useTranslation(); - const _t = t('Statusbar', {returnObjects: true}); - - let isEdit = storeAppOptions.isEdit; - let isDisconnected = users.isDisconnected; - +const StatusbarController = inject('sheets', 'storeFocusObjects', 'users')(observer(props => { + const {sheets, storeFocusObjects, users} = props; + useEffect(() => { - const onDocumentReady = () => { - const api = Common.EditorApi.get(); - // api.asc_registerCallback('asc_onUpdateTabColor', onApiUpdateTabColor); - api.asc_registerCallback('asc_onWorkbookLocked', onWorkbookLocked); - api.asc_registerCallback('asc_onWorksheetLocked', onWorksheetLocked); + Common.Notifications.on('engineCreated', api => { + api.asc_registerCallback('asc_onWorkbookLocked', (locked) => { + sheets.setWorkbookLocked(locked); + storeFocusObjects.setIsLocked(api.asc_getCellInfo()); + }); + api.asc_registerCallback('asc_onWorksheetLocked', (index, locked) => { + sheets.setWorksheetLocked(index, locked); + storeFocusObjects.setIsLocked(api.asc_getCellInfo()); + }); api.asc_registerCallback('asc_onSheetsChanged', onApiSheetsChanged); - api.asc_registerCallback('asc_onHidePopMenu', onApiHideTabContextMenu); api.asc_registerCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); - }; - if ( !Common.EditorApi ) { - Common.Notifications.on('document:ready', onDocumentReady); - Common.Notifications.on('document:ready', onApiSheetsChanged); - } else { - onDocumentReady(); - } + api.asc_registerCallback('asc_onHidePopMenu', onApiHideTabContextMenu); + api.asc_registerCallback('asc_onUpdateTabColor', onApiUpdateTabColor); + // api.asc_registerCallback('asc_onCoAuthoringDisconnect', onApiDisconnect); + }); + Common.Notifications.on('document:ready', onApiSheetsChanged); + // Common.Notifications.on('api:disconnect', onApiDisconnect); + }); - const on_main_view_click = e => { - if(!e.target.closest('.tab.active')) { - f7.popover.close('.document-menu.modal-in', false); - } - }; - - $$('.view-main').on('click', on_main_view_click); - - return () => { - Common.Notifications.off('document:ready', onDocumentReady); - Common.Notifications.off('document:ready', onApiSheetsChanged); - - const api = Common.EditorApi.get(); - // api.asc_unregisterCallback('asc_onUpdateTabColor', onApiUpdateTabColor); - api.asc_unregisterCallback('asc_onWorkbookLocked', onWorkbookLocked); - api.asc_unregisterCallback('asc_onWorksheetLocked', onWorksheetLocked); - api.asc_unregisterCallback('asc_onSheetsChanged', onApiSheetsChanged); - api.asc_unregisterCallback('asc_onHidePopMenu', onApiHideTabContextMenu); - api.asc_unregisterCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); - - $$('.view-main').off('click', on_main_view_click); - }; - }, []); - - const onApiActiveSheetChanged = (index) => { - if (index < sheets.sheets.length) { - sheets.setActiveWorksheet(index); - Common.Notifications.trigger('sheet:active', index); - } + const onApiDisconnect = () => { + users.resetDisconnected(true); } - const onApiHideTabContextMenu = () => { - f7.popover.close('.document-menu.modal-in', false); - } - - const onWorkbookLocked = locked => { - locked ? $$('.idx-btn-addtab').addClass('disabled') : $$('.idx-btn-addtab').removeClass('disabled'); - }; - - const onWorksheetLocked = (index, locked) => { - // let model = sheets.sheets.find(sheet => sheet.index === index); - let model = sheets.at(index); - if(model && model.locked != locked) - model.locked = locked; - }; - const onApiSheetsChanged = () => { - // console.log('on api sheets changed'); - const api = Common.EditorApi.get(); const sheets_count = api.asc_getWorksheetsCount(); const active_index = api.asc_getActiveWorksheetIndex(); @@ -100,53 +54,87 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { } sheets.resetSheets(items); - // updateTabsColors(); + + updateTabsColors(); }; - // const loadTabColor = sheetindex => { - // const api = Common.EditorApi.get(); - // let tab = sheets.sheets.find(sheet => sheet.index === sheetindex); + const onApiActiveSheetChanged = (index) => { + if (index < sheets.sheets.length) { + sheets.setActiveWorksheet(index); + Common.Notifications.trigger('sheet:active', index); + } + }; - // if (tab) { - // setTabLineColor(tab, api.asc_getWorksheetTabColor(sheetindex)); - // } + const onApiHideTabContextMenu = () => { + f7.popover.close('.document-menu.modal-in', false); + } + + + const loadTabColor = sheetindex => { + const api = Common.EditorApi.get(); + let tab = sheets.sheets.find(sheet => sheet.index === sheetindex); + + if (tab) { + setTabLineColor(tab, api.asc_getWorksheetTabColor(sheetindex)); + } - // }; + }; - // const onApiUpdateTabColor = index => { - // loadTabColor(index); - // }; + const onApiUpdateTabColor = index => { + loadTabColor(index); + }; - // const setTabLineColor = (tab, color) => { - // console.log(color); - // if (tab) { - // if (null !== color) { - // color = '#' + Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()); - // } else { - // color = ''; - // } + const setTabLineColor = (tab, color) => { + if (tab) { + if (null !== color) { + color = '#' + Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()); + } else { + color = ''; + } - // if (color.length) { - // if (!tab.active) { - // color = '0px 4px 0 ' + Common.Utils.RGBColor(color).toRGBA(0.7) + ' inset'; - // } else { - // color = '0px 4px 0 ' + color + ' inset'; - // } + if (color.length) { + if (!tab.active) { + color = '0px 4px 0 ' + Common.Utils.RGBColor(color).toRGBA(0.7) + ' inset'; + } else { + color = '0px 4px 0 ' + color + ' inset'; + } - // $$('.sheet-tabs .tab a').eq(tab.index).css('box-shadow', color); - // } else { - // $$('.sheet-tabs .tab a').eq(tab.index).css('box-shadow', ''); - // } - // } - // }; + $$('.sheet-tabs .tab a').eq(tab.index).css('box-shadow', color); + } else { + $$('.sheet-tabs .tab a').eq(tab.index).css('box-shadow', ''); + } + } + }; - // const updateTabsColors = () => { - // const api = Common.EditorApi.get(); + const updateTabsColors = () => { + const api = Common.EditorApi.get(); - // sheets.sheets.forEach(model => { - // setTabLineColor(model, api.asc_getWorksheetTabColor(model.index)); - // }); - // }; + sheets.sheets.forEach(model => { + setTabLineColor(model, api.asc_getWorksheetTabColor(model.index)); + }); + }; + + return null; +})); + +const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => { + const {sheets, storeAppOptions, users} = props; + const {t} = useTranslation(); + const _t = t('Statusbar', {returnObjects: true}); + const isEdit = storeAppOptions.isEdit; + const isDisconnected = users.isDisconnected; + + useEffect(() => { + const on_main_view_click = e => { + if(!e.target.closest('.tab.active')) { + f7.popover.close('.document-menu.modal-in', false); + } + }; + $$('.view-main').on('click', on_main_view_click); + return () => { + $$('.view-main').off('click', on_main_view_click); + }; + }, []); const onTabClicked = i => { const model = sheets.at(i); @@ -168,7 +156,7 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { let index = 0, name; while(++index < 1000) { - name = /*this.strSheet*/ 'Sheet' + index; + name = _t.textSheet + index; if (items.indexOf(name.toLowerCase()) < 0) break; } @@ -178,15 +166,12 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { const onAddTabClicked = () => { const api = Common.EditorApi.get(); api.asc_closeCellEditor(); - - createSheetName(); api.asc_addWorksheet(createSheetName()); }; const onTabClick = (i, target) => { const api = Common.EditorApi.get(); const model = sheets.at(i); - // console.log(model); let opened = $$('.document-menu.modal-in').length; let index = model.index; @@ -195,7 +180,7 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { if (index == api.asc_getActiveWorksheetIndex()) { if (!opened) { - if (isEdit && !isDisconnected) { + if (isEdit && !sheets.isWorkbookLocked) { api.asc_closeCellEditor(); f7.popover.open('#idx-tab-context-menu-popover', target); } @@ -204,7 +189,6 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { else { f7.popover.close('#idx-tab-context-menu-popover', false); onTabClicked(i); - // Common.Notifications.trigger('sheet:active', index); } }; @@ -314,7 +298,6 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { } else { f7.popover.close('#idx-hidden-sheets-popover'); api['asc_showWorksheet'](index); - // loadTabColor(index); } }; @@ -348,8 +331,13 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(props => { }; return ( - + ) -}); +})); -export default Statusbar; \ No newline at end of file +export {Statusbar, StatusbarController}; \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx index c778040af..45c2c5964 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx @@ -4,38 +4,34 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo', 'storeFocusObjects')(observer(props => { +const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo', 'storeFocusObjects', 'storeToolbarSettings')(observer(props => { const {t} = useTranslation(); const _t = t("Toolbar", { returnObjects: true }); const appOptions = props.storeAppOptions; const isDisconnected = props.users.isDisconnected; - const isObjectLocked = props.storeFocusObjects.isLocked; + + const storeFocusObjects = props.storeFocusObjects; + const isObjectLocked = storeFocusObjects.isLocked; + const isEditCell = storeFocusObjects.isEditCell; + const editFormulaMode = storeFocusObjects.editFormulaMode; + const displayCollaboration = props.users.hasEditUsers || appOptions.canViewComments; const docTitle = props.storeSpreadsheetInfo.dataDoc ? props.storeSpreadsheetInfo.dataDoc.title : ''; const showEditDocument = !appOptions.isEdit && appOptions.canEdit && appOptions.canRequestEditRights; - useEffect(() => { - const onDocumentReady = () => { - const api = Common.EditorApi.get(); - api.asc_registerCallback('asc_onCanUndoChanged', onApiCanUndo); - api.asc_registerCallback('asc_onCanRedoChanged', onApiCanRedo); - api.asc_registerCallback('asc_onWorkbookLocked', onApiLocked); - api.asc_registerCallback('asc_onWorksheetLocked', onApiLocked); - api.asc_registerCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); + const storeToolbarSettings = props.storeToolbarSettings; + const isCanUndo = storeToolbarSettings.isCanUndo; + const isCanRedo = storeToolbarSettings.isCanRedo; - Common.Notifications.on('toolbar:activatecontrols', activateControls); - Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); - Common.Notifications.on('goback', goBack); - Common.Notifications.on('sheet:active', onApiActiveSheetChanged); - }; - if ( !Common.EditorApi ) { - Common.Notifications.on('document:ready', onDocumentReady); - Common.Gateway.on('init', loadConfig); - } else { - onDocumentReady(); - } + useEffect(() => { + Common.Gateway.on('init', loadConfig); + + Common.Notifications.on('toolbar:activatecontrols', activateControls); + Common.Notifications.on('toolbar:deactivateeditcontrols', deactivateEditControls); + Common.Notifications.on('goback', goBack); + Common.Notifications.on('sheet:active', onApiActiveSheetChanged); if (isDisconnected) { f7.popover.close(); @@ -44,18 +40,10 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn } return () => { - Common.Notifications.off('document:ready', onDocumentReady); Common.Notifications.off('toolbar:activatecontrols', activateControls); Common.Notifications.off('toolbar:deactivateeditcontrols', deactivateEditControls); Common.Notifications.off('goback', goBack); Common.Notifications.off('sheet:active', onApiActiveSheetChanged); - - const api = Common.EditorApi.get(); - api.asc_unregisterCallback('asc_onCanUndoChanged', onApiCanUndo); - api.asc_unregisterCallback('asc_onCanRedoChanged', onApiCanRedo); - api.asc_unregisterCallback('asc_onWorkbookLocked', onApiLocked); - api.asc_unregisterCallback('asc_onWorksheetLocked', onApiLocked); - api.asc_unregisterCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); } }); @@ -107,17 +95,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn //} } - // Undo and Redo - const [isCanUndo, setCanUndo] = useState(false); - const [isCanRedo, setCanRedo] = useState(false); - const onApiCanUndo = (can) => { - if (isDisconnected) return; - setCanUndo(can); - }; - const onApiCanRedo = (can) => { - if (isDisconnected) return; - setCanRedo(can); - }; const onUndo = () => { const api = Common.EditorApi.get(); if (api) { @@ -132,10 +109,6 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn } const [disabledEditControls, setDisabledEditControls] = useState(false); - const onApiLocked = () => { - if (isDisconnected) return; - props.storeFocusObjects.setIsLocked(Common.EditorApi.get().asc_getCellInfo()); - }; const onApiActiveSheetChanged = (index) => { Common.Notifications.trigger('comments:filterchange', ['doc', 'sheet' + Common.EditorApi.get().asc_getWorksheetId(index)], false ); @@ -172,9 +145,11 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn onUndo={onUndo} onRedo={onRedo} disabledControls={disabledControls} - disabledEditControls={disabledEditControls || isObjectLocked} - disabledSettings={disabledSettings} + disabledEditControls={disabledEditControls || isObjectLocked || editFormulaMode || isEditCell} + disabledSearch={editFormulaMode || isEditCell} + disabledSettings={disabledSettings || editFormulaMode || isEditCell} displayCollaboration={displayCollaboration} + disabledCollaboration={editFormulaMode || isEditCell} showEditDocument={showEditDocument} onEditDocument={onEditDocument} isDisconnected={isDisconnected} diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx index 634b8d32d..5a94bdccc 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx @@ -48,7 +48,9 @@ class AddFilterController extends Component { f7.popover.close('#add-popover'); let typeCheck = type == 'down' ? Asc.c_oAscSortOptions.Ascending : Asc.c_oAscSortOptions.Descending; - if( api.asc_sortCellsRangeExpand()) { + let res = api.asc_sortCellsRangeExpand(); + switch (res) { + case Asc.c_oAscSelectionSortExpand.showExpandMessage: f7.dialog.create({ title: _t.txtSorting, text: _t.txtExpandSort, @@ -63,18 +65,41 @@ class AddFilterController extends Component { { text: _t.txtSortSelected, bold: true, - onClick: () => { - api.asc_sortColFilter(typeCheck, '', undefined, undefined); + onClick: () => { + api.asc_sortColFilter(typeCheck, '', undefined, undefined); } }, { text: _t.textCancel } ], - verticalButtons: true, + verticalButtons: true }).open(); - } else - api.asc_sortColFilter(typeCheck, '', undefined, undefined, api.asc_sortCellsRangeExpand() !== null); + break; + case Asc.c_oAscSelectionSortExpand.showLockMessage: + f7.dialog.create({ + title: _t.txtSorting, + text: _t.txtLockSort, + buttons: [ + { + text: _t.txtYes, + bold: true, + onClick: () => { + api.asc_sortColFilter(typeCheck, '', undefined, undefined, false); + } + }, + { + text: _t.txtNo + } + ], + verticalButtons: true + }).open(); + break; + case Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage: + case Asc.c_oAscSelectionSortExpand.notExpandAndNotShowMessage: + api.asc_sortColFilter(typeCheck, '', undefined, undefined, res === Asc.c_oAscSelectionSortExpand.expandAndNotShowMessage); + break; + } } onInsertFilter (checked) { diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddFunction.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddFunction.jsx index 5c6a4a525..8e9d6cae4 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddFunction.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddFunction.jsx @@ -10,6 +10,11 @@ import {AddFunction} from '../../view/add/AddFunction'; class _FunctionGroups extends Component { constructor (props) { super(props); + + Common.Notifications.on('changeFuncLang', () => { + this.api = Common.EditorApi.get(); + this.init(); + }); } componentDidMount() { Common.Notifications.on('document:ready', () => { diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddOther.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddOther.jsx index 85ffc2e93..b168becbe 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddOther.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddOther.jsx @@ -22,7 +22,7 @@ class AddOtherController extends Component { const cellinfo = Common.EditorApi.get().asc_getCellInfo(); const iscelllocked = cellinfo.asc_getLocked(); const seltype = cellinfo.asc_getSelectionType(); - const isComments = cellinfo.asc_getComments().length > 0; + const isComments = !cellinfo.asc_getComments() || cellinfo.asc_getComments().length > 0; return (!(seltype === Asc.c_oAscSelectionType.RangeCells && !iscelllocked) || isComments); } diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx index 92dd49864..8d85d8e71 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx @@ -77,6 +77,7 @@ class ApplicationSettingsController extends Component { onFormulaLangChange(value) { LocalStorage.setItem("sse-settings-func-lang", value); this.initRegSettings(); + Common.Notifications.trigger('changeFuncLang'); } onRegSettings(regCode) { diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx index 6e1ed4b25..5091c765b 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx @@ -3,6 +3,7 @@ import Download from "../../view/settings/Download"; import { Device } from '../../../../../common/mobile/utils/device'; import { withTranslation, useTranslation } from 'react-i18next'; import { f7 } from 'framework7-react'; +import { observer, inject } from "mobx-react"; class DownloadController extends Component { constructor(props) { @@ -10,6 +11,14 @@ class DownloadController extends Component { this.onSaveFormat = this.onSaveFormat.bind(this); } + closeModal() { + if (Device.phone) { + f7.sheet.close('.settings-popup', false); + } else { + f7.popover.close('#settings-popover'); + } + } + onSaveFormat(format) { const api = Common.EditorApi.get(); const { t } = this.props; @@ -20,11 +29,14 @@ class DownloadController extends Component { f7.dialog.confirm( _t.warnDownloadAs, _t.notcriticalErrorTitle, - function () { - onAdvancedOptions(Asc.c_oAscAdvancedOptionsID.CSV, api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format), _t, true); + () => { + const advOptions = api.asc_getAdvancedOptions(); + this.closeModal(); + Common.Notifications.trigger('openEncoding', Asc.c_oAscAdvancedOptionsID.CSV, advOptions, 2, new Asc.asc_CDownloadOptions(format)); } ) } else { + this.closeModal(); api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format)); } } @@ -37,132 +49,51 @@ class DownloadController extends Component { } } -const DownloadWithTranslation = withTranslation()(DownloadController); +const DownloadWithTranslation = inject("storeAppOptions")(observer(withTranslation()(DownloadController))); -const onAdvancedOptions = (type, advOptions, mode, formatOptions, _t, isDocReady, canRequestClose, isDRM) => { +const onAdvancedOptions = (type, _t, isDocReady, canRequestClose, isDRM) => { const api = Common.EditorApi.get(); - if (type == Asc.c_oAscAdvancedOptionsID.CSV) { - let picker; - const pages = []; - const pagesName = []; - - for (let page of advOptions.asc_getCodePages()) { - pages.push(page.asc_getCodePage()); - pagesName.push(page.asc_getCodePageName()); - } - - Common.Notifications.trigger('preloader:close'); - Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); - - const buttons = []; - - if (mode === 2) { - buttons.push({ - text: _t.textCancel - }); - } - - buttons.push({ - text: 'OK', - bold: true, - onClick: function() { - let encoding = picker.cols[0].value, - delimiter = picker.cols[1].value; - - if (mode == 2) { - formatOptions && formatOptions.asc_setAdvancedOptions(new Asc.asc_CTextOptions(encoding, delimiter)); - api.asc_DownloadAs(formatOptions); - } else { - api.asc_setAdvancedOptions(type, new Asc.asc_CTextOptions(encoding, delimiter)); - } - - if (!isDocReady) { - Common.Notifications.trigger('preloader:beginAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256); - } + Common.Notifications.trigger('preloader:close'); + Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); + const buttons = [{ + text: 'OK', + bold: true, + onClick: function () { + const password = document.getElementById('modal-password').value; + api.asc_setAdvancedOptions(type, new Asc.asc_CDRMAdvancedOptions(password)); + if (!isDocReady) { + Common.Notifications.trigger('preloader:beginAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256); } - }); - - const dialog = f7.dialog.create({ - title: _t.advCSVOptions, - text: '', - content: - '
    ' + - '
    ' + - '
    ' + _t.txtEncoding + '
    ' + - '
    ' + _t.txtDelimiter + '
    ' + - '
    ' + - '
    ' + - '
    ', - buttons: buttons, - cssClass: 'dlg-adv-options' - }).open(); - - const recommendedSettings = advOptions.asc_getRecommendedSettings(); - - dialog.on('opened', () => { - picker = f7.picker.create({ - containerEl: document.getElementById('txt-encoding'), - cols: [{ - textAlign: 'left', - values: pages, - displayValues: pagesName - },{ - textAlign: 'right', - width: 120, - values: [4, 2, 3, 1, 5], - displayValues: [',', ';', ':', _t.txtTab, _t.txtSpace] - }], - toolbar: false, - rotateEffect: true, - value: [ - recommendedSettings && recommendedSettings.asc_getCodePage(), - (recommendedSettings && recommendedSettings.asc_getDelimiter()) ? recommendedSettings.asc_getDelimiter() : 4 - ], - }); - }); - - } else if (type == Asc.c_oAscAdvancedOptionsID.DRM) { - Common.Notifications.trigger('preloader:close'); - Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256, true); - const buttons = [{ - text: 'OK', - bold: true, - onClick: function () { - const password = document.getElementById('modal-password').value; - api.asc_setAdvancedOptions(type, new Asc.asc_CDRMAdvancedOptions(password)); - if (!isDocReady) { - Common.Notifications.trigger('preloader:beginAction', Asc.c_oAscAsyncActionType['BlockInteraction'], -256); - } - } - }]; - - if(isDRM) { - f7.dialog.create({ - text: _t.txtIncorrectPwd, - buttons : [{ - text: 'OK', - bold: true, - }] - }).open(); } + }]; - if (canRequestClose) - buttons.push({ - text: _t.closeButtonText, - onClick: function () { - Common.Gateway.requestClose(); - } - }); - + if(isDRM) { f7.dialog.create({ - title: _t.advDRMOptions, - text: _t.textOpenFile, - content: Device.ios ? - '
    ' : '
    ', - buttons: buttons + text: _t.txtIncorrectPwd, + buttons : [{ + text: 'OK', + bold: true, + }] }).open(); } + + if (canRequestClose) + buttons.push({ + text: _t.closeButtonText, + onClick: function () { + Common.Gateway.requestClose(); + } + }); + + f7.dialog.create({ + title: _t.advDRMOptions, + text: _t.textOpenFile, + content: Device.ios ? + '
    ' : '
    ', + buttons: buttons + }).open(); + }; export { diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index a3bcb96d9..66c3cd23a 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -84,3 +84,9 @@ } } } + +.item-input-wrap { + input[type = number] { + -moz-appearance: textfield; + } +} diff --git a/apps/spreadsheeteditor/mobile/src/page/main.jsx b/apps/spreadsheeteditor/mobile/src/page/main.jsx index c8221d3d3..a58b7d571 100644 --- a/apps/spreadsheeteditor/mobile/src/page/main.jsx +++ b/apps/spreadsheeteditor/mobile/src/page/main.jsx @@ -6,7 +6,7 @@ import { Device } from '../../../../common/mobile/utils/device'; import Settings from '../view/settings/Settings'; import CollaborationView from '../../../../common/mobile/lib/view/collaboration/Collaboration.jsx' import CellEditor from '../controller/CellEditor'; -import Statusbar from '../controller/Statusbar'; +import { Statusbar } from '../controller/Statusbar'; import FilterOptionsController from '../controller/FilterOptions.jsx' import AddOptions from "../view/add/Add"; import EditOptions from "../view/edit/Edit"; @@ -25,39 +25,56 @@ class MainPage extends Component { addOptionsVisible: false, addShowOptions: null, settingsVisible: false, - collaborationVisible: false, + collaborationVisible: false }; } handleClickToOpenOptions = (opts, showOpts) => { f7.popover.close('.document-menu.modal-in', false); - this.setState(state => { - if ( opts == 'edit' ) - return {editOptionsVisible: true}; - else if ( opts == 'add' ) - return { - addOptionsVisible: true, - addShowOptions: showOpts - }; - else if ( opts == 'settings' ) - return {settingsVisible: true}; - else if ( opts == 'coauth' ) - return {collaborationVisible: true}; - }); + setTimeout(() => { + let opened = false; + const newState = {}; + if ( opts === 'edit' ) { + this.state.editOptionsVisible && (opened = true); + newState.editOptionsVisible = true; + } else if ( opts === 'add' ) { + this.state.addOptionsVisible && (opened = true); + newState.addOptionsVisible = true; + newState.addShowOptions = showOpts; + } else if ( opts === 'settings' ) { + this.state.settingsVisible && (opened = true); + newState.settingsVisible = true; + } else if ( opts === 'coauth' ) { + this.state.collaborationVisible && (opened = true); + newState.collaborationVisible = true; + } - if ((opts === 'edit' || opts === 'coauth') && Device.phone) { - f7.navbar.hide('.main-navbar'); - } + for (let key in this.state) { + if (this.state[key] && !opened) { + setTimeout(() => { + this.handleClickToOpenOptions(opts, showOpts); + }, 10); + return; + } + } + + if (!opened) { + this.setState(newState); + if ((opts === 'edit' || opts === 'coauth') && Device.phone) { + f7.navbar.hide('.main-navbar'); + } + } + }, 10); }; handleOptionsViewClosed = opts => { - (async () => { - await 1 && this.setState(state => { + setTimeout(() => { + this.setState(state => { if ( opts == 'edit' ) return {editOptionsVisible: false}; else if ( opts == 'add' ) - return {addOptionsVisible: false}; + return {addOptionsVisible: false, addShowOptions: null}; else if ( opts == 'settings' ) return {settingsVisible: false}; else if ( opts == 'coauth' ) @@ -66,7 +83,7 @@ class MainPage extends Component { if ((opts === 'edit' || opts === 'coauth') && Device.phone) { f7.navbar.show('.main-navbar'); } - })(); + }, 1); }; render() { @@ -74,6 +91,7 @@ class MainPage extends Component { const config = appOptions.config; const showLogo = !(appOptions.canBrandingExt && (config.customization && (config.customization.loaderName || config.customization.loaderLogo))); const showPlaceholder = !appOptions.isDocReady && (!config.customization || !(config.customization.loaderName || config.customization.loaderLogo)); + return ( {/* Top Navbar */} diff --git a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js index 6cb3db2d9..c16c6a4c5 100644 --- a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js +++ b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js @@ -15,7 +15,11 @@ export class storeFocusObjects { imageObject: computed, chartObject: computed, isLocked: observable, - setIsLocked: action + setIsLocked: action, + editFormulaMode: observable, + setEditFormulaMode: action, + isEditCell: observable, + setEditCell: action }); } @@ -106,4 +110,16 @@ export class storeFocusObjects { this.isLocked = islocked; } + editFormulaMode = false; + + setEditFormulaMode(value) { + this.editFormulaMode = value; + } + + isEditCell = false; + + setEditCell(value) { + this.isEditCell = value; + } + } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/store/mainStore.js b/apps/spreadsheeteditor/mobile/src/store/mainStore.js index 0190760f3..93742a6c4 100644 --- a/apps/spreadsheeteditor/mobile/src/store/mainStore.js +++ b/apps/spreadsheeteditor/mobile/src/store/mainStore.js @@ -15,7 +15,9 @@ import {storeAppOptions} from "./appOptions"; // import {storeTableSettings} from "./tableSettings"; import {storeChartSettings} from "./chartSettings"; import {storeSpreadsheetSettings} from "./spreadsheetSettings"; +import {storeReview} from '../../../../common/mobile/lib/store/review'; import {storeComments} from "../../../../common/mobile/lib/store/comments"; +import {storeToolbarSettings} from "./toolbar"; export const stores = { storeFocusObjects: new storeFocusObjects(), @@ -32,8 +34,10 @@ export const stores = { storeChartSettings: new storeChartSettings(), storePalette: new storePalette(), storeCellSettings: new storeCellSettings(), + storeReview: new storeReview(), // storeImageSettings: new storeImageSettings(), // storeTableSettings: new storeTableSettings() - storeComments: new storeComments() + storeComments: new storeComments(), + storeToolbarSettings: new storeToolbarSettings() }; diff --git a/apps/spreadsheeteditor/mobile/src/store/sheets.js b/apps/spreadsheeteditor/mobile/src/store/sheets.js index bb79938d3..54e04a34b 100644 --- a/apps/spreadsheeteditor/mobile/src/store/sheets.js +++ b/apps/spreadsheeteditor/mobile/src/store/sheets.js @@ -1,5 +1,5 @@ -import {observable, action, makeObservable} from 'mobx'; +import {observable, action, makeObservable, computed} from 'mobx'; class Worksheet { sheet = { @@ -26,7 +26,14 @@ export class storeWorksheets { makeObservable(this, { sheets: observable, resetSheets: action, - setActiveWorksheet: action + setActiveWorksheet: action, + activeWorksheet: computed, + + isWorkbookLocked: observable, + setWorkbookLocked: action, + + isWorksheetLocked: observable, + setWorksheetLocked: action }); this.sheets = []; } @@ -46,6 +53,14 @@ export class storeWorksheets { } } + get activeWorksheet() { + for (let i = 0; i < this.sheets.length; i++) { + if (this.sheets[i].active) + return i; + } + return -1; + } + at(i) { return this.sheets[i] } @@ -61,4 +76,17 @@ export class storeWorksheets { visibleWorksheets() { return this.sheets.filter(model => !model.hidden); } + + isWorkbookLocked = false; + setWorkbookLocked(locked) { + this.isWorkbookLocked = locked; + } + + isWorksheetLocked = false; + setWorksheetLocked(index, locked) { + let model = this.sheets[index]; + if(model && model.locked !== locked) + model.locked = locked; + this.isWorkbookLocked = locked; + } } diff --git a/apps/spreadsheeteditor/mobile/src/store/textSettings.js b/apps/spreadsheeteditor/mobile/src/store/textSettings.js index b17cb0ca7..1f577ddf5 100644 --- a/apps/spreadsheeteditor/mobile/src/store/textSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/textSettings.js @@ -6,6 +6,7 @@ export class storeTextSettings { fontsArray: observable, fontInfo: observable, fontName: observable, + arrayRecentFonts:observable, fontSize: observable, isBold: observable, isItalic: observable, @@ -15,16 +16,19 @@ export class storeTextSettings { paragraphAlign: observable, paragraphValign: observable, textIn: observable, + resetFontsRecent:action, initTextSettings: action, initFontSettings: action, initEditorFonts: action, initFontInfo: action, changeTextColor: action, - changeCustomTextColors: action + changeCustomTextColors: action, + addFontToRecent:action }); } fontsArray = []; + arrayRecentFonts = []; fontInfo = {}; fontName = ''; fontSize = undefined; @@ -90,6 +94,15 @@ export class storeTextSettings { this.fontInfo = fontObj; } + addFontToRecent (font) { + this.arrayRecentFonts.forEach(item => { + if (item === font) this.arrayRecentFonts.splice(this.arrayRecentFonts.indexOf(item),1); + }) + this.arrayRecentFonts.unshift(font); + + if (this.arrayRecentFonts.length > 5) this.arrayRecentFonts.splice(4,1); + } + changeTextColor(value) { this.textColor = value; } @@ -115,6 +128,11 @@ export class storeTextSettings { return value; } + resetFontsRecent(fonts) { + this.arrayRecentFonts = fonts; + this.arrayRecentFonts = this.arrayRecentFonts ? this.arrayRecentFonts.split(';') : []; + } + changeCustomTextColors (colors) { this.customTextColors = colors; } diff --git a/apps/spreadsheeteditor/mobile/src/store/toolbar.js b/apps/spreadsheeteditor/mobile/src/store/toolbar.js new file mode 100644 index 000000000..ff0d1764a --- /dev/null +++ b/apps/spreadsheeteditor/mobile/src/store/toolbar.js @@ -0,0 +1,24 @@ +import {action, observable, makeObservable} from 'mobx'; + +export class storeToolbarSettings { + constructor() { + makeObservable(this, { + isCanUndo: observable, + setCanUndo: action, + isCanRedo: observable, + setCanRedo: action + }) + } + + isCanUndo = false; + + setCanUndo(can) { + this.isCanUndo = can; + } + + isCanRedo = false; + + setCanRedo(can) { + this.isCanRedo = can; + } +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx index 9367e06a9..9e914b4bd 100644 --- a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx @@ -23,7 +23,7 @@ const CellEditorView = props => { return diff --git a/apps/spreadsheeteditor/mobile/src/view/Encoding.jsx b/apps/spreadsheeteditor/mobile/src/view/Encoding.jsx new file mode 100644 index 000000000..a746a38c9 --- /dev/null +++ b/apps/spreadsheeteditor/mobile/src/view/Encoding.jsx @@ -0,0 +1,171 @@ +import React, {Component, useEffect, useState} from 'react'; +import { f7, Page, Navbar, List, ListItem, BlockTitle, ListButton, Popover, Popup, View, Link } from "framework7-react"; +import { useTranslation } from "react-i18next"; +import { Device } from '../../../../common/mobile/utils/device'; + +const PageEncoding = props => { + const { t } = useTranslation(); + const _t = t("View.Settings", { returnObjects: true }); + const pagesName = props.pagesName; + const pages = props.pages; + const valuesDelimeter = props.valuesDelimeter; + const namesDelimeter = props.namesDelimeter; + const [stateEncoding, setStateEncoding] = useState(props.valueEncoding); + const [stateDelimeter, setStateDelimeter] = useState(props.valueDelimeter); + const nameEncoding = pagesName[pages.indexOf(stateEncoding)]; + const nameDelimeter = namesDelimeter[valuesDelimeter.indexOf(stateDelimeter)]; + const mode = props.mode; + + const changeStateEncoding = value => { + setStateEncoding(value); + } + + const changeStateDelimeter = value => { + setStateDelimeter(value); + } + + return ( + + + + {_t.textDelimeter} + + + + {_t.textEncoding} + + + + + {mode === 2 ? + props.closeModal()}> + : null} + props.onSaveFormat(stateEncoding, stateDelimeter)}> + + + + + ) +}; + +const PageEncodingList = props => { + const { t } = useTranslation(); + const _t = t("View.Settings", { returnObjects: true }); + const [currentEncoding, changeCurrentEncoding] = useState(props.stateEncoding); + const pages = props.pages; + const pagesName = props.pagesName; + + return ( + + + {_t.textChooseEncoding} + + {pagesName.map((name, index) => { + return ( + { + changeCurrentEncoding(pages[index]); + props.changeStateEncoding(pages[index]); + f7.views.current.router.back(); + }}> + ) + })} + + + ) +}; + +const PageDelimeterList = props => { + const { t } = useTranslation(); + const _t = t("View.Settings", { returnObjects: true }); + const [currentDelimeter, changeCurrentDelimeter] = useState(props.stateDelimeter); + const namesDelimeter = props.namesDelimeter; + const valuesDelimeter = props.valuesDelimeter; + + return ( + + + {_t.textChooseDelimeter} + + {namesDelimeter.map((name, index) => { + return ( + { + changeCurrentDelimeter(valuesDelimeter[index]); + props.changeStateDelimeter(valuesDelimeter[index]); + f7.views.current.router.back(); + }}> + ) + })} + + + ) +}; + +class EncodingView extends Component { + constructor(props) { + super(props); + } + + render() { + return ( + + + + ) + } +} + +const routes = [ + { + path: '/encoding-list/', + component: PageEncodingList + }, + { + path: '/delimeter-list/', + component: PageDelimeterList + } +]; + +const Encoding = props => { + useEffect(() => { + f7.popup.open('.encoding-popup'); + + return () => { + } + }); + + return ( + + ) +}; + +export {Encoding, PageEncodingList, PageDelimeterList} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx index 7af545d6f..0b566123f 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Statusbar.jsx @@ -1,125 +1,29 @@ import React, { Fragment } from 'react'; -import { View, Toolbar, Link, Icon, Popover, List, ListButton, Actions, ActionsGroup, ActionsButton } from 'framework7-react'; -import { observer, inject } from "mobx-react"; +import { View, Link, Icon, Popover, List, ListButton, Actions, ActionsGroup, ActionsButton } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import { Device } from '../../../../common/mobile/utils/device'; +import { inject, observer } from 'mobx-react'; const viewStyle = { height: 30 }; -const StatusbarView = inject('sheets', "storeAppOptions")(observer(props => { +const StatusbarView = inject('storeAppOptions', 'sheets')(observer(props => { const { t } = useTranslation(); const _t = t('Statusbar', {returnObjects: true}); const isAndroid = Device.android; const isPhone = Device.isPhone; - const { sheets, storeAppOptions } = props; - const isEdit = storeAppOptions.isEdit; - const hiddenSheets = sheets.hiddenWorksheets(); + const {sheets, storeAppOptions} = props; const allSheets = sheets.sheets; - const getTabClassList = model => `tab ${model.active ? 'active' : ''} ${model.locked ? 'locked' : ''}`; + const hiddenSheets = sheets.hiddenWorksheets(); + const isWorkbookLocked = sheets.isWorkbookLocked; + const isEdit = storeAppOptions.isEdit; - const getTabColor = model => { - let color = model.color; - - if (color) { - color = '#' + Common.Utils.ThemeColor.getHexColor(color.get_r(), color.get_g(), color.get_b()); - } else { - color = ''; - } - - if (color.length) { - if (!model.active) { - color = '0px 4px 0 ' + Common.Utils.RGBColor(color).toRGBA(0.7) + ' inset'; - } else { - color = '0px 4px 0 ' + color + ' inset'; - } - } - - return color; - } - - // const $boxTabs = $$('.sheet-tabs'); - // const $statusBar = $$('.statusbar'); - - // $boxTabs.on('touchstart', onTouchStart); - // $boxTabs.on('touchmove', onTouchMove); - // $boxTabs.on('touchend', onTouchEnd); - - // let touch = {}; - - // function hasInvisible() { - // let _left_bound_ = $boxTabs.offset().left, - // _right_bound_ = $boxTabs.width() + _left_bound_ - $statusBar.width(); - // // _right_bound_ = _left_bound_ + $boxTabs.width(); - - // // console.log(_left_bound_); - // console.log(_right_bound_); - - // let tab = $$('.sheet-tabs li')[0]; - // let rect = tab.getBoundingClientRect(); - - // if (!(rect.left < _left_bound_)) { - // // tab = $$('.sheet-tabs li')[$$('.sheet-tabs li').length - 1]; - // // rect = tab.getBoundingClientRect(); - - // // if (!((rect.right).toFixed(2) > _right_bound_)) - // // return false; - // if(_right_bound_ <= 0) { - // return false; - // } - // } - - // return true; - // } - - // function onTouchStart(e) { - // if (hasInvisible()) { - // console.log(e); - // let touches = e.changedTouches; - // touch.startx = touches[0].clientX; - // touch.scrollx = $boxTabs.scrollLeft(); - // // console.log(touch.scrollx); - - // touch.timer = setTimeout(function () { - // // touch.longtouch = true; - // }, 500); - // // e.preventDefault(); - // } - // } - - // function onTouchMove(e) { - // if (touch.startx !== undefined) { - // // console.log(e); - // let touches = e.changedTouches; - - // if (touch.longtouch) {} - // else { - // if (touch.timer) clearTimeout(touch.timer), delete touch.timer; - // let valueLeft = touch.scrollx + (touch.startx - touches[0].clientX); - // console.log(valueLeft); - // // $boxTabs.scrollLeft(valueLeft); - // - // } - - // // e.preventDefault(); - // } - // } - - // function onTouchEnd(e) { - // if (touch.startx !== undefined) { - // // console.log(e); - // touch.longtouch = false; - // delete touch.startx; - // // e.preventDefault(); - // } - // } - - return ( + return ( -
    - props.onAddTabClicked()}> +
    +
    @@ -127,8 +31,8 @@ const StatusbarView = inject('sheets', "storeAppOptions")(observer(props => {
      {allSheets.map((model,i) => model.hidden ? null : -
    • props.onTabClick(i, e.target)}> - {model.name} +
    • props.onTabClick(i, e.target)}> + {model.name}
    • )} diff --git a/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx b/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx index 0cf7909be..3ffaa264b 100644 --- a/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/Toolbar.jsx @@ -28,8 +28,8 @@ const ToolbarView = props => { onEditClick: () => props.openOptions('edit'), onAddClick: () => props.openOptions('add') })} - { Device.phone ? null : } - {props.displayCollaboration && window.matchMedia("(min-width: 360px)").matches ? props.openOptions('coauth')}> : null} + { Device.phone ? null : } + {props.displayCollaboration && window.matchMedia("(min-width: 360px)").matches ? props.openOptions('coauth')}> : null} props.openOptions('settings')}> diff --git a/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx b/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx index b98e305ce..0ba851392 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx @@ -161,7 +161,7 @@ class AddView extends Component { const show_popover = this.props.usePopover; return ( show_popover ? - this.props.onclosed()}> + this.props.onclosed()}> : this.props.onclosed()}> diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx index d300691eb..75fbe135d 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx @@ -89,7 +89,7 @@ const AddLinkView = props => { value={link} onChange={(event) => { setLink(event.target.value); - if(stateAutoUpdate) setDisplayText(event.target.value); + if((!stateDisplayText || stateDisplayText === link) && stateAutoUpdate) setDisplayText(event.target.value); }} className={isIos ? 'list-input-right' : ''} /> @@ -115,8 +115,10 @@ const AddLinkView = props => { placeholder={_t.textDisplay} value={stateDisplayText} disabled={displayDisabled} - onChange={(event) => {setDisplayText(event.target.value); - setAutoUpdate(event.target.value == ''); }} + onChange={(event) => { + setDisplayText(event.target.value); + setAutoUpdate(event.target.value == ''); + }} className={isIos ? 'list-input-right' : ''} /> { const isAndroid = Device.android; @@ -119,12 +120,21 @@ const PageFontsCell = props => { const isAndroid = Device.android; const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); + const storeTextSettings = props.storeTextSettings; const storeCellSettings = props.storeCellSettings; const fontInfo = storeCellSettings.fontInfo; const size = fontInfo.size; const displaySize = typeof size === 'undefined' ? _t.textAuto : size + ' ' + _t.textPt; const curFontName = fontInfo.name; const fonts = storeCellSettings.fontsArray; + const arrayFonts = storeTextSettings.arrayRecentFonts; + + const addRecentStorage = () => { + let arr = []; + arrayFonts.forEach(item => arr.push(item)); + arr = arr.join(';'); + LocalStorage.setItem('sse-settings-recent-fonts', arr); + } const [vlFonts, setVlFonts] = useState({ vlData: { @@ -174,6 +184,20 @@ const PageFontsCell = props => { {_t.textFonts} + {!!arrayFonts.length && + + {arrayFonts.map((item,index) => ( + {props.onFontClick(item)}} + /> + ))} + + } { checked={curFontName === item.name} title={item.name} style={{fontFamily: `${item.name}`}} - onClick={() => {props.onFontClick(item.name)}} + onClick={() => {props.onFontClick(item.name); storeTextSettings.addFontToRecent(item.name); + addRecentStorage()}} > ))}
    @@ -932,7 +957,7 @@ const TextColorCell = inject("storeCellSettings", "storePalette", "storeFocusObj const FillColorCell = inject("storeCellSettings", "storePalette", "storeFocusObjects")(observer(PageFillColorCell)); const CustomTextColorCell = inject("storeCellSettings", "storePalette", "storeFocusObjects")(observer(PageCustomTextColorCell)); const CustomFillColorCell = inject("storeCellSettings", "storePalette", "storeFocusObjects")(observer(PageCustomFillColorCell)); -const FontsCell = inject("storeCellSettings", "storeFocusObjects")(observer(PageFontsCell)); +const FontsCell = inject("storeCellSettings", "storeTextSettings" , "storeFocusObjects")(observer(PageFontsCell)); const TextFormatCell = inject("storeCellSettings", "storeFocusObjects")(observer(PageTextFormatCell)); const TextOrientationCell = inject("storeCellSettings", "storeFocusObjects")(observer(PageTextOrientationCell)); const BorderStyleCell = inject("storeCellSettings", "storeFocusObjects")(observer(PageBorderStyleCell)); diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx index edd1f410f..4628aad5f 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditText.jsx @@ -4,6 +4,7 @@ import {f7, List, ListItem, Icon, Row, Button, Page, Navbar, NavRight, Segmented import { useTranslation } from 'react-i18next'; import {Device} from '../../../../../common/mobile/utils/device'; import { ThemeColorPalette, CustomColorPicker } from '../../../../../common/mobile/lib/component/ThemeColorPalette.jsx'; +import { LocalStorage } from '../../../../../common/mobile/utils/LocalStorage'; const EditText = props => { const isAndroid = Device.android; @@ -98,6 +99,14 @@ const PageFonts = props => { const displaySize = typeof size === 'undefined' ? _t.textAuto : size + ' ' + _t.textPt; const curFontName = storeTextSettings.fontName; const fonts = storeTextSettings.fontsArray; + const arrayFonts = storeTextSettings.arrayRecentFonts; + + const addRecentStorage = () => { + let arr = []; + arrayFonts.forEach(item => arr.push(item)); + arr = arr.join(';'); + LocalStorage.setItem('sse-settings-recent-fonts', arr); + } const [vlFonts, setVlFonts] = useState({ vlData: { @@ -141,6 +150,20 @@ const PageFonts = props => { {_t.textFonts} + {!!arrayFonts.length && + + {arrayFonts.map((item,index) => ( + {props.changeFontFamily(item)}} + /> + ))} + + } { checked={curFontName === item.name} title={item.name} style={{fontFamily: `${item.name}`}} - onClick={() => {props.changeFontFamily(item.name)}} + onClick={() => {props.changeFontFamily(item.name); storeTextSettings.addFontToRecent(item.name); + addRecentStorage()}} > ))} diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx index ac8caca6e..2a0e42c8e 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/Settings.jsx @@ -146,7 +146,7 @@ const SettingsList = inject("storeAppOptions")(observer(props => { - + diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx index 78feb66f4..be2a38fee 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetSettings.jsx @@ -8,20 +8,20 @@ const PageSpreadsheetColorSchemes = props => { const { t } = useTranslation(); const curScheme = props.initPageColorSchemes(); const [stateScheme, setScheme] = useState(curScheme); - const _t = t('View.Settings', {returnObjects: true}); const storeSpreadsheetSettings = props.storeSpreadsheetSettings; const allSchemes = storeSpreadsheetSettings.allSchemes; - const SchemeNames = [ - _t.txtScheme1, _t.txtScheme2, _t.txtScheme3, _t.txtScheme4, _t.txtScheme5, - _t.txtScheme6, _t.txtScheme7, _t.txtScheme8, _t.txtScheme9, _t.txtScheme10, - _t.txtScheme11, _t.txtScheme12, _t.txtScheme13, _t.txtScheme14, _t.txtScheme15, - _t.txtScheme16, _t.txtScheme17, _t.txtScheme18, _t.txtScheme19, _t.txtScheme20, - _t.txtScheme21, _t.txtScheme22 + const SchemeNames = [ t('View.Settings.txtScheme22'), + t('View.Settings.txtScheme1'), t('View.Settings.txtScheme2'), t('View.Settings.txtScheme3'), t('View.Settings.txtScheme4'), + t('View.Settings.txtScheme5'), t('View.Settings.txtScheme6'), t('View.Settings.txtScheme7'), t('View.Settings.txtScheme8'), + t('View.Settings.txtScheme9'), t('View.Settings.txtScheme10'), t('View.Settings.txtScheme11'), t('View.Settings.txtScheme12'), + t('View.Settings.txtScheme13'), t('View.Settings.txtScheme14'), t('View.Settings.txtScheme15'), t('View.Settings.txtScheme16'), + t('View.Settings.txtScheme17'), t('View.Settings.txtScheme18'), t('View.Settings.txtScheme19'), t('View.Settings.txtScheme20'), + t('View.Settings.txtScheme21') ]; return ( - + { allSchemes ? allSchemes.map((scheme, index) => { diff --git a/build/Gruntfile.js b/build/Gruntfile.js index df942b632..c386b41b2 100644 --- a/build/Gruntfile.js +++ b/build/Gruntfile.js @@ -4,7 +4,7 @@ module.exports = function(grunt) { packageFile; const copyrightHeader = 'Copyright (c) Ascensio System SIA <%= grunt.template.today("yyyy") %>. All rights reserved' - var copyright = '/*\n' + + var copyright = '/*!\n' + ' * ' + (process.env['APP_COPYRIGHT'] || copyrightHeader) + '\n' + ' *\n' + ' * <%= pkg.homepage %> \n' + @@ -240,6 +240,7 @@ module.exports = function(grunt) { } } }); + doRegisterTask('apps-common'); doRegisterTask('sockjs'); doRegisterTask('xregexp'); doRegisterTask('megapixel'); @@ -432,11 +433,6 @@ module.exports = function(grunt) { 'template-backup': packageFile.mobile.copy['template-backup'][0].dest }, - requirejs: { - compile: { - options: packageFile['mobile']['js']['requirejs']['options'] - } - }, concat: { options: { @@ -444,8 +440,8 @@ module.exports = function(grunt) { banner: copyright }, dist: { - src: packageFile.mobile.js.requirejs.options.out, - dest: packageFile.mobile.js.requirejs.options.out + src: packageFile.mobile.js.dest, + dest: packageFile.mobile.js.dest } }, @@ -498,29 +494,30 @@ module.exports = function(grunt) { }, }, - replace: { - writeVersion: { - src: ['<%= pkg.mobile.js.requirejs.options.out %>'], - overwrite: true, - replacements: [{ - from: /\{\{PRODUCT_VERSION\}\}/, - to: packageFile.version - }] - }, - fixResourceUrl: { - src: ['<%= pkg.mobile.js.requirejs.options.out %>', - '<%= pkg.mobile.css.ios.dist %>', - '<%= pkg.mobile.css.material.dist %>'], - overwrite: true, - replacements: [{ - from: /(?:\.{2}\/){4}common\/mobile\/resources\/img/g, - to: '../img' - },{ - from: /(?:\.{2}\/){2}common\/mobile/g, - to: '../mobile' - }] - } - }, + // replace: { + // writeVersion: { + // src: ['<%= pkg.mobile.js.requirejs.options.out %>'], + // overwrite: true, + // replacements: [{ + // from: /\{\{PRODUCT_VERSION\}\}/, + // to: packageFile.version + // }] + // }, + // fixResourceUrl: { + // src: ['<%= pkg.mobile.js.requirejs.options.out %>', + // '<%= pkg.mobile.css.ios.dist %>', + // '<%= pkg.mobile.css.material.dist %>'], + // overwrite: true, + // replacements: [{ + // from: /(?:\.{2}\/){4}common\/mobile\/resources\/img/g, + // to: '../img' + // },{ + // from: /(?:\.{2}\/){2}common\/mobile/g, + // to: '../mobile' + // }] + // } + // }, + exec: { webpack_app_build: { @@ -531,6 +528,9 @@ module.exports = function(grunt) { const editor = packageFile.name == 'presentationeditor' ? 'slide' : packageFile.name == 'spreadsheeteditor' ? 'cell' : 'word'; return `npm run deploy-${editor}`; + + // const addon_path = `${packageFile.mobile.js.reactjs && !!packageFile.mobile.js.reactjs.features ? `ADDON_ENV=${packageFile.mobile.js.reactjs.features}` : ''}`; + // return `npx cross-env TARGET_EDITOR=${editor} NODE_ENV=production ${addon_path} node ./build/build.js`; }, }, webpack_install: { @@ -542,9 +542,9 @@ module.exports = function(grunt) { } }); - var replace = grunt.config.get('replace'); - replace.writeVersion.replacements.push(...jsreplacements); - grunt.config.set('replace', replace); + // var replace = grunt.config.get('replace'); + // replace.writeVersion.replacements.push(...jsreplacements); + // grunt.config.set('replace', replace); }); grunt.registerTask('embed-app-init', function() { @@ -609,6 +609,7 @@ module.exports = function(grunt) { var copyTask = grunt.option('desktop')? "copy": "copy:script"; grunt.registerTask('deploy-api', ['api-init', 'clean', copyTask, 'replace:writeVersion']); + grunt.registerTask('deploy-apps-common', ['apps-common-init', 'clean', 'copy']); grunt.registerTask('deploy-sdk', ['sdk-init', 'clean', copyTask]); grunt.registerTask('deploy-sockjs', ['sockjs-init', 'clean', 'copy']); @@ -629,10 +630,10 @@ module.exports = function(grunt) { 'replace:writeVersion', 'replace:prepareHelp', 'clean:postbuild']); grunt.registerTask('deploy-app-mobile', ['mobile-app-init', 'clean:deploy', /*'cssmin',*/ /*'copy:template-backup',*/ - 'htmlmin', /*'requirejs',*/ 'exec:webpack_install', 'exec:webpack_app_build', /*'concat',*/ /*'copy:template-restore',*/ + 'htmlmin', /*'requirejs',*/ 'exec:webpack_install', 'exec:webpack_app_build', /*'copy:template-restore',*/ /*'clean:template-backup',*/ 'copy:localization', 'copy:index-page', - 'copy:images-app', 'copy:webpack-dist', 'json-minify', - 'replace:writeVersion', 'replace:fixResourceUrl']); + 'copy:images-app', 'copy:webpack-dist', 'concat', 'json-minify'/*,*/ + /*'replace:writeVersion', 'replace:fixResourceUrl'*/]); grunt.registerTask('deploy-app-embed', ['embed-app-init', 'clean:prebuild', 'uglify', 'less', 'copy', 'clean:postbuild']); diff --git a/build/common.json b/build/common.json index ae094a888..ac73a304a 100644 --- a/build/common.json +++ b/build/common.json @@ -79,6 +79,19 @@ } } }, + "apps-common": { + "clean": [ + "../deploy/web-apps/apps/common" + ], + "copy": { + "alphabetletters": { + "expand": true, + "cwd": "../apps/common/main/resources/alphabetletters", + "src": "*.json", + "dest": "../deploy/web-apps/apps/common/main/resources/alphabetletters" + } + } + }, "bootstrap": { "clean": [ "../deploy/web-apps/vendor/bootstrap" @@ -231,6 +244,7 @@ "deploy": [ "increment-build", "deploy-api", + "deploy-apps-common", "deploy-sdk", "deploy-sockjs", "deploy-xregexp", diff --git a/build/documenteditor.json b/build/documenteditor.json index d3880ac26..9f20bf075 100644 --- a/build/documenteditor.json +++ b/build/documenteditor.json @@ -218,98 +218,8 @@ ] }, "js": { - "requirejs": { - "options": { - "name": "../apps/documenteditor/mobile/app.js", - "out": "../deploy/web-apps/apps/documenteditor/mobile/app.js", - "baseUrl": "../apps/", - "inlineText": true, - "findNestedDependencies": true, - "preserveLicenseComments": false, - "optimizeAllPluginResources": true, - "paths": { - "jquery": "../vendor/jquery/jquery", - "underscore": "../vendor/underscore/underscore", - "backbone": "../vendor/backbone/backbone", - "framework7": "../vendor/framework7/js/framework7", - "text": "../vendor/requirejs-text/text", - "xregexp": "empty:", - "sockjs": "empty:", - "jszip": "empty:", - "jszip-utils": "empty:", - "coapisettings": "empty:", - "allfonts": "empty:", - "sdk": "empty:", - "api": "empty:", - "core": "common/main/lib/core/application", - "extendes": "common/mobile/utils/extendes", - "notification": "common/main/lib/core/NotificationCenter", - "localstorage": "common/main/lib/util/LocalStorage", - "analytics": "common/Analytics", - "gateway": "common/Gateway", - "locale": "common/locale", - "irregularstack": "common/IrregularStack", - "sharedsettings": "common/mobile/utils/SharedSettings" - }, - "shim": { - "framework7": { - "exports": "Framework7" - }, - "underscore": { - "exports": "_" - }, - "backbone": { - "deps": [ - "underscore", - "jquery" - ], - "exports": "Backbone" - }, - "notification": { - "deps": [ - "backbone" - ] - }, - "core": { - "deps": [ - "backbone", - "notification", - "irregularstack", - "sharedsettings" - ] - }, - "extendes": { - "deps": [ - "underscore", - "jquery", - "framework7" - ] - }, - "sdk": { - "deps": [ - "jquery", - "underscore", - "coapisettings", - "allfonts", - "xregexp", - "sockjs", - "jszip", - "jszip-utils" - ] - }, - "gateway": { - "deps": [ - "jquery" - ] - }, - "analytics": { - "deps": [ - "jquery" - ] - } - } - } - } + "src": "../apps/documenteditor/mobile/dist/js/app.js", + "dest": "../deploy/web-apps/apps/documenteditor/mobile/dist/js/app.js" }, "css": { "ios": { diff --git a/build/presentationeditor.json b/build/presentationeditor.json index cececc2de..9e5961a4a 100644 --- a/build/presentationeditor.json +++ b/build/presentationeditor.json @@ -222,98 +222,8 @@ ] }, "js": { - "requirejs": { - "options": { - "name": "../apps/presentationeditor/mobile/app.js", - "out": "../deploy/web-apps/apps/presentationeditor/mobile/app.js", - "baseUrl": "../apps/", - "inlineText": true, - "findNestedDependencies": true, - "preserveLicenseComments": false, - "optimizeAllPluginResources": true, - "paths": { - "jquery": "../vendor/jquery/jquery", - "underscore": "../vendor/underscore/underscore", - "backbone": "../vendor/backbone/backbone", - "framework7": "../vendor/framework7/js/framework7", - "text": "../vendor/requirejs-text/text", - "xregexp": "empty:", - "sockjs": "empty:", - "jszip": "empty:", - "jszip-utils": "empty:", - "coapisettings": "empty:", - "allfonts": "empty:", - "sdk": "empty:", - "api": "empty:", - "core": "common/main/lib/core/application", - "extendes": "common/mobile/utils/extendes", - "notification": "common/main/lib/core/NotificationCenter", - "localstorage": "common/main/lib/util/LocalStorage", - "analytics": "common/Analytics", - "gateway": "common/Gateway", - "locale": "common/locale", - "irregularstack": "common/IrregularStack", - "sharedsettings": "common/mobile/utils/SharedSettings" - }, - "shim": { - "framework7": { - "exports": "Framework7" - }, - "underscore": { - "exports": "_" - }, - "backbone": { - "deps": [ - "underscore", - "jquery" - ], - "exports": "Backbone" - }, - "notification": { - "deps": [ - "backbone" - ] - }, - "core": { - "deps": [ - "backbone", - "notification", - "irregularstack", - "sharedsettings" - ] - }, - "extendes": { - "deps": [ - "underscore", - "jquery", - "framework7" - ] - }, - "sdk": { - "deps": [ - "jquery", - "underscore", - "coapisettings", - "allfonts", - "xregexp", - "sockjs", - "jszip", - "jszip-utils" - ] - }, - "gateway": { - "deps": [ - "jquery" - ] - }, - "analytics": { - "deps": [ - "jquery" - ] - } - } - } - } + "src": "../apps/presentationeditor/mobile/dist/js/app.js", + "dest": "../deploy/web-apps/apps/presentationeditor/mobile/dist/js/app.js" }, "css": { "ios": { diff --git a/build/spreadsheeteditor.json b/build/spreadsheeteditor.json index 216e47915..784cea7d4 100644 --- a/build/spreadsheeteditor.json +++ b/build/spreadsheeteditor.json @@ -223,98 +223,8 @@ ] }, "js": { - "requirejs": { - "options": { - "name": "../apps/spreadsheeteditor/mobile/app.js", - "out": "../deploy/web-apps/apps/spreadsheeteditor/mobile/app.js", - "baseUrl": "../apps/", - "inlineText": true, - "findNestedDependencies": true, - "preserveLicenseComments": false, - "optimizeAllPluginResources": true, - "paths": { - "jquery": "../vendor/jquery/jquery", - "underscore": "../vendor/underscore/underscore", - "backbone": "../vendor/backbone/backbone", - "framework7": "../vendor/framework7/js/framework7", - "text": "../vendor/requirejs-text/text", - "xregexp": "empty:", - "sockjs": "empty:", - "jszip": "empty:", - "jszip-utils": "empty:", - "coapisettings": "empty:", - "allfonts": "empty:", - "sdk": "empty:", - "api": "empty:", - "core": "common/main/lib/core/application", - "extendes": "common/mobile/utils/extendes", - "notification": "common/main/lib/core/NotificationCenter", - "localstorage": "common/main/lib/util/LocalStorage", - "analytics": "common/Analytics", - "gateway": "common/Gateway", - "locale": "common/locale", - "irregularstack": "common/IrregularStack", - "sharedsettings": "common/mobile/utils/SharedSettings" - }, - "shim": { - "framework7": { - "exports": "Framework7" - }, - "underscore": { - "exports": "_" - }, - "backbone": { - "deps": [ - "underscore", - "jquery" - ], - "exports": "Backbone" - }, - "notification": { - "deps": [ - "backbone" - ] - }, - "core": { - "deps": [ - "backbone", - "notification", - "irregularstack", - "sharedsettings" - ] - }, - "extendes": { - "deps": [ - "underscore", - "jquery", - "framework7" - ] - }, - "sdk": { - "deps": [ - "jquery", - "underscore", - "coapisettings", - "allfonts", - "xregexp", - "sockjs", - "jszip", - "jszip-utils" - ] - }, - "gateway": { - "deps": [ - "jquery" - ] - }, - "analytics": { - "deps": [ - "jquery" - ] - } - } - } - } + "src": "../apps/spreadsheeteditor/mobile/dist/js/app.js", + "dest": "../deploy/web-apps/apps/spreadsheeteditor/mobile/dist/js/app.js" }, "css": { "ios": { diff --git a/translation/check.py b/translation/check.py new file mode 100644 index 000000000..65e5bccf7 --- /dev/null +++ b/translation/check.py @@ -0,0 +1,77 @@ +import sys +import json +import os.path + +lost_key_count, sum_key_count = 0, 0 + +merge_dicts = False +verbose_out = False +#path_to_compare = "../apps/documenteditor/mobile/locale" +path_to_compare = "../apps" +#json_pattern = f'{path_to_compare}/en.json' + +cmd_args = sys.argv[1:] +for i in cmd_args: + if i == '--merge': + merge_dicts = True + elif i == '--verbose': + verbose_out = True + elif i[:2] != '--' and os.path.isdir(i): + path_to_compare = i + #json_pattern = f'{path_to_compare}/en.json' + +def compareDicts(keypath, dict1, dict2): + global lost_key_count, sum_key_count + + for k, v in dict1.items(): + k_path = f'{keypath}{"." if len(keypath) else ""}{k}' + if isinstance(v, dict): + if k not in dict2: + dict2[k] = {} + + dict2[k] = compareDicts(k_path, v, dict2[k]) + else: + sum_key_count += 1 + if k not in dict2: + lost_key_count += 1 + dict2[k] = v + if verbose_out: print(f' key {k_path} not exists') + return dict2 + +def compareFile(mjson, path): + with open(path, 'r+', encoding='utf-8') as cf: + res_dict = compareDicts('', mjson, json.load(cf)) + + if merge_dicts and lost_key_count: + cf.seek(0) + cf.write(json.dumps(res_dict, indent = 2)) + cf.truncate() + +def compareJsonInFolder(path): + global lost_key_count, sum_key_count + + cwd = os.path.dirname(path) + print('compare path', cwd, '\n') + with open(path, 'r') as pf: + master_dict = json.load(pf) + + #for root, dirs, files in os.walk(os.path.dirname(path)): + #for f in files: + files = [f for f in os.listdir(cwd) if os.path.isfile(os.path.join(cwd, f))] + for f in files: + if f != 'en.json' and f[-5:] == '.json': + if verbose_out: print(f'{f} is processing...') + + lost_key_count, sum_key_count = 0, 0 + compareFile(master_dict, f'{cwd}/{f}') + print(f'{f} done, lost {lost_key_count} from {sum_key_count}') + print('') + +if os.path.exists(f'{path_to_compare}/en.json'): + compareJsonInFolder(f'{path_to_compare}/en.json') +else: + for editor in ['documenteditor','spreadsheeteditor','presentationeditor']: + path = f'{path_to_compare}/{editor}/mobile/locale/en.json' + if os.path.exists(path): + compareJsonInFolder(path) + else: print(f'wrong path: {path}') diff --git a/translation/check_mobile.py b/translation/check_mobile.py new file mode 100644 index 000000000..055dcedc6 --- /dev/null +++ b/translation/check_mobile.py @@ -0,0 +1,77 @@ +import sys +import json +import os.path + +lost_key_count, sum_key_count = 0, 0 + +merge_dicts = True +verbose_out = False +#path_to_compare = "../apps/documenteditor/mobile/locale" +path_to_compare = "../apps" +#json_pattern = f'{path_to_compare}/en.json' + +cmd_args = sys.argv[1:] +for i in cmd_args: + if i == '--merge': + merge_dicts = True + elif i == '--verbose': + verbose_out = True + elif i[:2] != '--' and os.path.isdir(i): + path_to_compare = i + #json_pattern = f'{path_to_compare}/en.json' + +def compareDicts(keypath, dict1, dict2): + global lost_key_count, sum_key_count + + for k, v in dict1.items(): + k_path = f'{keypath}{"." if len(keypath) else ""}{k}' + if isinstance(v, dict): + if k not in dict2: + dict2[k] = {} + + dict2[k] = compareDicts(k_path, v, dict2[k]) + else: + sum_key_count += 1 + if k not in dict2: + lost_key_count += 1 + dict2[k] = v + if verbose_out: print(f' key {k_path} not exists') + return dict2 + +def compareFile(mjson, path): + with open(path, 'r+', encoding='utf-8') as cf: + res_dict = compareDicts('', mjson, json.load(cf)) + + if merge_dicts and lost_key_count: + cf.seek(0) + cf.write(json.dumps(res_dict, indent = 2, ensure_ascii=False)) + cf.truncate() + +def compareJsonInFolder(path): + global lost_key_count, sum_key_count + + cwd = os.path.dirname(path) + print('compare path', cwd, '\n') + with open(path, 'r') as pf: + master_dict = json.load(pf) + + #for root, dirs, files in os.walk(os.path.dirname(path)): + #for f in files: + files = [f for f in os.listdir(cwd) if os.path.isfile(os.path.join(cwd, f))] + for f in files: + if f != 'en.json' and f[-5:] == '.json': + if verbose_out: print(f'{f} is processing...') + + lost_key_count, sum_key_count = 0, 0 + compareFile(master_dict, f'{cwd}/{f}') + print(f'{f} done, lost {lost_key_count} from {sum_key_count}') + print('') + +if os.path.exists(f'{path_to_compare}/en.json'): + compareJsonInFolder(f'{path_to_compare}/en.json') +else: + for editor in ['documenteditor','spreadsheeteditor','presentationeditor']: + path = f'{path_to_compare}/{editor}/mobile/locale/en.json' + if os.path.exists(path): + compareJsonInFolder(path) + else: print(f'wrong path: {path}') diff --git a/translation/convert_translation.py b/translation/convert_translation.py index 16935dc79..a6310ab13 100644 --- a/translation/convert_translation.py +++ b/translation/convert_translation.py @@ -11,11 +11,13 @@ def strSplit(str): indLast = str.rfind('"') result.append(str[ind3+1:indLast]) return result + + def sortByAlphabet(inputStr): return inputStr.lower() + app_names = ['documenteditor', 'presentationeditor', 'spreadsheeteditor'] -#app_types = ['embed', 'main', 'mobile'] app_types = ['embed', 'main'] prefix_apps = '../apps/' prefix_src = 'src/' @@ -23,7 +25,7 @@ prefix_dest = 'dest/' str_apps = [] langs = [] for i in range(len(app_names)): - for j in range (len(app_types)): + for j in range(len(app_types)): locale_path = prefix_apps + app_names[i] + '/' + app_types[j] + '/locale/' src_path = prefix_src + app_names[i] + '/' + app_types[j] + '/locale/' dest_path = prefix_dest + app_names[i] + '/' + app_types[j] + '/locale/' @@ -32,7 +34,7 @@ for i in range(len(app_names)): langs = os.listdir(locale_path) if not os.path.isdir(dest_path): os.makedirs(dest_path) - if len(langs)>0: + if len(langs) > 0: try: f = io.open(locale_path + 'en.json', mode='r', encoding='utf-8') except Exception: @@ -81,7 +83,7 @@ for i in range(len(app_names)): arr_len = len(str_apps) for k in range(arr_len): str = str_apps[k] - if str.find('del_')==0: + if str.find('del_') == 0: continue if str in d_src: changed = 'changed' @@ -104,10 +106,10 @@ for i in range(len(app_names)): print(' ' + lang + '.json - ' + changed) if os.path.isdir(src_path): add_langs = os.listdir(src_path) - for l in range(len(langs)): - if add_langs.count(langs[l])>0: - add_langs.remove(langs[l]) - for l in range(len(add_langs)): - lang = add_langs[l] + for m in range(len(langs)): + if add_langs.count(langs[m]) > 0: + add_langs.remove(langs[m]) + for m in range(len(add_langs)): + lang = add_langs[m] shutil.copyfile(src_path + lang, dest_path + lang) - print(' ' + lang + ' - ' + 'added') \ No newline at end of file + print(' ' + lang + ' - ' + 'added') diff --git a/vendor/framework7-react/build/webpack.config.js b/vendor/framework7-react/build/webpack.config.js index ba15ce0d7..359731620 100644 --- a/vendor/framework7-react/build/webpack.config.js +++ b/vendor/framework7-react/build/webpack.config.js @@ -20,6 +20,7 @@ const target = process.env.TARGET || 'web'; const editor = process.env.TARGET_EDITOR == 'cell' ? 'spreadsheeteditor' : process.env.TARGET_EDITOR == 'slide' ? 'presentationeditor' : 'documenteditor'; const targetPatch = process.env.TARGET_EDITOR || 'word'; +const addonPath = process.env.ADDON_ENV || 'path'; module.exports = { mode: env, @@ -77,6 +78,7 @@ module.exports = { resolvePath('node_modules/dom7'), resolvePath('node_modules/ssr-window'), + //resolvePath(`${addonPath}`), resolvePath('../../../web-apps-mobile/word'), resolvePath('../../../web-apps-mobile/slide'), resolvePath('../../../web-apps-mobile/cell') @@ -220,6 +222,8 @@ module.exports = { /\.{2}\/lib\/patch/, resource => fs.existsSync(`../../../web-apps-mobile/${targetPatch}/patch.jsx`) ? resource.request = `../../../../../../web-apps-mobile/${targetPatch}/patch.jsx` : resource + //resource => fs.existsSync(`${addonPath}/patch.jsx`) ? + //resource.request = `../../../${addonPath}/patch.jsx` : resource ), ], }; \ No newline at end of file