diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 1dfdf981b7..e6868323ed 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -893,16 +893,16 @@ if (config.editorConfig && config.editorConfig.targetApp!=='desktop') { if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.loaderName) { - if (config.editorConfig.customization.loaderName !== 'none') params += "&customer=" + config.editorConfig.customization.loaderName; + if (config.editorConfig.customization.loaderName !== 'none') params += "&customer=" + encodeURIComponent(config.editorConfig.customization.loaderName); } else params += "&customer={{APP_CUSTOMER_NAME}}"; if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.loaderLogo) { - if (config.editorConfig.customization.loaderLogo !== '') params += "&logo=" + config.editorConfig.customization.loaderLogo; + if (config.editorConfig.customization.loaderLogo !== '') params += "&logo=" + encodeURIComponent(config.editorConfig.customization.loaderLogo); } else if ( (typeof(config.editorConfig.customization) == 'object') && config.editorConfig.customization.logo) { if (config.type=='embedded' && config.editorConfig.customization.logo.imageEmbedded) - params += "&headerlogo=" + config.editorConfig.customization.logo.imageEmbedded; + params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.imageEmbedded); else if (config.type!='embedded' && config.editorConfig.customization.logo.image) - params += "&headerlogo=" + config.editorConfig.customization.logo.image; + params += "&headerlogo=" + encodeURIComponent(config.editorConfig.customization.logo.image); } } diff --git a/apps/common/main/lib/component/DataView.js b/apps/common/main/lib/component/DataView.js index 66b3278fa3..5ca70e4fb1 100644 --- a/apps/common/main/lib/component/DataView.js +++ b/apps/common/main/lib/component/DataView.js @@ -494,7 +494,10 @@ define([ }, this); this.dataViewItems = []; - this.store.each(this.onAddItem, this); + var me = this; + this.store.each(function(item){ + me.onAddItem(item, me.store); + }, this); if (this.allowScrollbar) { this.scroller = new Common.UI.Scroller({ diff --git a/apps/common/main/lib/component/TreeView.js b/apps/common/main/lib/component/TreeView.js index 84c3fe8609..d6ac4c4b4b 100644 --- a/apps/common/main/lib/component/TreeView.js +++ b/apps/common/main/lib/component/TreeView.js @@ -198,7 +198,7 @@ define([ if (innerEl) { (this.dataViewItems.length<1) && innerEl.find('.empty-text').remove(); - if (opts && opts.at!==undefined) { + if (opts && (typeof opts.at==='number')) { var idx = opts.at; var innerDivs = innerEl.find('> div'); if (idx > 0) diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index 337e0e03fa..64bdc41282 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -281,7 +281,8 @@ define([ }, currentThemeId: function () { - return get_ui_theme_name(Common.localStorage.getItem('ui-theme')) || id_default_light_theme; + var t = Common.localStorage.getItem('ui-theme') || Common.localStorage.getItem('ui-theme-id'); + return get_ui_theme_name(t) || id_default_light_theme; }, defaultThemeId: function (type) { diff --git a/apps/common/main/lib/util/htmlutils.js b/apps/common/main/lib/util/htmlutils.js index 9277da26ff..ab885cfaf1 100644 --- a/apps/common/main/lib/util/htmlutils.js +++ b/apps/common/main/lib/util/htmlutils.js @@ -1,9 +1,19 @@ function checkScaling() { - var str_mq_150 = "screen and (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9), " + - "screen and (min-resolution: 1.5dppx) and (max-resolution: 1.9dppx)"; - if ( window.matchMedia(str_mq_150).matches ) { - document.body.classList.add('pixel-ratio__1_5'); + var matches = { + 'pixel-ratio__1_25': "screen and (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.49), " + + "screen and (min-resolution: 1.25dppx) and (max-resolution: 1.49dppx)", + 'pixel-ratio__1_5': "screen and (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.74), " + + "screen and (min-resolution: 1.5dppx) and (max-resolution: 1.74dppx)", + 'pixel-ratio__1_75': "screen and (-webkit-min-device-pixel-ratio: 1.75) and (-webkit-max-device-pixel-ratio: 1.99), " + + "screen and (min-resolution: 1.75dppx) and (max-resolution: 1.99dppx)", + }; + + for (var c in matches) { + if ( window.matchMedia(matches[c]).matches ) { + document.body.classList.add(c); + break; + } } if ( !window.matchMedia("screen and (-webkit-device-pixel-ratio: 1.5)," + @@ -11,8 +21,8 @@ function checkScaling() { "screen and (-webkit-device-pixel-ratio: 2)").matches ) { // don't add zoom for mobile devices - if (!(/android|avantgo|playbook|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od|ad)|iris|kindle|lge |maemo|midp|mmp|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent || navigator.vendor || window.opera))) - document.getElementsByTagName('html')[0].setAttribute('style', 'zoom: ' + (1 / window.devicePixelRatio) + ';'); + // if (!(/android|avantgo|playbook|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od|ad)|iris|kindle|lge |maemo|midp|mmp|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent || navigator.vendor || window.opera))) + // document.getElementsByTagName('html')[0].setAttribute('style', 'zoom: ' + (1 / window.devicePixelRatio) + ';'); } } diff --git a/apps/common/main/lib/util/utils.js b/apps/common/main/lib/util/utils.js index 45781cc816..22a0d50a95 100644 --- a/apps/common/main/lib/util/utils.js +++ b/apps/common/main/lib/util/utils.js @@ -136,29 +136,56 @@ var utils = new(function() { scale = window.AscCommon.checkDeviceScale(); AscCommon.correctApplicationScale(scale); } else { - var str_mq_150 = "screen and (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9), " + - "screen and (min-resolution: 1.5dppx) and (max-resolution: 1.9dppx)"; + var str_mq_125 = "screen and (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.49), " + + "screen and (min-resolution: 1.25dppx) and (max-resolution: 1.49dppx)"; + var str_mq_150 = "screen and (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.74), " + + "screen and (min-resolution: 1.5dppx) and (max-resolution: 1.74dppx)"; + var str_mq_175 = "screen and (-webkit-min-device-pixel-ratio: 1.75) and (-webkit-max-device-pixel-ratio: 1.99), " + + "screen and (min-resolution: 1.75dppx) and (max-resolution: 1.99dppx)"; var str_mq_200 = "screen and (-webkit-min-device-pixel-ratio: 2), " + "screen and (min-resolution: 2dppx), screen and (min-resolution: 192dpi)"; + if ( window.matchMedia(str_mq_125).matches ) { + scale.devicePixelRatio = 1.5; + } else if ( window.matchMedia(str_mq_150).matches ) { scale.devicePixelRatio = 1.5; } else + if ( window.matchMedia(str_mq_175).matches ) { + scale.devicePixelRatio = 1.75; + } else if ( window.matchMedia(str_mq_200).matches ) scale.devicePixelRatio = 2; else scale.devicePixelRatio = 1; } var $root = $(document.body); - if ( scale.devicePixelRatio < 1.5 ) { - $root.removeClass('pixel-ratio__1_5 pixel-ratio__2'); + var classes = document.body.className; + var clear_list = classes.replace(/pixel-ratio__[\w-]+/gi,'').trim(); + if ( scale.devicePixelRatio < 1.25 ) { + if ( /pixel-ratio__/.test(classes) ) { + document.body.className = clear_list; + } } else - if ( !(scale.devicePixelRatio < 1.5) && scale.devicePixelRatio < 2 ) { - $root.removeClass('pixel-ratio__2'); - $root.addClass('pixel-ratio__1_5'); + if ( scale.devicePixelRatio < 1.5 ) { + if ( !/pixel-ratio__1_25/.test(classes) ) { + document.body.className = clear_list + ' pixel-ratio__1_25'; + } + } else + if ( scale.devicePixelRatio < 1.75 ) { + if ( !/pixel-ratio__1_5/.test(classes) ) { + document.body.className = clear_list + ' pixel-ratio__1_5'; + } + } else + if ( !(scale.devicePixelRatio < 1.75) && scale.devicePixelRatio < 2 ) { + if ( !/pixel-ratio__1_75/.test(classes) ) { + document.body.className = clear_list + ' pixel-ratio__1_75'; + } } else { $root.addClass('pixel-ratio__2'); - $root.removeClass('pixel-ratio__1_5'); + if ( !/pixel-ratio__2/.test(classes) ) { + document.body.className = clear_list + ' pixel-ratio__2'; + } } me.zoom = scale.correct ? scale.zoom : 1; diff --git a/apps/common/main/resources/less/colors-table-dark.less b/apps/common/main/resources/less/colors-table-dark.less index 9304637ffb..4ffcbeb424 100644 --- a/apps/common/main/resources/less/colors-table-dark.less +++ b/apps/common/main/resources/less/colors-table-dark.less @@ -57,7 +57,7 @@ // Canvas - --canvas-background: #666; + --canvas-background: #555; --canvas-content-background: #fff; --canvas-page-border: #555; @@ -88,8 +88,8 @@ --canvas-scroll-thumb-hover: #999; --canvas-scroll-thumb-pressed: #adadad; --canvas-scroll-thumb-border: #2a2a2a; - --canvas-scroll-thumb-border-hover: #2a2a2a; - --canvas-scroll-thumb-border-pressed: #2a2a2a; + --canvas-scroll-thumb-border-hover: #999; + --canvas-scroll-thumb-border-pressed: #adadad; --canvas-scroll-arrow: #999; --canvas-scroll-arrow-hover: #404040; --canvas-scroll-arrow-pressed: #404040; diff --git a/apps/common/main/resources/less/colors-table-ie-fix.less b/apps/common/main/resources/less/colors-table-ie-fix.less index b38bec3c41..120daf2ac9 100644 --- a/apps/common/main/resources/less/colors-table-ie-fix.less +++ b/apps/common/main/resources/less/colors-table-ie-fix.less @@ -50,6 +50,9 @@ @icon-contrast-popover-ie: #fff; @icon-success-ie: #5b9f27; +@canvas-scroll-thumb-hover-ie: #c0c0c0; +@canvas-scroll-thumb-border-hover-ie: #cbcbcb; + @button-header-normal-icon-offset-x-ie: -20px; @button-header-active-icon-offset-x-ie: -20px; @scaled-one-px-value-ie: 1px; diff --git a/apps/common/main/resources/less/colors-table.less b/apps/common/main/resources/less/colors-table.less index 5735f5a6af..f1224fc6c7 100644 --- a/apps/common/main/resources/less/colors-table.less +++ b/apps/common/main/resources/less/colors-table.less @@ -234,3 +234,5 @@ @canvas-background: var(--canvas-background); @canvas-content-background: var(--canvas-content-background); @canvas-page-border: var(--canvas-page-border); +@canvas-scroll-thumb-hover: var(--canvas-scroll-thumb-hover); +@canvas-scroll-thumb-border-hover: var(--canvas-scroll-thumb-border-hover); diff --git a/apps/common/main/resources/less/combo-border-size.less b/apps/common/main/resources/less/combo-border-size.less index f27acd1de5..0d1422789a 100644 --- a/apps/common/main/resources/less/combo-border-size.less +++ b/apps/common/main/resources/less/combo-border-size.less @@ -57,4 +57,18 @@ .form-control:not(input) { cursor: pointer; } + + li { + img { + -webkit-filter: none; + filter: none; + } + + &.selected { + img { + -webkit-filter: none; + filter: none; + } + } + } } \ No newline at end of file diff --git a/apps/common/main/resources/less/common.less b/apps/common/main/resources/less/common.less index b4a0128b66..300130c01a 100644 --- a/apps/common/main/resources/less/common.less +++ b/apps/common/main/resources/less/common.less @@ -127,6 +127,9 @@ label { .panel-menu { width: 260px; + max-height: 100%; + position: relative; + overflow: hidden; float: left; border-right: @scaled-one-px-value-ie solid @border-toolbar-ie; border-right: @scaled-one-px-value solid @border-toolbar; diff --git a/apps/common/main/resources/less/scroller.less b/apps/common/main/resources/less/scroller.less index 328b0082fb..8a8b768695 100644 --- a/apps/common/main/resources/less/scroller.less +++ b/apps/common/main/resources/less/scroller.less @@ -46,8 +46,8 @@ .hover { .ps-scrollbar-x { &.always-visible-x { - background-color: @border-regular-control-ie; - background-color: @border-regular-control; + background-color: @canvas-scroll-thumb-hover-ie; + background-color: @canvas-scroll-thumb-hover; background-position: center -7px; } } @@ -56,10 +56,10 @@ &.in-scrolling { .ps-scrollbar-x { &.always-visible-x { - background-color: @border-regular-control-ie; - background-color: @border-regular-control; - border-color: @border-regular-control-ie; - border-color: @border-regular-control; + background-color: @canvas-scroll-thumb-hover-ie; + background-color: @canvas-scroll-thumb-hover; + border-color: @canvas-scroll-thumb-border-hover-ie; + border-color: @canvas-scroll-thumb-border-hover; background-position: center -7px; } } @@ -115,8 +115,8 @@ .ps-scrollbar-y { &.always-visible-y { - background-color: @border-regular-control-ie; - background-color: @border-regular-control; + background-color: @canvas-scroll-thumb-hover-ie; + background-color: @canvas-scroll-thumb-hover; background-position: -7px center; } } @@ -128,10 +128,10 @@ .ps-scrollbar-y { &.always-visible-y { - background-color: @border-regular-control-ie; - background-color: @border-regular-control; - border-color: @border-regular-control-ie; - border-color: @border-regular-control; + background-color: @canvas-scroll-thumb-hover-ie; + background-color: @canvas-scroll-thumb-hover; + border-color: @canvas-scroll-thumb-border-hover-ie; + border-color: @canvas-scroll-thumb-border-hover; background-position: -7px center; } } diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index c35d3825bf..008d01c72c 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -224,6 +224,12 @@ margin-left: 10px; } } + + &.no-group-mask { + .elset { + position: relative; + } + } } .elset { diff --git a/apps/common/mobile/lib/controller/Collaboration.js b/apps/common/mobile/lib/controller/Collaboration.js deleted file mode 100644 index ad90994d9b..0000000000 --- a/apps/common/mobile/lib/controller/Collaboration.js +++ /dev/null @@ -1,1876 +0,0 @@ -/* - * - * (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 - * - */ - -/** - * Collaboration.js - * - * Created by Julia Svinareva on 12/7/19 - * Copyright (c) 2019 Ascensio System SIA. All rights reserved. - * - */ - -if (Common === undefined) - var Common = {}; - -Common.Controllers = Common.Controllers || {}; - -define([ - 'core', - 'jquery', - 'underscore', - 'backbone', - 'common/mobile/lib/view/Collaboration' -], function (core, $, _, Backbone) { - 'use strict'; - - Common.Controllers.Collaboration = Backbone.Controller.extend(_.extend((function() { - // Private - var rootView, - _userId, - editUsers = [], - editor = !!window.DE ? 'DE' : !!window.PE ? 'PE' : 'SSE', - displayMode = "markup", - canViewReview, - arrChangeReview = [], - dateChange = [], - _fileKey; - - - return { - models: [], - collections: [], - views: [ - 'Common.Views.Collaboration' - ], - - initialize: function() { - var me = this; - me.addListeners({ - 'Common.Views.Collaboration': { - 'page:show' : me.onPageShow - } - }); - Common.NotificationCenter.on('comments:filterchange', _.bind(this.onFilterChange, this)); - }, - - setApi: function(api) { - this.api = api; - this.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(this.onChangeEditUsers, this)); - this.api.asc_registerCallback('asc_onParticipantsChanged', _.bind(this.onChangeEditUsers, this)); - this.api.asc_registerCallback('asc_onConnectionStateChanged', _.bind(this.onUserConnection, this)); - this.api.asc_registerCallback('asc_onAddComment', _.bind(this.onApiAddComment, this)); - this.api.asc_registerCallback('asc_onAddComments', _.bind(this.onApiAddComments, this)); - this.api.asc_registerCallback('asc_onChangeCommentData', _.bind(this.onApiChangeCommentData, this)); - this.api.asc_registerCallback('asc_onRemoveComment', _.bind(this.onApiRemoveComment, this)); - this.api.asc_registerCallback('asc_onRemoveComments', _.bind(this.onApiRemoveComments, this)); - this.api.asc_registerCallback('asc_onShowComment', _.bind(this.apiShowComments, this)); - this.api.asc_registerCallback('asc_onHideComment', _.bind(this.apiHideComments, this)); - - if (editor === 'DE') { - this.api.asc_registerCallback('asc_onShowRevisionsChange', _.bind(this.changeReview, this)); - } - }, - - onLaunch: function () { - this.createView('Common.Views.Collaboration').render(); - }, - - setMode: function(mode) { - this.appConfig = mode; - this.view = this.getView('Common.Views.Collaboration'); - this.view.viewmode = !mode.canComments; - this.view.canViewComments = mode.canViewComments; - _userId = mode.user.id; - if (editor === 'DE') { - _fileKey = mode.fileKey; - } - return this; - }, - - - showModal: function() { - var me = this, - isAndroid = Framework7.prototype.device.android === true, - modalView, - appPrefix = !!window.DE ? DE : !!window.PE ? PE : SSE, - mainView = appPrefix.getController('Editor').getView('Editor').f7View; - - uiApp.closeModal(); - - if (Common.SharedSettings.get('phone')) { - modalView = $$(uiApp.pickerModal( - '
' + - '' + - '
' - )).on('opened', function () { - if (_.isFunction(me.api.asc_OnShowContextMenu)) { - me.api.asc_OnShowContextMenu() - } - }).on('close', function (e) { - mainView.showNavbar(); - }).on('closed', function () { - if (_.isFunction(me.api.asc_OnHideContextMenu)) { - me.api.asc_OnHideContextMenu() - } - }); - mainView.hideNavbar(); - } else { - modalView = uiApp.popover( - '
' + - '
' + - '
' + - '
' + - '' + - '
' + - '
' + - '
', - $$('#toolbar-collaboration') - ); - } - - if (Framework7.prototype.device.android === true) { - $$('.view.collaboration-root-view.navbar-through').removeClass('navbar-through').addClass('navbar-fixed'); - $$('.view.collaboration-root-view .navbar').prependTo('.view.collaboration-root-view > .pages > .page'); - } - - rootView = uiApp.addView('.collaboration-root-view', { - dynamicNavbar: true, - domCache: true - }); - - if (!Common.SharedSettings.get('phone')) { - this.picker = $$(modalView); - var $overlay = $('.modal-overlay'); - - $$(this.picker).on('opened', function () { - $overlay.on('removeClass', function () { - if (!$overlay.hasClass('modal-overlay-visible')) { - $overlay.addClass('modal-overlay-visible') - } - }); - }).on('close', function () { - $overlay.off('removeClass'); - $overlay.removeClass('modal-overlay-visible') - }); - } - - Common.NotificationCenter.trigger('collaborationcontainer:show'); - this.onPageShow(this.getView('Common.Views.Collaboration')); - - appPrefix.getController('Toolbar').getView('Toolbar').hideSearch(); - }, - - rootView : function() { - return rootView; - }, - - onPageShow: function(view, pageId) { - var me = this; - - if ('#reviewing-settings-view' == pageId) { - me.initReviewingSettingsView(); - Common.Utils.addScrollIfNeed('.page[data-page=reviewing-settings-view]', '.page[data-page=reviewing-settings-view] .page-content'); - } else if ('#display-mode-view' == pageId) { - me.initDisplayMode(); - Common.Utils.addScrollIfNeed('.page[data-page=display-mode-view]', '.page[data-page=display-mode-view] .page-content'); - } else if('#change-view' == pageId) { - me.initChange(); - Common.Utils.addScrollIfNeed('.page[data-page=change-view]', '.page[data-page=change-view] .page-content'); - } else if('#edit-users-view' == pageId) { - me.initEditUsers(); - Common.Utils.addScrollIfNeed('.page[data-page=edit-users-view]', '.page[data-page=edit-users-view] .page-content'); - } else if ('#comments-view' == pageId) { - me.initComments(); - Common.Utils.addScrollIfNeed('.page[data-page=comments-view]', '.page[data-page=comments-view] .page-content'); - } else { - var length = 0; - _.each(editUsers, function (item) { - if ((item.asc_getState()!==false) && !item.asc_getView()) - length++; - }); - (length<1) && $('#item-edit-users').hide(); - - if(editor === 'DE' && !this.appConfig.canReview && !canViewReview) { - $('#reviewing-settings').hide(); - } - } - }, - - //Edit users - - onChangeEditUsers: function(users) { - editUsers = users; - }, - - onUserConnection: function(change){ - var changed = false; - for (var uid in editUsers) { - if (undefined !== uid) { - var user = editUsers[uid]; - if (user && user.asc_getId() == change.asc_getId()) { - editUsers[uid] = change; - changed = true; - } - } - } - !changed && change && (editUsers[change.asc_getId()] = change); - }, - - getUsersInfo: function() { - var me = this; - var usersArray = []; - _.each(editUsers, function(item){ - var name = AscCommon.UserInfoParser.getParsedName(item.asc_getUserName()); - var initials = me.getInitials(name); - if((item.asc_getState()!==false) && !item.asc_getView()) { - var userAttr = { - color: item.asc_getColor(), - id: item.asc_getId(), - idOriginal: item.asc_getIdOriginal(), - name: name, - view: item.asc_getView(), - initial: initials - }; - if(item.asc_getIdOriginal() == _userId) { - usersArray.unshift(userAttr); - } else { - usersArray.push(userAttr); - } - } - }); - var userSort = _.chain(usersArray).groupBy('idOriginal').value(); - return userSort; - }, - - initEditUsers: function() { - var users = this.getUsersInfo(); - var templateUserItem = _.template([ - '<% _.each(users, function (user) { %>', - '
  • ' + - '
    ' + - '
    <%= user[0].initial %>
    '+ - '' + - '<% if (user.length>1) { %><% } %>' + - '
    '+ - '
  • ', - '<% }); %>'].join('')); - var templateUserList = _.template( - '
    ' + - this.textEditUser + - '
    ' + - ''); - $('#user-list').html(templateUserList()); - }, - - //Review - - initReviewingSettingsView: function () { - var me = this; - - var trackChanges = typeof (this.appConfig.customization) == 'object' ? this.appConfig.customization.trackChanges : undefined; - $('#settings-review input:checkbox').attr('checked', this.appConfig.isReviewOnly || trackChanges===true || (trackChanges!==false) && Common.localStorage.getBool("de-mobile-track-changes-" + (_fileKey || ''))); - $('#settings-review input:checkbox').single('change', _.bind(me.onTrackChanges, me)); - $('#settings-accept-all').single('click', _.bind(me.onAcceptAllClick, me)); - $('#settings-reject-all').single('click', _.bind(me.onRejectAllClick, me)); - if(this.appConfig.isReviewOnly || displayMode == "final" || displayMode == "original" ) { - $('#settings-accept-all').addClass('disabled'); - $('#settings-reject-all').addClass('disabled'); - $('#settings-review').addClass('disabled'); - } else { - $('#settings-accept-all').removeClass('disabled'); - $('#settings-reject-all').removeClass('disabled'); - $('#settings-review').removeClass('disabled'); - } - if (!this.appConfig.canReview) { - $('#settings-review').hide(); - $('#settings-accept-all').hide(); - $('#settings-reject-all').hide(); - } - if (this.appConfig.canUseReviewPermissions) { - $('#settings-accept-all').hide(); - $('#settings-reject-all').hide(); - } - if (this.appConfig.isRestrictedEdit) { - $('#display-mode-settings').hide(); - } - }, - - onTrackChanges: function(e) { - var $checkbox = $(e.currentTarget), - state = $checkbox.is(':checked'); - if ( this.appConfig.isReviewOnly ) { - $checkbox.attr('checked', true); - } else { - this.api.asc_SetTrackRevisions(state); - var prefix = !!window.DE ? 'de' : !!window.PE ? 'pe' : 'sse'; - Common.localStorage.setItem(prefix + "-mobile-track-changes-" + (_fileKey || ''), state ? 1 : 0); - } - }, - - onAcceptAllClick: function() { - if (this.api) { - this.api.asc_AcceptAllChanges(); - } - }, - - onRejectAllClick: function() { - if (this.api) { - this.api.asc_RejectAllChanges(); - } - }, - - initDisplayMode: function() { - var me = this; - $('input:radio').single('change', _.bind(me.onReviewViewClick, me)); - var value = displayMode; - if (value == null || value === "markup") { - $('input[value="markup"]').attr('checked', true); - } else if (value === 'final') { - $('input[value="final"]').attr('checked', true); - } else if (value === 'original') { - $('input[value="original"]').attr('checked', true); - } - }, - - getDisplayMode: function() { - return displayMode; - }, - - setCanViewReview: function(config) { - canViewReview = config; - }, - - onReviewViewClick: function(event) { - var value = $(event.currentTarget).val(); - this.turnDisplayMode(value); - !this.appConfig.canReview && Common.localStorage.setItem("de-view-review-mode", value); - }, - - turnDisplayMode: function(value, suppressEvent) { - displayMode = value.toLocaleLowerCase(); - if (this.api) { - if (displayMode === 'final') - this.api.asc_BeginViewModeInReview(true); - - else if (displayMode === 'original') - this.api.asc_BeginViewModeInReview(false); - else - this.api.asc_EndViewModeInReview(); - } - !suppressEvent && this.initReviewingSettingsView(); - DE.getController('Toolbar').setDisplayMode(displayMode); - DE.getController('DocumentHolder').setDisplayMode(displayMode); - }, - - - initChange: function() { - var goto = false; - if(arrChangeReview.length == 0) { - $('#current-change').css('display','none'); - $('.accept-reject').find('a').addClass('disabled'); - $('#current-change').after(_.template('
    ' + this.textNoChanges + '
    ')); - } else { - if ($('#no-changes').length > 0) { - $('#no-changes').remove(); - } - var arr = { - date: arrChangeReview[0].date, - user: arrChangeReview[0].user, - color: arrChangeReview[0].usercolor.get_hex(), - text: arrChangeReview[0].changetext, - initials: this.getInitials(arrChangeReview[0].user) - }; - this.view.renderChangeReview(arr); - goto = arrChangeReview[0].goto; - } - if (goto) { - $('#btn-goto-change').show(); - } else { - $('#btn-goto-change').hide(); - } - $('#btn-prev-change').single('click', _.bind(this.onPrevChange, this)); - $('#btn-next-change').single('click', _.bind(this.onNextChange, this)); - $('#btn-accept-change').single('click', _.bind(this.onAcceptCurrentChange, this)); - $('#btn-reject-change').single('click', _.bind(this.onRejectCurrentChange, this)); - $('#btn-goto-change').single('click', _.bind(this.onGotoNextChange, this)); - - if(this.appConfig.isReviewOnly) { - $('#btn-accept-change').remove(); - $('#btn-reject-change').remove(); - if(arrChangeReview.length != 0 && arrChangeReview[0].editable) { - $('.accept-reject').html('' + this.textDelete + ''); - $('#btn-delete-change').single('click', _.bind(this.onDeleteChange, this)); - } - } else { - if(arrChangeReview.length != 0 && !arrChangeReview[0].editable) { - $('#btn-accept-change').addClass('disabled'); - $('#btn-reject-change').addClass('disabled'); - } - } - if(displayMode == "final" || displayMode == "original") { - $('#btn-accept-change').addClass('disabled'); - $('#btn-reject-change').addClass('disabled'); - $('#btn-prev-change').addClass('disabled'); - $('#btn-next-change').addClass('disabled'); - } - if (!this.appConfig.canReview) { - $('#btn-accept-change').addClass('disabled'); - $('#btn-reject-change').addClass('disabled'); - } - }, - - onPrevChange: function() { - this.api.asc_GetPrevRevisionsChange(); - }, - - onNextChange: function() { - this.api.asc_GetNextRevisionsChange(); - }, - - onAcceptCurrentChange: function() { - var me = this; - if (this.api) { - this.api.asc_AcceptChanges(dateChange[0]); - setTimeout(function () { - me.api.asc_GetNextRevisionsChange(); - }, 10); - } - }, - - onRejectCurrentChange: function() { - var me = this; - if (this.api) { - this.api.asc_RejectChanges(dateChange[0]); - setTimeout(function () { - me.api.asc_GetNextRevisionsChange(); - }, 10); - } - }, - - updateInfoChange: function() { - if($("[data-page=change-view]").length > 0) { - if (arrChangeReview.length == 0) { - $('#current-change #date-change').empty(); - $('#current-change #user-name').empty(); - $('#current-change #text-change').empty(); - $('#current-change').hide(); - $('#btn-goto-change').hide(); - $('#btn-delete-change').hide(); - $('.accept-reject').find('a').addClass('disabled'); - $('#current-change').after(_.template('
    ' + this.textNoChanges + '
    ')); - } else { - $('#current-change').show(); - $('.accept-reject').find('a').removeClass('disabled'); - this.initChange(); - } - } - }, - - changeReview: function (data) { - if (data && data.length>0) { - var me = this, arr = []; - var c_paragraphLinerule = { - LINERULE_LEAST: 0, - LINERULE_AUTO: 1, - LINERULE_EXACT: 2 - }; - _.each(data, function (item) { - var changetext = '', proptext = '', - value = item.get_Value(), - movetype = item.get_MoveType(), - settings = false; - switch (item.get_Type()) { - case Asc.c_oAscRevisionsChangeType.TextAdd: - changetext = (movetype==Asc.c_oAscRevisionsMove.NoMove) ? me.textInserted : me.textParaMoveTo; - if (typeof value == 'object') { - _.each(value, function (obj) { - if (typeof obj === 'string') - changetext += (' ' + Common.Utils.String.htmlEncode(obj)); - else { - switch (obj) { - case 0: - changetext += (' <' + me.textImage + '>'); - break; - case 1: - changetext += (' <' + me.textShape + '>'); - break; - case 2: - changetext += (' <' + me.textChart + '>'); - break; - case 3: - changetext += (' <' + me.textEquation + '>'); - break; - } - } - }) - } else if (typeof value === 'string') { - changetext += (' ' + Common.Utils.String.htmlEncode(value)); - } - break; - case Asc.c_oAscRevisionsChangeType.TextRem: - changetext = (movetype==Asc.c_oAscRevisionsMove.NoMove) ? me.textDeleted : (item.is_MovedDown() ? me.textParaMoveFromDown : me.textParaMoveFromUp); - if (typeof value == 'object') { - _.each(value, function (obj) { - if (typeof obj === 'string') - changetext += (' ' + Common.Utils.String.htmlEncode(obj)); - else { - switch (obj) { - case 0: - changetext += (' <' + me.textImage + '>'); - break; - case 1: - changetext += (' <' + me.textShape + '>'); - break; - case 2: - changetext += (' <' + me.textChart + '>'); - break; - case 3: - changetext += (' <' + me.textEquation + '>'); - break; - } - } - }) - } else if (typeof value === 'string') { - changetext += (' ' + Common.Utils.String.htmlEncode(value)); - } - break; - case Asc.c_oAscRevisionsChangeType.ParaAdd: - changetext = me.textParaInserted; - break; - case Asc.c_oAscRevisionsChangeType.ParaRem: - changetext = me.textParaDeleted; - break; - case Asc.c_oAscRevisionsChangeType.TextPr: - changetext = '' + me.textFormatted; - if (value.Get_Bold() !== undefined) - proptext += ((value.Get_Bold() ? '' : me.textNot) + me.textBold + ', '); - if (value.Get_Italic() !== undefined) - proptext += ((value.Get_Italic() ? '' : me.textNot) + me.textItalic + ', '); - if (value.Get_Underline() !== undefined) - proptext += ((value.Get_Underline() ? '' : me.textNot) + me.textUnderline + ', '); - if (value.Get_Strikeout() !== undefined) - proptext += ((value.Get_Strikeout() ? '' : me.textNot) + me.textStrikeout + ', '); - if (value.Get_DStrikeout() !== undefined) - proptext += ((value.Get_DStrikeout() ? '' : me.textNot) + me.textDStrikeout + ', '); - if (value.Get_Caps() !== undefined) - proptext += ((value.Get_Caps() ? '' : me.textNot) + me.textCaps + ', '); - if (value.Get_SmallCaps() !== undefined) - proptext += ((value.Get_SmallCaps() ? '' : me.textNot) + me.textSmallCaps + ', '); - if (value.Get_VertAlign() !== undefined) - proptext += (((value.Get_VertAlign() == 1) ? me.textSuperScript : ((value.Get_VertAlign() == 2) ? me.textSubScript : me.textBaseline)) + ', '); - if (value.Get_Color() !== undefined) - proptext += (me.textColor + ', '); - if (value.Get_Highlight() !== undefined) - proptext += (me.textHighlight + ', '); - if (value.Get_Shd() !== undefined) - proptext += (me.textShd + ', '); - if (value.Get_FontFamily() !== undefined) - proptext += (value.Get_FontFamily() + ', '); - if (value.Get_FontSize() !== undefined) - proptext += (value.Get_FontSize() + ', '); - if (value.Get_Spacing() !== undefined) - proptext += (me.textSpacing + ' ' + Common.Utils.Metric.fnRecalcFromMM(value.Get_Spacing()).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ', '); - if (value.Get_Position() !== undefined) - proptext += (me.textPosition + ' ' + Common.Utils.Metric.fnRecalcFromMM(value.Get_Position()).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ', '); - if (value.Get_Lang() !== undefined) - proptext += (Common.util.LanguageInfo.getLocalLanguageName(value.Get_Lang())[1] + ', '); - - if (!_.isEmpty(proptext)) { - changetext += ': '; - proptext = proptext.substring(0, proptext.length - 2); - } - changetext += ''; - changetext += proptext; - break; - case Asc.c_oAscRevisionsChangeType.ParaPr: - changetext = '' + me.textParaFormatted; - if (value.Get_ContextualSpacing()) - proptext += ((value.Get_ContextualSpacing() ? me.textContextual : me.textNoContextual) + ', '); - if (value.Get_IndLeft() !== undefined) - proptext += (me.textIndentLeft + ' ' + Common.Utils.Metric.fnRecalcFromMM(value.Get_IndLeft()).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ', '); - if (value.Get_IndRight() !== undefined) - proptext += (me.textIndentRight + ' ' + Common.Utils.Metric.fnRecalcFromMM(value.Get_IndRight()).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ', '); - if (value.Get_IndFirstLine() !== undefined) - proptext += (me.textFirstLine + ' ' + Common.Utils.Metric.fnRecalcFromMM(value.Get_IndFirstLine()).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ', '); - if (value.Get_Jc() !== undefined) { - switch (value.Get_Jc()) { - case 0: - proptext += (me.textRight + ', '); - break; - case 1: - proptext += (me.textLeft + ', '); - break; - case 2: - proptext += (me.textCenter + ', '); - break; - case 3: - proptext += (me.textJustify + ', '); - break; - - } - } - if (value.Get_KeepLines() !== undefined) - proptext += ((value.Get_KeepLines() ? me.textKeepLines : me.textNoKeepLines) + ', '); - if (value.Get_KeepNext()) - proptext += ((value.Get_KeepNext() ? me.textKeepNext : me.textNoKeepNext) + ', '); - if (value.Get_PageBreakBefore()) - proptext += ((value.Get_PageBreakBefore() ? me.textBreakBefore : me.textNoBreakBefore) + ', '); - if (value.Get_SpacingLineRule() !== undefined && value.Get_SpacingLine() !== undefined) { - proptext += me.textLineSpacing; - proptext += (((value.Get_SpacingLineRule() == c_paragraphLinerule.LINERULE_LEAST) ? me.textAtLeast : ((value.Get_SpacingLineRule() == c_paragraphLinerule.LINERULE_AUTO) ? me.textMultiple : me.textExact)) + ' '); - proptext += (((value.Get_SpacingLineRule() == c_paragraphLinerule.LINERULE_AUTO) ? value.Get_SpacingLine() : Common.Utils.Metric.fnRecalcFromMM(value.Get_SpacingLine()).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName()) + ', '); - } - if (value.Get_SpacingBeforeAutoSpacing()) - proptext += (me.textSpacingBefore + ' ' + me.textAuto + ', '); - else if (value.Get_SpacingBefore() !== undefined) - proptext += (me.textSpacingBefore + ' ' + Common.Utils.Metric.fnRecalcFromMM(value.Get_SpacingBefore()).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ', '); - if (value.Get_SpacingAfterAutoSpacing()) - proptext += (me.textSpacingAfter + ' ' + me.textAuto + ', '); - else if (value.Get_SpacingAfter() !== undefined) - proptext += (me.textSpacingAfter + ' ' + Common.Utils.Metric.fnRecalcFromMM(value.Get_SpacingAfter()).toFixed(2) + ' ' + Common.Utils.Metric.getCurrentMetricName() + ', '); - if (value.Get_WidowControl()) - proptext += ((value.Get_WidowControl() ? me.textWidow : me.textNoWidow) + ', '); - if (value.Get_Tabs() !== undefined) - proptext += (me.textTabs + ', '); - if (value.Get_NumPr() !== undefined) - proptext += (me.textNum + ', '); - if (value.Get_PStyle() !== undefined) { - var style = me.api.asc_GetStyleNameById(value.Get_PStyle()); - if (!_.isEmpty(style)) proptext += (style + ', '); - } - - if (!_.isEmpty(proptext)) { - changetext += ': '; - proptext = proptext.substring(0, proptext.length - 2); - } - changetext += ''; - changetext += proptext; - break; - case Asc.c_oAscRevisionsChangeType.TablePr: - changetext = me.textTableChanged; - break; - case Asc.c_oAscRevisionsChangeType.RowsAdd: - changetext = me.textTableRowsAdd; - break; - case Asc.c_oAscRevisionsChangeType.RowsRem: - changetext = me.textTableRowsDel; - break; - - } - var date = (item.get_DateTime() == '') ? new Date() : new Date(item.get_DateTime()), - user = item.get_UserName(), - userColor = item.get_UserColor(), - goto = (item.get_MoveType() == Asc.c_oAscRevisionsMove.MoveTo || item.get_MoveType() == Asc.c_oAscRevisionsMove.MoveFrom); - date = me.dateToLocaleTimeString(date); - var editable = me.appConfig.isReviewOnly && (item.get_UserId() == _userId) || !me.appConfig.isReviewOnly && (!me.appConfig.canUseReviewPermissions || AscCommon.UserInfoParser.canEditReview(item.get_UserName())); - arr.push({date: date, user: user, usercolor: userColor, changetext: changetext, goto: goto, editable: editable}); - }); - arrChangeReview = arr; - dateChange = data; - } else { - arrChangeReview = []; - dateChange = []; - } - this.updateInfoChange(); - }, - - dateToLocaleTimeString: function (date) { - function format(date) { - var strTime, - hours = date.getHours(), - minutes = date.getMinutes(), - ampm = hours >= 12 ? 'pm' : 'am'; - - hours = hours % 12; - hours = hours ? hours : 12; // the hour '0' should be '12' - minutes = minutes < 10 ? '0'+minutes : minutes; - strTime = hours + ':' + minutes + ' ' + ampm; - - return strTime; - } - - // MM/dd/yyyy hh:mm AM - return (date.getMonth() + 1) + '/' + (date.getDate()) + '/' + date.getFullYear() + ' ' + format(date); - }, - - onDeleteChange: function() { - if (this.api) { - this.api.asc_RejectChanges(dateChange[0]); - } - }, - - onGotoNextChange: function() { - if (this.api) { - this.api.asc_FollowRevisionMove(dateChange[0]); - } - }, - - //Comments - getCurrentUser: function () { - var me = this; - _.each(editUsers, function(item){ - if (item.asc_getIdOriginal() === _userId) { - me.currentUser = item; - } - }); - return me.currentUser; - }, - - getCommentInfo: function () { - this.getCurrentUser(); - if (this.currentUser) { - var date = new Date(); - var comment = { - time: date.getTime(), - date: this.dateToLocaleTimeString(date), - userid: _userId, - username: this.currentUser.asc_getUserName(), - usercolor: this.currentUser.asc_getColor(), - userInitials: this.getInitials(this.currentUser.asc_getUserName()) - }; - return comment; - } - }, - - getInitials: function(name) { - var fio = AscCommon.UserInfoParser.getParsedName(name).split(' '); - var initials = fio[0].substring(0, 1).toUpperCase(); - for (var i=fio.length-1; i>0; i--) { - if (fio[i][0]!=='(' && fio[i][0]!==')') { - initials += fio[i].substring(0, 1).toUpperCase(); - break; - } - } - return initials; - }, - - findComment: function(uid) { - var comment; - if (this.groupCollectionFilter.length !== 0) { - comment = this.findCommentInGroup(uid); - } else if (this.collectionComments.length !== 0) { - comment = _.findWhere(this.collectionComments, {uid: uid}); - } - return comment; - }, - - findVisibleComment: function(uid) { - var comment; - if (this.groupCollectionFilter.length !== 0) { - comment = this.findVisibleCommentInGroup(uid); - } else if (this.collectionComments.length !== 0) { - comment = _.findWhere(this.collectionComments, {uid: uid, hide: false}); - } - return comment; - }, - - apiShowComments: function(uid) { - var comments, - me = this; - me.showComments = []; - if (this.groupCollectionFilter.length !== 0) { - comments = this.groupCollectionFilter; - _.each(uid, function (id) { - var comment = me.findCommentInGroup(uid); - if (comment) { - me.showComments.push(comment); - } - }); - } else if (this.collectionComments.length !== 0) { - comments = this.collectionComments; - _.each(uid, function (id) { - var comment = _.findWhere(comments, {uid: id}); - if (comment) { - me.showComments.push(comment); - } - }); - } - if ($('.container-view-comment').length > 0) { - me.indexCurrentComment = 0; - me.updateViewComment(); - } - }, - - apiHideComments: function() { - if ($('.container-view-comment').length > 0) { - uiApp.closeModal(); - $('.container-view-comment').remove(); - } - }, - - disabledViewComments: function(disabled) { - if ($('.container-view-comment').length > 0) { - if (disabled) { - $('.comment-resolve, .comment-menu, .add-reply, .reply-menu').addClass('disabled'); - if (!$('.prev-comment').hasClass('disabled')) { - $('.prev-comment').addClass('disabled'); - } - if (!$('.next-comment').hasClass('disabled')) { - $('.next-comment').addClass('disabled'); - } - } else { - $('.comment-resolve, .comment-menu, .add-reply, .reply-menu').removeClass('disabled'); - if (this.showComments && this.showComments.length > 1) { - $('.prev-comment, .next-comment').removeClass('disabled'); - } - } - } - }, - - updateViewComment: function() { - this.view.renderViewComments(this.showComments, this.indexCurrentComment); - $('.comment-menu').single('click', _.buffered(this.initMenuComments, 100, this)); - $('.reply-menu').single('click', _.buffered(this.initReplyMenu, 100, this)); - $('.comment-resolve').single('click', _.bind(this.onClickResolveComment, this, false)); - if (this.showComments && this.showComments.length === 1) { - $('.prev-comment, .next-comment').addClass('disabled'); - } - }, - - showCommentModal: function() { - var me = this, - appPrefix = !!window.DE ? DE : !!window.PE ? PE : SSE, - mainView = appPrefix.getController('Editor').getView('Editor').f7View; - - me.indexCurrentComment = 0; - - uiApp.closeModal(); - - if (Common.SharedSettings.get('phone')) { - me.modalViewComment = $$(uiApp.pickerModal( - '
    ' + - '
    ' + - '
    ' + - '
    ' + - me.view.getTemplateContainerViewComments() + - '
    ' - )).on('close', function (e) { - mainView.showNavbar(); - }); - mainView.hideNavbar(); - } else { - if (!me.openModal) { - me.modalViewComment = uiApp.popover( - '
    ' + - '
    ' + - me.view.getTemplateContainerViewComments() + - '
    ' + - '
    ', - $$('#toolbar-collaboration') - ); - this.picker = $$(me.modalViewComment); - var $overlay = $('.modal-overlay'); - me.openModal = true; - $$(this.picker).on('opened', function () { - $overlay.on('removeClass', function () { - if (!$overlay.hasClass('modal-overlay-visible')) { - $overlay.addClass('modal-overlay-visible') - } - }); - }).on('close', function () { - $overlay.off('removeClass'); - $overlay.removeClass('modal-overlay-visible'); - $('.popover').remove(); - me.openModal = false; - }); - } - } - me.getView('Common.Views.Collaboration').renderViewComments(me.showComments, me.indexCurrentComment); - $('.prev-comment').single('click', _.bind(me.onViewPrevComment, me)); - $('.next-comment').single('click', _.bind(me.onViewNextComment, me)); - $('.comment-menu').single('click', _.buffered(me.initMenuComments, 100, me)); - $('.add-reply').single('click', _.bind(me.onClickAddReply, me, false)); - $('.reply-menu').single('click', _.buffered(me.initReplyMenu, 100, me)); - $('.comment-resolve').single('click', _.bind(me.onClickResolveComment, me, false)); - - if (me.showComments && me.showComments.length === 1) { - $('.prev-comment, .next-comment').addClass('disabled'); - } - - appPrefix.getController('Toolbar').getView('Toolbar').hideSearch(); - - //swipe modal window - if ($('.swipe-container').length > 0) { - me.swipeFull = false; - var $swipeContainer = $('.swipe-container'); - $swipeContainer.single('touchstart', _.bind(function (e) { - var touchobj = e.changedTouches[0]; - me.swipeStart = parseInt(touchobj.clientY); - me.swipeChange = parseInt(touchobj.clientY); - me.swipeHeight = parseInt($('.container-view-comment').css('height')); - e.preventDefault(); - }, me)); - $swipeContainer.single('touchmove', _.bind(function (e) { - var touchobj = e.changedTouches[0]; - var dist = parseInt(touchobj.clientY) - me.swipeStart; - var newHeight; - if (dist < 0) { - newHeight = '100%'; - me.swipeFull = true; - me.closeCommentPicker = false; - if (window.SSE) { - if ($('.container-view-comment').hasClass('onHide')) { - $('.container-view-comment').removeClass('onHide'); - } - } else { - $('.container-view-comment').css('opacity', '1'); - } - } else if (dist < 100) { - newHeight = '50%'; - me.swipeFull = false; - me.closeCommentPicker = false; - if (window.SSE) { - if ($('.container-view-comment').hasClass('onHide')) { - $('.container-view-comment').removeClass('onHide'); - } - } else { - $('.container-view-comment').css('opacity', '1'); - } - } else { - me.closeCommentPicker = true; - if (window.SSE) { - if (!$('.container-view-comment').hasClass('onHide')) { - $('.container-view-comment').addClass('onHide'); - } - } else { - $('.container-view-comment').css('opacity', '0.6'); - } - } - $('.container-view-comment').css('height', newHeight); - me.swipeHeight = newHeight; - e.preventDefault(); - }, me)); - $swipeContainer.single('touchend', _.bind(function (e) { - var touchobj = e.changedTouches[0]; - var swipeEnd = parseInt(touchobj.clientY); - var dist = swipeEnd - me.swipeStart; - if (me.closeCommentPicker) { - uiApp.closeModal(); - me.modalViewComment.remove(); - } else if (me.swipeFull) { - if (dist > 20) { - $('.container-view-comment').css('height', '50%'); - } - } - me.swipeHeight = undefined; - me.swipeChange = undefined; - me.closeCommentPicker = undefined; - }, me)); - } - }, - - onViewPrevComment: function() { - if (this.showComments && this.showComments.length > 0) { - for (var i=0; i 0) { - for (var i=0; i 0) { - if (phone) { - var colorUser = me.currentUser.asc_getColor(), - name = me.currentUser.asc_getUserName(), - initialUser = me.getInitials(name); - var templatePopup = me.getView('Common.Views.Collaboration').getTemplateAddReplyPopup(name, colorUser, initialUser, date); - me.addReplyView = uiApp.popup( - templatePopup - ); - $('.popup').css('z-index', '20000'); - } else { - me.disabledViewComments(true); - $('.container-view-comment .toolbar').find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'none'); - var template = _.template('' + me.textDone + ''); - $('.container-view-comment .button-right').append(template); - template = _.template('' + me.textCancel + ''); - $('.container-view-comment .button-left').append(template); - template = _.template('
    '); - $('.page-view-comments .page-content').append(template); - } - } else if ($('.container-collaboration').length > 0) { - me.getView('Common.Views.Collaboration').showPage('#comments-add-reply-view', false); - var name = me.currentUser.asc_getUserName(), - color = me.currentUser.asc_getColor(); - me.getView('Common.Views.Collaboration').renderAddReply(name, color, me.getInitials(name), date); - } - _.defer(function () { - var $textarea = $('.reply-textarea')[0]; - var $btnAddReply = $('#add-new-reply'); - $textarea.focus(); - $btnAddReply.addClass('disabled'); - $textarea.oninput = function () { - if ($textarea.value.length < 1) { - if (!$btnAddReply.hasClass('disabled')) - $btnAddReply.addClass('disabled'); - } else { - if ($btnAddReply.hasClass('disabled')) { - $btnAddReply.removeClass('disabled'); - } - } - }; - }); - $('#add-new-reply').single('click', _.bind(me.onDoneAddNewReply, me, comment.uid)); - $('.cancel-reply').single('click', _.bind(me.onCancelAddNewReply, me)); - } - }, - - onDoneAddNewReply: function(uid) { - var phone = Common.SharedSettings.get('phone'); - var reply = $('.reply-textarea')[0].value.trim(); - if ($('.container-view-comment').length > 0) { - var $viewComment = $('.container-view-comment'); - if (reply && reply.length > 0) { - this.addReply && this.addReply(uid, reply, _userId); - if (!phone) { - $viewComment.find('a#add-new-reply, a.cancel-reply').remove(); - $viewComment.find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'flex'); - if ($('.block-reply').length > 0) { - $('.block-reply').remove(); - } - } else { - uiApp.closeModal($$(this.addReplyView)); - } - this.disabledViewComments(false); - } - } else if ($('.container-collaboration').length > 0) { - this.addReply && this.addReply(uid, reply, _userId); - rootView.router.back(); - } - }, - - onCancelAddNewReply: function() { - var $viewComment = $('.container-view-comment'); - if ($viewComment.find('.block-reply').length > 0) { - $viewComment.find('.block-reply').remove(); - } - $viewComment.find('a#add-new-reply, a.cancel-reply').remove(); - $viewComment.find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'flex'); - this.disabledViewComments(false); - }, - - onAddNewComment: function() { - }, - - initMenuComments: function(e) { - if ($('.actions-modal').length < 1) { - var $comment = $(e.currentTarget).closest('.comment'); - var idComment = $comment.data('uid'); - if (_.isNumber(idComment)) { - idComment = idComment.toString(); - } - var comment = this.findComment(idComment); - if ($('.actions-modal').length === 0 && comment) { - var me = this; - _.delay(function () { - var _menuItems = []; - comment.editable && _menuItems.push({ - caption: me.textEdit, - event: 'edit' - }); - if (comment.editable) { - if (!comment.resolved) { - _menuItems.push({ - caption: me.textResolve, - event: 'resolve' - }); - } else { - _menuItems.push({ - caption: me.textReopen, - event: 'resolve' - }); - } - } - if ($('.container-collaboration').length > 0) { - _menuItems.push({ - caption: me.textAddReply, - event: 'addreply' - }); - } - comment.removable && _menuItems.push({ - caption: me.textDeleteComment, - event: 'delete', - color: 'red' - }); - _.each(_menuItems, function (item) { - item.text = item.caption; - item.onClick = function () { - me.onCommentMenuClick(item.event, idComment) - } - }); - - me.menuComments = uiApp.actions([_menuItems, [ - { - text: me.textCancel, - bold: true, - onClick: function () { - me.onCommentMenuClick(); - } - } - ]]); - $$(me.menuComments).on('close', function () { - me.disabledViewComments(false); - }); - }, 100); - } - this.disabledViewComments(true); - } - }, - - initReplyMenu: function(event) { - if ($('.actions-modal').length < 1) { - var me = this; - var ind = $(event.currentTarget).parent().parent().data('ind'); - var idComment = $(event.currentTarget).closest('.comment').data('uid'); - if (_.isNumber(idComment)) { - idComment = idComment.toString(); - } - var comment = this.findComment(idComment); - var reply = comment && comment.replys ? comment.replys[ind] : null; - reply && _.delay(function () { - var _menuItems = []; - reply.editable && _menuItems.push({ - caption: me.textEdit, - event: 'editreply' - }); - reply.removable && _menuItems.push({ - caption: me.textDeleteReply, - event: 'deletereply', - color: 'red' - }); - _.each(_menuItems, function (item) { - item.text = item.caption; - item.onClick = function () { - me.onCommentMenuClick(item.event, idComment, ind); - } - }); - me.menuReply = uiApp.actions([_menuItems, [ - { - text: me.textCancel, - bold: true, - onClick: function () { - me.onCommentMenuClick(); - } - } - ]]); - $$(me.menuReply).on('close', function () { - me.disabledViewComments(false); - }); - }, 100); - this.disabledViewComments(true); - } - }, - - onCommentMenuClick: function(action, idComment, indReply) { - var me = this; - function addOverlay () { - if (!Common.SharedSettings.get('phone')) { - var $overlay = $('.modal-overlay'); - if (!$overlay.hasClass('modal-overlay-visible')) { - $overlay.addClass('modal-overlay-visible') - } - } - } - switch (action) { - case 'edit': - addOverlay(); - me.showEditComment(idComment); - break; - case 'resolve': - addOverlay(); - me.onClickResolveComment(idComment); - me.disabledViewComments(false); - break; - case 'delete': - addOverlay(); - $$(uiApp.modal({ - title: this.textDeleteComment, - text: this.textMessageDeleteComment, - buttons: [ - { - text: this.textCancel - }, - { - text: this.textYes, - onClick: function () { - me.onDeleteComment && me.onDeleteComment(idComment); - } - }] - })).on('close', function () { - addOverlay(); - }); - me.disabledViewComments(false); - break; - case 'editreply': - addOverlay(); - me.showEditReply(idComment, indReply); - break; - case 'deletereply': - addOverlay(); - $$(uiApp.modal({ - title: this.textDeleteReply, - text: this.textMessageDeleteReply, - buttons: [ - { - text: this.textCancel - }, - { - text: this.textYes, - onClick: function () { - me.onDeleteReply && me.onDeleteReply(idComment, indReply); - } - }] - })).on('close', function () { - addOverlay(); - }); - me.disabledViewComments(false); - break; - case 'addreply': - addOverlay(); - me.onClickAddReply(idComment); - default: - addOverlay(); - me.disabledViewComments(false); - break; - } - }, - - showEditComment: function(idComment) { - var me = this; - if (idComment) { - var comment = this.findComment(idComment); - if ($('.container-view-comment').length > 0) { - if (Common.SharedSettings.get('phone')) { - me.editView = uiApp.popup( - me.view.getTemplateEditCommentPopup(comment) - ); - $$(me.editView).on('close', function(){ - me.disabledViewComments(false); - }); - $('.popup').css('z-index', '20000'); - _.delay(function () { - var $textarea = $('.comment-textarea')[0]; - $textarea.focus(); - $textarea.selectionStart = $textarea.value.length; - }, 100); - } else { - me.disabledViewComments(true); - if ($('.comment-textarea').length === 0) { - var $viewComment = $('.container-view-comment'); - var oldComment = $viewComment.find('.comment-text pre').text(); - $viewComment.find('.comment-text pre').css('display', 'none'); - var template = _.template(''); - $viewComment.find('.comment-text').append(template); - $viewComment.find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'none'); - template = _.template('' + me.textDone + ''); - $viewComment.find('.button-right').append(template); - template = _.template('' + me.textCancel + ''); - $viewComment.find('.button-left').append(template); - } - } - } else if ($('.container-collaboration').length > 0) { - this.getView('Common.Views.Collaboration').showPage('#comments-edit-view', false); - this.getView('Common.Views.Collaboration').renderEditComment(comment); - } - _.defer(function () { - var $textarea = $('.comment-textarea')[0]; - $textarea.focus(); - $textarea.selectionStart = $textarea.value.length; - }); - $('#edit-comment').single('click', _.bind(me.onEditComment, me, comment)); - $('.cancel-edit-comment').single('click', _.bind(me.onCancelEditComment, me)); - } - }, - - onEditComment: function(comment) { - var value = $('#comment-text')[0].value.trim(); - if (value && value.length > 0) { - this.getCurrentUser(); - if (!_.isUndefined(this.onChangeComment)) { - comment.comment = value; - comment.userid = this.currentUser.asc_getIdOriginal(); - comment.username = this.currentUser.asc_getUserName(); - this.onChangeComment(comment); - } - if ($('.container-view-comment').length > 0) { - if (Common.SharedSettings.get('phone')) { - uiApp.closeModal($$(this.editView)); - } else { - var $viewComment = $('.container-view-comment'); - $viewComment.find('a.done-edit-comment, a.cancel-edit-comment').remove(); - $viewComment.find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'flex'); - if ($viewComment.find('.comment-textarea').length > 0) { - $viewComment.find('.comment-textarea').remove(); - $viewComment.find('.comment-text pre').css('display', 'block'); - } - } - this.disabledViewComments(false); - } else if ($('.container-collaboration').length > 0) { - rootView.router.back(); - } - } - }, - - onCancelEditComment: function() { - var $viewComment = $('.container-view-comment'); - $viewComment.find('a.done-edit-comment, a.cancel-edit-comment, .comment-textarea').remove(); - $viewComment.find('.comment-text pre').css('display', 'block'); - $viewComment.find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'flex'); - this.disabledViewComments(false); - }, - - showEditReply: function(idComment, indReply) { - var me = this; - var comment = me.findComment(idComment); - if (comment) { - var replies, - reply; - replies = comment.replys; - reply = replies[indReply]; - if (reply) { - if ($('.container-view-comment').length > 0) { - if (Common.SharedSettings.get('phone')) { - me.editReplyView = uiApp.popup( - me.view.getTemplateEditReplyPopup(reply) - ); - $$(me.editReplyView).on('close', function () { - me.disabledViewComments(false); - }); - $('.popup').css('z-index', '20000'); - } else { - me.disabledViewComments(true); - var $reply = $('.reply-item[data-ind=' + indReply + ']'); - var $viewComment = $('.container-view-comment'); - $reply.find('.reply-text').css('display', 'none'); - $viewComment.find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'none'); - var template = _.template(''); - $reply.append(template); - template = _.template('' + me.textDone + ''); - $viewComment.find('.button-right').append(template); - template = _.template('' + me.textCancel + ''); - $viewComment.find('.button-left').append(template); - } - } else if ($('.container-collaboration').length > 0) { - me.getView('Common.Views.Collaboration').showPage('#comments-edit-reply-view', false); - me.getView('Common.Views.Collaboration').renderEditReply(reply); - } - _.defer(function () { - var $textarea = $('.edit-reply-textarea')[0]; - $textarea.focus(); - $textarea.selectionStart = $textarea.value.length; - }); - $('#edit-reply').single('click', _.bind(me.onEditReply, me, comment, indReply)); - $('.cancel-reply').single('click', _.bind(me.onCancelEditReply, me, indReply)); - } - } - }, - - onEditReply: function(comment, indReply) { - var value = $('.edit-reply-textarea')[0].value.trim(); - if (value && value.length > 0) { - this.getCurrentUser(); - if ($('.container-view-comment').length > 0) { - if (!_.isUndefined(this.onChangeComment)) { - comment.replys[indReply].reply = value; - comment.replys[indReply].userid = this.currentUser.asc_getIdOriginal(); - comment.replys[indReply].username = this.currentUser.asc_getUserName(); - this.onChangeComment(comment); - } - if (Common.SharedSettings.get('phone')) { - uiApp.closeModal($$(this.editReplyView)); - } else { - var $viewComment = $('.container-view-comment'); - $viewComment.find('a#edit-reply, a.cancel-reply').remove(); - $viewComment.find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'flex'); - if ($viewComment.find('.edit-reply-textarea').length > 0) { - $viewComment.find('.edit-reply-textarea').remove(); - $viewComment.find('.reply-text').css('display', 'block'); - } - } - } else { - if (!_.isUndefined(this.onChangeComment)) { - comment.replys[indReply].reply = value; - comment.replys[indReply].userid = this.currentUser.asc_getIdOriginal(); - comment.replys[indReply].username = this.currentUser.asc_getUserName(); - this.onChangeComment(comment); - } - rootView.router.back(); - } - this.disabledViewComments(false); - } - }, - - onCancelEditReply: function(indReply) { - var $viewComment = $('.container-view-comment'), - $reply = $('.reply-item[data-ind=' + indReply + ']'); - $viewComment.find('a#edit-reply, a.cancel-reply, .edit-reply-textarea').remove(); - $reply.find('.reply-text').css('display', 'block'); - $viewComment.find('a.prev-comment, a.next-comment, a.add-reply').css('display', 'flex'); - this.disabledViewComments(false); - }, - - onClickResolveComment: function(uid, e) { - var idComment; - if (!uid) { - var $comment = $(e.currentTarget).closest('.comment'); - idComment = $comment.data('uid'); - } else { - idComment = uid; - } - if (_.isNumber(idComment)) { - idComment = idComment.toString(); - } - var comment = this.findComment(idComment); - if (comment) { - this.resolveComment && this.resolveComment(comment.uid); - } - }, - - // utils - timeZoneOffsetInMs: (new Date()).getTimezoneOffset() * 60000, - utcDateToString: function (date) { - if (Object.prototype.toString.call(date) === '[object Date]') - return (date.getTime() - this.timeZoneOffsetInMs).toString(); - - return ''; - }, - ooDateToString: function (date) { - if (Object.prototype.toString.call(date) === '[object Date]') - return (date.getTime()).toString(); - - return ''; - }, - //end utils - - - groupCollectionComments: [], - collectionComments: [], - groupCollectionFilter: [], - filter: [], - - initComments: function() { - this.getView('Common.Views.Collaboration').renderComments((this.groupCollectionFilter.length !== 0) ? this.groupCollectionFilter : (this.collectionComments.length !== 0) ? this.collectionComments : false); - $('.comment-menu').single('click', _.buffered(this.initMenuComments, 100, this)); - $('.reply-menu').single('click', _.buffered(this.initReplyMenu, 100, this)); - $('.comment-resolve').single('click', _.bind(this.onClickResolveComment, this, false)); - $('.comment-quote').single('click', _.bind(this.onSelectComment, this)); - }, - - readSDKReplies: function (data) { - var i = 0, - replies = [], - date = null; - var repliesCount = data.asc_getRepliesCount(); - if (repliesCount) { - for (i = 0; i < repliesCount; ++i) { - date = (data.asc_getReply(i).asc_getOnlyOfficeTime()) ? new Date(this.stringOOToLocalDate(data.asc_getReply(i).asc_getOnlyOfficeTime())) : - ((data.asc_getReply(i).asc_getTime() == '') ? new Date() : new Date(this.stringUtcToLocalDate(data.asc_getReply(i).asc_getTime()))); - - var user = _.find(editUsers, function(item){ - return (item.asc_getIdOriginal()==data.asc_getReply(i).asc_getUserId()); - }); - var username = data.asc_getReply(i).asc_getUserName(); - replies.push({ - ind : i, - userid : data.asc_getReply(i).asc_getUserId(), - username : username, - usercolor : (user) ? user.asc_getColor() : null, - date : this.dateToLocaleTimeString(date), - reply : data.asc_getReply(i).asc_getText(), - time : date.getTime(), - userInitials : this.getInitials(username), - editable : (this.appConfig.canEditComments || (data.asc_getReply(i).asc_getUserId() == _userId)) && AscCommon.UserInfoParser.canEditComment(username), - removable : (this.appConfig.canDeleteComments || (data.asc_getReply(i).asc_getUserId() == _userId)) && AscCommon.UserInfoParser.canDeleteComment(username) - }); - } - } - return replies; - }, - - readSDKComment: function(id, data) { - var date = (data.asc_getOnlyOfficeTime()) ? new Date(this.stringOOToLocalDate(data.asc_getOnlyOfficeTime())) : - ((data.asc_getTime() == '') ? new Date() : new Date(this.stringUtcToLocalDate(data.asc_getTime()))); - var user = _.find(editUsers, function(item){ - return (item.asc_getIdOriginal()==data.asc_getUserId()); - }); - var groupname = id.substr(0, id.lastIndexOf('_')+1).match(/^(doc|sheet[0-9_]+)_/); - var username = data.asc_getUserName(); - var comment = { - uid : id, - userid : data.asc_getUserId(), - username : username, - usercolor : (user) ? user.asc_getColor() : null, - date : this.dateToLocaleTimeString(date), - quote : data.asc_getQuoteText(), - comment : data.asc_getText(), - resolved : data.asc_getSolved(), - unattached : !_.isUndefined(data.asc_getDocumentFlag) ? data.asc_getDocumentFlag() : false, - time : date.getTime(), - replys : [], - groupName : (groupname && groupname.length>1) ? groupname[1] : null, - userInitials : this.getInitials(username), - editable : (this.appConfig.canEditComments || (data.asc_getUserId() == _userId)) && AscCommon.UserInfoParser.canEditComment(username), - removable : (this.appConfig.canDeleteComments || (data.asc_getUserId() == _userId)) && AscCommon.UserInfoParser.canDeleteComment(username), - hide : !AscCommon.UserInfoParser.canViewComment(username) - }; - if (comment) { - var replies = this.readSDKReplies(data); - if (replies.length) { - comment.replys = replies; - } - } - return comment; - }, - - onApiChangeCommentData: function(id, data) { - var me = this, - i = 0, - date = null, - replies = null, - repliesCount = 0, - dateReply = null, - comment = _.findWhere(me.collectionComments, {uid: id}) || this.findCommentInGroup(id); - - if (comment) { - - date = (data.asc_getOnlyOfficeTime()) ? new Date(this.stringOOToLocalDate(data.asc_getOnlyOfficeTime())) : - ((data.asc_getTime() == '') ? new Date() : new Date(this.stringUtcToLocalDate(data.asc_getTime()))); - - var user = _.find(editUsers, function(item){ - return (item.asc_getIdOriginal()==data.asc_getUserId()); - }); - comment.comment = data.asc_getText(); - comment.userid = data.asc_getUserId(); - comment.username = data.asc_getUserName(); - comment.usercolor = (user) ? user.asc_getColor() : null; - comment.resolved = data.asc_getSolved(); - comment.quote = data.asc_getQuoteText(); - comment.time = date.getTime(); - comment.date = me.dateToLocaleTimeString(date); - comment.editable = (me.appConfig.canEditComments || (data.asc_getUserId() == _userId)) && AscCommon.UserInfoParser.canEditComment(data.asc_getUserName()); - comment.removable = (me.appConfig.canDeleteComments || (data.asc_getUserId() == _userId)) && AscCommon.UserInfoParser.canDeleteComment(data.asc_getUserName()); - comment.hide = !AscCommon.UserInfoParser.canViewComment(data.asc_getUserName()); - - replies = _.clone(comment.replys); - - replies.length = 0; - - repliesCount = data.asc_getRepliesCount(); - for (i = 0; i < repliesCount; ++i) { - - dateReply = (data.asc_getReply(i).asc_getOnlyOfficeTime()) ? new Date(this.stringOOToLocalDate(data.asc_getReply(i).asc_getOnlyOfficeTime())) : - ((data.asc_getReply(i).asc_getTime() == '') ? new Date() : new Date(this.stringUtcToLocalDate(data.asc_getReply(i).asc_getTime()))); - - user = _.find(editUsers, function(item){ - return (item.asc_getIdOriginal()==data.asc_getReply(i).asc_getUserId()); - }); - var username = data.asc_getReply(i).asc_getUserName(); - replies.push({ - ind : i, - userid : data.asc_getReply(i).asc_getUserId(), - username : username, - usercolor : (user) ? user.asc_getColor() : null, - date : me.dateToLocaleTimeString(dateReply), - reply : data.asc_getReply(i).asc_getText(), - time : dateReply.getTime(), - userInitials : me.getInitials(username), - editable : (me.appConfig.canEditComments || (data.asc_getReply(i).asc_getUserId() == _userId)) && AscCommon.UserInfoParser.canEditComment(username), - removable : (me.appConfig.canDeleteComments || (data.asc_getReply(i).asc_getUserId() == _userId)) && AscCommon.UserInfoParser.canDeleteComment(username) - }); - } - comment.replys = replies; - if($('.page-comments').length > 0) { - this.initComments(); - } - - if (this.showComments && this.showComments.length > 0) { - var showComment = _.findWhere(this.showComments, {uid: id}); - if (showComment) { - showComment = comment; - } - } - if ($('.container-view-comment').length > 0) { - this.updateViewComment(); - } - } - }, - - onApiAddComment: function (id, data) { - var comment = this.readSDKComment(id, data); - if (comment) { - comment.groupName ? this.addCommentToGroupCollection(comment) : this.collectionComments.push(comment); - } - if($('.page-comments').length > 0) { - this.initComments(); - } - }, - - onApiAddComments: function (data) { - for (var i = 0; i < data.length; ++i) { - var comment = this.readSDKComment(data[i].asc_getId(), data[i]); - comment.groupName ? this.addCommentToGroupCollection(comment) : this.collectionComments.push(comment); - } - if($('.page-comments').length > 0) { - this.initComments(); - } - }, - - stringOOToLocalDate: function (date) { - if (typeof date === 'string') - return parseInt(date); - return 0; - }, - - stringUtcToLocalDate: function (date) { - if (typeof date === 'string') - return parseInt(date) + this.timeZoneOffsetInMs; - - return 0; - }, - - addCommentToGroupCollection: function (comment) { - var groupname = comment.groupName; - if (!this.groupCollectionComments[groupname]) - this.groupCollectionComments[groupname] = []; - this.groupCollectionComments[groupname].push(comment); - if (this.filter.indexOf(groupname) != -1) { - this.groupCollectionFilter.push(comment); - } - }, - - findCommentInGroup: function (id) { - for (var name in this.groupCollectionComments) { - var store = this.groupCollectionComments[name]; - var id = _.isArray(id) ? id[0] : id; - var model = _.findWhere(store, {uid: id}); - if (model) return model; - } - }, - - findVisibleCommentInGroup: function (id) { - for (var name in this.groupCollectionComments) { - var store = this.groupCollectionComments[name]; - var id = _.isArray(id) ? id[0] : id; - var model = _.findWhere(store, {uid: id, hide: false}); - if (model) return model; - } - }, - - onApiRemoveComment: function (id, silentUpdate) { - function remove (collection, key) { - if(collection instanceof Array) { - var index = collection.indexOf(key); - if(index != -1) { - collection.splice(index, 1); - } - } - } - if (this.collectionComments.length > 0) { - var comment = _.findWhere(this.collectionComments, {uid: id}); - if (comment) { - remove(this.collectionComments, comment); - } - } else { - for (var name in this.groupCollectionComments) { - var store = this.groupCollectionComments[name], - comment = _.findWhere(store, {uid: id}); - if (comment) { - remove(this.groupCollectionComments[name], comment); - if (this.filter.indexOf(name) != -1) { - remove(this.groupCollectionFilter, comment); - } - } - } - } - if(!silentUpdate && $('.page-comments').length > 0) { - this.initComments(); - } - - if (this.showComments && this.showComments.length > 0) { - var removeComment = _.findWhere(this.showComments, {uid: id}); - if (removeComment) { - this.showComments = _.without(this.showComments, removeComment); - } - } - }, - - onApiRemoveComments: function(data) { - for (var i = 0; i < data.length; i++) { - this.onApiRemoveComment(data[i], true); - } - }, - - onFilterChange: function (filter) { - if (filter) { - var me = this, - comments = []; - this.filter = filter; - filter.forEach(function(item){ - if (!me.groupCollectionComments[item]) - me.groupCollectionComments[item] = []; - comments = comments.concat(me.groupCollectionComments[item]); - }); - this.groupCollectionFilter = comments; - } - }, - - onSelectComment: function (e) { - var id = $(e.currentTarget).data('id'); - this.api.asc_selectComment(id); - }, - - - textInserted: 'Inserted:', - textDeleted: 'Deleted:', - textParaInserted: 'Paragraph Inserted ', - textParaDeleted: 'Paragraph Deleted ', - textFormatted: 'Formatted', - textParaFormatted: 'Paragraph Formatted', - textNot: 'Not ', - textBold: 'Bold', - textItalic: 'Italic', - textStrikeout: 'Strikeout', - textUnderline: 'Underline', - textColor: 'Font color', - textBaseline: 'Baseline', - textSuperScript: 'Superscript', - textSubScript: 'Subscript', - textHighlight: 'Highlight color', - textSpacing: 'Spacing', - textDStrikeout: 'Double strikeout', - textCaps: 'All caps', - textSmallCaps: 'Small caps', - textPosition: 'Position', - textShd: 'Background color', - textContextual: 'Don\'t add interval between paragraphs of the same style', - textNoContextual: 'Add interval between paragraphs of the same style', - textIndentLeft: 'Indent left', - textIndentRight: 'Indent right', - textFirstLine: 'First line', - textRight: 'Align right', - textLeft: 'Align left', - textCenter: 'Align center', - textJustify: 'Align justify', - textBreakBefore: 'Page break before', - textKeepNext: 'Keep with next', - textKeepLines: 'Keep lines together', - textNoBreakBefore: 'No page break before', - textNoKeepNext: 'Don\'t keep with next', - textNoKeepLines: 'Don\'t keep lines together', - textLineSpacing: 'Line Spacing: ', - textMultiple: 'multiple', - textAtLeast: 'at least', - textExact: 'exactly', - textSpacingBefore: 'Spacing before', - textSpacingAfter: 'Spacing after', - textAuto: 'auto', - textWidow: 'Widow control', - textNoWidow: 'No widow control', - textTabs: 'Change tabs', - textNum: 'Change numbering', - textEquation: 'Equation', - textImage: 'Image', - textChart: 'Chart', - textShape: 'Shape', - textTableChanged: 'Table Settings Changed', - textTableRowsAdd: 'Table Rows Added', - textTableRowsDel: 'Table Rows Deleted', - textParaMoveTo: 'Moved:', - textParaMoveFromUp: 'Moved Up:', - textParaMoveFromDown: 'Moved Down:', - textEditUser: 'Document is currently being edited by several users.', - textCancel: "Cancel", - textDone: "Done", - textAddReply: "Add Reply", - textEdit: 'Edit', - textResolve: 'Resolve', - textDeleteComment: 'Delete comment', - textDeleteReply: 'Delete reply', - textReopen: 'Reopen', - textMessageDeleteComment: 'Do you really want to delete this comment?', - textMessageDeleteReply: 'Do you really want to delete this reply?', - textYes: 'Yes', - textDelete: 'Delete', - textNoChanges: 'There are no changes.' - - } - })(), Common.Controllers.Collaboration || {})) -}); \ No newline at end of file diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index ef6f5f8970..dd16ee1bec 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -18,6 +18,7 @@ class ContextMenuController extends Component { extraItems: [] }; + this.fastCoAuthTips = []; this.onMenuItemClick = this.onMenuItemClick.bind(this); this.onMenuClosed = this.onMenuClosed.bind(this); this.onActionClosed = this.onActionClosed.bind(this); @@ -103,7 +104,7 @@ class ContextMenuController extends Component { } onApiOpenContextMenu(x, y) { - if ( !this.state.opened && $$('.dialog.modal-in').length < 1 && !$$('.popover.modal-in, .sheet-modal.modal-in').length) { + if ( !this.state.opened && $$('.dialog.modal-in, .popover.modal-in, .sheet-modal.modal-in, .popup.modal-in, #pe-preview, .add-comment-popup').length < 1) { this.setState({ items: this.initMenuItems(), extraItems: this.initExtraItems() @@ -161,9 +162,6 @@ class ContextMenuController extends Component { /** coauthoring begin **/ const tipHeight = 20; - if (!this.fastCoAuthTips) { - this.fastCoAuthTips = []; - } let src; for (let i=0; i { // MM/dd/yyyy hh:mm AM return (date.getMonth() + 1) + '/' + (date.getDate()) + '/' + date.getFullYear() + ' ' + format(date); }; +const parseUserName = name => { + return AscCommon.UserInfoParser.getParsedName(name); +}; //end utils class CommentsController extends Component { @@ -74,7 +77,7 @@ class CommentsController extends Component { const api = Common.EditorApi.get(); /** coauthoring begin **/ const isLiveCommenting = LocalStorage.getBool(`${window.editorType}-mobile-settings-livecomment`, true); - const resolved = LocalStorage.getBool(`${window.editorType}-settings-resolvedcomment`, true); + const resolved = LocalStorage.getBool(`${window.editorType}-settings-resolvedcomment`); this.storeApplicationSettings.changeDisplayComments(isLiveCommenting); this.storeApplicationSettings.changeDisplayResolved(resolved); isLiveCommenting ? api.asc_showComments(resolved) : api.asc_hideComments(); @@ -123,17 +126,22 @@ class CommentsController extends Component { ((data.asc_getTime() === '') ? new Date() : new Date(stringUtcToLocalDate(data.asc_getTime()))); let user = this.usersStore.searchUserById(data.asc_getUserId()); + const name = data.asc_getUserName(); + const parsedName = parseUserName(name); changeComment.comment = data.asc_getText(); changeComment.userId = data.asc_getUserId(); - changeComment.userName = data.asc_getUserName(); + changeComment.userName = name; + changeComment.parsedName = Common.Utils.String.htmlEncode(parsedName); + changeComment.userInitials = this.usersStore.getInitials(parsedName); changeComment.userColor = (user) ? user.asc_getColor() : null; changeComment.resolved = data.asc_getSolved(); changeComment.quote = data.asc_getQuoteText(); changeComment.time = date.getTime(); changeComment.date = dateToLocaleTimeString(date); - changeComment.editable = this.appOptions.canEditComments || (data.asc_getUserId() === this.curUserId); - changeComment.removable = this.appOptions.canDeleteComments || (data.asc_getUserId() === this.curUserId); + changeComment.editable = (this.appOptions.canEditComments || (data.asc_getUserId() === this.curUserId)) && AscCommon.UserInfoParser.canEditComment(name); + changeComment.removable = (this.appOptions.canDeleteComments || (data.asc_getUserId() === this.curUserId)) && AscCommon.UserInfoParser.canDeleteComment(name); + changeComment.hide = !AscCommon.UserInfoParser.canViewComment(name); let dateReply = null; const replies = []; @@ -146,17 +154,19 @@ class CommentsController extends Component { user = this.usersStore.searchUserById(data.asc_getReply(i).asc_getUserId()); const userName = data.asc_getReply(i).asc_getUserName(); + const parsedName = parseUserName(userName); replies.push({ ind: i, userId: data.asc_getReply(i).asc_getUserId(), userName: userName, + parsedName: Common.Utils.String.htmlEncode(parsedName), userColor: (user) ? user.asc_getColor() : null, date: dateToLocaleTimeString(dateReply), reply: data.asc_getReply(i).asc_getText(), time: dateReply.getTime(), - userInitials: this.usersStore.getInitials(userName), - editable: this.appOptions.canEditComments || (data.asc_getReply(i).asc_getUserId() === this.curUserId), - removable: this.appOptions.canDeleteComments || (data.asc_getReply(i).asc_getUserId() === this.curUserId) + userInitials: this.usersStore.getInitials(parsedName), + editable: (this.appOptions.canEditComments || (data.asc_getReply(i).asc_getUserId() === this.curUserId)) && AscCommon.UserInfoParser.canEditComment(userName), + removable: (this.appOptions.canDeleteComments || (data.asc_getReply(i).asc_getUserId() === this.curUserId)) && AscCommon.UserInfoParser.canDeleteComment(userName) }); } changeComment.replies = replies; @@ -172,10 +182,12 @@ class CommentsController extends Component { const user = this.usersStore.searchUserById(data.asc_getUserId()); const groupName = id.substr(0, id.lastIndexOf('_')+1).match(/^(doc|sheet[0-9_]+)_/); const userName = data.asc_getUserName(); + const parsedName = parseUserName(userName); const comment = { uid : id, userId : data.asc_getUserId(), userName : userName, + parsedName : Common.Utils.String.htmlEncode(parsedName), userColor : (user) ? user.asc_getColor() : null, date : dateToLocaleTimeString(date), quote : data.asc_getQuoteText(), @@ -185,9 +197,10 @@ class CommentsController extends Component { time : date.getTime(), replies : [], groupName : (groupName && groupName.length>1) ? groupName[1] : null, - userInitials : this.usersStore.getInitials(userName), - editable : this.appOptions.canEditComments || (data.asc_getUserId() === this.curUserId), - removable : this.appOptions.canDeleteComments || (data.asc_getUserId() === this.curUserId) + userInitials : this.usersStore.getInitials(parsedName), + editable : (this.appOptions.canEditComments || (data.asc_getUserId() === this.curUserId)) && AscCommon.UserInfoParser.canEditComment(userName), + removable : (this.appOptions.canDeleteComments || (data.asc_getUserId() === this.curUserId)) && AscCommon.UserInfoParser.canDeleteComment(userName), + hide : !AscCommon.UserInfoParser.canViewComment(userName), }; if (comment) { const replies = this.readSDKReplies(data); @@ -208,17 +221,19 @@ class CommentsController extends Component { ((data.asc_getReply(i).asc_getTime() === '') ? new Date() : new Date(stringUtcToLocalDate(data.asc_getReply(i).asc_getTime()))); const user = this.usersStore.searchUserById(data.asc_getReply(i).asc_getUserId()); const userName = data.asc_getReply(i).asc_getUserName(); + const parsedName = parseUserName(userName); replies.push({ ind : i, userId : data.asc_getReply(i).asc_getUserId(), userName : userName, + parsedName : Common.Utils.String.htmlEncode(parsedName), userColor : (user) ? user.asc_getColor() : null, date : dateToLocaleTimeString(date), reply : data.asc_getReply(i).asc_getText(), time : date.getTime(), - userInitials : this.usersStore.getInitials(userName), - editable : this.appOptions.canEditComments || (data.asc_getReply(i).asc_getUserId() === this.curUserId), - removable : this.appOptions.canDeleteComments || (data.asc_getReply(i).asc_getUserId() === this.curUserId) + userInitials : this.usersStore.getInitials(parsedName), + editable : (this.appOptions.canEditComments || (data.asc_getReply(i).asc_getUserId() === this.curUserId)) && AscCommon.UserInfoParser.canEditComment(userName), + removable : (this.appOptions.canDeleteComments || (data.asc_getReply(i).asc_getUserId() === this.curUserId)) && AscCommon.UserInfoParser.canDeleteComment(userName) }); } } @@ -241,6 +256,7 @@ class AddCommentController extends Component { }; Common.Notifications.on('addcomment', () => { + f7.popover.close('#idx-context-menu-popover'); //close context menu this.setState({isOpen: true}); }); } @@ -252,9 +268,9 @@ class AddCommentController extends Component { if (!this.currentUser) { this.currentUser = this.props.users.setCurrentUser(this.props.storeAppOptions.user.id); } - const name = this.currentUser.asc_getUserName(); + const name = parseUserName(this.currentUser.asc_getUserName()); return { - name: name, + name: Common.Utils.String.htmlEncode(name), initials: this.props.users.getInitials(name), color: this.currentUser.asc_getColor() }; @@ -296,9 +312,9 @@ class EditCommentController extends Component { } getUserInfo () { this.currentUser = this.props.users.currentUser; - const name = this.currentUser.asc_getUserName(); + const name = parseUserName(this.currentUser.asc_getUserName()); return { - name: name, + name: Common.Utils.String.htmlEncode(name), initials: this.props.users.getInitials(name), color: this.currentUser.asc_getColor() }; @@ -441,7 +457,11 @@ class ViewCommentsController extends Component { }); } closeViewCurComments () { - f7.sheet.close('#view-comment-sheet'); + if (Device.phone) { + f7.sheet.close('#view-comment-sheet'); + } else { + f7.popover.close('#view-comment-popover'); + } this.setState({isOpenViewCurComments: false}); } onResolveComment (comment) { @@ -479,7 +499,12 @@ class ViewCommentsController extends Component { }); } const api = Common.EditorApi.get(); + api.asc_showComments(this.props.storeApplicationSettings.isResolvedComments); api.asc_changeComment(comment.uid, ascComment); + + if(!this.props.storeApplicationSettings.isResolvedComments) { + this.closeViewCurComments(); + } } } deleteComment (comment) { @@ -591,7 +616,7 @@ class ViewCommentsController extends Component { const _CommentsController = inject('storeAppOptions', 'storeComments', 'users', "storeApplicationSettings")(observer(CommentsController)); const _AddCommentController = inject('storeAppOptions', 'storeComments', 'users')(observer(AddCommentController)); const _EditCommentController = inject('storeComments', 'users')(observer(EditCommentController)); -const _ViewCommentsController = inject('storeComments', 'users')(observer(withTranslation()(ViewCommentsController))); +const _ViewCommentsController = inject('storeComments', 'users', "storeApplicationSettings")(observer(withTranslation()(ViewCommentsController))); export { _CommentsController as CommentsController, diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx index 6f212ef940..830ab10dee 100644 --- a/apps/common/mobile/lib/controller/collaboration/Review.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx @@ -135,33 +135,8 @@ class ReviewChange extends Component { this.onDeleteChange = this.onDeleteChange.bind(this); this.appConfig = props.storeAppOptions; - - if (this.appConfig && this.appConfig.canUseReviewPermissions) { - const permissions = this.appConfig.customization.reviewPermissions; - let arr = []; - const groups = Common.Utils.UserInfoParser.getParsedGroups(Common.Utils.UserInfoParser.getCurrentName()); - groups && groups.forEach(function(group) { - const item = permissions[group.trim()]; - item && (arr = arr.concat(item)); - }); - this.currentUserGroups = arr; - } - } - intersection (arr1, arr2) { //Computes the list of values that are the intersection of all the arrays. - const arr = []; - arr1.forEach((item1) => { - arr2.forEach((item2) => { - if (item1 === item2) { - arr.push(item2); - } - }); - }); - return arr; - } - checkUserGroups (username) { - const groups = Common.Utils.UserInfoParser.getParsedGroups(username); - return this.currentUserGroups && groups && (this.intersection(this.currentUserGroups, (groups.length>0) ? groups : [""]).length>0); } + dateToLocaleTimeString (date) { const format = (date) => { let strTime, @@ -445,7 +420,7 @@ class ReviewChange extends Component { const userColor = item.get_UserColor(); const goto = (item.get_MoveType() == Asc.c_oAscRevisionsMove.MoveTo || item.get_MoveType() == Asc.c_oAscRevisionsMove.MoveFrom); date = this.dateToLocaleTimeString(date); - const editable = this.appConfig.isReviewOnly && (item.get_UserId() == this.appConfig.user.id) || !this.appConfig.isReviewOnly && (!this.appConfig.canUseReviewPermissions || this.checkUserGroups(item.get_UserName())); + const editable = this.appConfig.isReviewOnly && (item.get_UserId() == this.appConfig.user.id) || !this.appConfig.isReviewOnly && (!this.appConfig.canUseReviewPermissions || AscCommon.UserInfoParser.canEditReview(item.get_UserName())); arr.push({date: date, user: user, userColor: userColor, changeText: changeText, goto: goto, editable: editable}); }); return arr; @@ -493,13 +468,14 @@ class ReviewChange extends Component { let change; let goto = false; if (arrChangeReview.length > 0) { + const name = AscCommon.UserInfoParser.getParsedName(arrChangeReview[0].user); change = { date: arrChangeReview[0].date, user: arrChangeReview[0].user, - userName: Common.Utils.String.htmlEncode(Common.Utils.UserInfoParser.getParsedName(arrChangeReview[0].user)), + userName: Common.Utils.String.htmlEncode(name), color: arrChangeReview[0].userColor.get_hex(), text: arrChangeReview[0].changeText, - initials: this.props.users.getInitials(arrChangeReview[0].user), + initials: this.props.users.getInitials(name), editable: arrChangeReview[0].editable }; goto = arrChangeReview[0].goto; diff --git a/apps/common/mobile/lib/store/comments.js b/apps/common/mobile/lib/store/comments.js index 6d5fc05cc7..28a2d7a63b 100644 --- a/apps/common/mobile/lib/store/comments.js +++ b/apps/common/mobile/lib/store/comments.js @@ -70,6 +70,8 @@ export class storeComments { comment.comment = changeComment.comment; comment.userId = changeComment.userId; comment.userName = changeComment.userName; + comment.parsedName = changeComment.parsedName; + comment.userInitials = changeComment.userInitials; comment.userColor = changeComment.userColor; comment.resolved = changeComment.resolved; comment.quote = changeComment.quote; @@ -78,6 +80,7 @@ export class storeComments { comment.editable = changeComment.editable; comment.removable = changeComment.removable; comment.replies = changeComment.replies; + comment.hide =changeComment.hide; } } diff --git a/apps/common/mobile/lib/store/users.js b/apps/common/mobile/lib/store/users.js index 6ca3c140dd..b13152b944 100644 --- a/apps/common/mobile/lib/store/users.js +++ b/apps/common/mobile/lib/store/users.js @@ -52,7 +52,7 @@ export class storeUsers { } getInitials (name) { - const fio = Common.Utils.UserInfoParser.getParsedName(name).split(' '); + const fio = name.split(' '); let initials = fio[0].substring(0, 1).toUpperCase(); for (let i = fio.length-1; i>0; i--) { if (fio[i][0]!=='(' && fio[i][0]!==')') { diff --git a/apps/common/mobile/lib/view/collaboration/Comments.jsx b/apps/common/mobile/lib/view/collaboration/Comments.jsx index d403f8cbb6..381ed375fe 100644 --- a/apps/common/mobile/lib/view/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/view/collaboration/Comments.jsx @@ -148,9 +148,9 @@ const CommentActions = ({comment, onCommentMenuClick, opened, openActionComment} {comment && {comment.editable && {onCommentMenuClick('editComment', comment);}}>{_t.textEdit}} - {!comment.resolved ? + {!comment.resolved && comment.editable ? {onCommentMenuClick('resolve', comment);}}>{_t.textResolve} : - {onCommentMenuClick('resolve', comment);}}>{_t.textReopen} + comment.editable && {onCommentMenuClick('resolve', comment);}}>{_t.textReopen} } {onCommentMenuClick('addReply', comment);}}>{_t.textAddReply} {comment.removable && {onCommentMenuClick('deleteComment', comment);}}>{_t.textDeleteComment}} @@ -223,7 +223,7 @@ const EditCommentPopup = inject("storeComments")(observer(({storeComments, comme
    {comment.userInitials}
    }
    -
    {comment.userName}
    +
    {comment.parsedName}
    {comment.date}
    @@ -260,7 +260,7 @@ const EditCommentDialog = inject("storeComments")(observer(({storeComments, comm
    ${Device.android ? templateInitials : ''}
    -
    ${comment.userName}
    +
    ${comment.parsedName}
    ${comment.date}
    @@ -479,7 +479,7 @@ const EditReplyPopup = inject("storeComments")(observer(({storeComments, comment
    {reply.userInitials}
    }
    -
    {reply.userName}
    +
    {reply.parsedName}
    {reply.date}
    @@ -516,7 +516,7 @@ const EditReplyDialog = inject("storeComments")(observer(({storeComments, commen
    ${Device.android ? templateInitials : ''}
    -
    ${reply.userName}
    +
    ${reply.parsedName}
    ${reply.date}
    @@ -583,46 +583,48 @@ const pickLink = (message) => { }); if (message.length<1000 || message.search(/\S{255,}/)<0) - message.replace(Common.Utils.hostnameStrongRe, function(subStr) { - let result = /[\.,\?\+;:=!\(\)]+$/.exec(subStr); - if (result) - subStr = subStr.substring(0, result.index); - let ref = (! /(((^https?)|(^ftp)):\/\/)/i.test(subStr) ) ? ('http://' + subStr) : subStr; - offset = arguments[arguments.length-2]; - len = subStr.length; - let elem = arrayComment.find(function(item){ - return ( (offset>=item.start) && (offsetitem.start)); - }); - if (!elem) + message.replace(Common.Utils.hostnameStrongRe, function(subStr) { + let result = /[\.,\?\+;:=!\(\)]+$/.exec(subStr); + if (result) + subStr = subStr.substring(0, result.index); + let ref = (! /(((^https?)|(^ftp)):\/\/)/i.test(subStr) ) ? ('http://' + subStr) : subStr; + offset = arguments[arguments.length-2]; + len = subStr.length; + let elem = arrayComment.find(function(item){ + return ( (offset>=item.start) && (offsetitem.start)); + }); + if (!elem) arrayComment.push({start: offset, end: len+offset, str: window.open(ref)} href={ref} target="_blank" data-can-copy="true">{subStr}}); - return ''; - }); + return ''; + }); - message.replace(Common.Utils.emailStrongRe, function(subStr) { - let ref = (! /((^mailto:)\/\/)/i.test(subStr) ) ? ('mailto:' + subStr) : subStr; - offset = arguments[arguments.length-2]; - len = subStr.length; - let elem = arrayComment.find(function(item){ - return ( (offset>=item.start) && (offsetitem.start)); - }); - if (!elem) - arrayComment.push({start: offset, end: len+offset, str: window.open(ref)} href={ref}>{subStr}}); - return ''; - }); + message.replace(Common.Utils.emailStrongRe, function(subStr) { + let ref = (! /((^mailto:)\/\/)/i.test(subStr) ) ? ('mailto:' + subStr) : subStr; + offset = arguments[arguments.length-2]; + len = subStr.length; + let elem = arrayComment.find(function(item){ + return ( (offset>=item.start) && (offsetitem.start)); + }); + if (!elem) + arrayComment.push({start: offset, end: len+offset, str: window.open(ref)} href={ref}>{subStr}}); + return ''; + }); - arrayComment = arrayComment.sort(function(item1,item2){ return item1.start - item2.start; }); - - let str_res = (arrayComment.length>0) ? : ; - for (var i=1; i{str_res}{Common.Utils.String.htmlEncode(message.substring(arrayComment[i-1].end, arrayComment[i].start))}{arrayComment[i].str}; - } - if (arrayComment.length>0) { - str_res = ; - } - return str_res; - + arrayComment = arrayComment.sort(function(item1,item2){ return item1.start - item2.start; }); + + let str_res = (arrayComment.length>0) ? : ; + + for (var i=1; i{str_res}{Common.Utils.String.htmlEncode(message.substring(arrayComment[i-1].end, arrayComment[i].start))}{arrayComment[i].str}; + } + + if (arrayComment.length>0) { + str_res = ; + } + + return str_res; } // View comments @@ -633,7 +635,7 @@ const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onRes const viewMode = !storeAppOptions.canComments; const comments = storeComments.groupCollectionFilter || storeComments.collectionComments; - const sortComments = comments.length > 0 ? [...comments].sort((a, b) => a.time > b.time ? 1 : -1) : null; + const sortComments = comments.length > 0 ? [...comments].sort((a, b) => a.time > b.time ? -1 : 1) : null; const [clickComment, setComment] = useState(); const [commentActionsOpened, openActionComment] = useState(false); @@ -657,19 +659,20 @@ const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onRes {sortComments.map((comment, indexComment) => { return ( + !comment.hide && { !e.target.closest('.comment-menu') && !e.target.closest('.reply-menu') ? showComment(comment) : null}}>
    {isAndroid &&
    {comment.userInitials}
    }
    -
    {comment.userName}
    +
    {comment.parsedName}
    {comment.date}
    {!viewMode &&
    -
    {onResolveComment(comment);}}>
    + {comment.editable &&
    {onResolveComment(comment);}}>
    }
    {setComment(comment); openActionComment(true);}} >
    @@ -693,11 +696,11 @@ const ViewComments = ({storeComments, storeAppOptions, onCommentMenuClick, onRes
    {isAndroid &&
    {reply.userInitials}
    }
    -
    {reply.userName}
    +
    {reply.parsedName}
    {reply.date}
    - {!viewMode && + {!viewMode && reply.editable &&
    {setComment(comment); setReply(reply); openActionReply(true);}} @@ -792,13 +795,13 @@ const CommentList = inject("storeComments", "storeAppOptions")(observer(({storeC
    {isAndroid &&
    {comment.userInitials}
    }
    -
    {comment.userName}
    +
    {comment.parsedName}
    {comment.date}
    {!viewMode &&
    -
    {onResolveComment(comment);}}>
    + {comment.editable &&
    {onResolveComment(comment);}}>
    }
    {openActionComment(true);}} >
    @@ -822,11 +825,11 @@ const CommentList = inject("storeComments", "storeAppOptions")(observer(({storeC
    {isAndroid &&
    {reply.userInitials}
    }
    -
    {reply.userName}
    +
    {reply.parsedName}
    {reply.date}
    - {!viewMode && + {!viewMode && reply.editable &&
    {setReply(reply); openActionReply(true);}} diff --git a/apps/common/mobile/resources/less/comments.less b/apps/common/mobile/resources/less/comments.less index 4067b7a57e..bf9b781819 100644 --- a/apps/common/mobile/resources/less/comments.less +++ b/apps/common/mobile/resources/less/comments.less @@ -56,8 +56,11 @@ padding-right: 16px; .right { display: flex; - justify-content: space-between; + justify-content: flex-end; width: 70px; + .comment-resolve { + margin-right: 10px; + } } } .reply-header { diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index 75de88922d..f07fbf4835 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -29,7 +29,6 @@ --f7-range-knob-size: 16px; --f7-link-highlight-color: transparent; - --f7-touch-ripple-color: @touchColor; --f7-link-touch-ripple-color: @touchColor; .button { @@ -42,6 +41,7 @@ --f7-dialog-button-text-color: @themeColor; .navbar { + --f7-touch-ripple-color: @touchColor; .sheet-close { width: 56px; height: 56px; @@ -258,6 +258,9 @@ flex: 1; font-size: 17px; margin-left: 5px; + display: flex; + align-items: center; + justify-content: center; &:first-child { margin-left: 0; } diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index 19108ad177..4ad3bb1e22 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -11,7 +11,7 @@ "DE.ApplicationController.downloadTextText": "Téléchargement du document...", "DE.ApplicationController.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter l'administrateur de Document Server.", "DE.ApplicationController.errorDefaultMessage": "Code d'erreur: %1", - "DE.ApplicationController.errorEditingDownloadas": "Une erreure s'est produite lors du travail avec le document.
    Utilisez l'option 'Télécharger comme...' pour enregistrer une copie de sauvegarde du fichier sur le disque dur de votre ordinateur.", + "DE.ApplicationController.errorEditingDownloadas": "Une erreur s'est produite lors du travail avec le document.
    Utilisez l'option 'Télécharger comme...' pour enregistrer une copie de sauvegarde du fichier sur le disque dur de votre ordinateur.", "DE.ApplicationController.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.", "DE.ApplicationController.errorFileSizeExceed": "La taille du fichier dépasse les limites établies sur votre serveur.
    Veuillez contacter votre administrateur de Document Server pour obtenir plus d'informations. ", "DE.ApplicationController.errorSubmit": "Échec de soumission", diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json index 004090bc75..29a7857215 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.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/sl.json b/apps/documenteditor/embed/locale/sl.json index 69203a9ffd..018e143310 100644 --- a/apps/documenteditor/embed/locale/sl.json +++ b/apps/documenteditor/embed/locale/sl.json @@ -11,20 +11,29 @@ "DE.ApplicationController.downloadTextText": "Prenašanje dokumenta ...", "DE.ApplicationController.errorAccessDeny": "Poskušate izvesti dejanje, za katerega nimate pravic.
    Obrnite se na skrbnika strežnika dokumentov.", "DE.ApplicationController.errorDefaultMessage": "Koda napake: %1", + "DE.ApplicationController.errorEditingDownloadas": "Med delom z dokumentom je prišlo do napake.
    S funkcijo »Prenesi kot ...« shranite varnostno kopijo datoteke na trdi disk računalnika.", "DE.ApplicationController.errorFilePassProtect": "Dokument je zaščiten z geslom in ga ni mogoče odpreti.", "DE.ApplicationController.errorFileSizeExceed": "Velikost datoteke presega omejitev, nastavljeno za vaš strežnik.
    Za podrobnosti se obrnite na skrbnika strežnika dokumentov.", + "DE.ApplicationController.errorSubmit": "Pošiljanje je spodletelo", "DE.ApplicationController.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.", "DE.ApplicationController.errorUserDrop": "Do datoteke v tem trenutku ni možno dostopati.", "DE.ApplicationController.notcriticalErrorTitle": "Opozorilo", "DE.ApplicationController.scriptLoadError": "Povezava je počasna, nekatere komponente niso pravilno naložene.Prosimo osvežite stran.", + "DE.ApplicationController.textClear": "Počisti vsa polja", "DE.ApplicationController.textLoadingDocument": "Nalaganje dokumenta", + "DE.ApplicationController.textNext": "Naslednje polje", "DE.ApplicationController.textOf": "od", + "DE.ApplicationController.textSubmit": "Pošlji", + "DE.ApplicationController.textSubmited": "Obrazec poslan uspešno
    Pritisnite tukaj za zaprtje obvestila", "DE.ApplicationController.txtClose": "Zapri", "DE.ApplicationController.unknownErrorText": "Neznana napaka.", "DE.ApplicationController.unsupportedBrowserErrorText": "Vaš brskalnik ni podprt.", "DE.ApplicationController.waitText": "Prosimo počakajte ...", "DE.ApplicationView.txtDownload": "Prenesi", + "DE.ApplicationView.txtDownloadDocx": "Prenesi kot DOCX", + "DE.ApplicationView.txtDownloadPdf": "Prenesi kot PDF", "DE.ApplicationView.txtEmbed": "Vdelano", + "DE.ApplicationView.txtFileLocation": "Odpri lokacijo dokumenta", "DE.ApplicationView.txtFullScreen": "Celozaslonski", "DE.ApplicationView.txtPrint": "Natisni", "DE.ApplicationView.txtShare": "Deli" diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 3a531ee1a7..311b9b5ea4 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -1434,7 +1434,7 @@ define([ this.appOptions.canUseReviewPermissions = this.appOptions.canLicense && (!!this.permissions.reviewGroups || this.editorConfig.customization && this.editorConfig.customization.reviewPermissions && (typeof (this.editorConfig.customization.reviewPermissions) == 'object')); this.appOptions.canUseCommentPermissions = this.appOptions.canLicense && !!this.permissions.commentGroups; - AscCommon.UserInfoParser.setParser(this.appOptions.canUseReviewPermissions || this.appOptions.canUseCommentPermissions); + AscCommon.UserInfoParser.setParser(true); AscCommon.UserInfoParser.setCurrentName(this.appOptions.user.fullname); this.appOptions.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(this.permissions.reviewGroups, this.editorConfig.customization.reviewPermissions); this.appOptions.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(this.permissions.commentGroups); diff --git a/apps/documenteditor/main/app/controller/Toolbar.js b/apps/documenteditor/main/app/controller/Toolbar.js index 022d2fcf1f..7bc2420279 100644 --- a/apps/documenteditor/main/app/controller/Toolbar.js +++ b/apps/documenteditor/main/app/controller/Toolbar.js @@ -893,6 +893,8 @@ define([ if (need_disable != toolbar.btnColumns.isDisabled()) toolbar.btnColumns.setDisabled(need_disable); + toolbar.btnLineNumbers.setDisabled(in_image && in_para || this._state.lock_doc); + if (toolbar.listStylesAdditionalMenuItem && (frame_pr===undefined) !== toolbar.listStylesAdditionalMenuItem.isDisabled()) toolbar.listStylesAdditionalMenuItem.setDisabled(frame_pr===undefined); @@ -1759,6 +1761,7 @@ define([ switch (item.value) { case 0: + this._state.linenum = undefined; this.api.asc_SetLineNumbersProps(Asc.c_oAscSectionApplyType.Current, null); break; case 1: @@ -3034,9 +3037,11 @@ define([ var toolbar = this.toolbar; if(disable) { if (reviewmode) { - mask = $("
    ").appendTo(toolbar.$el.find('.toolbar section.panel .group:not(.no-mask):not(.no-group-mask.review)')); + mask = $("
    ").appendTo(toolbar.$el.find('.toolbar section.panel .group:not(.no-mask):not(.no-group-mask.review):not(.no-group-mask.inner-elset)')); + mask = $("
    ").appendTo(toolbar.$el.find('.toolbar section.panel .group.no-group-mask.inner-elset .elset')); } else if (fillformmode) { - mask = $("
    ").appendTo(toolbar.$el.find('.toolbar section.panel .group:not(.no-mask):not(.no-group-mask.form-view)')); + mask = $("
    ").appendTo(toolbar.$el.find('.toolbar section.panel .group:not(.no-mask):not(.no-group-mask.form-view):not(.no-group-mask.inner-elset)')); + mask = $("
    ").appendTo(toolbar.$el.find('.toolbar section.panel .group.no-group-mask.inner-elset .elset:not(.no-group-mask.form-view)')); } else mask = $("
    ").appendTo(toolbar.$el.find('.toolbar')); } else { @@ -3044,10 +3049,19 @@ define([ } $('.no-group-mask').each(function(index, item){ var $el = $(item); - if ($el.find('.toolbar-group-mask').length>0) + if ($el.find('> .toolbar-group-mask').length>0) $el.css('opacity', 0.4); else { $el.css('opacity', reviewmode || fillformmode || !disable ? 1 : 0.4); + $el.find('.elset').each(function(index, elitem){ + var $elset = $(elitem); + if ($elset.find('> .toolbar-group-mask').length>0) { + $elset.css('opacity', 0.4); + } else { + $elset.css('opacity', reviewmode || fillformmode || !disable ? 1 : 0.4); + } + $el.css('opacity', 1); + }); } }); diff --git a/apps/documenteditor/main/app/template/FormSettings.template b/apps/documenteditor/main/app/template/FormSettings.template index 529b095719..e43b4b60ee 100644 --- a/apps/documenteditor/main/app/template/FormSettings.template +++ b/apps/documenteditor/main/app/template/FormSettings.template @@ -34,7 +34,7 @@
    - +
    @@ -62,13 +62,34 @@
    + + +
    + + + + +
    + + + + + +
    + + + + +
    + +
    - +
    @@ -161,46 +161,46 @@ diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index d23dc20cae..8ce7b08e54 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -264,6 +264,17 @@ define([ this.rendered = true; this.$el.html($markup); this.$el.find('.content-box').hide(); + if (_.isUndefined(this.scroller)) { + var me = this; + this.scroller = new Common.UI.Scroller({ + el: this.$el.find('.panel-menu'), + suppressScrollX: true, + alwaysVisibleY: true + }); + Common.NotificationCenter.on('window:resize', function() { + me.scroller.update(); + }); + } this.applyMode(); if ( !!this.api ) { @@ -287,6 +298,7 @@ define([ if (!panel) panel = this.active || defPanel; this.$el.show(); + this.scroller.update(); this.selectMenu(panel, defPanel); this.api.asc_enableKeyEvents(false); @@ -429,6 +441,17 @@ define([ this.$el.find('.content-box:visible').hide(); panel.show(); + if (this.scroller) { + var itemTop = item.$el.position().top, + itemHeight = item.$el.outerHeight(), + listHeight = this.$el.outerHeight(); + if (itemTop < 0 || itemTop + itemHeight > listHeight) { + var height = this.scroller.$el.scrollTop() + itemTop + (itemHeight - listHeight)/2; + height = (Math.floor(height/itemHeight) * itemHeight); + this.scroller.scrollTop(height); + } + } + this.active = menu; } } diff --git a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js index 5af7f83faa..5862b1dd09 100644 --- a/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js +++ b/apps/spreadsheeteditor/main/app/view/FormatRulesEditDlg.js @@ -229,7 +229,8 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', editable : false, cls : 'input-group-nr', data : cmbData, - takeFocusOnClose: true + takeFocusOnClose: true, + scrollAlwaysVisible: false }).on('selected', function(combo, record) { me.refreshRules(record.value); }); @@ -642,7 +643,9 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', type : i, template: _.template([ '' @@ -653,6 +656,7 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', style: 'min-width: 105px;', additionalAlign: this.menuAddAlign, items: [ + { caption: this.txtNoCellIcon, checkable: true, allowDepress: false, toggleGroup: 'no-cell-icons-' + (i+1) }, { template: _.template('
    ') } ] })).render($('#format-rules-combo-icon-' + (i+1))); @@ -664,10 +668,12 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', itemTemplate: _.template(''), type : i }); - picker.on('item:click', _.bind(this.onSelectIcon, this, combo)); + picker.on('item:click', _.bind(this.onSelectIcon, this, combo, menu.items[0])); + menu.items[0].on('toggle', _.bind(this.onSelectNoIcon, this, combo, picker)); this.iconsControls[i].cmbIcons = combo; this.iconsControls[i].pickerIcons = picker; + this.iconsControls[i].itemNoIcons = menu.items[0]; combo = new Common.UI.ComboBox({ el : $('#format-rules-edit-combo-op-' + (i+1)), @@ -1306,7 +1312,8 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', if (rec) { props = this._originalProps || new Asc.asc_CConditionalFormattingRule(); - var type = rec.get('type'); + var type = rec.get('type'), + type_changed = (type!==props.asc_getType()); props.asc_setType(type); 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 || @@ -1348,7 +1355,7 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', props.asc_setValue1(this.txtRange1.getValue()); break; case Asc.c_oAscCFType.colorScale: - var scaleProps = new Asc.asc_CColorScale(); + var scaleProps = !type_changed ? props.asc_getColorScaleOrDataBarOrIconSetRule() : new Asc.asc_CColorScale(); var scalesCount = rec.get('num'); var arr = (scalesCount==2) ? [this.scaleControls[0], this.scaleControls[2]] : this.scaleControls; var colors = [], scales = []; @@ -1365,7 +1372,8 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', props.asc_setColorScaleOrDataBarOrIconSetRule(scaleProps); break; case Asc.c_oAscCFType.dataBar: - var barProps = new Asc.asc_CDataBar(); + var barProps = !type_changed ? props.asc_getColorScaleOrDataBarOrIconSetRule() : new Asc.asc_CDataBar(); + type_changed && barProps.asc_setInterfaceDefault(); var arr = this.barControls; var bars = []; for (var i=0; i0) { this.cmbIconsPresets.setValue(this.textCustom); _.each(icons, function(item) { - iconsIndexes.push(me.collectionPresets.at(item.asc_getIconSet()).get('icons')[item.asc_getIconId()]); + if (item.asc_getIconSet()==Asc.EIconSetType.NoIcons) { + iconsIndexes.push(-1); + } else + iconsIndexes.push(me.collectionPresets.at(item.asc_getIconSet()).get('icons')[item.asc_getIconId()]); }); } else { this.cmbIconsPresets.setValue(iconSet); @@ -1847,8 +1866,9 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', var len = iconsIndexes.length; for (var i=0; i div'); formcontrol.css('background-image', record ? 'url(' + record.get('imgUrl') + ')' : ''); + formcontrol.text(record ? '' : this.txtNoCellIcon); }, isRangeValid: function() { @@ -2168,7 +2199,8 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesEditDlg.template', textInvalid: 'Invalid data range.', textClear: 'Clear', textItem: 'Item', - textPresets: 'Presets' + textPresets: 'Presets', + txtNoCellIcon: 'No Icon' }, SSE.Views.FormatRulesEditDlg || {})); }); \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js b/apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js index 2eeabea6e1..31d51f9978 100644 --- a/apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js +++ b/apps/spreadsheeteditor/main/app/view/FormatRulesManagerDlg.js @@ -152,7 +152,7 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesManagerDlg.templa '
    ', '
    <%= name %>
    ', '
    ', - '
    ', + '
    ', '<% if (lock) { %>', '
    <%=lockuser%>
    ', '<% } %>', @@ -674,11 +674,13 @@ define([ 'text!spreadsheeteditor/main/app/template/FormatRulesManagerDlg.templa rec = this.rulesList.getSelectedRec(); if (rec) { var index = store.indexOf(rec); - var newrec = store.at(up ? this.getPrevRuleIndex(index) : this.getNextRuleIndex(index)), + var newindex = up ? this.getPrevRuleIndex(index) : this.getNextRuleIndex(index), + newrec = store.at(newindex), prioritynew = newrec.get('priority'); newrec.set('priority', rec.get('priority')); rec.set('priority', prioritynew); - store.add(store.remove(rec), {at: up ? Math.max(0, index-1) : Math.min(length-1, index+1)}); + store.add(store.remove(rec), {at: up ? Math.max(0, newindex) : Math.min(length-1, newindex)}); + store.add(store.remove(newrec), {at: up ? Math.max(0, index) : Math.min(length-1, index)}); this.rulesList.selectRecord(rec); this.rulesList.scrollToRecord(rec); } diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 64b3c68055..930468a475 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -100,6 +100,9 @@ "Common.define.conditionalData.textValue": "El valor és", "Common.define.conditionalData.textYesterday": "Ahir", "Common.Translation.warnFileLocked": "El document s'està editant en una altra aplicació. Podeu continuar editant i guardar-lo com a còpia.", + "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", + "Common.Translation.warnFileLockedBtnView": "Obrir per veure", + "Common.UI.ColorButton.textAutoColor": "Automàtic", "Common.UI.ColorButton.textNewColor": "Afegir un Nou Color Personalitzat", "Common.Translation.warnFileLockedBtnEdit": "Crea una còpia", "Common.Translation.warnFileLockedBtnView": "Obrir per veure", @@ -982,7 +985,7 @@ "SSE.Controllers.Main.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", "SSE.Controllers.Main.uploadImageExtMessage": "Format imatge desconegut.", "SSE.Controllers.Main.uploadImageFileCountMessage": "No hi ha imatges pujades.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Superat el límit de mida de la imatge màxima.", + "SSE.Controllers.Main.uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", "SSE.Controllers.Main.uploadImageTextText": "Pujant imatge...", "SSE.Controllers.Main.uploadImageTitleText": "Pujant Imatge", "SSE.Controllers.Main.waitText": "Si us plau, esperi...", @@ -2086,7 +2089,7 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Configuració de la Pàgina", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Comprovació Ortogràfica", - "SSE.Views.FormatRulesEditDlg.fillColor": "Color de Fons", + "SSE.Views.FormatRulesEditDlg.fillColor": "Color d'emplenament", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avís", "SSE.Views.FormatRulesEditDlg.text2Scales": "Escala de 2 colors", "SSE.Views.FormatRulesEditDlg.text3Scales": "Escala de 3 colors", @@ -3262,7 +3265,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Orientació de Pàgina", "SSE.Views.Toolbar.tipPageSize": "Mida de Pàgina", "SSE.Views.Toolbar.tipPaste": "Pegar", - "SSE.Views.Toolbar.tipPrColor": "Color de Fons", + "SSE.Views.Toolbar.tipPrColor": "Color d'emplenament", "SSE.Views.Toolbar.tipPrint": "Imprimir", "SSE.Views.Toolbar.tipPrintArea": "Àrea d’Impressió", "SSE.Views.Toolbar.tipPrintTitles": "Imprimir títols", diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index b682b4c15c..7e9053af45 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -983,7 +983,7 @@ "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.", "SSE.Controllers.Main.uploadImageExtMessage": "Unbekanntes Bildformat.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Kein Bild hochgeladen.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Die maximal zulässige Bildgröße ist überschritten.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", "SSE.Controllers.Main.uploadImageTextText": "Das Bild wird hochgeladen...", "SSE.Controllers.Main.uploadImageTitleText": "Bild wird hochgeladen", "SSE.Controllers.Main.waitText": "Bitte warten...", @@ -2087,7 +2087,7 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Allgemein", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Seiten-Einstellungen", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Rechtschreibprüfung", - "SSE.Views.FormatRulesEditDlg.fillColor": "Hintergrundfarbe", + "SSE.Views.FormatRulesEditDlg.fillColor": "Füllfarbe", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Warnung", "SSE.Views.FormatRulesEditDlg.text2Scales": "2-Farben-Skala", "SSE.Views.FormatRulesEditDlg.text3Scales": "3-Farben-Skala", @@ -3263,7 +3263,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Seitenausrichtung", "SSE.Views.Toolbar.tipPageSize": "Seitenformat", "SSE.Views.Toolbar.tipPaste": "Einfügen", - "SSE.Views.Toolbar.tipPrColor": "Hintergrundfarbe", + "SSE.Views.Toolbar.tipPrColor": "Füllfarbe", "SSE.Views.Toolbar.tipPrint": "Drucken", "SSE.Views.Toolbar.tipPrintArea": "Druckbereich", "SSE.Views.Toolbar.tipPrintTitles": "Drucke titel", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index a487083e27..86156586df 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -2193,6 +2193,7 @@ "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", diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index 1966ea32b5..e3a42e681f 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -1429,7 +1429,7 @@ "SSE.Views.CellSettings.strWrap": "Ajustar texto", "SSE.Views.CellSettings.textAngle": "Ángulo", "SSE.Views.CellSettings.textBackColor": "Color de fondo", - "SSE.Views.CellSettings.textBackground": "Color del fondo", + "SSE.Views.CellSettings.textBackground": "Color de fondo", "SSE.Views.CellSettings.textBorderColor": "Color", "SSE.Views.CellSettings.textBorders": "Estilo de bordes", "SSE.Views.CellSettings.textClearRule": "Borrar reglas", @@ -2087,7 +2087,7 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Ajustes de la Página", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Сorrección ortográfica", - "SSE.Views.FormatRulesEditDlg.fillColor": "Color de fondo", + "SSE.Views.FormatRulesEditDlg.fillColor": "Color de relleno", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Advertencia", "SSE.Views.FormatRulesEditDlg.text2Scales": "Escala de 2 colores", "SSE.Views.FormatRulesEditDlg.text3Scales": "Escala de 3 colores", @@ -3263,7 +3263,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Orientación de página", "SSE.Views.Toolbar.tipPageSize": "Tamaño de página", "SSE.Views.Toolbar.tipPaste": "Pegar", - "SSE.Views.Toolbar.tipPrColor": "Color de fondo", + "SSE.Views.Toolbar.tipPrColor": "Color de relleno", "SSE.Views.Toolbar.tipPrint": "Imprimir", "SSE.Views.Toolbar.tipPrintArea": "Área de impresión", "SSE.Views.Toolbar.tipPrintTitles": "Imprimir títulos", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index d56e7c009e..9a4f362d93 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -49,10 +49,57 @@ "Common.define.chartData.textSurface": "Superficie", "Common.define.chartData.textWinLossSpark": "Vinci/Perdi", "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.noFormatText": "Formato non impostato", + "Common.define.conditionalData.text1Above": "1 deviazione standard sopra", + "Common.define.conditionalData.text1Below": "1 deviazione standard sotto", + "Common.define.conditionalData.text2Above": "2 deviazioni standard sopra", + "Common.define.conditionalData.text2Below": "2 deviazioni standard sotto", + "Common.define.conditionalData.text3Above": "3 deviazioni standard sopra", + "Common.define.conditionalData.text3Below": "3 deviazioni standard sotto", + "Common.define.conditionalData.textAbove": "Sopra", + "Common.define.conditionalData.textAverage": "Media", + "Common.define.conditionalData.textBegins": "Inizia con", + "Common.define.conditionalData.textBelow": "Sotto", + "Common.define.conditionalData.textBetween": "Tra", "Common.define.conditionalData.textBlank": "Vuoto", + "Common.define.conditionalData.textBlanks": "contiene spazi vuoti", "Common.define.conditionalData.textBottom": "In basso", + "Common.define.conditionalData.textContains": "contiene", + "Common.define.conditionalData.textDataBar": "Barra di dati", + "Common.define.conditionalData.textDate": "Data", + "Common.define.conditionalData.textDuplicate": "Duplicare", + "Common.define.conditionalData.textEnds": "finisce con", + "Common.define.conditionalData.textEqAbove": "Uguale o superiore", + "Common.define.conditionalData.textEqBelow": "Uguale o inferiore", + "Common.define.conditionalData.textEqual": "Uguale a", + "Common.define.conditionalData.textError": "Errore", + "Common.define.conditionalData.textErrors": "contiene errori", + "Common.define.conditionalData.textFormula": "Formula", + "Common.define.conditionalData.textGreater": "Maggiore di", + "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", + "Common.define.conditionalData.textLessEq": "Inferiore o uguale a", + "Common.define.conditionalData.textNextMonth": "Mese prossimo", + "Common.define.conditionalData.textNextWeek": "Settimana prossima", + "Common.define.conditionalData.textNotBetween": "non tra", + "Common.define.conditionalData.textNotBlanks": "non contiene spazi vuoti", + "Common.define.conditionalData.textNotContains": "non contiene", + "Common.define.conditionalData.textNotEqual": "Non uguale a", + "Common.define.conditionalData.textNotErrors": "non contiene errori", + "Common.define.conditionalData.textText": "Testo", + "Common.define.conditionalData.textThisMonth": "Questo mese", + "Common.define.conditionalData.textThisWeek": "Questa settimana", + "Common.define.conditionalData.textToday": "Oggi", + "Common.define.conditionalData.textTomorrow": "Domani", + "Common.define.conditionalData.textTop": "In alto", + "Common.define.conditionalData.textUnique": "Unico", + "Common.define.conditionalData.textValue": "Valore è", + "Common.define.conditionalData.textYesterday": "Ieri", "Common.Translation.warnFileLocked": "Il file è in fase di modifica in un'altra applicazione. Puoi continuare a modificarlo e salvarlo come copia.", "Common.Translation.warnFileLockedBtnEdit": "Crea una copia", "Common.Translation.warnFileLockedBtnView": "‎Aperto per la visualizzazione‎", @@ -105,9 +152,11 @@ "Common.Views.About.txtVersion": "Versione", "Common.Views.AutoCorrectDialog.textAdd": "Aggiungi", "Common.Views.AutoCorrectDialog.textApplyAsWork": "Applica mentre lavori", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correzione automatica", "Common.Views.AutoCorrectDialog.textAutoFormat": "Formattazione automatica durante la scrittura", "Common.Views.AutoCorrectDialog.textBy": "Di", "Common.Views.AutoCorrectDialog.textDelete": "Elimina", + "Common.Views.AutoCorrectDialog.textHyperlink": "Internet e percorsi di rete con i collegamenti ipertestuali", "Common.Views.AutoCorrectDialog.textMathCorrect": "Correzione automatica matematica", "Common.Views.AutoCorrectDialog.textNewRowCol": "Aggiungi nuove righe e colonne nella tabella", "Common.Views.AutoCorrectDialog.textRecognized": "Funzioni riconosciute", @@ -191,10 +240,14 @@ "Common.Views.ListSettingsDialog.txtTitle": "Impostazioni elenco", "Common.Views.ListSettingsDialog.txtType": "Tipo", "Common.Views.OpenDialog.closeButtonText": "Chiudi File", + "Common.Views.OpenDialog.textInvalidRange": "Intervallo di celle non valido", + "Common.Views.OpenDialog.textSelectData": "Selezionare i dati", "Common.Views.OpenDialog.txtAdvanced": "Avanzate", "Common.Views.OpenDialog.txtColon": "Due punti", "Common.Views.OpenDialog.txtComma": "Virgola", "Common.Views.OpenDialog.txtDelimiter": "Delimitatore", + "Common.Views.OpenDialog.txtDestData": "Scegli dove inserire i dati", + "Common.Views.OpenDialog.txtEmpty": "Questo campo è obbligatorio", "Common.Views.OpenDialog.txtEncoding": "Codifica", "Common.Views.OpenDialog.txtIncorrectPwd": "Password errata", "Common.Views.OpenDialog.txtOpenFile": "Immettere la password per aprire il file", @@ -241,6 +294,8 @@ "Common.Views.ReviewChanges.tipCoAuthMode": "Imposta modalità co-editing", "Common.Views.ReviewChanges.tipCommentRem": "Rimuovi i commenti", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Rimuovi i commenti correnti", + "Common.Views.ReviewChanges.tipCommentResolve": "Risolvere i commenti", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Risolvere i commenti presenti", "Common.Views.ReviewChanges.tipHistory": "Mostra Cronologia versioni", "Common.Views.ReviewChanges.tipRejectCurrent": "Annulla la modifica attuale", "Common.Views.ReviewChanges.tipReview": "Traccia cambiamenti", @@ -260,6 +315,11 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Rimuovi i miei commenti", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Rimuovi i miei commenti attuali", "Common.Views.ReviewChanges.txtCommentRemove": "Elimina", + "Common.Views.ReviewChanges.txtCommentResolve": "Risolvere", + "Common.Views.ReviewChanges.txtCommentResolveAll": "‎Risolvere tutti i commenti‎", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Risolvere i commenti presenti", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Risolvere i miei commenti", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "‎Risolvere i miei commenti presenti", "Common.Views.ReviewChanges.txtDocLang": "Lingua", "Common.Views.ReviewChanges.txtFinal": "Tutti le modifiche accettate (anteprima)", "Common.Views.ReviewChanges.txtFinalCap": "Finale", @@ -347,12 +407,14 @@ "Common.Views.UserNameDialog.textLabel": "Etichetta:", "Common.Views.UserNameDialog.textLabelError": "L'etichetta non deve essere vuota.", "SSE.Controllers.DataTab.textColumns": "Colonne", + "SSE.Controllers.DataTab.textEmptyUrl": "Devi specificare l'URL.", "SSE.Controllers.DataTab.textRows": "Righe", "SSE.Controllers.DataTab.textWizard": "Testo a colonne", "SSE.Controllers.DataTab.txtDataValidation": "Validazione dati", "SSE.Controllers.DataTab.txtExpand": "Espandi", "SSE.Controllers.DataTab.txtExpandRemDuplicates": "I dati accanto alla selezione non verranno rimossi. Vuoi espandere la selezione per includere i dati adiacenti o continuare solo con le celle attualmente selezionate?", "SSE.Controllers.DataTab.txtExtendDataValidation": "La selezione contiene alcune celle senza impostazioni di convalida dei dati.
    Desideri estendere la convalida dei dati a queste celle?", + "SSE.Controllers.DataTab.txtImportWizard": "Procedura guidata di importazione del testo", "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", @@ -624,6 +686,7 @@ "SSE.Controllers.Main.errorWrongOperator": "Un errore nella formula inserita. È stato utilizzato un operatore errato.
    Correggere per continuare.", "SSE.Controllers.Main.errRemDuplicates": "Valori duplicati trovati ed eliminati: {0}, valori univoci rimasti: {1}.", "SSE.Controllers.Main.leavePageText": "Ci sono delle modifiche non salvate in questo foglio di calcolo. Clicca su 'Rimani in questa pagina', poi su 'Salva' per salvarle. Clicca su 'Esci da questa pagina' per scartare tutte le modifiche non salvate.", + "SSE.Controllers.Main.leavePageTextOnClose": "Tutte le modifiche non salvate in questo foglio di calcolo andranno perse. Clicca su \"Cancellare\" poi \"Salvare\" per salvarle. Clicca su \"OK\" per eliminare tutte le modifiche non salvate.", "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...", @@ -672,6 +735,7 @@ "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.textTryUndoRedoWarn": "Le funzioni Annulla/Ripeti sono disattivate nella modalità rapida di co-editing", "SSE.Controllers.Main.textYes": "Sì", "SSE.Controllers.Main.titleLicenseExp": "La licenza è scaduta", "SSE.Controllers.Main.titleRecalcFormulas": "Calcolo in corso...", @@ -920,7 +984,7 @@ "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 per l'immagine.", + "SSE.Controllers.Main.uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.", "SSE.Controllers.Main.uploadImageTextText": "Caricamento immagine in corso...", "SSE.Controllers.Main.uploadImageTitleText": "Caricamento dell'immagine", "SSE.Controllers.Main.waitText": "Per favore, attendi...", @@ -959,9 +1023,11 @@ "SSE.Controllers.Toolbar.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.Toolbar.textAccent": "Accenti", "SSE.Controllers.Toolbar.textBracket": "Parentesi", + "SSE.Controllers.Toolbar.textDirectional": "Direzionale", "SSE.Controllers.Toolbar.textFontSizeErr": "Il valore inserito non è corretto.
    Inserisci un valore numerico compreso tra 1 e 409", "SSE.Controllers.Toolbar.textFraction": "Frazioni", "SSE.Controllers.Toolbar.textFunction": "Funzioni", + "SSE.Controllers.Toolbar.textIndicator": "Indicatori", "SSE.Controllers.Toolbar.textInsert": "Inserisci", "SSE.Controllers.Toolbar.textIntegral": "Integrali", "SSE.Controllers.Toolbar.textLargeOperator": "Operatori di grandi dimensioni", @@ -971,7 +1037,9 @@ "SSE.Controllers.Toolbar.textOperator": "Operatori", "SSE.Controllers.Toolbar.textPivot": "Tabella pivot", "SSE.Controllers.Toolbar.textRadical": "Radicali", + "SSE.Controllers.Toolbar.textRating": "Valutazioni", "SSE.Controllers.Toolbar.textScript": "Script", + "SSE.Controllers.Toolbar.textShapes": "Forme", "SSE.Controllers.Toolbar.textSymbols": "Simboli", "SSE.Controllers.Toolbar.textWarning": "Avviso", "SSE.Controllers.Toolbar.txtAccent_Accent": "Acuto", @@ -1362,11 +1430,15 @@ "SSE.Views.CellSettings.strWrap": "Disponi testo", "SSE.Views.CellSettings.textAngle": "Angolo", "SSE.Views.CellSettings.textBackColor": "Colore sfondo", - "SSE.Views.CellSettings.textBackground": "Colore sfondo", + "SSE.Views.CellSettings.textBackground": "Colore di sfondo", "SSE.Views.CellSettings.textBorderColor": "Colore", "SSE.Views.CellSettings.textBorders": "Stile bordo", + "SSE.Views.CellSettings.textClearRule": "Cancellare le regole", "SSE.Views.CellSettings.textColor": "Colore di riempimento", + "SSE.Views.CellSettings.textColorScales": "Scale cromatiche", + "SSE.Views.CellSettings.textCondFormat": "Formattazione condizionale", "SSE.Views.CellSettings.textControl": "Controllo del testo", + "SSE.Views.CellSettings.textDataBars": "Barre di dati", "SSE.Views.CellSettings.textDirection": "Direzione", "SSE.Views.CellSettings.textFill": "Riempimento", "SSE.Views.CellSettings.textForeground": "Colore primo piano", @@ -1376,6 +1448,8 @@ "SSE.Views.CellSettings.textIndent": "Rientro", "SSE.Views.CellSettings.textItems": "elementi", "SSE.Views.CellSettings.textLinear": "Lineare", + "SSE.Views.CellSettings.textManageRule": "Gestire le regole", + "SSE.Views.CellSettings.textNewRule": "Nuova regola", "SSE.Views.CellSettings.textNoFill": "Nessun riempimento", "SSE.Views.CellSettings.textOrientation": "Orientamento del testo", "SSE.Views.CellSettings.textPattern": "Modello", @@ -1383,6 +1457,10 @@ "SSE.Views.CellSettings.textPosition": "Posizione", "SSE.Views.CellSettings.textRadial": "Radiale", "SSE.Views.CellSettings.textSelectBorders": "Seleziona i bordi che desideri modificare applicando lo stile scelto sopra", + "SSE.Views.CellSettings.textSelection": "Dalla selezione corrente", + "SSE.Views.CellSettings.textThisPivot": "Da questo pivot", + "SSE.Views.CellSettings.textThisSheet": "Da questo foglio di calcolo", + "SSE.Views.CellSettings.textThisTable": "Da questa tabella", "SSE.Views.CellSettings.tipAddGradientPoint": "‎Aggiungi punto di sfumatura‎", "SSE.Views.CellSettings.tipAll": "Imposta bordo esterno e tutte le linee interne", "SSE.Views.CellSettings.tipBottom": "Imposta solo bordo esterno inferiore", @@ -1594,12 +1672,21 @@ "SSE.Views.CreatePivotDialog.textSelectData": "Seleziona dati", "SSE.Views.CreatePivotDialog.textTitle": "Crea tabella pivot", "SSE.Views.CreatePivotDialog.txtEmpty": "Campo obbligatorio", + "SSE.Views.CreateSparklineDialog.textDataRange": "Fonte di intervallo di dati", + "SSE.Views.CreateSparklineDialog.textDestination": "Scegli dove posizionare i grafici sparkline", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Intervallo di celle non valido", + "SSE.Views.CreateSparklineDialog.textSelectData": "Selezionare i dati", + "SSE.Views.CreateSparklineDialog.textTitle": "Creare grafico sparkline", + "SSE.Views.CreateSparklineDialog.txtEmpty": "Questo campo è obbligatorio", "SSE.Views.DataTab.capBtnGroup": "Raggruppa", "SSE.Views.DataTab.capBtnTextCustomSort": "Ordinamento personalizzato", "SSE.Views.DataTab.capBtnTextDataValidation": "Validazione dati", "SSE.Views.DataTab.capBtnTextRemDuplicates": "Rimuovi duplicati", "SSE.Views.DataTab.capBtnTextToCol": "Testo a colonne", "SSE.Views.DataTab.capBtnUngroup": "Separa", + "SSE.Views.DataTab.capDataFromText": "Da Testo/CSV", + "SSE.Views.DataTab.mniFromFile": "Ottenere i dati da file", + "SSE.Views.DataTab.mniFromUrl": "Ottenere i dati da URL", "SSE.Views.DataTab.textBelow": "Righe di riepilogo sotto i dettagli", "SSE.Views.DataTab.textClear": "Elimina contorno", "SSE.Views.DataTab.textColumns": "Separare le colonne", @@ -1608,6 +1695,7 @@ "SSE.Views.DataTab.textRightOf": "Colonne di riepilogo a destra dei dettagli", "SSE.Views.DataTab.textRows": "Separare le righe", "SSE.Views.DataTab.tipCustomSort": "Ordinamento personalizzato", + "SSE.Views.DataTab.tipDataFromText": "Ottenere i dati da file di testo o CSV", "SSE.Views.DataTab.tipDataValidation": "Validazione dati", "SSE.Views.DataTab.tipGroup": "Raggruppa intervallo di celle", "SSE.Views.DataTab.tipRemDuplicates": "Rimuovi le righe duplicate da un foglio", @@ -1744,11 +1832,13 @@ "SSE.Views.DocumentHolder.textFromStorage": "Da spazio di archiviazione", "SSE.Views.DocumentHolder.textFromUrl": "Da URL", "SSE.Views.DocumentHolder.textListSettings": "Impostazioni elenco", + "SSE.Views.DocumentHolder.textMacro": "Assegnare macro", "SSE.Views.DocumentHolder.textMax": "Max", "SSE.Views.DocumentHolder.textMin": "Min", "SSE.Views.DocumentHolder.textMore": "Altre funzioni", "SSE.Views.DocumentHolder.textMoreFormats": "Altri formati", "SSE.Views.DocumentHolder.textNone": "Nessuno", + "SSE.Views.DocumentHolder.textNumbering": "Numerazione", "SSE.Views.DocumentHolder.textReplace": "Sostituisci immagine", "SSE.Views.DocumentHolder.textRotate": "Ruota", "SSE.Views.DocumentHolder.textRotate270": "Ruota 90° a sinistra", @@ -1825,7 +1915,7 @@ "SSE.Views.DocumentHolder.txtSortFontColor": "Colore del carattere selezionato in cima", "SSE.Views.DocumentHolder.txtSparklines": "Sparkline", "SSE.Views.DocumentHolder.txtText": "Testo", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Impostazioni avanzate testo", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Impostazioni avanzate di paragrafo", "SSE.Views.DocumentHolder.txtTime": "Ora", "SSE.Views.DocumentHolder.txtUngroup": "Separa", "SSE.Views.DocumentHolder.txtWidth": "Larghezza", @@ -1905,7 +1995,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separatore decimale", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rapido", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Suggerimento per i caratteri", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Salva sempre sul server (altrimenti salva sul server alla chiusura del documento)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "‎Aggiungere la versione all'archivio dopo aver fatto clic su Salva o CTRL+S‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Lingua della Formula", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Esempio: SOMMA; MINIMO; MASSIMO; CONTEGGIO", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Attivare visualizzazione dei commenti", @@ -1930,16 +2020,21 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Recupero automatico", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Salvataggio automatico", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Disattivato", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Salva sul server", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Salvare versioni intermedie", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Ogni minuto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Stile di riferimento", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Bielorusso", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgaro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalano", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Modalità cache predefinita", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimetro", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Ceco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Tedesco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "‎Greco‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "Inglese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spagnolo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finlandese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "‎Ungherese‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesiano", @@ -1952,16 +2047,27 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "‎Lettone‎", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "come su OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Nativo", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norvegese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Olandese", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polacco", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punto", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portoghese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Rumeno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russo", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Abilita tutto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Abilita tutte le macro senza una notifica", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovacco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Sloveno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Disabilita tutto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Disabilita tutte le macro senza notifica", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Svedese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turco", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ucraino", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamita", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Mostra notifica", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Disabilita tutte le macro con notifica", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "come su Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Cinese", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Applica", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Lingua del dizionario", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignora le parole in MAIUSCOLO", @@ -1982,18 +2088,148 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Generale", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Impostazioni pagina", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Controllo ortografico", + "SSE.Views.FormatRulesEditDlg.fillColor": "Colore di riempimento", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avviso", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Scala cromatica", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Scala cromatica", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Tutti i bordi", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Aspetto di barra", + "SSE.Views.FormatRulesEditDlg.textApply": "Applicare all'intervallo", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatico", + "SSE.Views.FormatRulesEditDlg.textAxis": "Asse", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Direzione di barra", "SSE.Views.FormatRulesEditDlg.textBold": "Grassetto", "SSE.Views.FormatRulesEditDlg.textBorder": "Bordo", "SSE.Views.FormatRulesEditDlg.textBordersColor": "‎Colore bordi‎", "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Stile bordo", "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bordi inferiori", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Impossibile aggiungere formattazione condizionale", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Punto medio di cella", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Bordi interni verticali", + "SSE.Views.FormatRulesEditDlg.textClear": "Cancellare", + "SSE.Views.FormatRulesEditDlg.textColor": "Colore del testo", + "SSE.Views.FormatRulesEditDlg.textContext": "contesto", + "SSE.Views.FormatRulesEditDlg.textCustom": "Personalizzato", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Bordo diagonale discendente", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Bordo diagonale ascendente", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Inserisci una formula valida.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "La formula inserita non valuta un numero, una data, un'ora o una stringa.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Inserisci un valore.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "Il valore inserito non è un numero, una data, un'ora o una stringa validi.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "Il valore per il {0} deve essere maggiore del valore per il {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Inserisci un numero tra {0} e {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Riempire", + "SSE.Views.FormatRulesEditDlg.textFormat": "Formato", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", + "SSE.Views.FormatRulesEditDlg.textGradient": "Gradiente", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "quando {0} {1} e", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "quando {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "quando valore è", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Sovrapposizione di uno o più intervalli di dati delle icone.
    Aggiusta i valori dell'intervallo di dati delle icone in modo che gli intervalli non si sovrappongano.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Stile di icone", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Bordi interni", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Intervallo di dati non valido", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ERRORE! Intervallo di celle non valido", "SSE.Views.FormatRulesEditDlg.textItalic": "Corsivo", "SSE.Views.FormatRulesEditDlg.textItem": "Elemento", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Bordi a destra", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Bordo sinistro", + "SSE.Views.FormatRulesEditDlg.textLongBar": "Barra più lunga", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Massimo", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Punto massimo", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Bordi interni orizzontali", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Punto medio", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimo", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punto minimo", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negativo", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Aggiungere un nuovo colore personalizzato", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Senza bordi", + "SSE.Views.FormatRulesEditDlg.textNone": "niente", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Uno o più dei valori specificati non è una percentuale valida.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "Il valore specificato non è una percentuale valida.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Uno o più dei valori specificati non è una percentuale valida.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "Il valore specificato {0} non è un percentile valido.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Bordi esterni", + "SSE.Views.FormatRulesEditDlg.textPercent": "Percento", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentile", + "SSE.Views.FormatRulesEditDlg.textPosition": "Posizione", + "SSE.Views.FormatRulesEditDlg.textPositive": "Positivo", + "SSE.Views.FormatRulesEditDlg.textPresets": "Preimpostazioni", + "SSE.Views.FormatRulesEditDlg.textPreview": "Anteprima", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "Non è possibile utilizzare riferimenti relativi in criteri di formattazione condizionale per scale cromatiche, barre di dati e set di icone.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Ordine di icone inverso", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Da destra a sinistra", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Bordo destro", + "SSE.Views.FormatRulesEditDlg.textRule": "Regola", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Uguale a positivo", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Selezionare i dati", + "SSE.Views.FormatRulesEditDlg.textShortBar": "Barra più breve", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Mostrare solo la barra", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Mostrare solo le icone", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "Questo tipo di riferimento non può essere utilizzato in una formula di formattazione condizionale.
    Cambia il riferimento ad una cella singola o usa il riferimento con una funzione di foglio di calcolo come =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Solido", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Barrato", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Pedice", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Apice", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Bordo superiore", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Sottolineato", "SSE.Views.FormatRulesEditDlg.tipBorders": "Bordi", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Formato del numero", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Conteggio", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Valuta", + "SSE.Views.FormatRulesEditDlg.txtDate": "Data", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Questo campo è obbligatorio", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Frazione", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Generale", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Numero", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentuale", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientifico", + "SSE.Views.FormatRulesEditDlg.txtText": "Testo", + "SSE.Views.FormatRulesEditDlg.txtTime": "Ora", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Modificare la regola di formattazione", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nuova regola di formattazione", "SSE.Views.FormatRulesManagerDlg.guestText": "Ospite", + "SSE.Views.FormatRulesManagerDlg.text1Above": "1 deviazione standard sopra la media", + "SSE.Views.FormatRulesManagerDlg.text1Below": "1 deviazione standard sotto la media", + "SSE.Views.FormatRulesManagerDlg.text2Above": "2 deviazioni standard sopra la media", + "SSE.Views.FormatRulesManagerDlg.text2Below": "2 deviazioni standard sotto la media", + "SSE.Views.FormatRulesManagerDlg.text3Above": "3 deviazioni standard sopra la media", + "SSE.Views.FormatRulesManagerDlg.text3Below": "3 deviazioni standard sotto la media", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Sopra la media", "SSE.Views.FormatRulesManagerDlg.textApply": "Applica a", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Valore della cella inizia con", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Sotto la media", + "SSE.Views.FormatRulesManagerDlg.textBetween": "è tra {0} e {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Valore della cella", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Scala di colore graduale", + "SSE.Views.FormatRulesManagerDlg.textContains": "Valore della cella contiene", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Cella contiene un valore vuoto", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "Cella contiene un errore", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Eliminare", + "SSE.Views.FormatRulesManagerDlg.textDown": "Spostare la regola verso il basso", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplicare valori", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Modificare", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Valore della cella termina con", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Uguale o superiore alla media", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Uguale o inferiore alla media", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Formato", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Set di icone", + "SSE.Views.FormatRulesManagerDlg.textNew": "Nuovo", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "non è tra {0} e {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Valore della cella non contiene", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Cella non contiene un valore vuoto", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Cella non contiene un errore", + "SSE.Views.FormatRulesManagerDlg.textRules": "Regole", + "SSE.Views.FormatRulesManagerDlg.textScope": "Mostrare le regole di formattazione per", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Selezionare i dati", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Selezione corrente", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Questo pivot", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Questo foglio di calcolo", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "Questa tabella", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Valori unici", + "SSE.Views.FormatRulesManagerDlg.textUp": "Spostare la regola verso l'alto", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Questo elemento si sta modificando da un altro utente.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Formattazione condizionale", "SSE.Views.FormatSettingsDialog.textCategory": "Categoria", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimale", "SSE.Views.FormatSettingsDialog.textFormat": "Formato", @@ -2158,6 +2394,8 @@ "SSE.Views.LeftMenu.txtLimit": "‎Limita accesso‎", "SSE.Views.LeftMenu.txtTrial": "Modalità di prova", "SSE.Views.LeftMenu.txtTrialDev": "Prova Modalità sviluppatore", + "SSE.Views.MacroDialog.textMacro": "Nome di macro", + "SSE.Views.MacroDialog.textTitle": "Assegnare macro", "SSE.Views.MainSettingsPrint.okButtonText": "Salva", "SSE.Views.MainSettingsPrint.strBottom": "In basso", "SSE.Views.MainSettingsPrint.strLandscape": "Orizzontale", @@ -2442,7 +2680,7 @@ "SSE.Views.RightMenu.txtCellSettings": "impostazioni cella", "SSE.Views.RightMenu.txtChartSettings": "Impostazioni grafico", "SSE.Views.RightMenu.txtImageSettings": "Impostazioni immagine", - "SSE.Views.RightMenu.txtParagraphSettings": "Impostazioni testo", + "SSE.Views.RightMenu.txtParagraphSettings": "Impostazioni di paragrafo", "SSE.Views.RightMenu.txtPivotSettings": "Impostazioni tabella Pivot", "SSE.Views.RightMenu.txtSettings": "Impostazioni generali", "SSE.Views.RightMenu.txtShapeSettings": "Impostazioni forma", @@ -2859,6 +3097,7 @@ "SSE.Views.TextArtSettings.txtPapyrus": "Papiro", "SSE.Views.TextArtSettings.txtWood": "Legno", "SSE.Views.Toolbar.capBtnAddComment": "Aggiungi commento", + "SSE.Views.Toolbar.capBtnColorSchemas": "Schema di colori", "SSE.Views.Toolbar.capBtnComment": "Commento", "SSE.Views.Toolbar.capBtnInsHeader": "Intestazione/Piè di pagina", "SSE.Views.Toolbar.capBtnInsSlicer": "Filtro dati", @@ -2878,6 +3117,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.capInsertTable": "Tabella", "SSE.Views.Toolbar.capInsertText": "Casella di testo", "SSE.Views.Toolbar.mniImageFromFile": "Immagine da file", @@ -2901,8 +3141,11 @@ "SSE.Views.Toolbar.textBottomBorders": "Bordi inferiori", "SSE.Views.Toolbar.textCenterBorders": "Bordi verticali interni", "SSE.Views.Toolbar.textClearPrintArea": "Pulisci area di stampa", + "SSE.Views.Toolbar.textClearRule": "Cancellare le regole", "SSE.Views.Toolbar.textClockwise": "Angolo in senso orario", + "SSE.Views.Toolbar.textColorScales": "Scale cromatiche", "SSE.Views.Toolbar.textCounterCw": "Angolo in senso antiorario", + "SSE.Views.Toolbar.textDataBars": "Barre di dati", "SSE.Views.Toolbar.textDelLeft": "Sposta celle a sinistra", "SSE.Views.Toolbar.textDelUp": "Sposta celle in alto", "SSE.Views.Toolbar.textDiagDownBorder": "Bordo diagonale inferiore", @@ -2919,7 +3162,8 @@ "SSE.Views.Toolbar.textItems": "elementi", "SSE.Views.Toolbar.textLandscape": "Orizzontale", "SSE.Views.Toolbar.textLeft": "Sinistra:", - "SSE.Views.Toolbar.textLeftBorders": "Bordi a sinistra", + "SSE.Views.Toolbar.textLeftBorders": "Bordo sinistro", + "SSE.Views.Toolbar.textManageRule": "Gestire le regole", "SSE.Views.Toolbar.textManyPages": "Pagine", "SSE.Views.Toolbar.textMarginsLast": "Ultima personalizzazione", "SSE.Views.Toolbar.textMarginsNarrow": "Stretto", @@ -2929,6 +3173,7 @@ "SSE.Views.Toolbar.textMoreFormats": "Altri formati", "SSE.Views.Toolbar.textMorePages": "Più pagine", "SSE.Views.Toolbar.textNewColor": "Aggiungi Colore personalizzato", + "SSE.Views.Toolbar.textNewRule": "Nuova regola", "SSE.Views.Toolbar.textNoBorders": "Nessun bordo", "SSE.Views.Toolbar.textOnePage": "Pagina", "SSE.Views.Toolbar.textOutBorders": "Bordi esterni", @@ -2937,11 +3182,12 @@ "SSE.Views.Toolbar.textPrint": "Stampa", "SSE.Views.Toolbar.textPrintOptions": "Impostazioni stampa", "SSE.Views.Toolbar.textRight": "Destra:", - "SSE.Views.Toolbar.textRightBorders": "Bordi destri", + "SSE.Views.Toolbar.textRightBorders": "Bordo destro", "SSE.Views.Toolbar.textRotateDown": "Ruota testo verso il basso", "SSE.Views.Toolbar.textRotateUp": "Ruota testo verso l'alto", "SSE.Views.Toolbar.textScale": "Ridimensiona", "SSE.Views.Toolbar.textScaleCustom": "Personalizzato", + "SSE.Views.Toolbar.textSelection": "Dalla selezione corrente", "SSE.Views.Toolbar.textSetPrintArea": "Imposta area di stampa", "SSE.Views.Toolbar.textStrikeout": "Barrato", "SSE.Views.Toolbar.textSubscript": "Pedice", @@ -2956,6 +3202,9 @@ "SSE.Views.Toolbar.textTabLayout": "Layout di Pagina", "SSE.Views.Toolbar.textTabProtect": "Protezione", "SSE.Views.Toolbar.textTabView": "Visualizza", + "SSE.Views.Toolbar.textThisPivot": "Da questo pivot", + "SSE.Views.Toolbar.textThisSheet": "Da questo foglio di calcolo", + "SSE.Views.Toolbar.textThisTable": "Da questa tabella", "SSE.Views.Toolbar.textTop": "In alto:", "SSE.Views.Toolbar.textTopBorders": "Bordi superiori", "SSE.Views.Toolbar.textUnderline": "Sottolineato", @@ -2976,6 +3225,7 @@ "SSE.Views.Toolbar.tipChangeChart": "Cambia tipo di grafico", "SSE.Views.Toolbar.tipClearStyle": "Svuota", "SSE.Views.Toolbar.tipColorSchemas": "Cambia combinazione colori", + "SSE.Views.Toolbar.tipCondFormat": "Formattazione condizionale", "SSE.Views.Toolbar.tipCopy": "Copia", "SSE.Views.Toolbar.tipCopyStyle": "Copia stile", "SSE.Views.Toolbar.tipDecDecimal": "Diminuisci decimali", @@ -3003,6 +3253,7 @@ "SSE.Views.Toolbar.tipInsertOpt": "Inserisci celle", "SSE.Views.Toolbar.tipInsertShape": "Inserisci forma automatica", "SSE.Views.Toolbar.tipInsertSlicer": "Inserisci filtro dati", + "SSE.Views.Toolbar.tipInsertSpark": "Inserire grafico sparkline", "SSE.Views.Toolbar.tipInsertSymbol": "Inserisci simbolo", "SSE.Views.Toolbar.tipInsertTable": "Inserisci tabella", "SSE.Views.Toolbar.tipInsertText": "Inserisci casella di testo", @@ -3013,7 +3264,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Orientamento pagina", "SSE.Views.Toolbar.tipPageSize": "Dimensione pagina", "SSE.Views.Toolbar.tipPaste": "Incolla", - "SSE.Views.Toolbar.tipPrColor": "Colore sfondo", + "SSE.Views.Toolbar.tipPrColor": "Colore di riempimento", "SSE.Views.Toolbar.tipPrint": "Stampa", "SSE.Views.Toolbar.tipPrintArea": "Area di stampa", "SSE.Views.Toolbar.tipPrintTitles": "Stampa titoli", diff --git a/apps/spreadsheeteditor/main/locale/pt.json b/apps/spreadsheeteditor/main/locale/pt.json index a406c8eb75..ecc982da39 100644 --- a/apps/spreadsheeteditor/main/locale/pt.json +++ b/apps/spreadsheeteditor/main/locale/pt.json @@ -983,7 +983,7 @@ "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": "Tamanho limite máximo da imagem excedido.", + "SSE.Controllers.Main.uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.", "SSE.Controllers.Main.uploadImageTextText": "Carregando imagem...", "SSE.Controllers.Main.uploadImageTitleText": "Carregando imagem", "SSE.Controllers.Main.waitText": "Aguarde...", @@ -1429,7 +1429,7 @@ "SSE.Views.CellSettings.strWrap": "Ajustar texto", "SSE.Views.CellSettings.textAngle": "Ângulo", "SSE.Views.CellSettings.textBackColor": "Cor de fundo", - "SSE.Views.CellSettings.textBackground": "Cor de fundo", + "SSE.Views.CellSettings.textBackground": "Cor do plano de fundo", "SSE.Views.CellSettings.textBorderColor": "Cor", "SSE.Views.CellSettings.textBorders": "Estilo das bordas", "SSE.Views.CellSettings.textClearRule": "Regras claras", @@ -2087,7 +2087,7 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Geral", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Configurações de página", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Verificação ortográfica", - "SSE.Views.FormatRulesEditDlg.fillColor": "Cor do plano de fundo", + "SSE.Views.FormatRulesEditDlg.fillColor": "Cor de preenchimento", "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Aviso", "SSE.Views.FormatRulesEditDlg.text2Scales": "Escala Bicolor", "SSE.Views.FormatRulesEditDlg.text3Scales": "Escala Tricolor", @@ -3263,7 +3263,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Orientação da página", "SSE.Views.Toolbar.tipPageSize": "Tamanho da página", "SSE.Views.Toolbar.tipPaste": "Colar", - "SSE.Views.Toolbar.tipPrColor": "Cor do plano de fundo", + "SSE.Views.Toolbar.tipPrColor": "Cor de preenchimento", "SSE.Views.Toolbar.tipPrint": "Imprimir", "SSE.Views.Toolbar.tipPrintArea": "Área de impressão", "SSE.Views.Toolbar.tipPrintTitles": "Imprimir títulos", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index 4021b99d5f..ed82fffb2a 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -90,6 +90,7 @@ "Common.define.conditionalData.textNotContains": "Nu conține", "Common.define.conditionalData.textNotEqual": "Nu este egal cu", "Common.define.conditionalData.textNotErrors": "Nu conține erori", + "Common.define.conditionalData.textText": "Text", "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", @@ -231,6 +232,7 @@ "Common.Views.ListSettingsDialog.txtType": "Tip", "Common.Views.OpenDialog.closeButtonText": "Închide fișierul", "Common.Views.OpenDialog.textInvalidRange": "Zona de celule nu este validă", + "Common.Views.OpenDialog.textSelectData": "Selectare date", "Common.Views.OpenDialog.txtAdvanced": "Avansat", "Common.Views.OpenDialog.txtColon": "Două puncte", "Common.Views.OpenDialog.txtComma": "Virgulă", @@ -282,6 +284,8 @@ "Common.Views.ReviewChanges.tipCoAuthMode": "Activare modul de colaborare", "Common.Views.ReviewChanges.tipCommentRem": "Ștergere comentarii", "Common.Views.ReviewChanges.tipCommentRemCurrent": "Se șterg aceste comentarii", + "Common.Views.ReviewChanges.tipCommentResolve": "Soluționare comentarii", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Soluționarea comentariilor curente", "Common.Views.ReviewChanges.tipHistory": "Afișare istoricul versiunei", "Common.Views.ReviewChanges.tipRejectCurrent": "Respinge modificare", "Common.Views.ReviewChanges.tipReview": "Urmărirea modificărilor", @@ -301,6 +305,11 @@ "Common.Views.ReviewChanges.txtCommentRemMy": "Se șterg comentariile mele", "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Se șterg comentariile mele curente", "Common.Views.ReviewChanges.txtCommentRemove": "Ștergere", + "Common.Views.ReviewChanges.txtCommentResolve": "Soluționare", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Marchează toate comentarii ca soluționate", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Soluționarea comentariilor curente", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Soluționarea comentariilor mele", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Soluționarea comentariilor mele curente", "Common.Views.ReviewChanges.txtDocLang": "Limbă", "Common.Views.ReviewChanges.txtFinal": "Toate modificările sunt acceptate (Previzualizare)", "Common.Views.ReviewChanges.txtFinalCap": "Final", @@ -394,6 +403,7 @@ "SSE.Controllers.DataTab.txtExpand": "Extindere", "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Datele lângă selecție nu se vor elimina. Doriți să extindeți selecția pentru a include datele adiacente sau doriți să continuați cu selecția curentă?", "SSE.Controllers.DataTab.txtExtendDataValidation": "Zona selectată conține celulele pentru care regulile de validare a datelor nu sunt configutare.
    Doriți să aplicați regulile de validare acestor celule?", + "SSE.Controllers.DataTab.txtImportWizard": "Expertul import text", "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ă", @@ -1015,7 +1025,9 @@ "SSE.Controllers.Toolbar.textOperator": "Operatori", "SSE.Controllers.Toolbar.textPivot": "Tabelă Pivot", "SSE.Controllers.Toolbar.textRadical": "Radicale", + "SSE.Controllers.Toolbar.textRating": "Evaluări", "SSE.Controllers.Toolbar.textScript": "Scripturile", + "SSE.Controllers.Toolbar.textShapes": "Forme", "SSE.Controllers.Toolbar.textSymbols": "Simboluri", "SSE.Controllers.Toolbar.textWarning": "Avertisment", "SSE.Controllers.Toolbar.txtAccent_Accent": "Ascuțit", @@ -1648,8 +1660,10 @@ "SSE.Views.CreatePivotDialog.textSelectData": "Selectare date", "SSE.Views.CreatePivotDialog.textTitle": "Creare tabel Pivot", "SSE.Views.CreatePivotDialog.txtEmpty": "Câmp obligatoriu", + "SSE.Views.CreateSparklineDialog.textDataRange": "Zonă de date sursă", "SSE.Views.CreateSparklineDialog.textDestination": "Alegeți locul unde se va plasa diagrama sparkline", "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.DataTab.capBtnGroup": "Grupare", "SSE.Views.DataTab.capBtnTextCustomSort": "Sortare particularizată", @@ -1968,7 +1982,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separator zecimal", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Rapid", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Sugestie font", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Se salvează întotdeauna pe server (altfel utilizați metoda document close pentru salvare)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Versiunea se adaugă la stocarea după ce faceți clic pe Salvare sau Ctrl+S", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Limba formulă", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemplu: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activarea afișare comentarii", @@ -1993,7 +2007,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Recuperare automată", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Salvare automată", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Dezactivat", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Salvare pe server", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Salvarea versiunilor intermediare", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "La fiecare minută", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Stil referință", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Belarusă", @@ -2024,11 +2038,16 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Neerlandeză", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Poloneză", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punct", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portugheză", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Română", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rusă", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Se activează toate", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Se activează toate macrocomenzile, fără notificare", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovacă", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Slovenă", "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.txtWarnMacros": "Afișare notificări", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Se dezactivează toate macrocomenzile, cu notificare ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "ca Windows", @@ -2053,7 +2072,7 @@ "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Setare pagină", "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Verificarea ortografică", - "SSE.Views.FormatRulesEditDlg.fillColor": "Culoare de fundal", + "SSE.Views.FormatRulesEditDlg.fillColor": "Culoare de umplere", "SSE.Views.FormatRulesEditDlg.text2Scales": "Scară cu două culori", "SSE.Views.FormatRulesEditDlg.text3Scales": "Scară cu trei culori", "SSE.Views.FormatRulesEditDlg.textAllBorders": "Toate borduri", @@ -2071,6 +2090,7 @@ "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Punctul central al celulei", "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Bordurile verticale în interiorul ", "SSE.Views.FormatRulesEditDlg.textClear": "Golire", + "SSE.Views.FormatRulesEditDlg.textColor": "Culoare text", "SSE.Views.FormatRulesEditDlg.textContext": "Context", "SSE.Views.FormatRulesEditDlg.textCustom": "Particularizat", "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Bordură diagonală descendentă", @@ -2082,6 +2102,7 @@ "SSE.Views.FormatRulesEditDlg.textFormat": "Formatare", "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", "SSE.Views.FormatRulesEditDlg.textGradient": "Gradient", + "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 ", "SSE.Views.FormatRulesEditDlg.textInvalid": "Zona de date nevalidă.", @@ -2101,6 +2122,28 @@ "SSE.Views.FormatRulesEditDlg.textNewColor": "Adăugarea unei culori particularizate noi", "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.textNotValidPercentile": "Una sau mail multe valori specificate sunt valorile de percentilă nevalide.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Borduri în exteriorul", + "SSE.Views.FormatRulesEditDlg.textPercent": "Procent", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentilă", + "SSE.Views.FormatRulesEditDlg.textPosition": "Poziție", + "SSE.Views.FormatRulesEditDlg.textPositive": "Pozitiv", + "SSE.Views.FormatRulesEditDlg.textPresets": "Presetări", + "SSE.Views.FormatRulesEditDlg.textPreview": "Previzualizare", + "SSE.Views.FormatRulesEditDlg.textReverse": "Ordine pictograme inversată", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Dreapta la stânga", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Borduri din dreapta", + "SSE.Views.FormatRulesEditDlg.textRule": "Regulă", + "SSE.Views.FormatRulesEditDlg.textSameAs": "La fel ca pozitiv", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Selectare date", + "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.textSolid": "Solidă", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Tăiere cu o linie", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Indice", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Exponent", "SSE.Views.FormatRulesEditDlg.tipBorders": "Borduri", "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Formatul de număr", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Contabilitate", @@ -2109,6 +2152,9 @@ "SSE.Views.FormatRulesEditDlg.txtFraction": "Fracție", "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", "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.txtTitleEdit": "Editare regulă de formatare", "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nouă regulă de formatare", "SSE.Views.FormatRulesManagerDlg.guestText": "Invitat", @@ -2142,6 +2188,9 @@ "SSE.Views.FormatRulesManagerDlg.textNotContains": "Valoarea din celulă nu conține", "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Celula nu conține nicio valoare goală", "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Celula nu conține nicio eroare", + "SSE.Views.FormatRulesManagerDlg.textRules": "Reguli", + "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.textThisTable": "Acest tabel", "SSE.Views.FormatRulesManagerDlg.textUp": "Mutare regulă în sus", @@ -3033,6 +3082,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.capInsertTable": "Tabel", "SSE.Views.Toolbar.capInsertText": "Casetă text", "SSE.Views.Toolbar.mniImageFromFile": "Imaginea din fișier", @@ -3179,7 +3229,7 @@ "SSE.Views.Toolbar.tipPageOrient": "Orientare pagină", "SSE.Views.Toolbar.tipPageSize": "Dimensiune pagină", "SSE.Views.Toolbar.tipPaste": "Lipire", - "SSE.Views.Toolbar.tipPrColor": "Culoare de fundal", + "SSE.Views.Toolbar.tipPrColor": "Culoare de umplere", "SSE.Views.Toolbar.tipPrint": "Imprimare", "SSE.Views.Toolbar.tipPrintArea": "Zonă de imprimat", "SSE.Views.Toolbar.tipPrintTitles": "Imprimare titluri", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index 273b2c7e8a..2443340056 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -218,7 +218,7 @@ "Common.Views.Header.tipSave": "Сохранить", "Common.Views.Header.tipUndo": "Отменить", "Common.Views.Header.tipUndock": "Открепить в отдельном окне", - "Common.Views.Header.tipViewSettings": "Параметры представления", + "Common.Views.Header.tipViewSettings": "Параметры вида", "Common.Views.Header.tipViewUsers": "Просмотр пользователей и управление правами доступа к документу", "Common.Views.Header.txtAccessRights": "Изменить права доступа", "Common.Views.Header.txtRename": "Переименовать", @@ -599,6 +599,7 @@ "SSE.Controllers.LeftMenu.warnDownloadAs": "Если Вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
    Вы действительно хотите продолжить?", "SSE.Controllers.Main.confirmMoveCellRange": "Конечный диапазон ячеек может содержать данные. Продолжить операцию?", "SSE.Controllers.Main.confirmPutMergeRange": "Исходные данные содержали объединенные ячейки.
    Перед вставкой этих ячеек в таблицу объединение было отменено.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Формулы в строке заголовка будут удалены и преобразованы в статический текст.
    Вы хотите продолжить?", "SSE.Controllers.Main.convertationTimeoutText": "Превышено время ожидания конвертации.", "SSE.Controllers.Main.criticalErrorExtText": "Нажмите \"OK\", чтобы вернуться к списку документов.", "SSE.Controllers.Main.criticalErrorTitle": "Ошибка", @@ -2180,6 +2181,7 @@ "SSE.Views.FormatRulesEditDlg.txtEmpty": "Это поле необходимо заполнить", "SSE.Views.FormatRulesEditDlg.txtFraction": "Дробный", "SSE.Views.FormatRulesEditDlg.txtGeneral": "Общий", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Без значка", "SSE.Views.FormatRulesEditDlg.txtNumber": "Числовой", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Процент", "SSE.Views.FormatRulesEditDlg.txtScientific": "Научный", @@ -3200,7 +3202,7 @@ "SSE.Views.Toolbar.textTabInsert": "Вставка", "SSE.Views.Toolbar.textTabLayout": "Макет", "SSE.Views.Toolbar.textTabProtect": "Защита", - "SSE.Views.Toolbar.textTabView": "Представление", + "SSE.Views.Toolbar.textTabView": "Вид", "SSE.Views.Toolbar.textThisPivot": "Из этой сводной таблицы", "SSE.Views.Toolbar.textThisSheet": "Из этого листа", "SSE.Views.Toolbar.textThisTable": "Из этой таблицы", @@ -3328,6 +3330,7 @@ "SSE.Views.Toolbar.txtScheme2": "Оттенки серого", "SSE.Views.Toolbar.txtScheme20": "Городская", "SSE.Views.Toolbar.txtScheme21": "Яркая", + "SSE.Views.Toolbar.txtScheme22": "Новая офисная", "SSE.Views.Toolbar.txtScheme3": "Апекс", "SSE.Views.Toolbar.txtScheme4": "Аспект", "SSE.Views.Toolbar.txtScheme5": "Официальная", @@ -3404,9 +3407,13 @@ "SSE.Views.ViewTab.textCreate": "Новое", "SSE.Views.ViewTab.textDefault": "По умолчанию", "SSE.Views.ViewTab.textFormula": "Строка формул", + "SSE.Views.ViewTab.textFreezeCol": "Закрепить первый столбец", + "SSE.Views.ViewTab.textFreezeRow": "Закрепить верхнюю строку", "SSE.Views.ViewTab.textGridlines": "Линии сетки", "SSE.Views.ViewTab.textHeadings": "Заголовки", "SSE.Views.ViewTab.textManager": "Диспетчер представлений", + "SSE.Views.ViewTab.textUnFreeze": "Снять закрепление областей", + "SSE.Views.ViewTab.textZeros": "Отображать нули", "SSE.Views.ViewTab.textZoom": "Масштаб", "SSE.Views.ViewTab.tipClose": "Закрыть представление листа", "SSE.Views.ViewTab.tipCreate": "Создать представление листа", diff --git a/apps/spreadsheeteditor/main/locale/sl.json b/apps/spreadsheeteditor/main/locale/sl.json index e3fb9f1527..10cc3044aa 100644 --- a/apps/spreadsheeteditor/main/locale/sl.json +++ b/apps/spreadsheeteditor/main/locale/sl.json @@ -11,6 +11,20 @@ "Common.define.chartData.textPie": "Tortni grafikon", "Common.define.chartData.textPoint": "Točkovni grafikon", "Common.define.chartData.textStock": "Založni grafikon", + "Common.define.conditionalData.exampleText": "AaBbCcYyZz", + "Common.define.conditionalData.textAbove": "Nad", + "Common.define.conditionalData.textAverage": "Povprečje", + "Common.define.conditionalData.textBegins": "Se začne z", + "Common.define.conditionalData.textBelow": "Pod", + "Common.define.conditionalData.textBetween": "Med", + "Common.define.conditionalData.textBlank": "Prazen", + "Common.define.conditionalData.textBottom": "Spodaj", + "Common.define.conditionalData.textDate": "Datum", + "Common.define.conditionalData.textError": "Napaka", + "Common.define.conditionalData.textFormula": "Formula", + "Common.define.conditionalData.textNotContains": "Ne vsebuje", + "Common.Translation.warnFileLockedBtnEdit": "Ustvari kopijo", + "Common.UI.ColorButton.textAutoColor": "Samodejeno", "Common.UI.ColorButton.textNewColor": "Dodaj novo barvo po meri", "Common.UI.ComboBorderSize.txtNoBorders": "Ni mej", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Ni mej", @@ -32,6 +46,7 @@ "Common.UI.SearchDialog.txtBtnReplaceAll": "Zamenjaj vse", "Common.UI.SynchronizeTip.textDontShow": "Tega sporočila ne prikaži več", "Common.UI.SynchronizeTip.textSynchronize": "Dokument je spremenil drug uporabnik.
    Prosim pritisnite za shranjevanje svojih sprememb in osvežitev posodobitev.", + "Common.UI.Themes.txtThemeDark": "Temen", "Common.UI.Window.cancelButtonText": "Prekliči", "Common.UI.Window.closeButtonText": "Zapri", "Common.UI.Window.noButtonText": "Ne", @@ -51,8 +66,10 @@ "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Različica", "Common.Views.AutoCorrectDialog.textAdd": "Dodaj", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Samodejno popravljanje", "Common.Views.AutoCorrectDialog.textBy": "Od", "Common.Views.AutoCorrectDialog.textDelete": "Izbriši", + "Common.Views.AutoCorrectDialog.textTitle": "Samodejno popravljanje", "Common.Views.Chat.textSend": "Pošlji", "Common.Views.Comments.textAdd": "Dodaj", "Common.Views.Comments.textAddComment": "Dodaj", @@ -83,7 +100,9 @@ "Common.Views.Header.textBack": "Pojdi v dokumente", "Common.Views.Header.textSaveEnd": "Vse spremembe shranjene", "Common.Views.Header.textSaveExpander": "Vse spremembe shranjene", + "Common.Views.Header.textZoom": "Povečaj", "Common.Views.Header.tipDownload": "Prenesi datoteko", + "Common.Views.Header.tipGoEdit": "Uredi trenutno datoteko", "Common.Views.Header.txtAccessRights": "Spremeni pravice dostopa", "Common.Views.ImageFromUrlDialog.textUrl": "Prilepi URL slike:", "Common.Views.ImageFromUrlDialog.txtEmpty": "To polje je obvezno", @@ -116,12 +135,14 @@ "Common.Views.Protection.txtInvisibleSignature": "Dodaj digitalni podpis", "Common.Views.Protection.txtSignatureLine": "Dodaj podpisno črto", "Common.Views.RenameDialog.textName": "Ime datoteke", + "Common.Views.ReviewChanges.strFast": "Hitro", "Common.Views.ReviewChanges.txtAccept": "Sprejmi", "Common.Views.ReviewChanges.txtAcceptAll": "Sprejmi vse spremembe", "Common.Views.ReviewChanges.txtAcceptChanges": "Sprejmi spremembe", "Common.Views.ReviewChanges.txtChat": "Pogovor", "Common.Views.ReviewChanges.txtClose": "Zapri", "Common.Views.ReviewChanges.txtFinal": "Vse spremembe so sprejete (Predogled)", + "Common.Views.ReviewChanges.txtFinalCap": "Končno", "Common.Views.ReviewChanges.txtOriginal": "Vse spremembe zavrnjene (Predogled)", "Common.Views.ReviewChanges.txtView": "Način pogleda", "Common.Views.ReviewPopover.textAdd": "Dodaj", @@ -134,9 +155,12 @@ "Common.Views.SignDialog.textCertificate": "Certifikat", "Common.Views.SignDialog.textChange": "Spremeni", "Common.Views.SignDialog.textItalic": "Ležeče", + "Common.Views.SignDialog.tipFontName": "Ime pisave", "Common.Views.SignDialog.tipFontSize": "Velikost pisave", + "Common.Views.SignSettingsDialog.textInfoEmail": "Elektronski naslov", "Common.Views.SignSettingsDialog.textInfoName": "Ime", "Common.Views.SymbolTableDialog.textCharacter": "Znak", + "Common.Views.SymbolTableDialog.textFont": "Pisava", "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 prostora", "SSE.Controllers.DataTab.textColumns": "Stolpci", "SSE.Controllers.DataTab.txtExpand": "Razširi", @@ -145,6 +169,8 @@ "SSE.Controllers.DocumentHolder.deleteRowText": "Izbriši vrsto", "SSE.Controllers.DocumentHolder.deleteText": "Izbriši", "SSE.Controllers.DocumentHolder.guestText": "Gost", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Stolpec levo", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Stolpec desno", "SSE.Controllers.DocumentHolder.insertText": "Vstavi", "SSE.Controllers.DocumentHolder.leftText": "Levo", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Širina stolpca {0} simboli ({1} pikslov)", @@ -156,14 +182,19 @@ "SSE.Controllers.DocumentHolder.txtAboveAve": "Nad povprečjem", "SSE.Controllers.DocumentHolder.txtAll": "(Vse)", "SSE.Controllers.DocumentHolder.txtAnd": "in", + "SSE.Controllers.DocumentHolder.txtBegins": "Se začne z", "SSE.Controllers.DocumentHolder.txtBlanks": "(Prazno)", + "SSE.Controllers.DocumentHolder.txtBottom": "Spodaj", "SSE.Controllers.DocumentHolder.txtColumn": "Stolpec", "SSE.Controllers.DocumentHolder.txtContains": "Vsebuje", "SSE.Controllers.DocumentHolder.txtDeleteEq": "Izbriši enačbo", "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Izbriši diagram", "SSE.Controllers.DocumentHolder.txtEnds": "Se konča s/z", "SSE.Controllers.DocumentHolder.txtEquals": "Enako", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Spodaj", "SSE.Controllers.DocumentHolder.txtHeight": "Višina", + "SSE.Controllers.DocumentHolder.txtNotBegins": "Se ne začne z", + "SSE.Controllers.DocumentHolder.txtNotContains": "Ne vsebuje", "SSE.Controllers.DocumentHolder.txtOr": "ali", "SSE.Controllers.DocumentHolder.txtPaste": "Prilepi", "SSE.Controllers.DocumentHolder.txtPasteFormat": "Prilepi le oblikovanje", @@ -174,8 +205,10 @@ "SSE.Controllers.DocumentHolder.txtRowHeight": "Višina vrste", "SSE.Controllers.DocumentHolder.txtWidth": "Širina", "SSE.Controllers.FormulaDialog.sCategoryAll": "Vse", + "SSE.Controllers.FormulaDialog.sCategoryCube": "Kocka", "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Datum in čas", "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Inžinirstvo", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Finance", "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informacije", "SSE.Controllers.LeftMenu.newDocumentTitle": "Neimenovana razpredelnica", "SSE.Controllers.LeftMenu.textByColumns": "Po stolpcih", @@ -274,6 +307,7 @@ "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.textYes": "Da", "SSE.Controllers.Main.titleRecalcFormulas": "Izračunavanje...", + "SSE.Controllers.Main.titleServerVersion": "Urednik je bil posodobljen", "SSE.Controllers.Main.txtAccent": "Preglas", "SSE.Controllers.Main.txtAll": "(Vse)", "SSE.Controllers.Main.txtArt": "Your text here", @@ -285,6 +319,7 @@ "SSE.Controllers.Main.txtCharts": "Grafi", "SSE.Controllers.Main.txtColumn": "Stolpec", "SSE.Controllers.Main.txtDate": "Datum", + "SSE.Controllers.Main.txtDays": "Dnevi", "SSE.Controllers.Main.txtDiagramTitle": "Naslov diagrama", "SSE.Controllers.Main.txtEditingMode": "Nastavi način urejanja...", "SSE.Controllers.Main.txtFiguredArrows": "Figurirane puščice", @@ -294,9 +329,12 @@ "SSE.Controllers.Main.txtRectangles": "Pravokotniki", "SSE.Controllers.Main.txtRow": "Vrsta", "SSE.Controllers.Main.txtSeries": "Serije", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "Prazen gumb", "SSE.Controllers.Main.txtShape_actionButtonHelp": "Gumb za pomoč", + "SSE.Controllers.Main.txtShape_arc": "Lok", "SSE.Controllers.Main.txtShape_bevel": "Stožčasti", "SSE.Controllers.Main.txtShape_cloud": "Oblak", + "SSE.Controllers.Main.txtShape_cube": "Kocka", "SSE.Controllers.Main.txtShape_frame": "Okvir", "SSE.Controllers.Main.txtShape_heart": "Srce", "SSE.Controllers.Main.txtShape_lineWithArrow": "Puščica", @@ -319,6 +357,7 @@ "SSE.Controllers.Main.txtStyle_Bad": "Slabo", "SSE.Controllers.Main.txtStyle_Check_Cell": "Preveri celico", "SSE.Controllers.Main.txtStyle_Comma": "Vejica", + "SSE.Controllers.Main.txtStyle_Currency": "Valuta", "SSE.Controllers.Main.txtStyle_Heading_1": "Naslov 1", "SSE.Controllers.Main.txtStyle_Heading_2": "Naslov 2", "SSE.Controllers.Main.txtStyle_Heading_3": "Naslov 3", @@ -339,6 +378,7 @@ "SSE.Controllers.Main.warnProcessRightsChange": "Pravica, da urejate datoteko je bila zavrnjena.", "SSE.Controllers.Print.strAllSheets": "Vsi listi", "SSE.Controllers.Print.textFirstCol": "Prvi stolpec", + "SSE.Controllers.Print.textFirstRow": "Prva vrstica", "SSE.Controllers.Print.textWarning": "Opozorilo", "SSE.Controllers.Print.txtCustom": "Po meri", "SSE.Controllers.Print.warnCheckMargings": "Meje so nepravilne", @@ -351,6 +391,7 @@ "SSE.Controllers.Toolbar.textAccent": "Naglasi", "SSE.Controllers.Toolbar.textBracket": "Oklepaji", "SSE.Controllers.Toolbar.textFontSizeErr": "Vnesena vrednost je nepravilna.
    Prosim vnesite numerično vrednost med 1 in 409", + "SSE.Controllers.Toolbar.textFraction": "Frakcije", "SSE.Controllers.Toolbar.textInsert": "Vstavi", "SSE.Controllers.Toolbar.textIntegral": "Integrali", "SSE.Controllers.Toolbar.textWarning": "Opozorilo", @@ -358,12 +399,15 @@ "SSE.Controllers.Toolbar.txtAccent_Bar": "Stolpični grafikon", "SSE.Controllers.Toolbar.txtAccent_Check": "Obkljukaj", "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC z nadvrstico", + "SSE.Controllers.Toolbar.txtAccent_Dot": "Pika", "SSE.Controllers.Toolbar.txtBracket_Angle": "Oklepaji", "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Oklepaji z ločevalniki", "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Oklepaji z ločevalniki", "SSE.Controllers.Toolbar.txtBracket_Curve": "Oklepaji", "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Oklepaji z ločevalniki", "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Primer primerov", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomski koeficient", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomski koeficient", "SSE.Controllers.Toolbar.txtBracket_Line": "Oklepaji", "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Oklepaji", "SSE.Controllers.Toolbar.txtBracket_LowLim": "Oklepaji", @@ -393,15 +437,18 @@ "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonalne pike", "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Enak dvopičju", "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta je enaka", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Kvadratni koren", "SSE.Controllers.Toolbar.txtSymbol_about": "Približno", "SSE.Controllers.Toolbar.txtSymbol_additional": "Kompliment", "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Koren kvadrata", "SSE.Controllers.Toolbar.txtSymbol_celsius": "Stopinje Celzija", "SSE.Controllers.Toolbar.txtSymbol_cong": "Približno enako", "SSE.Controllers.Toolbar.txtSymbol_degree": "Stopinje", "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", "SSE.Controllers.Toolbar.txtSymbol_equals": "Enak", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "stopinje Fahrenheita", "SSE.Controllers.Toolbar.txtSymbol_forall": "Za vse", "SSE.Controllers.Toolbar.txtSymbol_infinity": "Neskončnost", @@ -417,11 +464,13 @@ "SSE.Views.AutoFilterDialog.textSelectAll": "Izberi vse", "SSE.Views.AutoFilterDialog.textWarning": "Opozorilo", "SSE.Views.AutoFilterDialog.txtAboveAve": "Nad povprečjem", + "SSE.Views.AutoFilterDialog.txtBegins": "Se začne z ...", "SSE.Views.AutoFilterDialog.txtBetween": "med ...", "SSE.Views.AutoFilterDialog.txtContains": "Vsebuje ...", "SSE.Views.AutoFilterDialog.txtEmpty": "Vnesi celični filter", "SSE.Views.AutoFilterDialog.txtEnds": "Se konča z/s ...", "SSE.Views.AutoFilterDialog.txtEquals": "Enako ...", + "SSE.Views.AutoFilterDialog.txtNotBegins": "Se ne začne z ...", "SSE.Views.AutoFilterDialog.txtTitle": "Filter", "SSE.Views.AutoFilterDialog.warnNoSelected": "Izbrati morate vsaj eno vrednost", "SSE.Views.CellEditor.textManager": "Manager", @@ -430,9 +479,11 @@ "SSE.Views.CellRangeDialog.txtEmpty": "To polje je obvezno", "SSE.Views.CellRangeDialog.txtInvalidRange": "NAPAKA! Neveljaven razpon celic", "SSE.Views.CellRangeDialog.txtTitle": "Izberi območje podatkov", + "SSE.Views.CellSettings.textAngle": "Kot", "SSE.Views.CellSettings.textBackColor": "Barva ozadja", "SSE.Views.CellSettings.textBackground": "Barva ozadja", "SSE.Views.CellSettings.textBorderColor": "Barva", + "SSE.Views.CellSettings.textBorders": "Stil obrob", "SSE.Views.CellSettings.textFill": "Zapolni", "SSE.Views.CellSettings.textForeground": "Barva ospredja", "SSE.Views.CellSettings.textGradientColor": "Barva", @@ -443,6 +494,7 @@ "SSE.Views.ChartSettings.textAdvanced": "Prikaži napredne nastavitve", "SSE.Views.ChartSettings.textChartType": "Spremeni vrsto razpredelnice", "SSE.Views.ChartSettings.textEditData": "Uredi podatke", + "SSE.Views.ChartSettings.textFirstPoint": "Prva točka", "SSE.Views.ChartSettings.textHeight": "Višina", "SSE.Views.ChartSettings.textKeepRatio": "Nenehna razmerja", "SSE.Views.ChartSettings.textSize": "Velikost", @@ -459,6 +511,7 @@ "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings", "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Med obkljukanimi oznakami", "SSE.Views.ChartSettingsDlg.textBillions": "Milijarde", + "SSE.Views.ChartSettingsDlg.textBottom": "Spodaj", "SSE.Views.ChartSettingsDlg.textCategoryName": "Ime kategorije", "SSE.Views.ChartSettingsDlg.textCenter": "Središče", "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elementi grafa &
    Legenda grafa", @@ -541,11 +594,17 @@ "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Naslov Y osi", "SSE.Views.ChartSettingsDlg.txtEmpty": "To polje je obvezno", "SSE.Views.DataTab.capBtnGroup": "Skupina", + "SSE.Views.DataTab.capDataFromText": "Iz besedila/CSV", "SSE.Views.DataValidationDialog.textAlert": "Opozorilo", "SSE.Views.DataValidationDialog.textAllow": "Dovoli", "SSE.Views.DataValidationDialog.textData": "Podatki", + "SSE.Views.DataValidationDialog.textEndDate": "Končni datum", + "SSE.Views.DataValidationDialog.textEndTime": "Končni čas", + "SSE.Views.DataValidationDialog.textFormula": "Formula", "SSE.Views.DataValidationDialog.txtBetween": "med", "SSE.Views.DataValidationDialog.txtDate": "Datum", + "SSE.Views.DataValidationDialog.txtEndDate": "Končni datum", + "SSE.Views.DataValidationDialog.txtEndTime": "Končni čas", "SSE.Views.DigitalFilterDialog.capAnd": "In", "SSE.Views.DigitalFilterDialog.capCondition1": "enako", "SSE.Views.DigitalFilterDialog.capCondition10": "se ne konča z", @@ -578,8 +637,12 @@ "SSE.Views.DocumentHolder.directionText": "Text Direction", "SSE.Views.DocumentHolder.editChartText": "Uredi podatke", "SSE.Views.DocumentHolder.editHyperlinkText": "Uredi hiperpovezavo", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Stolpec levo", + "SSE.Views.DocumentHolder.insertColumnRightText": "Stolpec desno", "SSE.Views.DocumentHolder.originalSizeText": "Dejanska velikost", "SSE.Views.DocumentHolder.removeHyperlinkText": "Odstrani hiperpovezavo", + "SSE.Views.DocumentHolder.selectColumnText": "Cel stolpec", + "SSE.Views.DocumentHolder.selectDataText": "Podatki stolpca", "SSE.Views.DocumentHolder.selectRowText": "Vrsta", "SSE.Views.DocumentHolder.textAlign": "Poravnava", "SSE.Views.DocumentHolder.textArrangeBack": "Pošlji k ozadju", @@ -587,13 +650,23 @@ "SSE.Views.DocumentHolder.textArrangeForward": "Premakni naprej", "SSE.Views.DocumentHolder.textArrangeFront": "Premakni v ospredje", "SSE.Views.DocumentHolder.textAverage": "POVPREČNA", + "SSE.Views.DocumentHolder.textCount": "Štetje", "SSE.Views.DocumentHolder.textCrop": "Odreži", "SSE.Views.DocumentHolder.textCropFill": "Zapolni", + "SSE.Views.DocumentHolder.textFlipH": "Zrcali horizontalno", + "SSE.Views.DocumentHolder.textFlipV": "Zrcali vertikalno", "SSE.Views.DocumentHolder.textFreezePanes": "Zamrzni plošče", + "SSE.Views.DocumentHolder.textFromFile": "Iz datoteke", "SSE.Views.DocumentHolder.textFromStorage": "Iz shrambe", "SSE.Views.DocumentHolder.textFromUrl": "z URL naslova", "SSE.Views.DocumentHolder.textMore": "Več funkcij", "SSE.Views.DocumentHolder.textNone": "Nič", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Poravnaj spodaj", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Poravnava na sredino", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Poravnaj levo", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Poravnaj na sredino", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Poravnaj desno", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Poravnaj na vrh", "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", "SSE.Views.DocumentHolder.topCellText": "Poravnaj vrh", "SSE.Views.DocumentHolder.txtAccounting": "Računovodstvo", @@ -610,6 +683,7 @@ "SSE.Views.DocumentHolder.txtColumn": "Cel stolpec", "SSE.Views.DocumentHolder.txtColumnWidth": "Širina stolpcev", "SSE.Views.DocumentHolder.txtCopy": "Kopiraj", + "SSE.Views.DocumentHolder.txtCurrency": "Valuta", "SSE.Views.DocumentHolder.txtCut": "Izreži", "SSE.Views.DocumentHolder.txtDate": "Datum", "SSE.Views.DocumentHolder.txtDelete": "Izbriši", @@ -617,6 +691,8 @@ "SSE.Views.DocumentHolder.txtEditComment": "Uredi komentar", "SSE.Views.DocumentHolder.txtFilter": "Filter", "SSE.Views.DocumentHolder.txtFormula": "Vstavi funkcijo", + "SSE.Views.DocumentHolder.txtFraction": "Frakcija", + "SSE.Views.DocumentHolder.txtGeneral": "Splošno", "SSE.Views.DocumentHolder.txtGroup": "Skupina", "SSE.Views.DocumentHolder.txtHide": "Skrij", "SSE.Views.DocumentHolder.txtInsert": "Vstavi", @@ -637,6 +713,8 @@ "SSE.Views.DocumentHolder.vertAlignText": "Vertikalna poravnava", "SSE.Views.FieldSettingsDialog.txtAverage": "POVPREČNA", "SSE.Views.FieldSettingsDialog.txtCompact": "Kompakten", + "SSE.Views.FieldSettingsDialog.txtCount": "Štetje", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Štetje števil", "SSE.Views.FieldSettingsDialog.txtCustomName": "Ime po meri", "SSE.Views.FileMenu.btnBackCaption": "Pojdi v dokumente", "SSE.Views.FileMenu.btnCloseMenuCaption": "Zapri meni", @@ -659,6 +737,7 @@ "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Uporabi", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Dodaj avtorja", "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Dodaj besedilo", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplikacija", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Avtor", "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Spremeni pravice dostopa", "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Komentar", @@ -693,8 +772,11 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Onemogočeno", "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Vsako minuto", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Češka", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danska", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "Deutsch", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "Francosko", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Palec", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Živo komentiranje", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "kot OS X", @@ -704,12 +786,37 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "kot Windows", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Uporabi", "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Jezik slovarja", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Uredi razpredelnico", "SSE.Views.FileMenuPanels.Settings.txtGeneral": "Splošen", + "SSE.Views.FormatRulesEditDlg.fillColor": "Barva ozadja", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Samodejeno", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Barve obrob", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Slogi obrob", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Spodnje obrobe", + "SSE.Views.FormatRulesEditDlg.textCustom": "Po meri", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Vnesite vrednost.", + "SSE.Views.FormatRulesEditDlg.textFill": "Zapolni", + "SSE.Views.FormatRulesEditDlg.textFormat": "Format", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Obrobe", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Računovodstvo", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Valuta", + "SSE.Views.FormatRulesEditDlg.txtDate": "Datum", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Frakcija", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "Splošno", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Uredi pravila formata", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Nad povprečjem", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Izbriši", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Uredi", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Format", "SSE.Views.FormatSettingsDialog.textCategory": "Kategorija", "SSE.Views.FormatSettingsDialog.textFormat": "Format", "SSE.Views.FormatSettingsDialog.txtAccounting": "Računovodstvo", + "SSE.Views.FormatSettingsDialog.txtCurrency": "Valuta", "SSE.Views.FormatSettingsDialog.txtCustom": "Po meri", "SSE.Views.FormatSettingsDialog.txtDate": "Datum", + "SSE.Views.FormatSettingsDialog.txtFraction": "Frakcija", + "SSE.Views.FormatSettingsDialog.txtGeneral": "Splošno", "SSE.Views.FormatSettingsDialog.txtNone": "Nič", "SSE.Views.FormatSettingsDialog.txtNumber": "Število", "SSE.Views.FormulaDialog.sDescription": "Opis", @@ -717,6 +824,7 @@ "SSE.Views.FormulaDialog.textListDescription": "Izberi funkcijo", "SSE.Views.FormulaDialog.txtTitle": "Vstavi funkcijo", "SSE.Views.FormulaTab.textAutomatic": "Samodejeno", + "SSE.Views.FormulaTab.tipCalculate": "Izračunaj", "SSE.Views.FormulaTab.txtAdditional": "Dodatno", "SSE.Views.FormulaTab.txtFormula": "Funkcija", "SSE.Views.FormulaWizard.textFunction": "Funkcija", @@ -735,6 +843,8 @@ "SSE.Views.HeaderFooterDialog.textLeft": "Levo", "SSE.Views.HeaderFooterDialog.textNewColor": "Dodaj novo barvo po meri", "SSE.Views.HeaderFooterDialog.textTitle": "Nastavitve glave/noge", + "SSE.Views.HeaderFooterDialog.tipFontName": "Pisava", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Velikost pisave", "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Zaslon", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Povezava k", "SSE.Views.HyperlinkSettingsDialog.strRange": "Razdalja", @@ -754,10 +864,13 @@ "SSE.Views.ImageSettings.textCrop": "Odreži", "SSE.Views.ImageSettings.textCropFill": "Zapolni", "SSE.Views.ImageSettings.textEdit": "Uredi", + "SSE.Views.ImageSettings.textFlip": "Prezrcali", "SSE.Views.ImageSettings.textFromFile": "z datoteke", "SSE.Views.ImageSettings.textFromStorage": "Iz shrambe", "SSE.Views.ImageSettings.textFromUrl": "z URL", "SSE.Views.ImageSettings.textHeight": "Višina", + "SSE.Views.ImageSettings.textHintFlipH": "Zrcali horizontalno", + "SSE.Views.ImageSettings.textHintFlipV": "Zrcali vertikalno", "SSE.Views.ImageSettings.textInsert": "Zamenjaj sliko", "SSE.Views.ImageSettings.textKeepRatio": "Nenehna razmerja", "SSE.Views.ImageSettings.textOriginalSize": "Privzeta velikost", @@ -765,6 +878,8 @@ "SSE.Views.ImageSettings.textWidth": "Širina", "SSE.Views.ImageSettingsAdvanced.textAlt": "Nadomestno besedilo", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Opis", + "SSE.Views.ImageSettingsAdvanced.textAngle": "Kot", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Prezrcaljeno", "SSE.Views.ImageSettingsAdvanced.textTitle": "Slika - napredne nastavitve", "SSE.Views.LeftMenu.tipAbout": "O programu", "SSE.Views.LeftMenu.tipChat": "Pogovor", @@ -827,6 +942,7 @@ "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.PageMarginsDialog.textBottom": "Spodaj", "SSE.Views.PageMarginsDialog.textLeft": "Levo", "SSE.Views.ParagraphSettings.strLineHeight": "Razmik med vrsticami", "SSE.Views.ParagraphSettings.strParagraphSpacing": "Razmik", @@ -843,6 +959,7 @@ "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Dvojno prečrtanje", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Levo", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Desno", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Po", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Pred", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Od", "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Pisava", @@ -869,14 +986,21 @@ "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Samodejno", "SSE.Views.PivotDigitalFilterDialog.capCondition1": "enako", "SSE.Views.PivotDigitalFilterDialog.capCondition11": "vsebuje", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "ne vsebuje", "SSE.Views.PivotDigitalFilterDialog.capCondition13": "med", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "se začne z", "SSE.Views.PivotDigitalFilterDialog.capCondition9": "se konča z", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "in", + "SSE.Views.PivotGroupDialog.textAuto": "Samodejno", + "SSE.Views.PivotGroupDialog.textBy": "Od", + "SSE.Views.PivotGroupDialog.textDays": "Dnevi", "SSE.Views.PivotSettings.textColumns": "Stolpci", + "SSE.Views.PivotSettings.textFilters": "Filtri", "SSE.Views.PivotSettings.txtAddFilter": "Dodaj v filtre", "SSE.Views.PivotSettingsAdvanced.textAlt": "Nadomestno besedilo", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Opis", "SSE.Views.PivotSettingsAdvanced.txtName": "Ime", + "SSE.Views.PivotTable.textColHeader": "Glava stoplca", "SSE.Views.PivotTable.txtCreate": "Vstavi tabelo", "SSE.Views.PrintSettings.btnPrint": "Shrani & Natisni", "SSE.Views.PrintSettings.strBottom": "Dno", @@ -903,6 +1027,7 @@ "SSE.Views.PrintSettings.textTitle": "Natisni nastavitve", "SSE.Views.PrintSettings.textTitlePDF": "Nastavitev PDF dokumenta", "SSE.Views.PrintTitlesDialog.textFirstCol": "Prvi stolpec", + "SSE.Views.PrintTitlesDialog.textFirstRow": "Prva vrstica", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Stolpci", "SSE.Views.RightMenu.txtCellSettings": "Nastavitve celice", "SSE.Views.RightMenu.txtChartSettings": "Nastavitve grafa", @@ -925,15 +1050,19 @@ "SSE.Views.ShapeSettings.strStroke": "Črta", "SSE.Views.ShapeSettings.strTransparency": "Motnost", "SSE.Views.ShapeSettings.textAdvanced": "Prikaži napredne nastavitve", + "SSE.Views.ShapeSettings.textAngle": "Kot", "SSE.Views.ShapeSettings.textBorderSizeErr": "Vnesena vrednost je nepravilna.
    Prosim vnesite vrednost med 0 pt in 1584 pt.", "SSE.Views.ShapeSettings.textColor": "Barvna izpolnitev", "SSE.Views.ShapeSettings.textDirection": "Smer", "SSE.Views.ShapeSettings.textEmptyPattern": "Ni vzorcev", + "SSE.Views.ShapeSettings.textFlip": "Prezrcali", "SSE.Views.ShapeSettings.textFromFile": "z datoteke", "SSE.Views.ShapeSettings.textFromStorage": "Iz shrambe", "SSE.Views.ShapeSettings.textFromUrl": "z URL", "SSE.Views.ShapeSettings.textGradient": "Gradient", "SSE.Views.ShapeSettings.textGradientFill": "Polnjenje gradienta", + "SSE.Views.ShapeSettings.textHintFlipH": "Zrcali horizontalno", + "SSE.Views.ShapeSettings.textHintFlipV": "Zrcali vertikalno", "SSE.Views.ShapeSettings.textImageTexture": "Slika ali tekstura", "SSE.Views.ShapeSettings.textLinear": "Linearna", "SSE.Views.ShapeSettings.textNoFill": "Ni polnila", @@ -961,6 +1090,7 @@ "SSE.Views.ShapeSettingsAdvanced.strMargins": "Oblazinjenje besedila", "SSE.Views.ShapeSettingsAdvanced.textAlt": "Nadomestno besedilo", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Opis", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "Kot", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Puščice", "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Začetna velikost", "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Začetni stil", @@ -970,6 +1100,7 @@ "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Končna velikost", "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Končni slog", "SSE.Views.ShapeSettingsAdvanced.textFlat": "Ploščat", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Prezrcaljeno", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Višina", "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Vrsta pridruževanja", "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Nenehna razmerja", @@ -984,25 +1115,33 @@ "SSE.Views.ShapeSettingsAdvanced.textTop": "Vrh", "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Uteži & puščice", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Širina", + "SSE.Views.SignatureSettings.txtContinueEditing": "Vseeno uredi", "SSE.Views.SlicerAddDialog.textColumns": "Stolpci", + "SSE.Views.SlicerSettings.textAsc": "Naraščajoče", "SSE.Views.SlicerSettings.textAZ": "A do Ž", + "SSE.Views.SlicerSettings.textButtons": "Gumbi", "SSE.Views.SlicerSettings.textColumns": "Stolpci", "SSE.Views.SlicerSettings.textDesc": "Padajoče", "SSE.Views.SlicerSettings.textHeight": "Višina", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Gumbi", "SSE.Views.SlicerSettingsAdvanced.strColumns": "Stolpci", "SSE.Views.SlicerSettingsAdvanced.strHeight": "Višina", "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Pokaži nogo", "SSE.Views.SlicerSettingsAdvanced.textAlt": "Nadomestno besedilo", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Opis", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Naraščajoče", "SSE.Views.SlicerSettingsAdvanced.textAZ": "A do Ž", "SSE.Views.SlicerSettingsAdvanced.textDesc": "Padajoče", "SSE.Views.SlicerSettingsAdvanced.textHeader": "Glava", "SSE.Views.SlicerSettingsAdvanced.textName": "Ime", + "SSE.Views.SortDialog.textAsc": "Naraščajoče", "SSE.Views.SortDialog.textAuto": "Samodejeno", "SSE.Views.SortDialog.textAZ": "A do Ž", + "SSE.Views.SortDialog.textBelow": "Pod", "SSE.Views.SortDialog.textCellColor": "Barva celice", "SSE.Views.SortDialog.textColumn": "Stolpec", "SSE.Views.SortDialog.textDesc": "Padajoče", + "SSE.Views.SortDialog.textFontColor": "Barva pisave", "SSE.Views.SortDialog.textLeft": "Levo", "SSE.Views.SortDialog.textMoreCols": "(Več stolpcev ...)", "SSE.Views.SortDialog.textMoreRows": "(Več vrstic ...)", @@ -1012,6 +1151,7 @@ "SSE.Views.SpecialPasteDialog.textAll": "Vse", "SSE.Views.SpecialPasteDialog.textComments": "Komentarji", "SSE.Views.SpecialPasteDialog.textFormats": "Formati", + "SSE.Views.SpecialPasteDialog.textFormulas": "Formule", "SSE.Views.SpecialPasteDialog.textNone": "Nič", "SSE.Views.SpecialPasteDialog.textPaste": "Prilepi", "SSE.Views.Spellcheck.textChange": "Spremeni", @@ -1027,6 +1167,7 @@ "SSE.Views.Statusbar.filteredRecordsText": "{0} od {1} zadetkov filtriranih", "SSE.Views.Statusbar.itemAverage": "POVPREČNA", "SSE.Views.Statusbar.itemCopy": "Kopiraj", + "SSE.Views.Statusbar.itemCount": "Štetje", "SSE.Views.Statusbar.itemDelete": "Izbriši", "SSE.Views.Statusbar.itemHidden": "Skrito", "SSE.Views.Statusbar.itemHide": "Skrij", @@ -1074,6 +1215,7 @@ "SSE.Views.TextArtSettings.strSize": "Size", "SSE.Views.TextArtSettings.strStroke": "Stroke", "SSE.Views.TextArtSettings.strTransparency": "Opacity", + "SSE.Views.TextArtSettings.textAngle": "Kot", "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", @@ -1127,8 +1269,10 @@ "SSE.Views.Toolbar.textAlignTop": "Poravnaj vrh", "SSE.Views.Toolbar.textAllBorders": "Vse meje", "SSE.Views.Toolbar.textAuto": "Samodejno", + "SSE.Views.Toolbar.textAutoColor": "Samodejeno", "SSE.Views.Toolbar.textBold": "Krepko", "SSE.Views.Toolbar.textBordersColor": "Barva obrobe", + "SSE.Views.Toolbar.textBordersStyle": "Slogi obrob", "SSE.Views.Toolbar.textBottomBorders": "Meje na dnu", "SSE.Views.Toolbar.textCenterBorders": "Notranje vertikalne meje", "SSE.Views.Toolbar.textClockwise": "Kot v smeri urinega kazalca", @@ -1187,9 +1331,11 @@ "SSE.Views.Toolbar.tipDigStyleCurrency": "Slog valute", "SSE.Views.Toolbar.tipDigStylePercent": "Slog odstotkov", "SSE.Views.Toolbar.tipEditChart": "Uredi grafikon", + "SSE.Views.Toolbar.tipEditHeader": "Uredi glavo ali nogo", "SSE.Views.Toolbar.tipFontColor": "Barva pisave", "SSE.Views.Toolbar.tipFontName": "Ime pisave", "SSE.Views.Toolbar.tipFontSize": "Velikost pisave", + "SSE.Views.Toolbar.tipImgAlign": "Poravnaj predmete", "SSE.Views.Toolbar.tipIncDecimal": "Povečaj Decimal", "SSE.Views.Toolbar.tipIncFont": "Prirastek velikosti pisave", "SSE.Views.Toolbar.tipInsertChart": "Vstavi grafikon", @@ -1280,10 +1426,13 @@ "SSE.Views.Toolbar.txtTime": "Čas", "SSE.Views.Toolbar.txtUnmerge": "Razdruži celice", "SSE.Views.Toolbar.txtYen": "¥ Jen", + "SSE.Views.Top10FilterDialog.txtBottom": "Spodaj", "SSE.Views.Top10FilterDialog.txtBy": "od", "SSE.Views.Top10FilterDialog.txtItems": "Izdelek", "SSE.Views.ValueFieldSettingsDialog.txtAverage": "POVPREČNA", "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 od %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Štetje", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Štetje števil", "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Ime po meri", "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Indeks", "SSE.Views.ViewManagerDlg.closeButtonText": "Zapri", @@ -1294,5 +1443,6 @@ "SSE.Views.ViewTab.textClose": "Zapri", "SSE.Views.ViewTab.textCreate": "Novo", "SSE.Views.ViewTab.textDefault": "Privzeto", - "SSE.Views.ViewTab.textHeadings": "Naslovi" + "SSE.Views.ViewTab.textHeadings": "Naslovi", + "SSE.Views.ViewTab.textZoom": "Povečaj" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 5eb529a4af..fe4cd222ad 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -1,647 +1,576 @@ { - "Common.Controllers.Collaboration.textAddReply": "Afegir una Resposta", - "Common.Controllers.Collaboration.textCancel": "Cancel·lar", - "Common.Controllers.Collaboration.textDeleteComment": "Esborrar comentari", - "Common.Controllers.Collaboration.textDeleteReply": "Esborrar resposta", - "Common.Controllers.Collaboration.textDone": "Fet", - "Common.Controllers.Collaboration.textEdit": "Editar", - "Common.Controllers.Collaboration.textEditUser": "Usuaris que editen el fitxer:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Vols suprimir aquest comentari?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Voleu suprimir aquesta resposta?", - "Common.Controllers.Collaboration.textReopen": "Reobrir", - "Common.Controllers.Collaboration.textResolve": "Resol", - "Common.Controllers.Collaboration.textYes": "Sí", - "Common.UI.ThemeColorPalette.textCustomColors": "Colors Personalitzats", - "Common.UI.ThemeColorPalette.textStandartColors": "Colors Estàndards", - "Common.UI.ThemeColorPalette.textThemeColors": "Colors Tema", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Afegir una Resposta", - "Common.Views.Collaboration.textBack": "Enrere", - "Common.Views.Collaboration.textCancel": "Cancel·lar", - "Common.Views.Collaboration.textCollaboration": "Col·laboració", - "Common.Views.Collaboration.textDone": "Fet", - "Common.Views.Collaboration.textEditReply": "Editar la Resposta", - "Common.Views.Collaboration.textEditUsers": "Usuaris", - "Common.Views.Collaboration.textEditСomment": "Editar el Comentari", - "Common.Views.Collaboration.textNoComments": "Aquest full de càlcul no conté comentaris", - "Common.Views.Collaboration.textСomments": "Comentaris", - "SSE.Controllers.AddChart.txtDiagramTitle": "Gràfic Títol", - "SSE.Controllers.AddChart.txtSeries": "Series", - "SSE.Controllers.AddChart.txtXAxis": "Eix X", - "SSE.Controllers.AddChart.txtYAxis": "Eix Y", - "SSE.Controllers.AddContainer.textChart": "Gràfic", - "SSE.Controllers.AddContainer.textFormula": "Funció", - "SSE.Controllers.AddContainer.textImage": "Imatge", - "SSE.Controllers.AddContainer.textOther": "Altre", - "SSE.Controllers.AddContainer.textShape": "Forma", - "SSE.Controllers.AddLink.textInvalidRange": "ERROR! Interval de cel·les no vàlid", - "SSE.Controllers.AddLink.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", - "SSE.Controllers.AddOther.textCancel": "Cancel·lar", - "SSE.Controllers.AddOther.textContinue": "Continua", - "SSE.Controllers.AddOther.textDelete": "Esborrar", - "SSE.Controllers.AddOther.textDeleteDraft": "Vols suprimir l'esborrany?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Cal que especifiqueu l’enllaç de la imatge.", - "SSE.Controllers.AddOther.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Les accions de copiar, tallar i enganxar mitjançant el menú contextual només es realitzaran dins del fitxer actual.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Afegir comentari", - "SSE.Controllers.DocumentHolder.menuAddLink": "Afegir Enllaç", - "SSE.Controllers.DocumentHolder.menuCell": "Cel·la", - "SSE.Controllers.DocumentHolder.menuCopy": "Copiar", - "SSE.Controllers.DocumentHolder.menuCut": "Tallar", - "SSE.Controllers.DocumentHolder.menuDelete": "Esborrar", - "SSE.Controllers.DocumentHolder.menuEdit": "Editar", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Congela Panells", - "SSE.Controllers.DocumentHolder.menuHide": "Amaga", - "SSE.Controllers.DocumentHolder.menuMerge": "Combinar", - "SSE.Controllers.DocumentHolder.menuMore": "Més", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Obrir Enllaç", - "SSE.Controllers.DocumentHolder.menuPaste": "Pegar", - "SSE.Controllers.DocumentHolder.menuShow": "Mostra", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Descongelar Panells", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Anul·lar Combinació", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Desenvolupar", - "SSE.Controllers.DocumentHolder.menuViewComment": "Veure Comentari", - "SSE.Controllers.DocumentHolder.menuWrap": "Envoltura", - "SSE.Controllers.DocumentHolder.sheetCancel": "Cancel·la", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Accions de Copiar, Tallar i Pegar ", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "No mostrar de nou", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Només quedaran les dades de la cel·la superior esquerra de la cel·la fusionada.
    Estàs segur que vols continuar?", - "SSE.Controllers.EditCell.textAuto": "Auto", - "SSE.Controllers.EditCell.textFonts": "Fonts", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ERROR! El nombre màxim de sèries de dades per gràfic és de 255.", - "SSE.Controllers.EditChart.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.EditChart.textAuto": "Auto", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Entre Marques de Graduació", - "SSE.Controllers.EditChart.textBillions": "Bilions", - "SSE.Controllers.EditChart.textBottom": "Inferior", - "SSE.Controllers.EditChart.textCenter": "Centre", - "SSE.Controllers.EditChart.textCross": "Creu", - "SSE.Controllers.EditChart.textCustom": "Personalitzat", - "SSE.Controllers.EditChart.textFit": "Amplada Ajustada", - "SSE.Controllers.EditChart.textFixed": "Fixat", - "SSE.Controllers.EditChart.textHigh": "Alt", - "SSE.Controllers.EditChart.textHorizontal": "Horitzontal", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Centenars", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "In", - "SSE.Controllers.EditChart.textInnerBottom": "Part inferior interior", - "SSE.Controllers.EditChart.textInnerTop": "Part superior interior", - "SSE.Controllers.EditChart.textLeft": "Esquerra", - "SSE.Controllers.EditChart.textLeftOverlay": "Superposició Esquerra", - "SSE.Controllers.EditChart.textLow": "Baix", - "SSE.Controllers.EditChart.textManual": "Manual", - "SSE.Controllers.EditChart.textMaxValue": "Valor Màxim", - "SSE.Controllers.EditChart.textMillions": "Milions", - "SSE.Controllers.EditChart.textMinValue": "Valor Mínim", - "SSE.Controllers.EditChart.textNextToAxis": "Al costat del eix", - "SSE.Controllers.EditChart.textNone": "Cap", - "SSE.Controllers.EditChart.textNoOverlay": "Sense Superposició", - "SSE.Controllers.EditChart.textOnTickMarks": "Marques de Graduació", - "SSE.Controllers.EditChart.textOut": "Fora", - "SSE.Controllers.EditChart.textOuterTop": "Fora Superior", - "SSE.Controllers.EditChart.textOverlay": "Superposició", - "SSE.Controllers.EditChart.textRight": "Dreta", - "SSE.Controllers.EditChart.textRightOverlay": "Superposició Dreta", - "SSE.Controllers.EditChart.textRotated": "Rotació", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Milers", - "SSE.Controllers.EditChart.textTop": "Superior", - "SSE.Controllers.EditChart.textTrillions": "Trilions", - "SSE.Controllers.EditChart.textValue": "Valor", - "SSE.Controllers.EditContainer.textCell": "Cel·la", - "SSE.Controllers.EditContainer.textChart": "Gràfic", - "SSE.Controllers.EditContainer.textHyperlink": "Hiperenllaç", - "SSE.Controllers.EditContainer.textImage": "Imatge", - "SSE.Controllers.EditContainer.textSettings": "Configuració", - "SSE.Controllers.EditContainer.textShape": "Forma", - "SSE.Controllers.EditContainer.textTable": "Taula", - "SSE.Controllers.EditContainer.textText": "Text", - "SSE.Controllers.EditHyperlink.textDefault": "Interval Seleccionat", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Cal que especifiqueu l’enllaç de la imatge.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Enllaç extern", - "SSE.Controllers.EditHyperlink.textInternalLink": "Rang de Dades Intern", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Interval de cel·les no vàlid", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Buits}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Heu de triar almenys un valor", - "SSE.Controllers.FilterOptions.textErrorTitle": "Avis", - "SSE.Controllers.FilterOptions.textSelectAll": "Selecciona-ho tot ", - "SSE.Controllers.Main.advCSVOptions": "Trieu Opcions CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Posar la teva contrasenya:", - "SSE.Controllers.Main.advDRMOptions": "Arxiu Protegit", - "SSE.Controllers.Main.advDRMPassword": "Contrasenya", - "SSE.Controllers.Main.applyChangesTextText": "Carregant dades...", - "SSE.Controllers.Main.applyChangesTitleText": "Carregant Dades", - "SSE.Controllers.Main.closeButtonText": "Tancar Arxiu", - "SSE.Controllers.Main.convertationTimeoutText": "Conversió fora de temps", - "SSE.Controllers.Main.criticalErrorExtText": "Prem \"Acceptar\" per tornar a la llista de documents", - "SSE.Controllers.Main.criticalErrorTitle": "Error", - "SSE.Controllers.Main.downloadErrorText": "Descàrrega fallida.", - "SSE.Controllers.Main.downloadMergeText": "Descarregant...", - "SSE.Controllers.Main.downloadMergeTitle": "Descarregant", - "SSE.Controllers.Main.downloadTextText": "Descarregar Full de Càlcul", - "SSE.Controllers.Main.downloadTitleText": "Descàrrega de full de càlcul", - "SSE.Controllers.Main.errorAccessDeny": "Intenteu realitzar una acció per la qual no teniu drets.
    Poseu-vos en contacte amb l'administrador del servidor de documents.", - "SSE.Controllers.Main.errorArgsRange": "Un error a la fórmula introduïda.
    S'utilitza un rang d'arguments incorrecte.", - "SSE.Controllers.Main.errorAutoFilterChange": "L'operació no està permesa, ja que es tracta de canviar les cel·les d'una taula del full de treball.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "L'operació no es va poder fer per a les cel·les seleccionades, ja que no es pot moure una part de la taula.
    Seleccioneu un altre rang de dades de manera que s'hagi canviat tota la taula i es torna a intentar.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "L'operació no s'ha pogut fer per a l'interval seleccionat de cel·les.
    Seleccioneu un interval de dades uniforme diferent de l'existent i torneu-ho a provar de nou.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L’operació no es pot realitzar perquè l’àrea conté cel·les filtrades.
    Desfeu els elements filtrats i proveu-ho de nou.", - "SSE.Controllers.Main.errorBadImageUrl": "Enllaç de la Imatge Incorrecte", - "SSE.Controllers.Main.errorChangeArray": "No podeu canviar part d'una matriu.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. El document no es pot editar ara mateix.", - "SSE.Controllers.Main.errorConnectToServer": "El document no s'ha pogut desar. Comproveu la configuració de la connexió o poseu-vos en contacte amb l'administrador.
    Quan feu clic al botó \"D'acord\", se us demanarà que descarregueu el document.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
    Seleccioneu un únic rang i proveu-ho de nou.", - "SSE.Controllers.Main.errorCountArg": "Un error en la fórmula introduïda.
    S'utilitza un nombre d'arguments incorrecte.", - "SSE.Controllers.Main.errorCountArgExceed": "Un error a la fórmula introduïda.
    Supera el nombre d’arguments.", - "SSE.Controllers.Main.errorCreateDefName": "No es poden editar els intervals anomenats existents i els nous no es poden crear
    en el moment en què s’editen alguns.", - "SSE.Controllers.Main.errorDatabaseConnection": "Error extern.
    Error de connexió de base de dades. Contacteu amb l'assistència en cas que l'error continuï.", - "SSE.Controllers.Main.errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", - "SSE.Controllers.Main.errorDataRange": "Interval de dades incorrecte.", - "SSE.Controllers.Main.errorDefaultMessage": "Codi Error:%1", - "SSE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error durant el treball amb el document.
    Utilitzeu l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", - "SSE.Controllers.Main.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "SSE.Controllers.Main.errorFileRequest": "Error extern.
    Error de sol·licitud de fitxer. Contacteu amb l'assistència en cas que l'error continuï.", - "SSE.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.", - "SSE.Controllers.Main.errorFileVKey": "Error extern.
    Clau de seguretat incorrecta. Contacteu amb l'assistència en cas que l'error continuï.", - "SSE.Controllers.Main.errorFillRange": "No s'ha pogut omplir el rang de cel·les seleccionat.
    Totes les cel·les fusionades han de tenir la mateixa mida.", - "SSE.Controllers.Main.errorFormulaName": "Un error a la fórmula introduïda.
    S'utilitza un nom de fórmula incorrecte.", - "SSE.Controllers.Main.errorFormulaParsing": "Error intern al analitzar la fórmula.", - "SSE.Controllers.Main.errorFrmlMaxLength": "No podeu afegir aquesta fórmula ja que la seva longitud supera els 8192 caràcters.
    Editeu-la i proveu-la de nou.", - "SSE.Controllers.Main.errorFrmlMaxReference": "No podeu introduir aquesta fórmula perquè té massa valors, referències de cel·les,
    i/o noms.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Els valors de text de les fórmules són limitats a 255 caràcters.
    Utilitzeu la funció CONCATENATE o l'operador de concatenació (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "La funció fa referència a un full que no existeix.
    Comproveu les dades i proveu-ho de nou.", - "SSE.Controllers.Main.errorInvalidRef": "Introduïu un nom correcte per a la selecció o una referència vàlida a la qual aneu dirigits.", - "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de la clau desconegut", - "SSE.Controllers.Main.errorKeyExpire": "El descriptor de la clau ha caducat", - "SSE.Controllers.Main.errorLockedAll": "L'operació no s'ha pogut fer ja que un altre usuari ha bloquejat el full.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "De moment no es pot canviar el nom del full ja que el torna a anomenar un altre usuari", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Ha fallat la càrrega del document. Seleccioneu un fitxer diferent.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Ha fallat la fusió.", - "SSE.Controllers.Main.errorMaxPoints": "El nombre màxim de punts de la sèrie per gràfic és de 4096.", - "SSE.Controllers.Main.errorMoveRange": "No es pot canviar part d’una cel·la fusionada", - "SSE.Controllers.Main.errorMultiCellFormula": "Les fórmules de matrius multicel·lulars no estan permeses a les taules.", - "SSE.Controllers.Main.errorOpensource": "Mitjançant la versió gratuïta de la comunitat, només podeu obrir documents per a la visualització. Per accedir a editors web per a mòbils, cal una llicència comercial.", - "SSE.Controllers.Main.errorOpenWarning": "La longitud d'una de les fórmules del fitxer ha excedit el límit de 8192 caràcters permès.
    La formula s'ha esborrat.", - "SSE.Controllers.Main.errorOperandExpected": "La sintaxi de la funció introduïda no és correcta. Comproveu si us falta un dels parèntesis - '(' o ')'.", - "SSE.Controllers.Main.errorPasteMaxRange": "L’àrea de còpia i enganxa no coincideix.
    Seleccioneu una àrea amb la mateixa mida o feu clic a la primera cel·la d’una fila per enganxar les cel·les copiades.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Malauradament, no és possible imprimir més de 1500 pàgines a la vegada en la versió actual del programa.
    Aquesta restricció serà eliminada en les properes versions.", - "SSE.Controllers.Main.errorProcessSaveResult": "Desament Fallit", - "SSE.Controllers.Main.errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", - "SSE.Controllers.Main.errorSessionAbsolute": "La sessió d’edició del document ha caducat. Torneu a carregar la pàgina.", - "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.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.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Error extern.
    GUID inesperat. Contacteu amb l'assistència en cas que l'error continuï.", - "SSE.Controllers.Main.errorUpdateVersion": "La versió del fitxer s'ha canviat. La pàgina es tornarà a carregar.", - "SSE.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.", - "SSE.Controllers.Main.errorUserDrop": "Ara no es pot accedir al fitxer.", - "SSE.Controllers.Main.errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel pla de preus", - "SSE.Controllers.Main.errorViewerDisconnect": "La connexió es perd. Encara podeu veure el document,
    però no podreu descarregar-lo fins que no es restableixi la connexió i es torni a carregar la pàgina.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Un error a la fórmula introduïda.
    S'utilitza un número incorrecte de claudàtors.", - "SSE.Controllers.Main.errorWrongOperator": "Error en la fórmula introduïda. S'utilitza un operador incorrecte.
    Corregiu l'error.", - "SSE.Controllers.Main.leavePageText": "Heu fet canvis no guardats en aquest document. Feu clic a \"Continua en aquesta pàgina\" per esperar la recuperació automàtica del document. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", - "SSE.Controllers.Main.loadFontsTextText": "Carregant dades...", - "SSE.Controllers.Main.loadFontsTitleText": "Carregant Dades", - "SSE.Controllers.Main.loadFontTextText": "Carregant dades...", - "SSE.Controllers.Main.loadFontTitleText": "Carregant Dades", - "SSE.Controllers.Main.loadImagesTextText": "Carregant imatges...", - "SSE.Controllers.Main.loadImagesTitleText": "Carregant Imatges", - "SSE.Controllers.Main.loadImageTextText": "Carregant imatge...", - "SSE.Controllers.Main.loadImageTitleText": "Carregant Imatge", - "SSE.Controllers.Main.loadingDocumentTextText": "Carregant full de càlcul...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Carregant full de càlcul", - "SSE.Controllers.Main.mailMergeLoadFileText": "Carregant l'Origen de Dades...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Carregant l'Origen de Dades", - "SSE.Controllers.Main.notcriticalErrorTitle": "Avis", - "SSE.Controllers.Main.openErrorText": "S'ha produït un error en obrir el fitxer.", - "SSE.Controllers.Main.openTextText": "Obrint Document...", - "SSE.Controllers.Main.openTitleText": "Obrir Document", - "SSE.Controllers.Main.pastInMergeAreaError": "No es pot canviar part d’una cel·la fusionada", - "SSE.Controllers.Main.printTextText": "Imprimint Document...", - "SSE.Controllers.Main.printTitleText": "Imprimir Document", - "SSE.Controllers.Main.reloadButtonText": "Recarregar Pàgina", - "SSE.Controllers.Main.requestEditFailedMessageText": "Algú està editant aquest document ara mateix. Si us plau, intenta-ho més tard.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Accés denegat", - "SSE.Controllers.Main.saveErrorText": "S'ha produït un error en desar el fitxer.", - "SSE.Controllers.Main.savePreparingText": "Preparant per guardar", - "SSE.Controllers.Main.savePreparingTitle": "Preparant per guardar. Si us plau, esperi", - "SSE.Controllers.Main.saveTextText": "Desant Document...", - "SSE.Controllers.Main.saveTitleText": "Desant Document", - "SSE.Controllers.Main.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", - "SSE.Controllers.Main.sendMergeText": "S'està enviant la Combinació...", - "SSE.Controllers.Main.sendMergeTitle": "S'està enviant la Combinació", - "SSE.Controllers.Main.textAnonymous": "Anònim", - "SSE.Controllers.Main.textBack": "Enrere", - "SSE.Controllers.Main.textBuyNow": "Visita el Lloc Web", - "SSE.Controllers.Main.textCancel": "Cancel·la", - "SSE.Controllers.Main.textClose": "Tancar", - "SSE.Controllers.Main.textContactUs": "Equip de Vendes", - "SSE.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.", - "SSE.Controllers.Main.textDone": "Fet", - "SSE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
    Voleu executar macros?", - "SSE.Controllers.Main.textLoadingDocument": "Carregant full de càlcul", - "SSE.Controllers.Main.textNo": "No", - "SSE.Controllers.Main.textNoLicenseTitle": "Heu arribat al límit de la llicència", - "SSE.Controllers.Main.textOK": "Acceptar", - "SSE.Controllers.Main.textPaidFeature": "Funció de pagament", - "SSE.Controllers.Main.textPassword": "Contrasenya", - "SSE.Controllers.Main.textPreloader": "Carregant...", - "SSE.Controllers.Main.textRemember": "Recorda la meva elecció", - "SSE.Controllers.Main.textShape": "Forma", - "SSE.Controllers.Main.textStrict": "Mode estricte", - "SSE.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.", - "SSE.Controllers.Main.textUsername": "Usuari", - "SSE.Controllers.Main.textYes": "Sí", - "SSE.Controllers.Main.titleLicenseExp": "Llicència Caducada", - "SSE.Controllers.Main.titleServerVersion": "S'ha actualitzat l'editor", - "SSE.Controllers.Main.titleUpdateVersion": "Versió canviada", - "SSE.Controllers.Main.txtAccent": "Accent", - "SSE.Controllers.Main.txtArt": "El seu text aquí", - "SSE.Controllers.Main.txtBasicShapes": "Formes Bàsiques", - "SSE.Controllers.Main.txtButtons": "Botons", - "SSE.Controllers.Main.txtCallouts": "Trucades", - "SSE.Controllers.Main.txtCharts": "Gràfics", - "SSE.Controllers.Main.txtDelimiter": "Delimitador", - "SSE.Controllers.Main.txtDiagramTitle": "Gràfic Títol", - "SSE.Controllers.Main.txtEditingMode": "Estableix el mode d'edició ...", - "SSE.Controllers.Main.txtEncoding": "Codificació", - "SSE.Controllers.Main.txtErrorLoadHistory": "Ha fallat la càrrega del historial", - "SSE.Controllers.Main.txtFiguredArrows": "Fletxes Figurades", - "SSE.Controllers.Main.txtLines": "Línies", - "SSE.Controllers.Main.txtMath": "Matemàtiques", - "SSE.Controllers.Main.txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer", - "SSE.Controllers.Main.txtRectangles": "Rectangles", - "SSE.Controllers.Main.txtSeries": "Series", - "SSE.Controllers.Main.txtSpace": "Espai", - "SSE.Controllers.Main.txtStarsRibbons": "Estrelles i Cintes", - "SSE.Controllers.Main.txtStyle_Bad": "Dolent", - "SSE.Controllers.Main.txtStyle_Calculation": "Càlcul", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Cel·la de Control", - "SSE.Controllers.Main.txtStyle_Comma": "Financier", - "SSE.Controllers.Main.txtStyle_Currency": "Moneda", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Text Explicatiu", - "SSE.Controllers.Main.txtStyle_Good": "Bo", - "SSE.Controllers.Main.txtStyle_Heading_1": "Títol 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Títol 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Títol 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Títol 4", - "SSE.Controllers.Main.txtStyle_Input": "Entrada", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Cel·la Enllaçada", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutre", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Nota", - "SSE.Controllers.Main.txtStyle_Output": "Sortida", - "SSE.Controllers.Main.txtStyle_Percent": "Percentatge", - "SSE.Controllers.Main.txtStyle_Title": "Títol", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Text d'Advertència", - "SSE.Controllers.Main.txtTab": "Pestanya", - "SSE.Controllers.Main.txtXAxis": "Eix X", - "SSE.Controllers.Main.txtYAxis": "Eix Y", - "SSE.Controllers.Main.unknownErrorText": "Error Desconegut.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", - "SSE.Controllers.Main.uploadImageExtMessage": "Format imatge desconegut", - "SSE.Controllers.Main.uploadImageFileCountMessage": "No hi ha imatges pujades.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Superat el límit màxim de la imatge.", - "SSE.Controllers.Main.uploadImageTextText": "Pujant imatge...", - "SSE.Controllers.Main.uploadImageTitleText": "Pujant Imatge", - "SSE.Controllers.Main.waitText": "Si us plau, esperi...", - "SSE.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ó.", - "SSE.Controllers.Main.warnLicenseExp": "La seva llicencia ha caducat.
    Si us plau, actualitzi la llicencia i recarregui la pàgina.", - "SSE.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.", - "SSE.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.", - "SSE.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.", - "SSE.Controllers.Main.warnProcessRightsChange": "Se li ha denegat el dret a editar el fitxer.", - "SSE.Controllers.Search.textNoTextFound": "Text no Trobat", - "SSE.Controllers.Search.textReplaceAll": "Canviar Tot", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Avis", - "SSE.Controllers.Settings.txtDe": "Alemany", - "SSE.Controllers.Settings.txtEn": "Anglès", - "SSE.Controllers.Settings.txtEs": "Castellà", - "SSE.Controllers.Settings.txtFr": "Francès", - "SSE.Controllers.Settings.txtIt": "Italià", - "SSE.Controllers.Settings.txtPl": "Polonès", - "SSE.Controllers.Settings.txtRu": "Rus", - "SSE.Controllers.Settings.warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les funcions, excepte el text.
    Esteu segur que voleu continuar?", - "SSE.Controllers.Statusbar.cancelButtonText": "Cancel·la", - "SSE.Controllers.Statusbar.errNameExists": "El full de treball amb aquest nom ja existeix.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Un nom de full no pot contenir els caràcters: \\, /, *,?, [,],:", - "SSE.Controllers.Statusbar.errNotEmpty": "El nom del full no ha d'estar buit", - "SSE.Controllers.Statusbar.errorLastSheet": "El quadern de treball ha de tenir almenys un full de treball visible.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "No es pot suprimir el full de treball.", - "SSE.Controllers.Statusbar.menuDelete": "Esborrar", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplicar", - "SSE.Controllers.Statusbar.menuHide": "Amaga", - "SSE.Controllers.Statusbar.menuMore": "Més", - "SSE.Controllers.Statusbar.menuRename": "Renombrar", - "SSE.Controllers.Statusbar.menuUnhide": "Mostrar", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Avis", - "SSE.Controllers.Statusbar.strRenameSheet": "Canvia el nom de full", - "SSE.Controllers.Statusbar.strSheet": "Full", - "SSE.Controllers.Statusbar.strSheetName": "Nom Full", - "SSE.Controllers.Statusbar.textExternalLink": "Enllaç extern", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Els fulls de treball seleccionats poden contenir dades. Esteu segur que voleu continuar?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Heu fet canvis no guardats en aquest document. Feu clic a \"Continua en aquesta pàgina\" per esperar la recuperació automàtica del document. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Deixeu l'aplicació", - "SSE.Controllers.Toolbar.leaveButtonText": "Sortir d'aquesta Pàgina", - "SSE.Controllers.Toolbar.stayButtonText": "Queda't en aquesta Pàgina", - "SSE.Views.AddFunction.sCatDateAndTime": "Data i hora", - "SSE.Views.AddFunction.sCatEngineering": "Enginyeria", - "SSE.Views.AddFunction.sCatFinancial": "Financer", - "SSE.Views.AddFunction.sCatInformation": "Informació", - "SSE.Views.AddFunction.sCatLogical": "Lògic", - "SSE.Views.AddFunction.sCatLookupAndReference": "Busca i Referència", - "SSE.Views.AddFunction.sCatMathematic": "Matemàtica i trigonometria", - "SSE.Views.AddFunction.sCatStatistical": "Estadístiques", - "SSE.Views.AddFunction.sCatTextAndData": "Tex i dades", - "SSE.Views.AddFunction.textBack": "Enrere", - "SSE.Views.AddFunction.textGroups": "Categories", - "SSE.Views.AddLink.textAddLink": "Afegir Enllaç", - "SSE.Views.AddLink.textAddress": "Adreça", - "SSE.Views.AddLink.textDisplay": "Mostrar", - "SSE.Views.AddLink.textExternalLink": "Enllaç extern", - "SSE.Views.AddLink.textInsert": "Insertar", - "SSE.Views.AddLink.textInternalLink": "Rang de Dades Intern", - "SSE.Views.AddLink.textLink": "Enllaç", - "SSE.Views.AddLink.textLinkType": "Tipus Enllaç", - "SSE.Views.AddLink.textRange": "Rang", - "SSE.Views.AddLink.textRequired": "Obligatori", - "SSE.Views.AddLink.textSelectedRange": "Interval Seleccionat", - "SSE.Views.AddLink.textSheet": "Full", - "SSE.Views.AddLink.textTip": "Consells de Pantalla", - "SSE.Views.AddOther.textAddComment": "Afegir comentari", - "SSE.Views.AddOther.textAddress": "Adreça", - "SSE.Views.AddOther.textBack": "Enrere", - "SSE.Views.AddOther.textComment": "Comentari", - "SSE.Views.AddOther.textDone": "Fet", - "SSE.Views.AddOther.textFilter": "Filtre", - "SSE.Views.AddOther.textFromLibrary": "Imatge de Llibreria", - "SSE.Views.AddOther.textFromURL": "Imatge de URL", - "SSE.Views.AddOther.textImageURL": "Imatge URL", - "SSE.Views.AddOther.textInsert": "Insertar", - "SSE.Views.AddOther.textInsertImage": "Insertar Imatge", - "SSE.Views.AddOther.textLink": "Enllaç", - "SSE.Views.AddOther.textLinkSettings": "Propietats Enllaç", - "SSE.Views.AddOther.textSort": "Ordena i Filtra", - "SSE.Views.EditCell.textAccounting": "Comptabilitat", - "SSE.Views.EditCell.textAddCustomColor": "Afegir color personalitzat", - "SSE.Views.EditCell.textAlignBottom": "Alineació Inferior", - "SSE.Views.EditCell.textAlignCenter": "Centrar", - "SSE.Views.EditCell.textAlignLeft": "Alinear Esquerra", - "SSE.Views.EditCell.textAlignMiddle": "Alinear al Mig", - "SSE.Views.EditCell.textAlignRight": "Alinear Dreta", - "SSE.Views.EditCell.textAlignTop": "Alinear Superior", - "SSE.Views.EditCell.textAllBorders": "Tots els Costats", - "SSE.Views.EditCell.textAngleClockwise": "Angle en sentit horari", - "SSE.Views.EditCell.textAngleCounterclockwise": "Angle en sentit antihorari", - "SSE.Views.EditCell.textBack": "Enrere", - "SSE.Views.EditCell.textBorderStyle": "Estil de Vora", - "SSE.Views.EditCell.textBottomBorder": "Vora Inferior", - "SSE.Views.EditCell.textCellStyle": "Estil Cel·la", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Color", - "SSE.Views.EditCell.textCurrency": "Moneda", - "SSE.Views.EditCell.textCustomColor": "Color Personalitzat", - "SSE.Views.EditCell.textDate": "Data", - "SSE.Views.EditCell.textDiagDownBorder": "Vora Diagonal Descendent", - "SSE.Views.EditCell.textDiagUpBorder": "Vora Diagonal Ascendent", - "SSE.Views.EditCell.textDollar": "Dolar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Color d'Emplenament", - "SSE.Views.EditCell.textFonts": "Fonts", - "SSE.Views.EditCell.textFormat": "Format", - "SSE.Views.EditCell.textGeneral": "General", - "SSE.Views.EditCell.textHorizontalText": "Text Horitzontal", - "SSE.Views.EditCell.textInBorders": "Dins Vora", - "SSE.Views.EditCell.textInHorBorder": "Dins de la Vora Horitzontal", - "SSE.Views.EditCell.textInteger": "Enter", - "SSE.Views.EditCell.textInVertBorder": "Dins de la Vora Vertical", - "SSE.Views.EditCell.textJustified": "Justificat", - "SSE.Views.EditCell.textLeftBorder": "Vora Esquerra", - "SSE.Views.EditCell.textMedium": "Mitjà", - "SSE.Views.EditCell.textNoBorder": "Vora No", - "SSE.Views.EditCell.textNumber": "Nombre", - "SSE.Views.EditCell.textPercentage": "Percentatge", - "SSE.Views.EditCell.textPound": "Lliura", - "SSE.Views.EditCell.textRightBorder": "Vora Dreta", - "SSE.Views.EditCell.textRotateTextDown": "Girar Text cap a baix", - "SSE.Views.EditCell.textRotateTextUp": "Girar Text cap a munt", - "SSE.Views.EditCell.textRouble": "Ruble", - "SSE.Views.EditCell.textScientific": "Científic", - "SSE.Views.EditCell.textSize": "Mida", - "SSE.Views.EditCell.textText": "Text", - "SSE.Views.EditCell.textTextColor": "Color Text", - "SSE.Views.EditCell.textTextFormat": "Format Text", - "SSE.Views.EditCell.textTextOrientation": "Orientació del Text", - "SSE.Views.EditCell.textThick": "Gruixut", - "SSE.Views.EditCell.textThin": "Prim", - "SSE.Views.EditCell.textTime": "Hora", - "SSE.Views.EditCell.textTopBorder": "Vora Superior", - "SSE.Views.EditCell.textVerticalText": "Text Vertical", - "SSE.Views.EditCell.textWrapText": "Ajustar el text", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Afegir color personalitzat", - "SSE.Views.EditChart.textAuto": "Auto", - "SSE.Views.EditChart.textAxisCrosses": "Creus d’Eix", - "SSE.Views.EditChart.textAxisOptions": "Opcions de l’Eix", - "SSE.Views.EditChart.textAxisPosition": "Posició de l’Eix", - "SSE.Views.EditChart.textAxisTitle": "Títol de l’Eix", - "SSE.Views.EditChart.textBack": "Enrere", - "SSE.Views.EditChart.textBackward": "Tornar enrere", - "SSE.Views.EditChart.textBorder": "Vora", - "SSE.Views.EditChart.textBottom": "Inferior", - "SSE.Views.EditChart.textChart": "Gràfic", - "SSE.Views.EditChart.textChartTitle": "Gràfic Títol", - "SSE.Views.EditChart.textColor": "Color", - "SSE.Views.EditChart.textCrossesValue": "Valor Creu", - "SSE.Views.EditChart.textCustomColor": "Color Personalitzat", - "SSE.Views.EditChart.textDataLabels": "Etiquetes de Dades", - "SSE.Views.EditChart.textDesign": "Disseny", - "SSE.Views.EditChart.textDisplayUnits": "Unitats de Visualització", - "SSE.Views.EditChart.textFill": "Omplir", - "SSE.Views.EditChart.textForward": "Avançar", - "SSE.Views.EditChart.textGridlines": "Quadrícules", - "SSE.Views.EditChart.textHorAxis": "Eix Horitzontal", - "SSE.Views.EditChart.textHorizontal": "Horitzontal", - "SSE.Views.EditChart.textLabelOptions": "Opcions Etiqueta", - "SSE.Views.EditChart.textLabelPos": "Posició Etiqueta", - "SSE.Views.EditChart.textLayout": "Maquetació", - "SSE.Views.EditChart.textLeft": "Esquerra", - "SSE.Views.EditChart.textLeftOverlay": "Superposició Esquerra", - "SSE.Views.EditChart.textLegend": "Llegenda", - "SSE.Views.EditChart.textMajor": "Principal", - "SSE.Views.EditChart.textMajorMinor": "Principals i Secundaris", - "SSE.Views.EditChart.textMajorType": "Tipus Principal", - "SSE.Views.EditChart.textMaxValue": "Valor Màxim", - "SSE.Views.EditChart.textMinor": "Secundari", - "SSE.Views.EditChart.textMinorType": "Tipus Secundari", - "SSE.Views.EditChart.textMinValue": "Valor Mínim", - "SSE.Views.EditChart.textNone": "Cap", - "SSE.Views.EditChart.textNoOverlay": "Sense Superposició", - "SSE.Views.EditChart.textOverlay": "Superposició", - "SSE.Views.EditChart.textRemoveChart": "Esborrar Gràfic", - "SSE.Views.EditChart.textReorder": "Reordenar", - "SSE.Views.EditChart.textRight": "Dreta", - "SSE.Views.EditChart.textRightOverlay": "Superposició Dreta", - "SSE.Views.EditChart.textRotated": "Rotació", - "SSE.Views.EditChart.textSize": "Mida", - "SSE.Views.EditChart.textStyle": "Estil", - "SSE.Views.EditChart.textTickOptions": "Opcions de marques de graduació", - "SSE.Views.EditChart.textToBackground": "Enviar a un segon pla", - "SSE.Views.EditChart.textToForeground": "Porta a Primer pla", - "SSE.Views.EditChart.textTop": "Superior", - "SSE.Views.EditChart.textType": "Tipus", - "SSE.Views.EditChart.textValReverseOrder": "Valors en ordre invers", - "SSE.Views.EditChart.textVerAxis": "Eix Vertical", - "SSE.Views.EditChart.textVertical": "Vertical", - "SSE.Views.EditHyperlink.textBack": "Enrere", - "SSE.Views.EditHyperlink.textDisplay": "Mostrar", - "SSE.Views.EditHyperlink.textEditLink": "Editar Enllaç", - "SSE.Views.EditHyperlink.textExternalLink": "Enllaç extern", - "SSE.Views.EditHyperlink.textInternalLink": "Rang de Dades Intern", - "SSE.Views.EditHyperlink.textLink": "Enllaç", - "SSE.Views.EditHyperlink.textLinkType": "Tipus Enllaç", - "SSE.Views.EditHyperlink.textRange": "Rang", - "SSE.Views.EditHyperlink.textRemoveLink": "Esborrar Enllaç", - "SSE.Views.EditHyperlink.textScreenTip": "Consells de Pantalla", - "SSE.Views.EditHyperlink.textSheet": "Full", - "SSE.Views.EditImage.textAddress": "Adreça", - "SSE.Views.EditImage.textBack": "Enrere", - "SSE.Views.EditImage.textBackward": "Tornar enrere", - "SSE.Views.EditImage.textDefault": "Tamany real", - "SSE.Views.EditImage.textForward": "Avançar", - "SSE.Views.EditImage.textFromLibrary": "Imatge de Llibreria", - "SSE.Views.EditImage.textFromURL": "Imatge de URL", - "SSE.Views.EditImage.textImageURL": "Imatge URL", - "SSE.Views.EditImage.textLinkSettings": "Propietats Enllaç", - "SSE.Views.EditImage.textRemove": "Esborrar Imatge", - "SSE.Views.EditImage.textReorder": "Reordenar", - "SSE.Views.EditImage.textReplace": "Canviar", - "SSE.Views.EditImage.textReplaceImg": "Canviar Imatge", - "SSE.Views.EditImage.textToBackground": "Enviar a un segon pla", - "SSE.Views.EditImage.textToForeground": "Porta a Primer pla", - "SSE.Views.EditShape.textAddCustomColor": "Afegir color personalitzat", - "SSE.Views.EditShape.textBack": "Enrere", - "SSE.Views.EditShape.textBackward": "Tornar enrere", - "SSE.Views.EditShape.textBorder": "Vora", - "SSE.Views.EditShape.textColor": "Color", - "SSE.Views.EditShape.textCustomColor": "Color Personalitzat", - "SSE.Views.EditShape.textEffects": "Efectes", - "SSE.Views.EditShape.textFill": "Omplir", - "SSE.Views.EditShape.textForward": "Avançar", - "SSE.Views.EditShape.textOpacity": "Opacitat", - "SSE.Views.EditShape.textRemoveShape": "Esborrar Forma", - "SSE.Views.EditShape.textReorder": "Reordenar", - "SSE.Views.EditShape.textReplace": "Canviar", - "SSE.Views.EditShape.textSize": "Mida", - "SSE.Views.EditShape.textStyle": "Estil", - "SSE.Views.EditShape.textToBackground": "Enviar a un segon pla", - "SSE.Views.EditShape.textToForeground": "Porta a Primer pla", - "SSE.Views.EditText.textAddCustomColor": "Afegir Color Personalitzat", - "SSE.Views.EditText.textBack": "Enrere", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Color Personalitzat", - "SSE.Views.EditText.textFillColor": "Color d'Emplenament", - "SSE.Views.EditText.textFonts": "Fonts", - "SSE.Views.EditText.textSize": "Mida", - "SSE.Views.EditText.textTextColor": "Color Text", - "SSE.Views.FilterOptions.textClearFilter": "Esborra Filtre", - "SSE.Views.FilterOptions.textDeleteFilter": "Esborrar Filtre", - "SSE.Views.FilterOptions.textFilter": "Opcions Filtre", - "SSE.Views.Search.textByColumns": "Per Columnes", - "SSE.Views.Search.textByRows": "Per files", - "SSE.Views.Search.textDone": "Fet", - "SSE.Views.Search.textFind": "Buscar", - "SSE.Views.Search.textFindAndReplace": "Buscar i Canviar", - "SSE.Views.Search.textFormulas": "Formules", - "SSE.Views.Search.textHighlightRes": "Ressaltar els resultats", - "SSE.Views.Search.textLookIn": "Mirar a", - "SSE.Views.Search.textMatchCase": "Coincidir majúscules i minúscules", - "SSE.Views.Search.textMatchCell": "Coincidir Cel·la", - "SSE.Views.Search.textReplace": "Canviar", - "SSE.Views.Search.textSearch": "Cerca", - "SSE.Views.Search.textSearchBy": "Cerca", - "SSE.Views.Search.textSearchIn": "Cerca A", - "SSE.Views.Search.textSheet": "Full", - "SSE.Views.Search.textValues": "Valors", - "SSE.Views.Search.textWorkbook": "Llibre de treball", - "SSE.Views.Settings.textAbout": "Sobre", - "SSE.Views.Settings.textAddress": "adreça", - "SSE.Views.Settings.textApplication": "Aplicació", - "SSE.Views.Settings.textApplicationSettings": "Configurar Aplicació", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Enrere", - "SSE.Views.Settings.textBottom": "Inferior", - "SSE.Views.Settings.textCentimeter": "Centímetre", - "SSE.Views.Settings.textCollaboration": "Col·laboració", - "SSE.Views.Settings.textColorSchemes": "Esquema de Color", - "SSE.Views.Settings.textComment": "Comentari", - "SSE.Views.Settings.textCommentingDisplay": "Visualització de Comentaris", - "SSE.Views.Settings.textCreated": "Creació", - "SSE.Views.Settings.textCreateDate": "Data de creació", - "SSE.Views.Settings.textCustom": "Personalitzat", - "SSE.Views.Settings.textCustomSize": "Mida Personalitzada", - "SSE.Views.Settings.textDisableAll": "Inhabilita Tot", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Desactiveu totes les macros amb una notificació", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Desactiveu totes les macros sense una notificació", - "SSE.Views.Settings.textDisplayComments": "Comentaris", - "SSE.Views.Settings.textDisplayResolvedComments": "Comentaris Resolts", - "SSE.Views.Settings.textDocInfo": "Informació de full de càlcul", - "SSE.Views.Settings.textDocTitle": "Títol de full de càlcul", - "SSE.Views.Settings.textDone": "Fet", - "SSE.Views.Settings.textDownload": "Descarregar", - "SSE.Views.Settings.textDownloadAs": "Descarregar a...", - "SSE.Views.Settings.textEditDoc": "Editar Document", - "SSE.Views.Settings.textEmail": "Correu electrònic", - "SSE.Views.Settings.textEnableAll": "Activa Tot", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Habiliteu totes les macros sense una notificació", - "SSE.Views.Settings.textExample": "Exemple", - "SSE.Views.Settings.textFind": "Buscar", - "SSE.Views.Settings.textFindAndReplace": "Buscar i Canviar", - "SSE.Views.Settings.textFormat": "Format", - "SSE.Views.Settings.textFormulaLanguage": "Llenguatge de Formula", - "SSE.Views.Settings.textHelp": "Ajuda", - "SSE.Views.Settings.textHideGridlines": "Amaga Quadrícules", - "SSE.Views.Settings.textHideHeadings": "Amagar Encapçalaments", - "SSE.Views.Settings.textInch": "Polzada", - "SSE.Views.Settings.textLandscape": "Horitzontal", - "SSE.Views.Settings.textLastModified": "Última Modificació", - "SSE.Views.Settings.textLastModifiedBy": "Modificat per Últim cop Per", - "SSE.Views.Settings.textLeft": "Esquerra", - "SSE.Views.Settings.textLoading": "Carregant...", - "SSE.Views.Settings.textMacrosSettings": "Configuració de Macros", - "SSE.Views.Settings.textMargins": "Marges", - "SSE.Views.Settings.textOrientation": "Orientació", - "SSE.Views.Settings.textOwner": "Propietari", - "SSE.Views.Settings.textPoint": "Punt", - "SSE.Views.Settings.textPortrait": "Vertical", - "SSE.Views.Settings.textPoweredBy": "Impulsat per", - "SSE.Views.Settings.textPrint": "Imprimir", - "SSE.Views.Settings.textR1C1Style": "Estil de referència R1C1", - "SSE.Views.Settings.textRegionalSettings": "Configuració Regional", - "SSE.Views.Settings.textRight": "Dreta", - "SSE.Views.Settings.textSettings": "Configuració", - "SSE.Views.Settings.textShowNotification": "Mostra la Notificació", - "SSE.Views.Settings.textSpreadsheetFormats": "Formats de full de càlcul", - "SSE.Views.Settings.textSpreadsheetSettings": "Configuració del full de càlcul", - "SSE.Views.Settings.textSubject": "Assumpte", - "SSE.Views.Settings.textTel": "tel", - "SSE.Views.Settings.textTitle": "Títol", - "SSE.Views.Settings.textTop": "Superior", - "SSE.Views.Settings.textUnitOfMeasurement": "Unitat de Mesura", - "SSE.Views.Settings.textUploaded": "Penjat", - "SSE.Views.Settings.textVersion": "Versió", - "SSE.Views.Settings.unknownText": "Desconegut", - "SSE.Views.Toolbar.textBack": "Enrere" + "About": { + "textAbout": "Quant a...", + "textAddress": "Adreça", + "textBack": "Enrere", + "textEmail": "Correu electrònic", + "textPoweredBy": "Impulsat per", + "textTel": "Tel", + "textVersion": "Versió" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Advertiment", + "textAddComment": "Afegir comentari", + "textAddReply": "Afegir Resposta", + "textBack": "Enrere", + "textCancel": "Cancel·lar", + "textCollaboration": "Col·laboració", + "textComments": "Comentaris", + "textDeleteComment": "Suprimir Comentari", + "textDeleteReply": "Suprimir Resposta", + "textDone": "Fet", + "textEdit": "Editar", + "textEditComment": "Editar Comentari", + "textEditReply": "Editar Resposta", + "textEditUser": "Usuaris que editen el fitxer:", + "textMessageDeleteComment": "Segur que voleu suprimir aquest comentari?", + "textMessageDeleteReply": "Segur que vol suprimir aquesta resposta?", + "textNoComments": "Aquest document no conté comentaris", + "textReopen": "Reobrir", + "textResolve": "Resoldre", + "textTryUndoRedo": "Les funcions Desfer/Refer estan desactivades per al mode de coedició ràpida.", + "textUsers": "Usuaris" + }, + "ThemeColorPalette": { + "textCustomColors": "Colors Personalitzats", + "textStandartColors": "Colors Estàndard", + "textThemeColors": "Colors del Tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Les accions Copiar, retallar i enganxar utilitzant el menú contextual només es realitzaran en el fitxer actual.", + "menuAddComment": "Afegir comentari", + "menuAddLink": "Afegir Enllaç", + "menuCancel": "Cancel·lar", + "menuCell": "Cel·la", + "menuDelete": "Suprimir", + "menuEdit": "Editar", + "menuFreezePanes": "Congelar Panells", + "menuHide": "Amagar", + "menuMerge": "Combinar", + "menuMore": "Més", + "menuOpenLink": "Obrir Enllaç", + "menuShow": "Mostrar", + "menuUnfreezePanes": "Descongelar Panells", + "menuUnmerge": "Anul·lar Combinació", + "menuUnwrap": "Desembolicar", + "menuViewComment": "Veure Comentari", + "menuWrap": "Embolcall", + "notcriticalErrorTitle": "Advertiment", + "textCopyCutPasteActions": "Accions de Copiar, Tallar i Enganxar ", + "textDoNotShowAgain": "No ho tornis a mostrar", + "warnMergeLostData": "L'operació pot destruir les dades de les cel·les seleccionades. Voleu continuar?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "Esteu intentant realitzar una acció per la qual no teniu drets.
    Si us plau, poseu-vos en contacte amb l'administrador.", + "errorProcessSaveResult": "Error en desar.", + "errorServerVersion": "S'ha actualitzat la versió de l'editor. Es tornarà a carregar la pàgina per aplicar els canvis.", + "errorUpdateVersion": "La versió del fitxer s'ha canviat. La pàgina es tornarà a carregar.", + "leavePageText": "Teniu canvis no desats en aquest document. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "notcriticalErrorTitle": "Advertiment", + "SDK": { + "txtAccent": "Accent", + "txtArt": "El seu text aquí", + "txtDiagramTitle": "Títol del Gràfic", + "txtSeries": "Sèrie", + "txtStyle_Bad": "Dolent", + "txtStyle_Calculation": "Càlcul", + "txtStyle_Check_Cell": "Cel·la de Control", + "txtStyle_Comma": "Coma", + "txtStyle_Currency": "Moneda", + "txtStyle_Explanatory_Text": "Text Explicatiu", + "txtStyle_Good": "Bo", + "txtStyle_Heading_1": "Títol 1", + "txtStyle_Heading_2": "Títol 2", + "txtStyle_Heading_3": "Títol 3", + "txtStyle_Heading_4": "Títol 4", + "txtStyle_Input": "Entrada", + "txtStyle_Linked_Cell": "Cel·la Enllaçada", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Nota", + "txtStyle_Output": "Sortida", + "txtStyle_Percent": "Percentatge", + "txtStyle_Title": "Nom", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Text d'Advertència", + "txtXAxis": "Eix X", + "txtYAxis": "Eix Y" + }, + "textAnonymous": "Anònim", + "textBuyNow": "Visitar lloc web", + "textClose": "Tancar", + "textContactUs": "Contactar amb Vendes", + "textCustomLoader": "No teniu permisos per canviar el carregador. Si us plau, contacta amb el nostre departament de vendes per obtenir un pressupost.", + "textGuest": "Convidat", + "textHasMacros": "El fitxer conté macros automàtiques.
    Voleu executar macros?", + "textNo": "No", + "textNoLicenseTitle": "Heu arribat al límit de la llicència", + "textPaidFeature": "Funció de pagament", + "textRemember": "Recordar la meva elecció", + "textYes": "Sí", + "titleServerVersion": "Editor actualitzat", + "titleUpdateVersion": "S'ha canviat la versió", + "warnLicenseExceeded": "Heu assolit el límit per a connexions simultànies a %1 editors. Aquest document només s'obrirà per a la seva visualització. Contacteu amb l'administrador per a conèixer-ne més.", + "warnLicenseLimitedNoAccess": "La llicència ha caducat. No teniu accés a la funcionalitat d'edició de documents. Contacteu amb el vostre administrador.", + "warnLicenseLimitedRenewed": "Cal renovar la llicència. Teniu accés limitat a la funcionalitat d'edició de documents.
    Contacteu amb l'administrador per obtenir accés complet", + "warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb l'administrador per conèixer-ne més.", + "warnNoLicense": "Heu assolit el límit per a connexions simultànies a %1 editors. Aquest document només s'obrirà per a la seva visualització. Posa't en contacte amb l'equip de vendes %1 per a les condicions d'una actualització personal.", + "warnNoLicenseUsers": "Heu arribat al límit d'usuaris concurrents per a %1 editors.
    Contactau l'equip de vendes per a les condicions de millora personal dels vostres serveis.", + "warnProcessRightsChange": "No teniu permís per editar el fitxer." + } + }, + "Error": { + "convertationTimeoutText": "S'ha superat el temps de conversió.", + "criticalErrorExtText": "Premeu «D'acord» per tornar a la llista de documents.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Ha fallat la Descàrrega.", + "errorAccessDeny": "Esteu intentant realitzar una acció per la qual no teniu drets.
    Si us plau, poseu-vos en contacte amb l'administrador.", + "errorArgsRange": "Hi ha un error a la fórmula.
    interval d'arguments incorrecte.", + "errorAutoFilterChange": "L'operació no està permesa, ja que està intentant moure cel·les en una taula del full de treball.", + "errorAutoFilterChangeFormatTable": "L'operació no s'ha pogut fer per a les cel·les seleccionades, ja que no podeu moure una part d'una taula.
    Seleccioneu un altre interval de dades perquè es desplaci tota la taula i torneu-ho a provar.", + "errorAutoFilterDataRange": "L'operació no s'ha pogut fer per a l'interval de cel·les seleccionat.
    Selecciona un interval de dades uniforme dins o fora de la taula i torna-ho a provar.", + "errorAutoFilterHiddenRange": "L'operació no es pot realitzar perquè l'àrea conté cel·les filtrades.
    Si us plau, mostra els elements filtrats i torna-ho a provar.", + "errorBadImageUrl": "L'enllaç de la imatge es incorrecte", + "errorChangeArray": "No podeu canviar part d'una matriu.", + "errorConnectToServer": "No es pot desar aquest document. Comproveu la configuració de la connexió o poseu-vos en contacte amb l'administrador.
    Quan feu clic al botó «D'acord», se us demanarà que baixeu el document.", + "errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
    Seleccioneu un únic rang i proveu-ho de nou.", + "errorCountArg": "S'ha produït un error a la fórmula.
    El nombre d'arguments no és vàlid.", + "errorCountArgExceed": "S'ha produït un error a la fórmula. S'ha superat el nombre màxim d'arguments
    .", + "errorCreateDefName": "No es poden editar els intervals anomenats existents i els nous no es poden crear en el mateix moment en què s'editen alguns d'ells.", + "errorDatabaseConnection": "Error extern.
    Error de connexió a la base de dades. Si us plau, poseu-vos en contacte amb el servei d'assistència.", + "errorDataEncrypted": "S'han rebut canvis xifrats, que no es poden desxifrar.", + "errorDataRange": "Interval de dades incorrecte.", + "errorDataValidate": "El valor que heu introduït no és vàlid.
    Un usuari ha restringit els valors que es poden introduir en aquesta cel·la.", + "errorDefaultMessage": "Codi d'error:%1", + "errorEditingDownloadas": "S'ha produït un error durant el treball amb el document.
    Utilitzeu l'opció \"Descarregar\" per desar la còpia de seguretat del fitxer localment.", + "errorFilePassProtect": "El fitxer està protegit amb contrasenya i no s'ha pogut obrir.", + "errorFileRequest": "Error extern.
    Sol·licitud de fitxer. Si us plau, poseu-vos en contacte amb el servei d'assistència.", + "errorFileSizeExceed": "La mida del fitxer supera la limitació del vostre servidor.
    Si us plau, poseu-vos en contacte amb l'administrador per a més detalls.", + "errorFileVKey": "Error extern.
    Clau de seguretat incorrecta. Si us plau, poseu-vos en contacte amb el servei d'assistència.", + "errorFillRange": "No s'ha pogut omplir el rang de cel·les seleccionat.
    Totes les cel·les combinades han de tenir la mateixa mida.", + "errorFormulaName": "S'ha produït un error a la fórmula.
    El nom de la fórmula és incorrecte.", + "errorFormulaParsing": "Error intern en analitzar la fórmula.", + "errorFrmlMaxLength": "No podeu afegir aquesta fórmula perquè la seva longitud supera el nombre de caràcters permesos.
    Si us plau, editeu-la i torneu-ho a provar.", + "errorFrmlMaxReference": "No podeu introduir aquesta fórmula perquè té massa valors,
    referències de cel·les, i/o noms.", + "errorFrmlMaxTextLength": "Els valors del text en les fórmules es limiten a 255 caràcters.
    Usa la funció CONCATENATE o l'operador de concatenació (&)", + "errorFrmlWrongReferences": "La funció es refereix a un full que no existeix.
    Si us plau, comproveu les dades i torneu-ho a provar.", + "errorInvalidRef": "Introduïu un nom correcte per a la selecció o una referència vàlida a la qual anar.", + "errorKeyEncrypt": "Descriptor de la clau desconegut", + "errorKeyExpire": "El descriptor de la clau ha caducat", + "errorLockedAll": "L'operació no s'ha pogut fer ja que un altre usuari ha bloquejat el full.", + "errorLockedCellPivot": "No podeu canviar les dades en una taula pivot.", + "errorLockedWorksheetRename": "En aquest moment no es pot canviar el nom del full, ja que ho està fent un altre usuari", + "errorMaxPoints": "El nombre màxim de punts de la sèrie per gràfic és de 4096.", + "errorMoveRange": "No es pot canviar una part d'una cel·la combinada", + "errorMultiCellFormula": "Les fórmules matricials multicel·la no estan permeses a les taules.", + "errorOpenWarning": "La longitud d'una de les fórmules del fitxer superava el nombre permès de caràcters i s'ha eliminat.", + "errorOperandExpected": "La sintaxi de la funció introduïda no és correcta. Comproveu si heu omès algun dels parèntesis - '(' o ')'.", + "errorPasteMaxRange": "L'àrea a copiar i enganxar no coincideixen. Seleccioneu una àrea de la mateixa mida o feu clic a la primera cel·la d'una fila per enganxar les cel·les copiades.", + "errorPrintMaxPagesCount": "Malauradament, no és possible imprimir més de 1500 pàgines alhora a la versió actual del programa.
    Aquesta restricció s'eliminarà en les properes versions.", + "errorSessionAbsolute": "La sessió d'edició del document ha caducat. Torneu a carregar la pàgina.", + "errorSessionIdle": "El document no s'ha editat durant molt de temps. Torneu a carregar la pàgina.", + "errorSessionToken": "S'ha interromput la connexió al servidor. Torneu a carregar la pàgina.", + "errorStockChart": "L'ordre de fila és incorrecte. Per construir un diagrama de valors, poseu les dades al full en el següent ordre:
    preu d'obertura, preu màxim, preu mínim, preu de tancament.", + "errorUnexpectedGuid": "Error extern.
    Guid inesperat. Si us plau, poseu-vos en contacte amb el servei d'assistència.", + "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.", + "errorUserDrop": "No es pot accedir al fitxer ara mateix.", + "errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel vostre pla", + "errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu veure el document,
    , però no podreu baixar-lo fins que es restableixi la connexió i es torni a carregar la pàgina.", + "errorWrongBracketsCount": "S'ha produït un error a la fórmula.
    Nombre incorrecte de parèntesis.", + "errorWrongOperator": "S'ha produït un error a la fórmula introduïda. S'utilitza l'operador incorrecte.
    Corregiu l'error o useu el botó Esc per cancel·lar l'edició de la fórmula.", + "notcriticalErrorTitle": "Advertiment", + "openErrorText": "S'ha produït un error en obrir el fitxer", + "pastInMergeAreaError": "No es pot canviar una part d'una cel·la combinada", + "saveErrorText": "S'ha produït un error en desar el fitxer", + "scriptLoadError": "La connexió és massa lenta, alguns dels components no s'han pogut carregar. Torneu a carregar la pàgina.", + "unknownErrorText": "Error Desconegut.", + "uploadImageExtMessage": "Format d'imatge desconegut.", + "uploadImageFileCountMessage": "Cap Imatge Carregada.", + "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Carregant dades...", + "applyChangesTitleText": "Carregant Dades", + "confirmMoveCellRange": "L'interval de cel·les de destinació pot contenir dades. Voleu continuar l'operació?", + "confirmPutMergeRange": "Les dades d'origen contenen cel·les combinades.
    Es desfarà la combinació abans que s'enganxin a la taula.", + "confirmReplaceFormulaInTable": "Les fórmules de la fila de capçalera s'eliminaran i es convertiran en text estàtic.
    Voleu continuar?", + "downloadTextText": "Descarregant document...", + "downloadTitleText": "Descarregant Document", + "loadFontsTextText": "Carregant dades...", + "loadFontsTitleText": "Carregant Dades", + "loadFontTextText": "Carregant dades...", + "loadFontTitleText": "Carregant Dades", + "loadImagesTextText": "Carregant imatges...", + "loadImagesTitleText": "Carregant Imatges", + "loadImageTextText": "Carregant imatge...", + "loadImageTitleText": "Carregant Imatge", + "loadingDocumentTextText": "Carregant document...", + "loadingDocumentTitleText": "Carregant document", + "notcriticalErrorTitle": "Advertiment", + "openTextText": "Obrint document...", + "openTitleText": "Obrint Document", + "printTextText": "Imprimint document...", + "printTitleText": "Imprimint Document", + "savePreparingText": "Preparant per desar", + "savePreparingTitle": "Preparant per desar. Si us plau, esperi...", + "saveTextText": "Desant document...", + "saveTitleText": "Desant Document", + "textLoadingDocument": "Carregant document", + "textNo": "No", + "textOk": "D'acord", + "textYes": "Sí", + "txtEditingMode": "Establir el mode d'edició ...", + "uploadImageTextText": "Carregant imatge...", + "uploadImageTitleText": "Carregant Imatge", + "waitText": "Si us plau, esperi..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Advertiment", + "textCancel": "Cancel·lar", + "textDelete": "Suprimir", + "textDuplicate": "Duplicar", + "textErrNameExists": "Ja existeix un full de càlcul amb aquest nom.", + "textErrNameWrongChar": "El nom de full no pot contenir els caràcters: \\, /, *,?, [,],:", + "textErrNotEmpty": "El nom del full no pot estar en blanc", + "textErrorLastSheet": "El llibre de treball ha de tenir almenys un full de càlcul visible.", + "textErrorRemoveSheet": "No es pot suprimir el full de treball.", + "textHide": "Amagar", + "textMore": "Més", + "textRename": "Canviar el nom", + "textRenameSheet": "Canviar el nom del full", + "textSheet": "Full", + "textSheetName": "Nom del Full", + "textUnhide": "Tornar a mostrar", + "textWarnDeleteSheet": "El full de treball potser té dades. Voleu continuar l'operació?" + }, + "Toolbar": { + "dlgLeaveMsgText": "Teniu canvis no desats en aquest document. Feu clic a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "dlgLeaveTitleText": "Deixeu l'aplicació", + "leaveButtonText": "Sortir d'aquesta Pàgina", + "stayButtonText": "Queda't en aquesta Pàgina" + }, + "View": { + "Add": { + "errorMaxRows": "ERROR! El nombre màxim de sèries de dades per gràfic és de 255.", + "errorStockChart": "L'ordre de fila és incorrecte. Per construir un diagrama de valors, poseu les dades al full en el següent ordre:
    preu d'obertura, preu màxim, preu mínim, preu de tancament.", + "notcriticalErrorTitle": "Advertiment", + "sCatDateAndTime": "Data i hora", + "sCatEngineering": "Enginyeria", + "sCatFinancial": "Financer", + "sCatInformation": "Informació", + "sCatLogical": "Lògic", + "sCatLookupAndReference": "Cercar i Referenciar", + "sCatMathematic": "Matemàtiques i trigonometria", + "sCatStatistical": "Estadístic", + "sCatTextAndData": "Text i dades", + "textAddLink": "Afegir Enllaç", + "textAddress": "Adreça", + "textBack": "Enrere", + "textChart": "Gràfic", + "textComment": "Comentari", + "textDisplay": "Mostrar", + "textEmptyImgUrl": "Heu d'especificar l'URL de la imatge.", + "textExternalLink": "Enllaç Extern", + "textFilter": "Filtre", + "textFunction": "Funció", + "textGroups": "CATEGORIES", + "textImage": "Imatge", + "textImageURL": "URL de la imatge ", + "textInsert": "Inserir", + "textInsertImage": "Inserir Imatge", + "textInternalDataRange": "Interval de Dades Intern", + "textInvalidRange": "ERROR! Interval de cel·les no vàlid", + "textLink": "Enllaç", + "textLinkSettings": "Configuració de l'enllaç", + "textLinkType": "Tipus d'Enllaç", + "textOther": "Altre", + "textPictureFromLibrary": "Imatge de la Biblioteca", + "textPictureFromURL": "Imatge des de URL", + "textRange": "Rang", + "textRequired": "Requerit", + "textScreenTip": "Consell de Pantalla", + "textShape": "Forma", + "textSheet": "Full", + "textSortAndFilter": "Ordenar i Filtrar", + "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Advertiment", + "textAccounting": "Comptabilitat", + "textActualSize": "Mida real", + "textAddCustomColor": "Afegir Color Personalitzat", + "textAddress": "Adreça", + "textAlign": "Alinear", + "textAlignBottom": "Alineació Inferior", + "textAlignCenter": "Alineació Central", + "textAlignLeft": "Alineació esquerra", + "textAlignMiddle": "Alinear al Mig", + "textAlignRight": "Alineació dreta", + "textAlignTop": "Alineació superior", + "textAllBorders": "Totes les Vores", + "textAngleClockwise": "Angle en sentit horari", + "textAngleCounterclockwise": "Angle en sentit antihorari", + "textAuto": "Automàtic", + "textAxisCrosses": "Encreuament dels Eixos", + "textAxisOptions": "Opcions de l’Eix", + "textAxisPosition": "Posició de l’Eix", + "textAxisTitle": "Títol de l’Eix", + "textBack": "Enrere", + "textBetweenTickMarks": "Entre Marques de Graduació", + "textBillions": "Milers de milions", + "textBorder": "Vora", + "textBorderStyle": "Estil de Vora", + "textBottom": "Inferior", + "textBottomBorder": "Vora Inferior", + "textBringToForeground": "Portar a Primer pla", + "textCell": "Cel·la", + "textCellStyles": "Estils de Cel·la", + "textCenter": "Centre", + "textChart": "Gràfic", + "textChartTitle": "Títol del Gràfic", + "textClearFilter": "Netejar el filtre", + "textColor": "Color", + "textCross": "Creu", + "textCrossesValue": "Valor d'encreuat", + "textCurrency": "Moneda", + "textCustomColor": "Color Personalitzat", + "textDataLabels": "Etiquetes de Dades", + "textDate": "Data", + "textDefault": "Interval Seleccionat", + "textDeleteFilter": "Suprimir Filtre", + "textDesign": "Disseny", + "textDiagonalDownBorder": "Vora Diagonal Descendent", + "textDiagonalUpBorder": "Vora Diagonal Ascendent", + "textDisplay": "Mostrar", + "textDisplayUnits": "Unitats de Visualització", + "textDollar": "Dòlar", + "textEditLink": "Editar Enllaç", + "textEffects": "Efectes", + "textEmptyImgUrl": "Heu d'especificar l'URL de la imatge.", + "textEmptyItem": "{En blanc}", + "textErrorMsg": "Heu de triar almenys un valor", + "textErrorTitle": "Advertiment", + "textEuro": "Euro", + "textExternalLink": "Enllaç Extern", + "textFill": "Omplir", + "textFillColor": "Color d'Emplenament", + "textFilterOptions": "Opcions de Filtre", + "textFit": "Ajustar a l'ampla", + "textFonts": "Fonts", + "textFormat": "Format", + "textFraction": "Fracció", + "textFromLibrary": "Imatge de la Biblioteca", + "textFromURL": "Imatge des de URL", + "textGeneral": "General", + "textGridlines": "Línies de Quadrícula", + "textHigh": "Alt", + "textHorizontal": "Horitzontal", + "textHorizontalAxis": "Eix Horitzontal", + "textHorizontalText": "Text Horitzontal", + "textHundredMil": "100 000 000", + "textHundreds": "Centenars", + "textHundredThousands": "100 000", + "textHyperlink": "Hiperenllaç", + "textImage": "Imatge", + "textImageURL": "URL de la imatge ", + "textIn": "A", + "textInnerBottom": "Inferior Interna", + "textInnerTop": "Superior interna", + "textInsideBorders": "Vores Internes", + "textInsideHorizontalBorder": "Vora Horitzontal Interna", + "textInsideVerticalBorder": "Vora Vertical Interna", + "textInteger": "Enter", + "textInternalDataRange": "Interval de Dades Intern", + "textInvalidRange": "Interval de cel·les no vàlid", + "textJustified": "Justificat", + "textLabelOptions": "Opcions d'Etiqueta", + "textLabelPosition": "Posició d'Etiqueta", + "textLayout": "Maquetació", + "textLeft": "Esquerra", + "textLeftBorder": "Vora Esquerra", + "textLeftOverlay": "Superposició Esquerra", + "textLegend": "Llegenda", + "textLink": "Enllaç", + "textLinkSettings": "Configuració de l'enllaç", + "textLinkType": "Tipus d'Enllaç", + "textLow": "Baix", + "textMajor": "Major", + "textMajorAndMinor": "Major i Menor", + "textMajorType": "Tipus Major", + "textMaximumValue": "Valor Màxim", + "textMedium": "Mitjà", + "textMillions": "Milions", + "textMinimumValue": "Valor Mínim", + "textMinor": "Menor", + "textMinorType": "Tipus Menor", + "textMoveBackward": "Moure Enrere", + "textMoveForward": "Moure Endavant", + "textNextToAxis": "Prop de l'eix", + "textNoBorder": "Sense Vora", + "textNone": "Cap", + "textNoOverlay": "Sense Superposició", + "textNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "textNumber": "Número", + "textOnTickMarks": "Marques de Graduació", + "textOpacity": "Opacitat", + "textOut": "Fora", + "textOuterTop": "Superior Externa", + "textOutsideBorders": "Vores Exteriors", + "textOverlay": "Superposició", + "textPercentage": "Percentatge", + "textPictureFromLibrary": "Imatge de la Biblioteca", + "textPictureFromURL": "Imatge des de URL", + "textPound": "Lliura", + "textPt": "pt", + "textRange": "Rang", + "textRemoveChart": "Eliminar Diagrama", + "textRemoveImage": "Eliminar Imatge", + "textRemoveLink": "Eliminar Enllaç", + "textRemoveShape": "Eliminar forma", + "textReorder": "Reordenar", + "textReplace": "Substituir", + "textReplaceImage": "Substituir Imatge", + "textRequired": "Requerit", + "textRight": "Dreta", + "textRightBorder": "Vora Dreta", + "textRightOverlay": "Superposició Dreta", + "textRotated": "Girat", + "textRotateTextDown": "Girar Text Avall", + "textRotateTextUp": "Girar Text Amunt", + "textRouble": "Ruble", + "textScientific": "Científic", + "textScreenTip": "Consell de Pantalla", + "textSelectAll": "Selecciona-ho tot ", + "textSelectObjectToEdit": "Seleccionar l'objecte a editar", + "textSendToBackground": "Enviar al Fons", + "textSettings": "Configuració", + "textShape": "Forma", + "textSheet": "Full", + "textSize": "Mida", + "textStyle": "Estil", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Color del Text", + "textTextFormat": "Format del Text", + "textTextOrientation": "Orientació del Text", + "textThick": "Gruixut", + "textThin": "Prim", + "textThousands": "Milers", + "textTickOptions": "Opcions de marques de graduació", + "textTime": "Hora", + "textTop": "Superior", + "textTopBorder": "Vora Superior", + "textTrillions": "Trilions", + "textType": "Tipus", + "textValue": "Valor", + "textValuesInReverseOrder": "Valors en ordre invers", + "textVertical": "Vertical", + "textVerticalAxis": "Eix Vertical", + "textVerticalText": "Text Vertical", + "textWrapText": "Ajustar el text", + "textYen": "Yen", + "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"" + }, + "Settings": { + "advCSVOptions": "Trieu les opcions CSV", + "advDRMEnterPassword": "La contrasenya, si us plau:", + "advDRMOptions": "Fitxer Protegit", + "advDRMPassword": "Contrasenya", + "closeButtonText": "Tancar Fitxer", + "notcriticalErrorTitle": "Advertiment", + "textAbout": "Quant a...", + "textAddress": "Adreça", + "textApplication": "Aplicació", + "textApplicationSettings": "Configuració de l'aplicació", + "textAuthor": "Autor", + "textBack": "Enrere", + "textBottom": "Inferior", + "textByColumns": "Per Columnes", + "textByRows": "Per files", + "textCancel": "Cancel·lar", + "textCentimeter": "Centímetre", + "textCollaboration": "Col·laboració", + "textColorSchemes": "Esquemes de Color", + "textComment": "Comentari", + "textCommentingDisplay": "Visualització dels comentaris", + "textComments": "Comentaris", + "textCreated": "Creat", + "textCustomSize": "Mida Personalitzada", + "textDisableAll": "Desactivar-ho Tot", + "textDisableAllMacrosWithNotification": "Desactivar totes les macros amb una notificació", + "textDisableAllMacrosWithoutNotification": "Desactivar totes les macros sense notificació", + "textDone": "Fet", + "textDownload": "Descarregar", + "textDownloadAs": "Descarregar com a", + "textEmail": "Correu electrònic", + "textEnableAll": "Activar-ho Tot", + "textEnableAllMacrosWithoutNotification": "Activar totes les macros sense notificació", + "textFind": "Cercar", + "textFindAndReplace": "Cercar i Substituir", + "textFindAndReplaceAll": "Cercar i Substituir-ho Tot", + "textFormat": "Format", + "textFormulaLanguage": "Idioma de la Fórmula", + "textFormulas": "Fórmules", + "textHelp": "Ajuda", + "textHideGridlines": "Amagar Quadrícules", + "textHideHeadings": "Amagar Encapçalaments", + "textHighlightRes": "Ressaltar els resultats", + "textInch": "Polzada", + "textLandscape": "Horitzontal", + "textLastModified": "Última Modificació", + "textLastModifiedBy": "Modificat per Últim cop Per", + "textLeft": "Esquerra", + "textLocation": "Ubicació", + "textLookIn": "Mirar a", + "textMacrosSettings": "Configuració de Macros", + "textMargins": "Marges", + "textMatchCase": "Coincidir majúscules i minúscules", + "textMatchCell": "Coincidir la Cel·la", + "textNoTextFound": "No s'ha trobat el text", + "textOpenFile": "Introduïu una contrasenya per obrir el fitxer", + "textOrientation": "Orientació", + "textOwner": "Propietari", + "textPoint": "Punt", + "textPortrait": "Retrat Vertical", + "textPoweredBy": "Impulsat Per", + "textPrint": "Imprimir", + "textR1C1Style": "Estil de Referència R1C1", + "textRegionalSettings": "Configuració Regional", + "textReplace": "Substituir", + "textReplaceAll": "Substituir-ho Tot ", + "textResolvedComments": "Comentaris Resolts", + "textRight": "Dreta", + "textSearch": "Cercar", + "textSearchBy": "Cercar", + "textSearchIn": "Cerca A", + "textSettings": "Configuració", + "textSheet": "Full", + "textShowNotification": "Mostrar la Notificació", + "textSpreadsheetFormats": "Formats de full de càlcul", + "textSpreadsheetInfo": "Informació del full de càlcul", + "textSpreadsheetSettings": "Configuració del full de càlcul", + "textSpreadsheetTitle": "Títol del full de càlcul", + "textSubject": "Assumpte", + "textTel": "Tel", + "textTitle": "Nom", + "textTop": "Superior", + "textUnitOfMeasurement": "Unitat de Mesura", + "textUploaded": "Carregat", + "textValues": "Valors", + "textVersion": "Versió", + "textWorkbook": "Llibre de treball", + "txtDelimiter": "Delimitador", + "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", + "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?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 3d7b14a191..a4555508ce 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -1,661 +1,576 @@ { - "Common.Controllers.Collaboration.textAddReply": "Antwort hinzufügen", - "Common.Controllers.Collaboration.textCancel": "Abbrechen", - "Common.Controllers.Collaboration.textDeleteComment": "Kommentar löschen", - "Common.Controllers.Collaboration.textDeleteReply": "Antwort löschen", - "Common.Controllers.Collaboration.textDone": "Fertig", - "Common.Controllers.Collaboration.textEdit": "Bearbeiten", - "Common.Controllers.Collaboration.textEditUser": "Benutzer, die die Datei bearbeiten:", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Wollen Sie den Kommentar wirklich löschen?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Wollen Sie diese Antwort wirklich löschen?", - "Common.Controllers.Collaboration.textReopen": "Wiederöffnen", - "Common.Controllers.Collaboration.textResolve": "Lösen", - "Common.Controllers.Collaboration.textYes": "Ja", - "Common.UI.ThemeColorPalette.textCustomColors": "Benutzerdefinierte Farben", - "Common.UI.ThemeColorPalette.textStandartColors": "Standardfarben", - "Common.UI.ThemeColorPalette.textThemeColors": "Designfarben", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Antwort hinzufügen", - "Common.Views.Collaboration.textBack": "Zurück", - "Common.Views.Collaboration.textCancel": "Abbrechen", - "Common.Views.Collaboration.textCollaboration": "Zusammenarbeit", - "Common.Views.Collaboration.textDone": "Fertig", - "Common.Views.Collaboration.textEditReply": "Antwort bearbeiten", - "Common.Views.Collaboration.textEditUsers": "Benutzer", - "Common.Views.Collaboration.textEditСomment": "Kommentar bearbeiten", - "Common.Views.Collaboration.textNoComments": "Diese Tabellenkalkulation enthält keine Kommentare", - "Common.Views.Collaboration.textСomments": "Kommentare", - "SSE.Controllers.AddChart.txtDiagramTitle": "Diagrammtitel", - "SSE.Controllers.AddChart.txtSeries": "Reihen", - "SSE.Controllers.AddChart.txtXAxis": "x-Achse", - "SSE.Controllers.AddChart.txtYAxis": "y-Achse", - "SSE.Controllers.AddContainer.textChart": "Diagramm", - "SSE.Controllers.AddContainer.textFormula": "Funktion", - "SSE.Controllers.AddContainer.textImage": "Bild", - "SSE.Controllers.AddContainer.textOther": "Sonstiges", - "SSE.Controllers.AddContainer.textShape": "Form", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Warnung", - "SSE.Controllers.AddLink.textInvalidRange": "FEHLER! Ungültiger Zellenbereich", - "SSE.Controllers.AddLink.txtNotUrl": "Dieser Bereich soll ein URL in der Format \"http://www.example.com\" sein.", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Warnung", - "SSE.Controllers.AddOther.textCancel": "Abbrechen", - "SSE.Controllers.AddOther.textContinue": "Fortsetzen", - "SSE.Controllers.AddOther.textDelete": "Löschen", - "SSE.Controllers.AddOther.textDeleteDraft": "Möchten Sie wirklick diesen Entwurf löschen?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Sie müssen eine Bild-URL angeben.", - "SSE.Controllers.AddOther.txtNotUrl": "Dieser Bereich soll ein URL in der Format \"http://www.example.com\" sein.", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Funktionen 'Kopieren', 'Ausschneiden' und 'Einfügen' über das Kontextmenü werden nur in der aktuellen Datei ausgeführt.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "Der Linkverweis existiert nicht. Bitte korrigieren oder löschen Sie den Link.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Kommentar hinzufügen", - "SSE.Controllers.DocumentHolder.menuAddLink": "Link hinzufügen", - "SSE.Controllers.DocumentHolder.menuCell": "Zelle", - "SSE.Controllers.DocumentHolder.menuCopy": "Kopieren", - "SSE.Controllers.DocumentHolder.menuCut": "Ausschneiden", - "SSE.Controllers.DocumentHolder.menuDelete": "Löschen", - "SSE.Controllers.DocumentHolder.menuEdit": "Bearbeiten", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Fenster fixieren", - "SSE.Controllers.DocumentHolder.menuHide": "Verbergen", - "SSE.Controllers.DocumentHolder.menuMerge": "Verbinden", - "SSE.Controllers.DocumentHolder.menuMore": "Mehr", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Link öffnen", - "SSE.Controllers.DocumentHolder.menuPaste": "Einfügen", - "SSE.Controllers.DocumentHolder.menuShow": "Anzeigen", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Fixierung aufheben", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Verbund aufheben", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Umbruch aufheben", - "SSE.Controllers.DocumentHolder.menuViewComment": "Kommentar anzeigen", - "SSE.Controllers.DocumentHolder.menuWrap": "Umbrechen", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Warnung", - "SSE.Controllers.DocumentHolder.sheetCancel": "Abbrechen", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Funktionen \"Kopieren\", \"Ausschneiden\" und \"Einfügen\"", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Nicht wieder anzeigen", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Nur die Daten aus der oberen linken Zelle bleiben nach der Vereinigung.
    Möchten Sie wirklich fortsetzen?", - "SSE.Controllers.EditCell.textAuto": "Automatisch", - "SSE.Controllers.EditCell.textFonts": "Schriftarten", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "FEHLER! Maximale Anzahl an Datenreihen pro Diagramm ist 255.", - "SSE.Controllers.EditChart.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.EditChart.textAuto": "Automatisch", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Zwischen den Teilstrichen", - "SSE.Controllers.EditChart.textBillions": "Milliarden", - "SSE.Controllers.EditChart.textBottom": "Unten", - "SSE.Controllers.EditChart.textCenter": "Zentriert", - "SSE.Controllers.EditChart.textCross": "Schnittpunkt", - "SSE.Controllers.EditChart.textCustom": "Benutzerdefiniert", - "SSE.Controllers.EditChart.textFit": "an Breite anpassen", - "SSE.Controllers.EditChart.textFixed": "Fixiert", - "SSE.Controllers.EditChart.textHigh": "Hoch", - "SSE.Controllers.EditChart.textHorizontal": "Horizontal", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Hunderte", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "in", - "SSE.Controllers.EditChart.textInnerBottom": "Innere Untere", - "SSE.Controllers.EditChart.textInnerTop": "Innen oben", - "SSE.Controllers.EditChart.textLeft": "Links", - "SSE.Controllers.EditChart.textLeftOverlay": "Überlagerung links", - "SSE.Controllers.EditChart.textLow": "Niedrig", - "SSE.Controllers.EditChart.textManual": "Manuell", - "SSE.Controllers.EditChart.textMaxValue": "Maximalwert", - "SSE.Controllers.EditChart.textMillions": "Millionen", - "SSE.Controllers.EditChart.textMinValue": "Minimalwert", - "SSE.Controllers.EditChart.textNextToAxis": "Neben der Achse", - "SSE.Controllers.EditChart.textNone": "Kein", - "SSE.Controllers.EditChart.textNoOverlay": "Ohne Überlagerung", - "SSE.Controllers.EditChart.textOnTickMarks": "Teilstriche", - "SSE.Controllers.EditChart.textOut": "Außen", - "SSE.Controllers.EditChart.textOuterTop": "Außen oben", - "SSE.Controllers.EditChart.textOverlay": "Überlagerung", - "SSE.Controllers.EditChart.textRight": "Rechts", - "SSE.Controllers.EditChart.textRightOverlay": "Überlagerung rechts", - "SSE.Controllers.EditChart.textRotated": "Gedreht", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Tausende", - "SSE.Controllers.EditChart.textTop": "Oben", - "SSE.Controllers.EditChart.textTrillions": "Billionen", - "SSE.Controllers.EditChart.textValue": "Wert", - "SSE.Controllers.EditContainer.textCell": "Zelle", - "SSE.Controllers.EditContainer.textChart": "Diagramm", - "SSE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "SSE.Controllers.EditContainer.textImage": "Bild", - "SSE.Controllers.EditContainer.textSettings": "Einstellungen", - "SSE.Controllers.EditContainer.textShape": "Form", - "SSE.Controllers.EditContainer.textTable": "Tabelle", - "SSE.Controllers.EditContainer.textText": "Text", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Warnung", - "SSE.Controllers.EditHyperlink.textDefault": "Gewählter Bereich", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Sie müssen eine Bild-URL angeben.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Externer Link", - "SSE.Controllers.EditHyperlink.textInternalLink": "Interner Datenbereich", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Ungültiger Zellenbereich", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Dieser Bereich soll ein URL in der Format \"http://www.example.com\" sein.", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Warnung", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Sie müssen die URL des Bildes angeben.", - "SSE.Controllers.EditImage.txtNotUrl": "Dieses Feld muss URL im Format \"http://www.example.com\" sein", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Lücken}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Sie müssen zumindest einen Wert wählen", - "SSE.Controllers.FilterOptions.textErrorTitle": "Warnung", - "SSE.Controllers.FilterOptions.textSelectAll": "Alles auswählen", - "SSE.Controllers.Main.advCSVOptions": "CSV-Optionen auswählen", - "SSE.Controllers.Main.advDRMEnterPassword": "Kennwort eingeben", - "SSE.Controllers.Main.advDRMOptions": "Geschützte Datei", - "SSE.Controllers.Main.advDRMPassword": "Kennwort", - "SSE.Controllers.Main.applyChangesTextText": "Daten werden geladen...", - "SSE.Controllers.Main.applyChangesTitleText": "Daten werden geladen", - "SSE.Controllers.Main.closeButtonText": "Datei schließen", - "SSE.Controllers.Main.convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.", - "SSE.Controllers.Main.criticalErrorExtText": "Drücken Sie \"OK\", um zur Dokumentenliste zurückzukehren.", - "SSE.Controllers.Main.criticalErrorTitle": "Fehler", - "SSE.Controllers.Main.downloadErrorText": "Herunterladen ist fehlgeschlagen.", - "SSE.Controllers.Main.downloadMergeText": "Wird heruntergeladen...", - "SSE.Controllers.Main.downloadMergeTitle": "Wird heruntergeladen", - "SSE.Controllers.Main.downloadTextText": "Kalkulationstabelle wird heruntergeladen...", - "SSE.Controllers.Main.downloadTitleText": "Herunterladen der Kalkulationstabelle", - "SSE.Controllers.Main.errorAccessDeny": "Sie versuchen, eine Aktion durchzuführen, für die Sie keine Rechte haben.
    Bitte wenden Sie sich an Ihren Document Serveradministrator.", - "SSE.Controllers.Main.errorArgsRange": "Die eingegebene Formel enthält einen Fehler.
    Falscher Argumentbereich wurde genutzt.", - "SSE.Controllers.Main.errorAutoFilterChange": "Der Vorgang ist nicht zulässig, denn es wurde versucht, Zellen in der Tabelle auf Ihrem Arbeitsblatt zu verschieben.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "Dieser Vorgang kann für die gewählten Zellen nicht ausgeführt werden, weil Sie einen Teil der Tabelle nicht verschieben können.
    Wählen Sie den anderen Datenbereich, so dass die ganze Tabelle verschoben wurde und versuchen Sie noch einmal.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Der Vorgang kann für einen ausgewählten Zellbereich nicht ausgeführt werden.
    Wählen Sie einen einheitlichen Datenbereich, der sich deutlich von dem bestehenden unterscheidet und versuchen Sie es erneut.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Die Operation kann nicht ausgeführt werden, weil der Bereich gefilterte Zellen enthält.
    Bitte machen Sie die gefilterten Elemente sichtbar und versuchen Sie es erneut.", - "SSE.Controllers.Main.errorBadImageUrl": "URL des Bildes ist falsch", - "SSE.Controllers.Main.errorChangeArray": "Sie können einen Teil eines Arrays nicht ändern.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Verbindung zum Server ist verloren gegangen. Sie können nicht mehr editieren.", - "SSE.Controllers.Main.errorConnectToServer": "Das Dokument konnte nicht gespeichert werden. Bitte überprüfen Sie die Verbindungseinstellungen oder wenden Sie sich an Ihren Administrator.
    Wenn Sie auf die Schaltfläche \"OK\" klicken, werden Sie aufgefordert das Dokument herunterzuladen.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Dieser Befehl kann nicht bei Mehrfachauswahl verwendet werden
    Wählen Sie nur einen einzelnen Bereich aus, und versuchen Sie es nochmal.", - "SSE.Controllers.Main.errorCountArg": "Die eingegebene Formel enthält einen Fehler.
    Es wurde falsche Anzahl an Argumenten benutzt.", - "SSE.Controllers.Main.errorCountArgExceed": "Die eingegebene Formel enthält einen Fehler.
    Anzahl der Argumente wurde überschritten.", - "SSE.Controllers.Main.errorCreateDefName": "Die bestehende benannte Bereiche können nicht bearbeitet werden und neue Bereiche können
    im Moment nicht erstellt werden, weil einige von ihnen sind in Bearbeitung.", - "SSE.Controllers.Main.errorDatabaseConnection": "Externer Fehler.
    Datenbank-Verbindungsfehler. Wenden Sie sich an den Support.", - "SSE.Controllers.Main.errorDataEncrypted": "Änderungen wurden verschlüsselt. Sie können nicht entschlüsselt werden.", - "SSE.Controllers.Main.errorDataRange": "Falscher Datenbereich.", - "SSE.Controllers.Main.errorDataValidate": "Der eingegebene Wert ist ungültig.
    Die Werte, die in diese Zelle eingegeben werden können, sind begrenzt.", - "SSE.Controllers.Main.errorDefaultMessage": "Fehlercode: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Bei der Arbeit mit dem Dokument ist ein Fehler aufgetreten.
    Verwenden Sie die Option \"Herunterladen\", um die Sicherungskopie der Datei auf der Festplatte Ihres Computers zu speichern.", - "SSE.Controllers.Main.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", - "SSE.Controllers.Main.errorFileRequest": "Externer Fehler.
    Fehler bei der Dateianfrage. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.", - "SSE.Controllers.Main.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
    Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", - "SSE.Controllers.Main.errorFileVKey": "Externer Fehler.
    Ungültiger Sicherheitsschlüssel. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.", - "SSE.Controllers.Main.errorFillRange": "Der gewählte Zellbereich kann nicht ausgefüllt werden.
    Alle verbundenen Zellen müssen die gleiche Größe haben.", - "SSE.Controllers.Main.errorFormulaName": "Die eingegebene Formel enthält einen Fehler.
    Es wurde falschen Formelnamen benutzt.", - "SSE.Controllers.Main.errorFormulaParsing": "Interner Fehler bei der Syntaxanalyse der Formel.", - "SSE.Controllers.Main.errorFrmlMaxLength": "Ihre Formel ist länger als 8192 Symbole.
    Bitte bearbeiten Sie diese und versuchen Sie neu.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Sie können solche Formel nicht eingeben, denn Sie zu viele Werte,
    Zellbezüge und/oder Namen beinhaltet.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Textwerte in Formeln sind auf 255 Zeichen begrenzt.
    Verwenden Sie die Funktion VERKETTEN oder den Verkettungsoperator (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Die Funktion bezieht sich auf ein Blatt, das nicht existiert.
    Bitte überprüfen Sie die Daten und versuchen Sie es erneut.", - "SSE.Controllers.Main.errorInvalidRef": "Geben Sie einen korrekten Namen oder einen gültigen Webverweis ein.", - "SSE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", - "SSE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", - "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 Sheets ist derzeit nicht möglich, denn es wird gleichzeitig von einem anderen Benutzer umbenannt.", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Fehler beim Laden des Dokuments. Bitte wählen Sie eine andere Datei.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Verbinden ist fehlgeschlagen.", - "SSE.Controllers.Main.errorMaxPoints": "Die maximale Punktzahl pro eine Tabelle beträgt 4096 Punkte.", - "SSE.Controllers.Main.errorMoveRange": "Es ist unmöglich, den Teil einer verbundenen Zelle zu ändern", - "SSE.Controllers.Main.errorMultiCellFormula": "Matrixformeln mit mehreren Zellen sind in Tabellen nicht zulässig.", - "SSE.Controllers.Main.errorOpensource": "Sie können in der kostenlosen Community-Version nur Dokumente zu betrachten öffnen. Eine kommerzielle Lizenz ist für die Nutzung der mobilen Web-Editoren erforderlich.", - "SSE.Controllers.Main.errorOpenWarning": "Die Länge einer der Formeln in der Datei hat
    die zugelassene Anzahl von Zeichen überschritten und sie wurde entfernt.", - "SSE.Controllers.Main.errorOperandExpected": "Die Syntax der eingegeben Funktion ist nicht korrekt. Bitte überprüfen Sie, ob eine der Klammern - '(' oder ')' fehlt.", - "SSE.Controllers.Main.errorPasteMaxRange": "Zeilen Kopieren und Einfügen stimmen nicht überein.
    Bitte wählen Sie einen Bereich der gleichen Größe oder klicken auf die erste Zelle der Zeile, um die kopierten Zellen einzufügen.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Leider kann man in der aktuellen Programmversion nicht mehr als 1500 Seiten gleichzeitig drucken.
    Diese Einschränkung wird in den kommenden Versionen entfernt.", - "SSE.Controllers.Main.errorProcessSaveResult": "Speichern ist fehlgeschlagen", - "SSE.Controllers.Main.errorServerVersion": "Editor-Version wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", - "SSE.Controllers.Main.errorSessionAbsolute": "Die Bearbeitungssitzung des Dokumentes ist abgelaufen. Laden Sie die Seite neu.", - "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.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.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Externer Fehler.
    Unerwartete GUID. Bitte wenden Sie sich an den Kundendienst, falls der Fehler bestehen bleibt.", - "SSE.Controllers.Main.errorUpdateVersion": "Die Dateiversion wurde geändert. Die Seite wird neu geladen.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.
    Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.", - "SSE.Controllers.Main.errorUserDrop": "Kein Zugriff auf diese Datei ist möglich.", - "SSE.Controllers.Main.errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Benutzeranzahl ist überschritten", - "SSE.Controllers.Main.errorViewerDisconnect": "Die Verbindung ist unterbrochen. Man kann das Dokument anschauen,
    aber nicht herunterladen, bis die Verbindung wiederhergestellt und die Seite neu geladen wird.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Die eingegebene Formel enthält einen Fehler.
    Es wurde falsche Anzahl an Klammern wurde benutzt.", - "SSE.Controllers.Main.errorWrongOperator": "Die eingegebene Formel enthält einen Fehler. Falscher Operator wurde genutzt.
    Bitte korrigieren Sie den Fehler.", - "SSE.Controllers.Main.leavePageText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\", um auf automatisches Speichern des Dokumentes zu warten. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.", - "SSE.Controllers.Main.loadFontsTextText": "Daten werden geladen...", - "SSE.Controllers.Main.loadFontsTitleText": "Daten werden geladen", - "SSE.Controllers.Main.loadFontTextText": "Daten werden geladen...", - "SSE.Controllers.Main.loadFontTitleText": "Daten werden geladen", - "SSE.Controllers.Main.loadImagesTextText": "Bilder werden geladen...", - "SSE.Controllers.Main.loadImagesTitleText": "Bilder werden geladen", - "SSE.Controllers.Main.loadImageTextText": "Bild wird geladen...", - "SSE.Controllers.Main.loadImageTitleText": "Bild wird geladen", - "SSE.Controllers.Main.loadingDocumentTextText": "Tabelle wird geladen...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Tabelle wird geladen", - "SSE.Controllers.Main.mailMergeLoadFileText": "Laden der Datenquellen...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Laden der Datenquellen", - "SSE.Controllers.Main.notcriticalErrorTitle": "Warnung", - "SSE.Controllers.Main.openErrorText": "Beim Öffnen dieser Datei ist ein Fehler aufgetreten.", - "SSE.Controllers.Main.openTextText": "Dokument wird geöffnet...", - "SSE.Controllers.Main.openTitleText": "Das Dokument wird geöffnet", - "SSE.Controllers.Main.pastInMergeAreaError": "Es ist unmöglich, einen Teil der vereinigten Zelle zu ändern", - "SSE.Controllers.Main.printTextText": "Dokument wird ausgedruckt...", - "SSE.Controllers.Main.printTitleText": "Drucken des Dokuments", - "SSE.Controllers.Main.reloadButtonText": "Seite neu laden", - "SSE.Controllers.Main.requestEditFailedMessageText": "Das Dokument wurde gerade von einem anderen Benutzer bearbeitet. Bitte versuchen Sie es später erneut.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Zugriff verweigert", - "SSE.Controllers.Main.saveErrorText": "Beim Speichern dieser Datei ist ein Fehler aufgetreten.", - "SSE.Controllers.Main.savePreparingText": "Speichervorbereitung", - "SSE.Controllers.Main.savePreparingTitle": "Speichervorbereitung. Bitte warten...", - "SSE.Controllers.Main.saveTextText": "Dokument wird gespeichert...", - "SSE.Controllers.Main.saveTitleText": "Dokument wird gespeichert...", - "SSE.Controllers.Main.scriptLoadError": "Die Verbindung ist zu langsam, einige der Komponenten konnten nicht geladen werden. Bitte laden Sie die Seite erneut.", - "SSE.Controllers.Main.sendMergeText": "Merge-Vesand...", - "SSE.Controllers.Main.sendMergeTitle": "Merge-Vesand", - "SSE.Controllers.Main.textAnonymous": "Anonym", - "SSE.Controllers.Main.textBack": "Zurück", - "SSE.Controllers.Main.textBuyNow": "Webseite besuchen", - "SSE.Controllers.Main.textCancel": "Abbrechen", - "SSE.Controllers.Main.textClose": "Schließen", - "SSE.Controllers.Main.textContactUs": "Verkaufsteam", - "SSE.Controllers.Main.textCustomLoader": "Bitte beachten Sie, dass Sie gemäß den Lizenzbedingungen nicht berechtigt sind, den Loader zu wechseln.
    Wenden Sie sich an unseren Vertrieb, um ein Angebot zu erhalten.", - "SSE.Controllers.Main.textDone": "Fertig", - "SSE.Controllers.Main.textGuest": "Gast", - "SSE.Controllers.Main.textHasMacros": "Diese Datei beinhaltet Makros.
    Möchten Sie Makros ausführen?", - "SSE.Controllers.Main.textLoadingDocument": "Tabelle wird geladen", - "SSE.Controllers.Main.textNo": "Nein", - "SSE.Controllers.Main.textNoLicenseTitle": "Lizenzlimit erreicht", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Kostenpflichtige Funktion", - "SSE.Controllers.Main.textPassword": "Kennwort", - "SSE.Controllers.Main.textPreloader": "Ladevorgang...", - "SSE.Controllers.Main.textRemember": "Meine Entscheidung merken", - "SSE.Controllers.Main.textShape": "Form", - "SSE.Controllers.Main.textStrict": "Formaler Modus", - "SSE.Controllers.Main.textTryUndoRedo": "Undo/Redo Optionen sind für den halbformalen Zusammenbearbeitungsmodus deaktiviert.
    Klicken Sie auf den Button \"Formaler Modus\", um den formalen Zusammenbearbeitungsmodus zu aktivieren, um die Datei, ohne Störungen anderer Benutzer zu bearbeiten und die Änderungen erst nachdem Sie sie gespeichert haben, zu senden. Sie können zwischen den Zusammenbearbeitungsmodi mit der Hilfe der erweiterten Einstellungen von Editor umschalten.", - "SSE.Controllers.Main.textUsername": "Benutzername", - "SSE.Controllers.Main.textYes": "Ja", - "SSE.Controllers.Main.titleLicenseExp": "Lizenz ist abgelaufen", - "SSE.Controllers.Main.titleServerVersion": "Editor wurde aktualisiert", - "SSE.Controllers.Main.titleUpdateVersion": "Version wurde geändert", - "SSE.Controllers.Main.txtAccent": "Akzent", - "SSE.Controllers.Main.txtArt": "Hier den Text eingeben", - "SSE.Controllers.Main.txtBasicShapes": "Standardformen", - "SSE.Controllers.Main.txtButtons": "Buttons", - "SSE.Controllers.Main.txtCallouts": "Legenden", - "SSE.Controllers.Main.txtCharts": "Diagramme", - "SSE.Controllers.Main.txtDelimiter": "Trennzeichen", - "SSE.Controllers.Main.txtDiagramTitle": "Diagrammtitel", - "SSE.Controllers.Main.txtEditingMode": "Bearbeitungsmodus einschalten...", - "SSE.Controllers.Main.txtEncoding": "Zeichenkodierung", - "SSE.Controllers.Main.txtErrorLoadHistory": "Laden der Historie ist fehlgeschlagen", - "SSE.Controllers.Main.txtFiguredArrows": "Geformte Pfeile", - "SSE.Controllers.Main.txtLines": "Linien", - "SSE.Controllers.Main.txtMath": "Mathematik", - "SSE.Controllers.Main.txtProtected": "Sobald Sie das Passwort eingegeben und die Datei geöffnet haben, wird das aktuelle Passwort für die Datei zurückgesetzt", - "SSE.Controllers.Main.txtRectangles": "Rechtecke", - "SSE.Controllers.Main.txtSeries": "Reihen", - "SSE.Controllers.Main.txtSpace": "Leerzeichen", - "SSE.Controllers.Main.txtStarsRibbons": "Sterne & Bänder", - "SSE.Controllers.Main.txtStyle_Bad": "Schlecht", - "SSE.Controllers.Main.txtStyle_Calculation": "Berechnung", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Zelle überprüfen", - "SSE.Controllers.Main.txtStyle_Comma": "Finanziell", - "SSE.Controllers.Main.txtStyle_Currency": "Währung", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Erklärender Text", - "SSE.Controllers.Main.txtStyle_Good": "Gut", - "SSE.Controllers.Main.txtStyle_Heading_1": "Überschrift 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Überschrift 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Überschrift 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Überschrift 4", - "SSE.Controllers.Main.txtStyle_Input": "Eingabe", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Verknüpfte Zelle", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Hinweis", - "SSE.Controllers.Main.txtStyle_Output": "Ausgabe", - "SSE.Controllers.Main.txtStyle_Percent": "Prozent", - "SSE.Controllers.Main.txtStyle_Title": "Titel", - "SSE.Controllers.Main.txtStyle_Total": "Insgesamt", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Warnungstext", - "SSE.Controllers.Main.txtTab": "Tabulator", - "SSE.Controllers.Main.txtXAxis": "x-Achse", - "SSE.Controllers.Main.txtYAxis": "y-Achse", - "SSE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.", - "SSE.Controllers.Main.uploadImageExtMessage": "Unbekanntes Bildformat.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Kein Bild wird hochgeladen.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Die maximal zulässige Bildgröße ist überschritten.", - "SSE.Controllers.Main.uploadImageTextText": "Bild wird hochgeladen...", - "SSE.Controllers.Main.uploadImageTitleText": "Bild wird hochgeladen", - "SSE.Controllers.Main.waitText": "Bitte warten...", - "SSE.Controllers.Main.warnLicenseExceeded": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
    Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", - "SSE.Controllers.Main.warnLicenseExp": "Ihre Lizenz ist abgelaufen.
    Bitte aktualisieren Sie Ihre Lizenz und laden Sie die Seite neu.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Die Lizenz ist abgelaufen.
    Die Bearbeitungsfunktionen sind nicht verfügbar.
    Bitte wenden Sie sich an Ihrem Administrator.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Die Lizenz soll aktualisiert werden.
    Die Bearbeitungsfunktionen sind eingeschränkt.
    Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", - "SSE.Controllers.Main.warnNoLicense": "Sie haben das Limit für gleichzeitige Verbindungen in %1-Editoren erreicht. Dieses Dokument wird nur zum Anzeigen geöffnet.
    Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", - "SSE.Controllers.Main.warnProcessRightsChange": "Das Recht, die Datei zu bearbeiten, wurde Ihnen verweigert.", - "SSE.Controllers.Search.textNoTextFound": "Der Text wurde nicht gefunden.", - "SSE.Controllers.Search.textReplaceAll": "Alle ersetzen", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Warnung", - "SSE.Controllers.Settings.txtDe": "Deutsch", - "SSE.Controllers.Settings.txtEn": "Englisch", - "SSE.Controllers.Settings.txtEs": "Spanisch", - "SSE.Controllers.Settings.txtFr": "Französisch", - "SSE.Controllers.Settings.txtIt": "Italienisch", - "SSE.Controllers.Settings.txtPl": "Polnisch", - "SSE.Controllers.Settings.txtRu": "Russisch", - "SSE.Controllers.Settings.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.Statusbar.cancelButtonText": "Abbrechen", - "SSE.Controllers.Statusbar.errNameExists": "Das Tabellenblatt mit einem solchen Namen existiert bereits.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Der Tabellenname kann die folgenden Zeichen nicht enthalten: \\, /, *,?, [,],:", - "SSE.Controllers.Statusbar.errNotEmpty": "Der Tabellenname darf nicht leer sein", - "SSE.Controllers.Statusbar.errorLastSheet": "Ein Arbeitsbuch muss mindestens ein sichtbares Worksheet enthalten.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Worksheet kann nicht gelöscht werden. ", - "SSE.Controllers.Statusbar.menuDelete": "Löschen", - "SSE.Controllers.Statusbar.menuDuplicate": "Verdoppeln", - "SSE.Controllers.Statusbar.menuHide": "Verbergen", - "SSE.Controllers.Statusbar.menuMore": "Mehr", - "SSE.Controllers.Statusbar.menuRename": "Umbenennen", - "SSE.Controllers.Statusbar.menuUnhide": "Einblenden", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Achtung", - "SSE.Controllers.Statusbar.strRenameSheet": "Tabelle umbenennen", - "SSE.Controllers.Statusbar.strSheet": "Sheet", - "SSE.Controllers.Statusbar.strSheetName": "Tabellenname", - "SSE.Controllers.Statusbar.textExternalLink": "Externer Link", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Worksheet kann die Daten enthalten. Fortsetzen?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Dieses Dokument enthält ungespeicherte Änderungen. Klicken Sie \"Auf dieser Seite bleiben\", um auf automatisches Speichern des Dokumentes zu warten. Klicken Sie \"Diese Seite verlassen\", um alle nicht gespeicherten Änderungen zu verwerfen.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Sie verlassen die Anwendung", - "SSE.Controllers.Toolbar.leaveButtonText": "Seite verlassen", - "SSE.Controllers.Toolbar.stayButtonText": "Auf dieser Seite bleiben", - "SSE.Views.AddFunction.sCatDateAndTime": "Datum und Zeit", - "SSE.Views.AddFunction.sCatEngineering": "Engineering", - "SSE.Views.AddFunction.sCatFinancial": "Finanziell", - "SSE.Views.AddFunction.sCatInformation": "Information", - "SSE.Views.AddFunction.sCatLogical": "Logisch", - "SSE.Views.AddFunction.sCatLookupAndReference": "Nachschlage- und Verweisfunktionen", - "SSE.Views.AddFunction.sCatMathematic": "Mathematik und Trigonometrie", - "SSE.Views.AddFunction.sCatStatistical": "Statistisch", - "SSE.Views.AddFunction.sCatTextAndData": "Text und Daten", - "SSE.Views.AddFunction.textBack": "Zurück", - "SSE.Views.AddFunction.textGroups": "Kategorien", - "SSE.Views.AddLink.textAddLink": "Link hinzufügen", - "SSE.Views.AddLink.textAddress": "Adresse", - "SSE.Views.AddLink.textDisplay": "Anzeigen", - "SSE.Views.AddLink.textExternalLink": "Externer Link", - "SSE.Views.AddLink.textInsert": "Einfügen", - "SSE.Views.AddLink.textInternalLink": "Interner Datenbereich", - "SSE.Views.AddLink.textLink": "Link", - "SSE.Views.AddLink.textLinkType": "Typ der Verknüpfung", - "SSE.Views.AddLink.textRange": "Bereich", - "SSE.Views.AddLink.textRequired": "Erforderlich", - "SSE.Views.AddLink.textSelectedRange": "Ausgewählter Bereich", - "SSE.Views.AddLink.textSheet": "Sheet", - "SSE.Views.AddLink.textTip": "Info-Tipp", - "SSE.Views.AddOther.textAddComment": "Kommentar hinzufügen", - "SSE.Views.AddOther.textAddress": "Adresse", - "SSE.Views.AddOther.textBack": "Zurück", - "SSE.Views.AddOther.textComment": "Kommentar", - "SSE.Views.AddOther.textDone": "Fertig", - "SSE.Views.AddOther.textFilter": "Filter", - "SSE.Views.AddOther.textFromLibrary": "Bild aus der Bibliothek", - "SSE.Views.AddOther.textFromURL": "Bild aus URL", - "SSE.Views.AddOther.textImageURL": "Bild-URL", - "SSE.Views.AddOther.textInsert": "Einfügen", - "SSE.Views.AddOther.textInsertImage": "Bild einfügen", - "SSE.Views.AddOther.textLink": "Link", - "SSE.Views.AddOther.textLinkSettings": "Linkeinstellungen", - "SSE.Views.AddOther.textSort": "Sortieren und Filtern", - "SSE.Views.EditCell.textAccounting": "Rechnungswesen", - "SSE.Views.EditCell.textAddCustomColor": "Eine benutzerdefinierte Farbe hinzufügen", - "SSE.Views.EditCell.textAlignBottom": "Unten ausrichten", - "SSE.Views.EditCell.textAlignCenter": "Zentriert ausrichten", - "SSE.Views.EditCell.textAlignLeft": "Linksbündig ausrichten", - "SSE.Views.EditCell.textAlignMiddle": "Mittig ausrichten", - "SSE.Views.EditCell.textAlignRight": "Rechtsbündig ausrichten", - "SSE.Views.EditCell.textAlignTop": "Oben ausrichten", - "SSE.Views.EditCell.textAllBorders": "Alle Rahmenlinien", - "SSE.Views.EditCell.textAngleClockwise": "Im Uhrzeigersinn drehen", - "SSE.Views.EditCell.textAngleCounterclockwise": "Gegen den Uhrzeigersinn drehen", - "SSE.Views.EditCell.textBack": "Zurück", - "SSE.Views.EditCell.textBorderStyle": "Rahmenart", - "SSE.Views.EditCell.textBottomBorder": "Rahmenlinie unten", - "SSE.Views.EditCell.textCellStyle": "Zellenformatvorlagen", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Farbe", - "SSE.Views.EditCell.textCurrency": "Währung", - "SSE.Views.EditCell.textCustomColor": "Benutzerdefinierte Farbe", - "SSE.Views.EditCell.textDate": "Datum", - "SSE.Views.EditCell.textDiagDownBorder": "Rahmenlinien diagonal nach unten", - "SSE.Views.EditCell.textDiagUpBorder": "Rahmenlinien diagonal nach oben", - "SSE.Views.EditCell.textDollar": "US-Dollar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Füllfarbe", - "SSE.Views.EditCell.textFonts": "Schriftarten", - "SSE.Views.EditCell.textFormat": "Format", - "SSE.Views.EditCell.textGeneral": "Allgemein", - "SSE.Views.EditCell.textHorizontalText": "Horizontaler Text", - "SSE.Views.EditCell.textInBorders": "Rahmenlinien innen", - "SSE.Views.EditCell.textInHorBorder": "Innere horizontale Rahmenlinie", - "SSE.Views.EditCell.textInteger": "Ganzzahl", - "SSE.Views.EditCell.textInVertBorder": "Innere vertikale Rahmenlinie", - "SSE.Views.EditCell.textJustified": "Blocksatz", - "SSE.Views.EditCell.textLeftBorder": "Rahmenlinie links", - "SSE.Views.EditCell.textMedium": "Mittelhoch", - "SSE.Views.EditCell.textNoBorder": "Keine Rahmen", - "SSE.Views.EditCell.textNumber": "Nummer", - "SSE.Views.EditCell.textPercentage": "Prozentsatz", - "SSE.Views.EditCell.textPound": "Pfund", - "SSE.Views.EditCell.textRightBorder": "Rahmenlinie rechts", - "SSE.Views.EditCell.textRotateTextDown": "Text nach unten drehen", - "SSE.Views.EditCell.textRotateTextUp": "Text nach oben drehen", - "SSE.Views.EditCell.textRouble": "Rubel", - "SSE.Views.EditCell.textScientific": "Wissenschaftlich", - "SSE.Views.EditCell.textSize": "Größe", - "SSE.Views.EditCell.textText": "Text", - "SSE.Views.EditCell.textTextColor": "Textfarbe", - "SSE.Views.EditCell.textTextFormat": "Textformat", - "SSE.Views.EditCell.textTextOrientation": "Textausrichtung", - "SSE.Views.EditCell.textThick": "Breit", - "SSE.Views.EditCell.textThin": "Dünn", - "SSE.Views.EditCell.textTime": "Zeit", - "SSE.Views.EditCell.textTopBorder": "Rahmenlinie oben", - "SSE.Views.EditCell.textVerticalText": "Vertikaler Text", - "SSE.Views.EditCell.textWrapText": "Textumbruch", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Eine benutzerdefinierte Farbe hinzufügen", - "SSE.Views.EditChart.textAuto": "Automatisch", - "SSE.Views.EditChart.textAxisCrosses": "Schnittpunkt mit der Achse", - "SSE.Views.EditChart.textAxisOptions": "Parameter der Achse", - "SSE.Views.EditChart.textAxisPosition": "Position der Achse", - "SSE.Views.EditChart.textAxisTitle": "Achsentitel", - "SSE.Views.EditChart.textBack": "Zurück", - "SSE.Views.EditChart.textBackward": "Rückwärts navigieren", - "SSE.Views.EditChart.textBorder": "Rahmen", - "SSE.Views.EditChart.textBottom": "Unten", - "SSE.Views.EditChart.textChart": "Diagramm", - "SSE.Views.EditChart.textChartTitle": "Diagrammtitel", - "SSE.Views.EditChart.textColor": "Farbe", - "SSE.Views.EditChart.textCrossesValue": "Wert", - "SSE.Views.EditChart.textCustomColor": "Benutzerdefinierte Farbe", - "SSE.Views.EditChart.textDataLabels": "Datenbeschriftungen", - "SSE.Views.EditChart.textDesign": "Design", - "SSE.Views.EditChart.textDisplayUnits": "Anzeigeeinheiten", - "SSE.Views.EditChart.textFill": "Füllung", - "SSE.Views.EditChart.textForward": "Vorwärts navigieren", - "SSE.Views.EditChart.textGridlines": "Gitternetzlinien ", - "SSE.Views.EditChart.textHorAxis": "Horizontale Achse", - "SSE.Views.EditChart.textHorizontal": "Horizontal", - "SSE.Views.EditChart.textLabelOptions": "Beschriftungsoptionen", - "SSE.Views.EditChart.textLabelPos": "Beschriftungsposition", - "SSE.Views.EditChart.textLayout": "Layout", - "SSE.Views.EditChart.textLeft": "Links", - "SSE.Views.EditChart.textLeftOverlay": "Überlagerung links", - "SSE.Views.EditChart.textLegend": "Legende", - "SSE.Views.EditChart.textMajor": "Primäre", - "SSE.Views.EditChart.textMajorMinor": "Primäre und sekundäre", - "SSE.Views.EditChart.textMajorType": "Primärer Typ", - "SSE.Views.EditChart.textMaxValue": "Maximalwert", - "SSE.Views.EditChart.textMinor": "Unerheblich", - "SSE.Views.EditChart.textMinorType": "Sekundärer Typ", - "SSE.Views.EditChart.textMinValue": "Minimalwert", - "SSE.Views.EditChart.textNone": "Kein", - "SSE.Views.EditChart.textNoOverlay": "Ohne Überlagerung", - "SSE.Views.EditChart.textOverlay": "Überlagerung", - "SSE.Views.EditChart.textRemoveChart": "Diagramm entfernen", - "SSE.Views.EditChart.textReorder": "Neu ordnen", - "SSE.Views.EditChart.textRight": "Rechts", - "SSE.Views.EditChart.textRightOverlay": "Überlagerung rechts", - "SSE.Views.EditChart.textRotated": "Gedreht", - "SSE.Views.EditChart.textSize": "Größe", - "SSE.Views.EditChart.textStyle": "Stil", - "SSE.Views.EditChart.textTickOptions": "Parameter der Teilstriche", - "SSE.Views.EditChart.textToBackground": "In den Hintergrund senden", - "SSE.Views.EditChart.textToForeground": "In den Vordergrund bringen", - "SSE.Views.EditChart.textTop": "Oben", - "SSE.Views.EditChart.textType": "Typ", - "SSE.Views.EditChart.textValReverseOrder": "Werte in umgekehrter Reihenfolge", - "SSE.Views.EditChart.textVerAxis": "Vertikale Achse", - "SSE.Views.EditChart.textVertical": "Vertikal", - "SSE.Views.EditHyperlink.textBack": "Zurück", - "SSE.Views.EditHyperlink.textDisplay": "Anzeigen", - "SSE.Views.EditHyperlink.textEditLink": "Link bearbeiten", - "SSE.Views.EditHyperlink.textExternalLink": "Externer Link", - "SSE.Views.EditHyperlink.textInternalLink": "Interner Datenbereich", - "SSE.Views.EditHyperlink.textLink": "Link", - "SSE.Views.EditHyperlink.textLinkType": "Hyperlinktyp", - "SSE.Views.EditHyperlink.textRange": "Bereich", - "SSE.Views.EditHyperlink.textRemoveLink": "Link entfernen", - "SSE.Views.EditHyperlink.textScreenTip": "Info-Tipp", - "SSE.Views.EditHyperlink.textSheet": "Sheet", - "SSE.Views.EditImage.textAddress": "Adresse", - "SSE.Views.EditImage.textBack": "Zurück", - "SSE.Views.EditImage.textBackward": "Rückwärts navigieren", - "SSE.Views.EditImage.textDefault": "Tatsächliche Größe", - "SSE.Views.EditImage.textForward": "Vorwärts navigieren", - "SSE.Views.EditImage.textFromLibrary": "Bild aus der Bibliothek", - "SSE.Views.EditImage.textFromURL": "Bild aus URL", - "SSE.Views.EditImage.textImageURL": "Bild-URL", - "SSE.Views.EditImage.textLinkSettings": "Verknüpfungseinstellungen", - "SSE.Views.EditImage.textRemove": "Bild entfernen", - "SSE.Views.EditImage.textReorder": "Neu ordnen", - "SSE.Views.EditImage.textReplace": "Ersetzen", - "SSE.Views.EditImage.textReplaceImg": "Bild ersetzen", - "SSE.Views.EditImage.textToBackground": "In den Hintergrund senden", - "SSE.Views.EditImage.textToForeground": "In den Vordergrund bringen", - "SSE.Views.EditShape.textAddCustomColor": "Eine benutzerdefinierte Farbe hinzufügen", - "SSE.Views.EditShape.textBack": "Zurück", - "SSE.Views.EditShape.textBackward": "Rückwärts navigieren", - "SSE.Views.EditShape.textBorder": "Rahmen", - "SSE.Views.EditShape.textColor": "Farbe", - "SSE.Views.EditShape.textCustomColor": "Benutzerdefinierte Farbe", - "SSE.Views.EditShape.textEffects": "Effekte", - "SSE.Views.EditShape.textFill": "Füllung", - "SSE.Views.EditShape.textForward": "Vorwärts navigieren", - "SSE.Views.EditShape.textOpacity": "Intransparenz", - "SSE.Views.EditShape.textRemoveShape": "AutoForm entfernen", - "SSE.Views.EditShape.textReorder": "Neu ordnen", - "SSE.Views.EditShape.textReplace": "Ersetzen", - "SSE.Views.EditShape.textSize": "Größe", - "SSE.Views.EditShape.textStyle": "Stil", - "SSE.Views.EditShape.textToBackground": "In den Hintergrund senden", - "SSE.Views.EditShape.textToForeground": "In den Vordergrund bringen", - "SSE.Views.EditText.textAddCustomColor": "Eine benutzerdefinierte Farbe hinzufügen", - "SSE.Views.EditText.textBack": "Zurück", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Benutzerdefinierte Farbe", - "SSE.Views.EditText.textFillColor": "Füllfarbe", - "SSE.Views.EditText.textFonts": "Schriftarten", - "SSE.Views.EditText.textSize": "Größe", - "SSE.Views.EditText.textTextColor": "Textfarbe", - "SSE.Views.FilterOptions.textClearFilter": "Filter löschen", - "SSE.Views.FilterOptions.textDeleteFilter": "Filter entfernen", - "SSE.Views.FilterOptions.textFilter": "Filteroptionen", - "SSE.Views.Search.textByColumns": "Nach Spalten", - "SSE.Views.Search.textByRows": "Nach Zeilen", - "SSE.Views.Search.textDone": "Fertig", - "SSE.Views.Search.textFind": "Suchen", - "SSE.Views.Search.textFindAndReplace": "Suchen und ersetzen", - "SSE.Views.Search.textFormulas": "Formeln", - "SSE.Views.Search.textHighlightRes": "Ergebnisse hervorheben", - "SSE.Views.Search.textLookIn": "Suchen in", - "SSE.Views.Search.textMatchCase": "Groß-/Kleinschreibung", - "SSE.Views.Search.textMatchCell": "Zelle anpassen", - "SSE.Views.Search.textReplace": "Ersetzen", - "SSE.Views.Search.textSearch": "Suchen", - "SSE.Views.Search.textSearchBy": "Suche", - "SSE.Views.Search.textSearchIn": "Suchen", - "SSE.Views.Search.textSheet": "Sheet", - "SSE.Views.Search.textValues": "Werte", - "SSE.Views.Search.textWorkbook": "Arbeitsmappe", - "SSE.Views.Settings.textAbout": "Über", - "SSE.Views.Settings.textAddress": "Adresse", - "SSE.Views.Settings.textApplication": "Anwendung", - "SSE.Views.Settings.textApplicationSettings": "Anwendungseinstellungen", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Zurück", - "SSE.Views.Settings.textBottom": "Unten", - "SSE.Views.Settings.textCentimeter": "Zentimeter", - "SSE.Views.Settings.textCollaboration": "Zusammenarbeit", - "SSE.Views.Settings.textColorSchemes": "Farbschemas", - "SSE.Views.Settings.textComment": "Kommentar", - "SSE.Views.Settings.textCommentingDisplay": "Kommentare anzeigen", - "SSE.Views.Settings.textCreated": "Erstellt", - "SSE.Views.Settings.textCreateDate": "Erstellungsdatum", - "SSE.Views.Settings.textCustom": "Benutzerdefiniert", - "SSE.Views.Settings.textCustomSize": "Benutzerdefinierte Größe", - "SSE.Views.Settings.textDisableAll": "Alles deaktivieren", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Alle Makros mit einer Benachrichtigung deaktivieren", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung deaktivieren", - "SSE.Views.Settings.textDisplayComments": "Kommentare", - "SSE.Views.Settings.textDisplayResolvedComments": "Gelöste Kommentare", - "SSE.Views.Settings.textDocInfo": "Tabelle Information", - "SSE.Views.Settings.textDocTitle": "Titel der Tabelle", - "SSE.Views.Settings.textDone": "Fertig", - "SSE.Views.Settings.textDownload": "Herunterladen", - "SSE.Views.Settings.textDownloadAs": "Herunterladen als...", - "SSE.Views.Settings.textEditDoc": "Dokument bearbeiten", - "SSE.Views.Settings.textEmail": "E-Email", - "SSE.Views.Settings.textEnableAll": "Alles aktivieren.", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Aktivieren aller Makros mit Benachrichtigung", - "SSE.Views.Settings.textExample": "Beispiel", - "SSE.Views.Settings.textFind": "Suchen", - "SSE.Views.Settings.textFindAndReplace": "Suchen und ersetzen", - "SSE.Views.Settings.textFormat": "Format", - "SSE.Views.Settings.textFormulaLanguage": "Formelsprache ", - "SSE.Views.Settings.textHelp": "Hilfe", - "SSE.Views.Settings.textHideGridlines": "Gitternetzlinien ausblenden", - "SSE.Views.Settings.textHideHeadings": "Überschriften ausblenden", - "SSE.Views.Settings.textInch": "Zoll", - "SSE.Views.Settings.textLandscape": "Querformat", - "SSE.Views.Settings.textLastModified": "Zuletzt geändert", - "SSE.Views.Settings.textLastModifiedBy": "Zuletzt geändert von", - "SSE.Views.Settings.textLeft": "Links", - "SSE.Views.Settings.textLoading": "Ladevorgang...", - "SSE.Views.Settings.textLocation": "Speicherort", - "SSE.Views.Settings.textMacrosSettings": "Makro-Einstellungen", - "SSE.Views.Settings.textMargins": "Seitenränder", - "SSE.Views.Settings.textOrientation": "Ausrichtung", - "SSE.Views.Settings.textOwner": "Besitzer", - "SSE.Views.Settings.textPoint": "Punkt", - "SSE.Views.Settings.textPortrait": "Hochformat", - "SSE.Views.Settings.textPoweredBy": "Betrieben von", - "SSE.Views.Settings.textPrint": "Drucken", - "SSE.Views.Settings.textR1C1Style": "Z1S1-Bezugsart", - "SSE.Views.Settings.textRegionalSettings": "Regionale Einstellungen", - "SSE.Views.Settings.textRight": "Rechts", - "SSE.Views.Settings.textSettings": "Einstellungen", - "SSE.Views.Settings.textShowNotification": "Benachrichtigung anzeigen", - "SSE.Views.Settings.textSpreadsheetFormats": "Formate der Tabellenkalkulation", - "SSE.Views.Settings.textSpreadsheetSettings": "Einstellungen der Tabellenkalkulation", - "SSE.Views.Settings.textSubject": "Thema", - "SSE.Views.Settings.textTel": "Tel.", - "SSE.Views.Settings.textTitle": "Titel", - "SSE.Views.Settings.textTop": "Oben", - "SSE.Views.Settings.textUnitOfMeasurement": "Maßeinheit", - "SSE.Views.Settings.textUploaded": "Hochgeladen", - "SSE.Views.Settings.textVersion": "Version", - "SSE.Views.Settings.unknownText": "Unbekannt", - "SSE.Views.Toolbar.textBack": "Zurück" + "About": { + "textAbout": "Information", + "textAddress": "Adresse", + "textBack": "Zurück", + "textEmail": "E-Mail", + "textPoweredBy": "Unterstützt von", + "textTel": "Tel.", + "textVersion": "Version" + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Warnung", + "textAddComment": "Kommentar hinzufügen", + "textAddReply": "Antwort hinzufügen", + "textBack": "Zurück", + "textCancel": "Abbrechen", + "textCollaboration": "Zusammenarbeit", + "textComments": "Kommentare", + "textDeleteComment": "Kommentar löschen", + "textDeleteReply": "Antwort löschen", + "textDone": "Fertig", + "textEdit": "Bearbeiten", + "textEditComment": "Kommentar bearbeiten", + "textEditReply": "Antwort bearbeiten", + "textEditUser": "Das Dokument wird gerade von mehreren Benutzern bearbeitet:", + "textMessageDeleteComment": "Möchten Sie diesen Kommentar wirklich löschen?", + "textMessageDeleteReply": "Möchten Sie diese Antwort wirklich löschen?", + "textNoComments": "Dieses Dokument enthält keine Kommentare", + "textReopen": "Wiederöffnen", + "textResolve": "Lösen", + "textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.", + "textUsers": "Benutzer" + }, + "ThemeColorPalette": { + "textCustomColors": "Benutzerdefinierte Farben", + "textStandartColors": "Standardfarben", + "textThemeColors": "Farben des Themas" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Kopieren, Ausschneiden und Einfügen über das Kontextmenü werden nur in der aktuellen Datei ausgeführt.", + "menuAddComment": "Kommentar hinzufügen", + "menuAddLink": "Link hinzufügen", + "menuCancel": "Abbrechen", + "menuCell": "Zelle", + "menuDelete": "Löschen", + "menuEdit": "Bearbeiten", + "menuFreezePanes": "Fensterausschnitte fixieren", + "menuHide": "Ausblenden", + "menuMerge": "Verbinden", + "menuMore": "Mehr", + "menuOpenLink": "Link öffnen", + "menuShow": "Anzeigen", + "menuUnfreezePanes": "Fixierung aufheben", + "menuUnmerge": "Verbund aufheben", + "menuUnwrap": "Umbruch aufheben", + "menuViewComment": "Kommentar anzeigen", + "menuWrap": "Umbrechen", + "notcriticalErrorTitle": "Warnung", + "textCopyCutPasteActions": "Kopieren, Ausschneiden und Einfügen", + "textDoNotShowAgain": "Nicht mehr anzeigen", + "warnMergeLostData": "Bei diesem Vorgang werden Daten in ausgewählten Zellen zerstört. Möchten Sie fortsetzen?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Fehler", + "errorAccessDeny": "Dieser Vorgang ist für Sie nicht verfügbar.
    Bitte wenden Sie sich an Administratoren.", + "errorProcessSaveResult": "Fehler beim Speichern von Daten.", + "errorServerVersion": "Version des Editors wurde aktualisiert. Die Seite wird neu geladen, um die Änderungen zu übernehmen.", + "errorUpdateVersion": "Die Dateiversion wurde geändert. Die Seite wird neu geladen.", + "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 \"Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", + "notcriticalErrorTitle": "Warnung", + "SDK": { + "txtAccent": "Akzent", + "txtArt": "Text hier eingeben", + "txtDiagramTitle": "Diagrammtitel", + "txtSeries": "Reihen", + "txtStyle_Bad": "Schlecht", + "txtStyle_Calculation": "Berechnung", + "txtStyle_Check_Cell": "Zelle überprüfen", + "txtStyle_Comma": "Komma", + "txtStyle_Currency": "Währung", + "txtStyle_Explanatory_Text": "Erklärender Text", + "txtStyle_Good": "Gut", + "txtStyle_Heading_1": "Überschrift 1", + "txtStyle_Heading_2": "Überschrift 2", + "txtStyle_Heading_3": "Überschrift 3", + "txtStyle_Heading_4": "Überschrift 4", + "txtStyle_Input": "Eingabe", + "txtStyle_Linked_Cell": "Verknüpfte Zelle", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Hinweis", + "txtStyle_Output": "Ausgabe", + "txtStyle_Percent": "Prozent", + "txtStyle_Title": "Titel", + "txtStyle_Total": "Insgesamt", + "txtStyle_Warning_Text": "Warnungstext", + "txtXAxis": "Achse X", + "txtYAxis": "Achse Y" + }, + "textAnonymous": "Anonym", + "textBuyNow": "Webseite besuchen", + "textClose": "Schließen", + "textContactUs": "Verkaufsteam kontaktieren", + "textCustomLoader": "Sie können den Verlader nicht ändern. Sie können die Anfrage an unser Verkaufsteam senden.", + "textGuest": "Gast", + "textHasMacros": "Die Datei beinhaltet automatische Makros.
    Möchten Sie Makros ausführen?", + "textNo": "Nein", + "textNoLicenseTitle": "Lizenzlimit erreicht", + "textPaidFeature": "Kostenpflichtige Funktion", + "textRemember": "Auswahl speichern", + "textYes": "Ja", + "titleServerVersion": "Editor wurde aktualisiert", + "titleUpdateVersion": "Version wurde geändert", + "warnLicenseExceeded": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Wenden Sie sich an Administratoren für weitere Informationen.", + "warnLicenseLimitedNoAccess": "Lizenz abgelaufen. Keine Bearbeitung möglich. Bitte wenden Sie sich an Administratoren.", + "warnLicenseLimitedRenewed": "Die Lizenz soll aktualisiert werden. Die Bearbeitungsfunktionen sind eingeschränkt.
    Bitte wenden Sie sich an Ihrem Administrator für vollen Zugriff", + "warnLicenseUsersExceeded": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte wenden Sie sich an Ihren Administrator, um weitere Informationen zu erhalten.", + "warnNoLicense": "Sie haben die maximale Anzahl von gleichzeitigen Verbindungen in %1-Editoren erreicht. Die Bearbeitung ist jetzt in diesem Dokument nicht verfügbar. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", + "warnNoLicenseUsers": "Sie haben das Benutzerlimit für %1-Editoren erreicht. Bitte kontaktieren Sie unser Verkaufsteam, um persönliche Upgrade-Bedingungen zu erhalten.", + "warnProcessRightsChange": "Sie können diese Datei nicht bearbeiten." + } + }, + "Error": { + "convertationTimeoutText": "Zeitüberschreitung bei der Konvertierung.", + "criticalErrorExtText": "Klicken Sie auf OK, um zur Liste von Dokumenten zurückzukehren.", + "criticalErrorTitle": "Fehler", + "downloadErrorText": "Herunterladen ist fehlgeschlagen.", + "errorAccessDeny": "Dieser Vorgang ist für Sie nicht verfügbar.
    Bitte wenden Sie sich an Administratoren.", + "errorArgsRange": "Die Formel enthält einen Fehler.
    Falscher Bereich von Argumenten.", + "errorAutoFilterChange": "Der Vorgang ist nicht zulässig, denn es wurde versucht, Zellen in der Tabelle auf Ihrem Arbeitsblatt zu verschieben.", + "errorAutoFilterChangeFormatTable": "Dieser Vorgang kann für die gewählten Zellen nicht ausgeführt werden, weil Sie ein Teil der Tabelle nicht verschieben können.
    Wählen Sie den anderen Datenbereich, so dass die ganze Tabelle verschoben wurde und versuchen Sie noch einmal.", + "errorAutoFilterDataRange": "Die Operation ist für den ausgewählten Zellbereich unmöglich.
    Bitte wählen Sie einen einheitlichen Datenbereich innerhalb oder außerhalb der Tabelle und versuchen Sie neu.", + "errorAutoFilterHiddenRange": "Die Operation kann nicht ausgeführt werden, weil der Bereich gefilterte Zellen enthält.
    Bitte machen Sie die gefilterten Elemente sichtbar und versuchen Sie es erneut.", + "errorBadImageUrl": "URL des Bildes ist falsch", + "errorChangeArray": "Sie können einen Teil eines Arrays nicht ändern.", + "errorConnectToServer": "Das Dokument kann nicht gespeichert werden. Überprüfen Sie Ihre Verbindungseinstellungen oder wenden Sie sich an den Administrator.
    Beim Klicken auf OK können Sie das Dokument herunterladen.", + "errorCopyMultiselectArea": "Bei einer Markierung von nicht angrenzenden Zellen ist die Ausführung dieses Befehls nicht möglich.
    Wählen Sie nur einen einzelnen Bereich aus und versuchen Sie es noch mal.", + "errorCountArg": "Die Formel enthält einen Fehler.
    Ungültige Anzahl von Argumenten.", + "errorCountArgExceed": "Die Formel enthält einen Fehler.
    Maximale Anzahl von Argumenten ist überschritten.", + "errorCreateDefName": "Die bestehende benannte Bereiche können nicht bearbeitet werden und neue Bereiche können
    im Moment nicht erstellt werden, weil einige von ihnen sind in Bearbeitung.", + "errorDatabaseConnection": "Externer Fehler.
    Datenbank-Verbindungsfehler. Wenden Sie sich an den Support.", + "errorDataEncrypted": "Verschlüsselte Änderungen wurden empfangen. Sie können nicht entschlüsselt werden.", + "errorDataRange": "Falscher Datenbereich.", + "errorDataValidate": "Der eingegebene Wert ist ungültig.
    Die Werte, die in diese Zelle eingegeben werden können, sind begrenzt.", + "errorDefaultMessage": "Fehlercode: %1", + "errorEditingDownloadas": "Fehler bei der Arbeit an diesem Dokument.
    Laden Sie die Datei herunter, um sie lokal zu speichern.", + "errorFilePassProtect": "Die Datei ist mit Passwort geschützt und kann nicht geöffnet werden.", + "errorFileRequest": "Externer Fehler.
    Fehler bei der Dateianfrage. Bitte wenden Sie sich an den Support.", + "errorFileSizeExceed": "Die Dateigröße ist zu hoch für Ihren Server.
    Bitte wenden Sie sich an Administratoren.", + "errorFileVKey": "Externer Fehler.
    Ungültiger Sicherheitsschlüssel. Bitte wenden Sie sich an den Support.", + "errorFillRange": "Der gewählte Zellbereich kann nicht ausgefüllt werden.
    Alle verbundenen Zellen müssen die gleiche Größe haben.", + "errorFormulaName": "Die Formel enthält einen Fehler.
    Falscher Formelname.", + "errorFormulaParsing": "Interner Fehler bei der Syntaxanalyse der Formel.", + "errorFrmlMaxLength": "Sie können diese Formel nicht hinzufügen, weil ihre Länge die maximal zulässige Anzahl von Zeichen überschreitet.
    Bearbeiten Sie die Formel und versuchen Sie neu.", + "errorFrmlMaxReference": "Sie können solche Formel nicht eingeben, denn Sie zu viele Werte,
    Zellbezüge und/oder Namen beinhaltet.", + "errorFrmlMaxTextLength": "Textwerte in Formeln sind auf 255 Zeichen begrenzt.
    Verwenden Sie die Funktion VERKETTEN oder den Verkettungsoperator (&).", + "errorFrmlWrongReferences": "Die Funktion bezieht sich auf ein Blatt, das nicht existiert.
    Bitte überprüfen Sie die Daten und versuchen Sie es erneut.", + "errorInvalidRef": "Geben Sie einen korrekten Namen oder einen gültigen Webverweis ein.", + "errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", + "errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", + "errorLockedAll": "Die Operation kann nicht durchgeführt werden, weil das Blatt von einem anderen Benutzer gesperrt ist.", + "errorLockedCellPivot": "Die Daten innerhalb einer Pivot-Tabelle können nicht geändert werden.", + "errorLockedWorksheetRename": "Umbenennen des Blattes ist derzeit nicht möglich, denn es wird gleichzeitig von einem anderen Benutzer umbenannt.", + "errorMaxPoints": "Die maximale Punktzahl pro eine Tabelle beträgt 4096 Punkte.", + "errorMoveRange": "Teil einer verbundenen Zelle kann nicht geändert werden", + "errorMultiCellFormula": "Matrixformeln mit mehreren Zellen sind in Tabellen nicht zulässig.", + "errorOpenWarning": "Die Länge einer der Formeln in der Datei hat
    die zugelassene Anzahl von Zeichen überschritten und sie wurde entfernt.", + "errorOperandExpected": "Die Syntax der eingegeben Funktion ist nicht korrekt. Bitte überprüfen Sie, ob eine der Klammern - '(' oder ')' fehlt.", + "errorPasteMaxRange": "Zeilen Kopieren und Einfügen stimmen nicht überein. Bitte wählen Sie einen Bereich der gleichen Größe oder klicken auf die erste Zelle der Zeile, um die kopierten Zellen einzufügen.", + "errorPrintMaxPagesCount": "Leider kann man in der aktuellen Programmversion nicht mehr als 1500 Seiten gleichzeitig drucken.
    Diese Einschränkung wird in den kommenden Versionen entfernt.", + "errorSessionAbsolute": "Die Bearbeitungssitzung ist abgelaufen. Bitte die Seite neu laden.", + "errorSessionIdle": "Das Dokument wurde schon für lange Zeit nicht bearbeitet. Bitte die Seite neu laden.", + "errorSessionToken": "Die Verbindung mit dem Server wurde unterbrochen. Bitte die Seite neu laden.", + "errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, setzen Sie die Daten im Arbeitsblatt in dieser Reihenfolge:
    Eröffnungskurs, Maximaler Preis, Minimaler Preis, Schlusskurs.", + "errorUnexpectedGuid": "Externer Fehler.
    Unerwartete GUID. Bitte wenden Sie sich an den Support.", + "errorUpdateVersionOnDisconnect": "Die Internetverbindung wurde wiederhergestellt und die Dateiversion wurde geändert.
    Bevor Sie weiterarbeiten können, müssen Sie die Datei herunterladen oder den Inhalt kopieren, um sicherzustellen, dass nichts verloren geht, und diese Seite anschließend neu laden.", + "errorUserDrop": "Kein Zugriff auf diese Datei möglich.", + "errorUsersExceed": "Die nach dem Zahlungsplan erlaubte Anzahl der Benutzer ist überschritten", + "errorViewerDisconnect": "Die Verbindung wurde abgebrochen. Das Dokument wird angezeigt,
    das Herunterladen wird aber nur verfügbar, wenn die Verbindung wiederhergestellt ist.", + "errorWrongBracketsCount": "Die Formel enthält einen Fehler.
    Falsche Anzahl von Klammern.", + "errorWrongOperator": "Die eingegebene Formel enthält einen Fehler. Falscher Operator wurde genutzt.
    Bitte korrigieren Sie den Fehler oder brechen Sie die Formel mit Esc ab.", + "notcriticalErrorTitle": "Warnung", + "openErrorText": "Beim Öffnen dieser Datei ist ein Fehler aufgetreten", + "pastInMergeAreaError": "Teil einer verbundenen Zelle kann nicht geändert werden", + "saveErrorText": "Beim Speichern dieser Datei ist ein Fehler aufgetreten", + "scriptLoadError": "Die Verbindung ist zu langsam, manche Elemente wurden nicht geladen. Bitte die Seite neu laden.", + "unknownErrorText": "Unbekannter Fehler.", + "uploadImageExtMessage": "Unbekanntes Bildformat.", + "uploadImageFileCountMessage": "Keine Bilder hochgeladen.", + "uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten." + }, + "LongActions": { + "applyChangesTextText": "Daten werden geladen...", + "applyChangesTitleText": "Daten werden geladen", + "confirmMoveCellRange": "Der Zielzellenbereich kann Daten enthalten. Möchten Sie fortsetzen?", + "confirmPutMergeRange": "Die Quelldaten enthalten verbundene Zellen.
    Vor dem Einfügen dieser Zellen in die Tabelle, wird die Zusammenführung aufgehoben. ", + "confirmReplaceFormulaInTable": "Formeln in der Kopfzeile werden entfernt und in statischen Text konvertiert.
    Möchten Sie den Vorgang fortsetzen?", + "downloadTextText": "Dokument wird heruntergeladen...", + "downloadTitleText": "Herunterladen des Dokuments", + "loadFontsTextText": "Daten werden geladen...", + "loadFontsTitleText": "Daten werden geladen", + "loadFontTextText": "Daten werden geladen...", + "loadFontTitleText": "Daten werden geladen", + "loadImagesTextText": "Bilder werden geladen...", + "loadImagesTitleText": "Bilder werden geladen", + "loadImageTextText": "Bild wird geladen...", + "loadImageTitleText": "Bild wird geladen", + "loadingDocumentTextText": "Dokument wird geladen...", + "loadingDocumentTitleText": "Dokument wird geladen...", + "notcriticalErrorTitle": "Warnung", + "openTextText": "Dokument wird geöffnet...", + "openTitleText": "Das Dokument wird geöffnet", + "printTextText": "Dokument wird ausgedruckt...", + "printTitleText": "Drucken des Dokuments", + "savePreparingText": "Speichervorbereitung", + "savePreparingTitle": "Speichervorbereitung. Bitte warten...", + "saveTextText": "Dokument wird gespeichert...", + "saveTitleText": "Dokument wird gespeichert...", + "textLoadingDocument": "Dokument wird geladen...", + "textNo": "Nein", + "textOk": "OK", + "textYes": "Ja", + "txtEditingMode": "Bearbeitungsmodul wird festgelegt...", + "uploadImageTextText": "Das Bild wird hochgeladen...", + "uploadImageTitleText": "Bild wird hochgeladen", + "waitText": "Bitte warten..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Warnung", + "textCancel": "Abbrechen", + "textDelete": "Löschen", + "textDuplicate": "Verdoppeln", + "textErrNameExists": "Es gibt schon ein Arbeitsblatt mit solchem Namen.", + "textErrNameWrongChar": "Der Tabellenname kann die folgenden Zeichen nicht enthalten: \\, /, *,?, [,],:", + "textErrNotEmpty": "Der Blattname darf nicht leer sein", + "textErrorLastSheet": "Ein Arbeitsbuch muss mindestens ein sichtbares Arbeitsblatt enthalten.", + "textErrorRemoveSheet": "Arbeitsblatt kann nicht gelöscht werden. ", + "textHide": "Ausblenden", + "textMore": "Mehr", + "textRename": "Umbenennen", + "textRenameSheet": "Tabelle umbenennen", + "textSheet": "Blatt", + "textSheetName": "Blattname", + "textUnhide": "Einblenden", + "textWarnDeleteSheet": "Das Arbeitsblatt kann Daten enthalten. Möchten Sie fortsetzen?" + }, + "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 \"Seite verlassen\", um nicht gespeicherte Änderungen zu verwerfen.", + "dlgLeaveTitleText": "Sie schließen die App", + "leaveButtonText": "Seite verlassen", + "stayButtonText": "Auf dieser Seite bleiben" + }, + "View": { + "Add": { + "errorMaxRows": "FEHLER! Maximale Anzahl an Datenreihen pro Diagramm ist 255.", + "errorStockChart": "Falsche Reihenfolge der Zeilen. Um ein Kursdiagramm zu erstellen, setzen Sie die Daten im Arbeitsblatt in dieser Reihenfolge:
    Eröffnungskurs, Maximaler Preis, Minimaler Preis, Schlusskurs.", + "notcriticalErrorTitle": "Warnung", + "sCatDateAndTime": "Datum und Uhrzeit", + "sCatEngineering": "Ingenieurwesen", + "sCatFinancial": "Finanziell", + "sCatInformation": "Informationen", + "sCatLogical": "Logisch", + "sCatLookupAndReference": "Suche und Verweise", + "sCatMathematic": "Mathematik und Trigonometrie", + "sCatStatistical": "Statistik", + "sCatTextAndData": "Text und Daten", + "textAddLink": "Link hinzufügen", + "textAddress": "Adresse", + "textBack": "Zurück", + "textChart": "Diagramm", + "textComment": "Kommentar", + "textDisplay": "Anzeigen", + "textEmptyImgUrl": "Sie müssen die URL des Bildes angeben.", + "textExternalLink": "Externer Link", + "textFilter": "Filter", + "textFunction": "Funktion", + "textGroups": "KATEGORIEN", + "textImage": "Bild", + "textImageURL": "URL des Bildes", + "textInsert": "Einfügen", + "textInsertImage": "Bild einfügen", + "textInternalDataRange": "Interner Datenbereich", + "textInvalidRange": "FEHLER! Ungültiger Zellenbereich", + "textLink": "Link", + "textLinkSettings": "Linkseinstellungen", + "textLinkType": "Linktyp", + "textOther": "Sonstiges", + "textPictureFromLibrary": "Bild aus dem Verzeichnis", + "textPictureFromURL": "Bild aus URL", + "textRange": "Bereich", + "textRequired": "Erforderlich", + "textScreenTip": "QuickInfo", + "textShape": "Form", + "textSheet": "Blatt", + "textSortAndFilter": "Sortieren und Filtern", + "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein." + }, + "Edit": { + "notcriticalErrorTitle": "Warnung", + "textAccounting": "Rechnungswesen", + "textActualSize": "Tatsächliche Größe", + "textAddCustomColor": "Eine benutzerdefinierte Farbe hinzufügen", + "textAddress": "Adresse", + "textAlign": "Ausrichtung", + "textAlignBottom": "Unten ausrichten", + "textAlignCenter": "Zentriert ausrichten", + "textAlignLeft": "Linksbündig ausrichten", + "textAlignMiddle": "Mittig ausrichten", + "textAlignRight": "Rechtsbündig ausrichten", + "textAlignTop": "Oben ausrichten", + "textAllBorders": "Alle Rahmenlinien", + "textAngleClockwise": "Im Uhrzeigersinn drehen", + "textAngleCounterclockwise": "Gegen den Uhrzeigersinn drehen", + "textAuto": "auto", + "textAxisCrosses": "Schnittpunkt mit der Achse", + "textAxisOptions": "Achsenoptionen", + "textAxisPosition": "Position der Achse", + "textAxisTitle": "Achsentitel", + "textBack": "Zurück", + "textBetweenTickMarks": "Zwischen den Teilstrichen", + "textBillions": "Milliarden", + "textBorder": "Rahmen", + "textBorderStyle": "Rahmenart", + "textBottom": "Unten", + "textBottomBorder": "Rahmenlinie unten", + "textBringToForeground": "In den Vordergrund bringen", + "textCell": "Zelle", + "textCellStyles": "Zellenformatvorlagen", + "textCenter": "Zentriert", + "textChart": "Diagramm", + "textChartTitle": "Diagrammtitel", + "textClearFilter": "Filter leeren", + "textColor": "Farbe", + "textCross": "Schnittpunkt", + "textCrossesValue": "Wert des Kreuzes", + "textCurrency": "Währung", + "textCustomColor": "Benutzerdefinierte Farbe", + "textDataLabels": "Datenbeschriftungen", + "textDate": "Datum", + "textDefault": "Ausgewählter Bereich", + "textDeleteFilter": "Filter entfernen", + "textDesign": "Design", + "textDiagonalDownBorder": "Rahmenlinien diagonal nach unten", + "textDiagonalUpBorder": "Rahmenlinien diagonal nach oben", + "textDisplay": "Anzeigen", + "textDisplayUnits": "Anzeigeeinheiten", + "textDollar": "Dollar", + "textEditLink": "Link bearbeiten", + "textEffects": "Effekte", + "textEmptyImgUrl": "Sie müssen die URL des Bildes angeben.", + "textEmptyItem": "{Lücken}", + "textErrorMsg": "Sie müssen zumindest einen Wert wählen", + "textErrorTitle": "Warnung", + "textEuro": "Euro", + "textExternalLink": "Externer Link", + "textFill": "Füllung", + "textFillColor": "Füllfarbe", + "textFilterOptions": "Filteroptionen", + "textFit": "An Breite anpassen", + "textFonts": "Schriftarten", + "textFormat": "Format", + "textFraction": "Bruch", + "textFromLibrary": "Bild aus dem Verzeichnis", + "textFromURL": "Bild aus URL", + "textGeneral": "Allgemeines", + "textGridlines": "Gitternetzlinien ", + "textHigh": "Hoch", + "textHorizontal": "Horizontal", + "textHorizontalAxis": "Horizontale Achse", + "textHorizontalText": "Horizontaler Text", + "textHundredMil": "100 000 000", + "textHundreds": "Hunderte", + "textHundredThousands": "100 000", + "textHyperlink": "Hyperlink", + "textImage": "Bild", + "textImageURL": "URL des Bildes", + "textIn": "In", + "textInnerBottom": "Innen unten", + "textInnerTop": "Innen oben", + "textInsideBorders": "Rahmenlinien innen", + "textInsideHorizontalBorder": "Innere horizontale Rahmenlinie", + "textInsideVerticalBorder": "Innere vertikale Rahmenlinie", + "textInteger": "Ganze Zahl", + "textInternalDataRange": "Interner Datenbereich", + "textInvalidRange": "Ungültiger Zellenbereich", + "textJustified": "Blocksatz", + "textLabelOptions": "Beschriftungsoptionen", + "textLabelPosition": "Beschriftungsposition", + "textLayout": "Layout", + "textLeft": "Links", + "textLeftBorder": "Rahmenlinie links", + "textLeftOverlay": "Überlagerung links", + "textLegend": "Legende", + "textLink": "Link", + "textLinkSettings": "Linkseinstellungen", + "textLinkType": "Linktyp", + "textLow": "Niedrig", + "textMajor": "Hauptstriche", + "textMajorAndMinor": "Primäre und sekundäre", + "textMajorType": "Haupttyp", + "textMaximumValue": "Maximalwert", + "textMedium": "Mittelhoch", + "textMillions": "Millionen", + "textMinimumValue": "Minimalwert", + "textMinor": "Teilstriche", + "textMinorType": "Sekundärer Typ", + "textMoveBackward": "Nach hinten", + "textMoveForward": "Nach vorne", + "textNextToAxis": "Neben der Achse", + "textNoBorder": "Keine Rahmen", + "textNone": "Kein(e)", + "textNoOverlay": "Ohne Überlagerung", + "textNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein.", + "textNumber": "Nummer", + "textOnTickMarks": "Teilstriche", + "textOpacity": "Undurchsichtigkeit", + "textOut": "Außen", + "textOuterTop": "Außen oben", + "textOutsideBorders": "Rahmenlinien außen", + "textOverlay": "Überlagerung", + "textPercentage": "Prozentsatz", + "textPictureFromLibrary": "Bild aus dem Verzeichnis", + "textPictureFromURL": "Bild aus URL", + "textPound": "Pfund", + "textPt": "pt", + "textRange": "Bereich", + "textRemoveChart": "Diagramm entfernen", + "textRemoveImage": "Bild entfernen", + "textRemoveLink": "Link entfernen", + "textRemoveShape": "Form entfernen", + "textReorder": "Neu ordnen", + "textReplace": "Ersetzen", + "textReplaceImage": "Bild ersetzen", + "textRequired": "Erforderlich", + "textRight": "Rechts", + "textRightBorder": "Rahmenlinie rechts", + "textRightOverlay": "Überlagerung rechts", + "textRotated": "Gedreht", + "textRotateTextDown": "Text nach unten drehen", + "textRotateTextUp": "Text nach oben drehen", + "textRouble": "Russischer Rubel", + "textScientific": "Wissenschaftlich", + "textScreenTip": "QuickInfo", + "textSelectAll": "Alle auswählen", + "textSelectObjectToEdit": "Wählen Sie das Objekt für Bearbeitung aus", + "textSendToBackground": "In den Hintergrund senden", + "textSettings": "Einstellungen", + "textShape": "Form", + "textSheet": "Blatt", + "textSize": "Größe", + "textStyle": "Stil", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Text", + "textTextColor": "Textfarbe", + "textTextFormat": "Textformat", + "textTextOrientation": "Textausrichtung", + "textThick": "Breit", + "textThin": "Dünn", + "textThousands": "Tausende", + "textTickOptions": "Parameter der Teilstriche", + "textTime": "Uhrzeit", + "textTop": "Oben", + "textTopBorder": "Rahmenlinie oben", + "textTrillions": "Billionen", + "textType": "Typ", + "textValue": "Wert", + "textValuesInReverseOrder": "Werte in umgekehrter Reihenfolge", + "textVertical": "Vertikal", + "textVerticalAxis": "Vertikale Achse", + "textVerticalText": "Vertikaler Text", + "textWrapText": "Zeilenumbruch", + "textYen": "Yen", + "txtNotUrl": "Dieser Bereich soll eine URL im Format \"http://www.example.com\" sein." + }, + "Settings": { + "advCSVOptions": "CSV-Optionen auswählen", + "advDRMEnterPassword": "Ihr Passwort:", + "advDRMOptions": "Geschützte Datei", + "advDRMPassword": "Passwort", + "closeButtonText": "Datei schließen", + "notcriticalErrorTitle": "Warnung", + "textAbout": "Information", + "textAddress": "Adresse", + "textApplication": "App", + "textApplicationSettings": "Anwendungseinstellungen", + "textAuthor": "Verfasser", + "textBack": "Zurück", + "textBottom": "Unten", + "textByColumns": "Nach Spalten", + "textByRows": "Nach Zeilen", + "textCancel": "Abbrechen", + "textCentimeter": "Zentimeter", + "textCollaboration": "Zusammenarbeit", + "textColorSchemes": "Farbschemata", + "textComment": "Kommentar", + "textCommentingDisplay": "Kommentare anzeigen", + "textComments": "Kommentare", + "textCreated": "Erstellt", + "textCustomSize": "Benutzerdefinierte Größe", + "textDisableAll": "Alle deaktivieren", + "textDisableAllMacrosWithNotification": "Alle Makros mit einer Benachrichtigung deaktivieren", + "textDisableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung deaktivieren", + "textDone": "Fertig", + "textDownload": "Herunterladen", + "textDownloadAs": "Herunterladen als", + "textEmail": "E-Mail", + "textEnableAll": "Alle aktivieren", + "textEnableAllMacrosWithoutNotification": "Alle Makros ohne Benachrichtigung aktivieren", + "textFind": "Suche", + "textFindAndReplace": "Suchen und ersetzen", + "textFindAndReplaceAll": "Alle suchen und ersetzen", + "textFormat": "Format", + "textFormulaLanguage": "Formelsprache ", + "textFormulas": "Formeln", + "textHelp": "Hilfe", + "textHideGridlines": "Gitternetzlinien ausblenden", + "textHideHeadings": "Überschriften ausblenden", + "textHighlightRes": "Ergebnisse hervorheben", + "textInch": "Zoll", + "textLandscape": "Querformat", + "textLastModified": "Zuletzt geändert", + "textLastModifiedBy": "Zuletzt geändert von", + "textLeft": "Links", + "textLocation": "Standort", + "textLookIn": "Suchen in", + "textMacrosSettings": "Einstellungen von Makros", + "textMargins": "Ränder", + "textMatchCase": "Groß-/Kleinschreibung beachten", + "textMatchCell": "Zelle anpassen", + "textNoTextFound": "Der Text wurde nicht gefunden", + "textOpenFile": "Kennwort zum Öffnen der Datei eingeben", + "textOrientation": "Orientierung", + "textOwner": "Besitzer", + "textPoint": "Punkt", + "textPortrait": "Hochformat", + "textPoweredBy": "Unterstützt von", + "textPrint": "Drucken", + "textR1C1Style": "Z1S1-Bezugsart", + "textRegionalSettings": "Regionale Einstellungen", + "textReplace": "Ersetzen", + "textReplaceAll": "Alle ersetzen", + "textResolvedComments": "Gelöste Kommentare", + "textRight": "Rechts", + "textSearch": "Suche", + "textSearchBy": "Suche", + "textSearchIn": "Suchen in", + "textSettings": "Einstellungen", + "textSheet": "Blatt", + "textShowNotification": "Benachrichtigung anzeigen", + "textSpreadsheetFormats": "Formate der Tabellenkalkulation", + "textSpreadsheetInfo": "Tabelleninformationen", + "textSpreadsheetSettings": "Einstellungen der Tabellenkalkulation", + "textSpreadsheetTitle": "Titel der Tabelle", + "textSubject": "Betreff", + "textTel": "Tel.", + "textTitle": "Titel", + "textTop": "Oben", + "textUnitOfMeasurement": "Maßeinheit", + "textUploaded": "Hochgeladen", + "textValues": "Werte", + "textVersion": "Version", + "textWorkbook": "Arbeitsmappe", + "txtDelimiter": "Trennzeichen", + "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", + "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?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 730a81fc13..c3f3e706d5 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -1,578 +1,576 @@ { - "Controller" : { - "Main" : { - "SDK": { - "txtStyle_Normal": "Normal", - "txtStyle_Heading_1": "Heading 1", - "txtStyle_Heading_2": "Heading 2", - "txtStyle_Heading_3": "Heading 3", - "txtStyle_Heading_4": "Heading 4", - "txtStyle_Title": "Title", - "txtStyle_Neutral": "Neutral", - "txtStyle_Bad": "Bad", - "txtStyle_Good": "Good", - "txtStyle_Input": "Input", - "txtStyle_Output": "Output", - "txtStyle_Calculation": "Calculation", - "txtStyle_Check_Cell": "Check Cell", - "txtStyle_Explanatory_Text": "Explanatory Text", - "txtStyle_Note": "Note", - "txtStyle_Linked_Cell": "Linked Cell", - "txtStyle_Warning_Text": "Warning Text", - "txtStyle_Total": "Total", - "txtStyle_Currency": "Currency", - "txtStyle_Percent": "Percent", - "txtStyle_Comma": "Comma", - "txtSeries": "Series", - "txtDiagramTitle": "Chart Title", - "txtXAxis": "X Axis", - "txtYAxis": "Y Axis", - "txtArt": "Your text here", - "txtAccent": "Accent" - }, - "textGuest": "Guest", - "textAnonymous": "Anonymous", - "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.", - "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.", - "textNoLicenseTitle": "License limit reached", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please contact your administrator.", - "warnLicenseLimitedRenewed": "License needs to be renewed. You have a limited access to document editing functionality.
    Please contact your administrator to get full access", - "textBuyNow": "Visit website", - "textContactUs": "Contact sales", - "textPaidFeature": "Paid feature", - "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.", - "textClose": "Close", - - "notcriticalErrorTitle": "Warning", - "textHasMacros": "The file contains automatic macros.
    Do you want to run macros?", - "textRemember": "Remember my choice", - "textYes": "Yes", - "textNo": "No", - - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "titleUpdateVersion": "Version changed", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "titleServerVersion": "Editor updated", - "errorProcessSaveResult": "Saving is failed.", - "criticalErrorTitle": "Error", - "warnProcessRightsChange": "You have been denied the right to edit the file.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator." - } + "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" }, - "LongActions": { - "openTitleText": "Opening Document", - "openTextText": "Opening document...", - "saveTitleText": "Saving Document", - "saveTextText": "Saving document...", - "loadFontsTitleText": "Loading Data", - "loadFontsTextText": "Loading data...", - "loadImagesTitleText": "Loading Images", - "loadImagesTextText": "Loading images...", - "loadFontTitleText": "Loading Data", - "loadFontTextText": "Loading data...", - "loadImageTitleText": "Loading Image", - "loadImageTextText": "Loading image...", - "downloadTitleText": "Downloading Document", - "downloadTextText": "Downloading document...", - "printTitleText": "Printing Document", - "printTextText": "Printing document...", - "uploadImageTitleText": "Uploading Image", - "uploadImageTextText": "Uploading image...", - "applyChangesTitleText": "Loading Data", - "applyChangesTextText": "Loading data...", - "savePreparingText": "Preparing to save", - "savePreparingTitle": "Preparing to save. Please wait...", - "waitText": "Please, wait...", - "txtEditingMode": "Set editing mode...", - "loadingDocumentTitleText": "Loading document", - "loadingDocumentTextText": "Loading document...", - "textLoadingDocument": "Loading document", - "textYes": "Yes", - "notcriticalErrorTitle": "Warning", - "textOk": "Ok", - "textNo": "No", - "confirmMoveCellRange": "The destination cell`s 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?" - }, - "Error": { - "criticalErrorTitle": "Error", - "unknownErrorText": "Unknown error.", - "convertationTimeoutText": "Convertation timeout exceeded.", - "openErrorText": "An error has occurred while opening the file", - "saveErrorText": "An error has occurred while saving the file", - "downloadErrorText": "Download failed.", - "uploadImageSizeMessage": "Maximium image size limit exceeded.", - "uploadImageExtMessage": "Unknown image format.", - "uploadImageFileCountMessage": "No images uploaded.", - "errorKeyEncrypt": "Unknown key descriptor", - "errorKeyExpire": "Key descriptor expired", - "errorUsersExceed": "Count of users was exceed", - "errorViewerDisconnect": "Connection is lost. You can still view the document,
    but will not be able to download until the connection is restored and page is reloaded.", - "errorFilePassProtect": "The file is password protected and could not be opened.", - "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.", - "errorDataRange": "Incorrect data range.", - "errorDatabaseConnection": "External error.
    Database connection error. Please, contact support.", - "errorUserDrop": "The file cannot be accessed right now.", - "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.", - "errorBadImageUrl": "Image url is incorrect", - "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.", - "errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
    Please contact your Document Server administrator.", - "errorEditingDownloadas": "An error occurred during the work with the document.
    Use the 'Download' option to save the file backup copy to your computer hard drive.", - "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.", - "errorDefaultMessage": "Error code: %1", - "criticalErrorExtText": "Press 'OK' to back to document list.", - "notcriticalErrorTitle": "Warning", - "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", - "pastInMergeAreaError": "Cannot change part of a merged cell", - "errorWrongBracketsCount": "Found an error in the formula entered.
    Wrong cout of brackets.", - "errorWrongOperator": "An error in the entered formula. Wrong operator is used.
    Please correct the error or use the Esc button to cancel the formula editing.", - "errorCountArgExceed": "Found an error in the formula entered.
    Count of arguments exceeded.", - "errorCountArg": "Found an error in the formula entered.
    Invalid number of arguments.", - "errorFormulaName": "Found an error in the formula entered.
    Incorrect formula name.", - "errorFormulaParsing": "Internal error while the formula parsing.", - "errorArgsRange": "Found an error in the formula entered.
    Incorrect arguments range.", - "errorUnexpectedGuid": "External error.
    Unexpected Guid. Please, contact support.", - "errorFileRequest": "External error.
    File Request. Please, contact support.", - "errorFileVKey": "External error.
    Incorrect securety key. Please, contact support.", - "errorMaxPoints": "The maximum number of points in series per chart is 4096.", - "errorOperandExpected": "The entered function syntax is not correct. Please check if you are missing one of the parentheses - '(' or ')'.", - "errorMoveRange": "Cann't change a part of merged cell", - "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.", - "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.", - "errorAutoFilterChange": "The operation is not allowed, as it is attempting to shift cells in a table on your worksheet.", - "errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
    Please unhide the filtered elements and try again.", - "errorFillRange": "Could not fill the selected range of cells.
    All the merged cells need to be the same size.", - "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", - "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.", - "errorPasteMaxRange": "The copy and paste area does not match. Please select an area with the same size or click the first cell in a row to paste the copied cells.", - "errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", - "errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", - "errorOpenWarning": "The length of one of the formulas in the file exceeded
    the allowed number of characters and it was removed.", - "errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
    Please check the data and try again.", - "errorCopyMultiselectArea": "This command cannot be used with multiple selections.
    Select a single range and try again.", - "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.", - "errorChangeArray": "You cannot change part of an array.", - "errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", - "errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
    Use the CONCATENATE function or concatenation operator (&)", - "errorFrmlMaxLength": "You cannot add this formula as its length exceeded 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.", - "errorDataValidate": "The value you entered is not valid.
    A user has restricted values that can be entered into this cell.", - "errorLockedCellPivot": "You cannot change data inside a pivot table." - }, - "ContextMenu": { - "menuViewComment": "View Comment", - "menuAddComment": "Add Comment", - "menuMore": "More", - "menuCancel": "Cancel", - "textCopyCutPasteActions": "Copy, Cut and Paste Actions", - "errorCopyCutPaste": "Copy, cut and paste actions using the context menu will be performed within the current file only.", - "textDoNotShowAgain": "Don't show again", - "warnMergeLostData": "Operation can destroy data in the selected cells. Continue?", - "notcriticalErrorTitle": "Warning", - "menuAddLink": "Add Link", - "menuOpenLink": "Open Link", - "menuUnfreezePanes": "Unfreeze Panes", - "menuFreezePanes": "Freeze Panes", - "menuUnwrap": "Unwrap", - "menuWrap": "Wrap", - "menuMerge": "Merge", - "menuUnmerge": "Unmerge", - "menuCell": "Cell", - "menuShow": "Show", - "menuHide": "Hide", - "menuEdit": "Edit", - "menuDelete": "Delete" - }, - "Toolbar": { - "dlgLeaveTitleText": "You leave the application", - "dlgLeaveMsgText": "You have unsaved changes in this document. Click 'Stay on this Page' to await the autosave of the document. Click 'Leave this Page' to discard all the unsaved changes.", - "leaveButtonText": "Leave this Page", - "stayButtonText": "Stay on this Page" - }, - "View" : { - "Add" : { - "textChart": "Chart", - "textFunction": "Function", - "textShape": "Shape", - "textOther": "Other", - "textGroups": "CATEGORIES", - "textBack": "Back", - "sCatLogical": "Logical", - "sCatDateAndTime": "Date and time", - "sCatEngineering": "Engineering", - "sCatFinancial": "Financial", - "sCatInformation": "Information", - "sCatLookupAndReference": "Lookup and Reference", - "sCatMathematic": "Math and trigonometry", - "sCatStatistical": "Statistical", - "sCatTextAndData": "Text and data", - "textImage": "Image", - "textInsertImage": "Insert Image", - "textLinkSettings": "Link Settings", - "textAddress": "Address", - "textImageURL": "Image URL", - "textPictureFromLibrary": "Picture from library", - "textPictureFromURL": "Picture from URL", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textEmptyImgUrl": "You need to specify image URL.", - "notcriticalErrorTitle": "Warning", - "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.", - "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", - "textLink": "Link", - "textAddLink": "Add Link", - "textLinkType": "Link Type", - "textExternalLink": "External Link", - "textInternalDataRange": "Internal Data Range", - "textSheet": "Sheet", - "textRange": "Range", - "textRequired": "Required", - "textDisplay": "Display", - "textScreenTip": "Screen Tip", - "textInsert": "Insert", - "textInvalidRange": "ERROR! Invalid cells range", - "textSortAndFilter": "Sort and Filter", - "textFilter": "Filter", - "textComment": "Comment" - }, - "Edit" : { - "textSelectObjectToEdit": "Select object to edit", - "textSettings": "Settings", - "textCell": "Cell", - "textReplace": "Replace", - "textReorder": "Reorder", - "textAlign": "Align", - "textRemoveShape": "Remove Shape", - "textStyle": "Style", - "textShape": "Shape", - "textBack": "Back", - "textFill": "Fill", - "textBorder": "Border", - "textEffects": "Effects", - "textAddCustomColor": "Add Custom Color", - "textCustomColor": "Custom Color", - "textOpacity": "Opacity", - "textSize": "Size", - "textColor": "Color", - "textBringToForeground": "Bring to Foreground", - "textSendToBackground": "Send to Background", - "textMoveForward": "Move Forward", - "textMoveBackward": "Move Backward", - "textImage": "Image", - "textFromLibrary": "Picture from Library", - "textFromURL": "Picture from URL", - "textLinkSettings": "Link Settings", - "textAddress": "Address", - "textImageURL": "Image URL", - "textReplaceImage": "Replace Image", - "textActualSize": "Actual Size", - "textRemoveImage": "Remove Image", - "textEmptyImgUrl": "You need to specify image URL.", - "textNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "notcriticalErrorTitle": "Warning", - "textPictureFromLibrary": "Picture from Library", - "textPictureFromURL": "Picture from URL", - "textTextColor": "Text Color", - "textFillColor": "Fill Color", - "textTextFormat": "Text Format", - "textTextOrientation": "Text Orientation", - "textBorderStyle": "Border Style", - "textFonts": "Fonts", - "textAuto": "Auto", - "textPt": "pt", - "textFormat": "Format", - "textCellStyles": "Cell Styles", - "textAlignLeft": "Align Left", - "textAlignCenter": "Align Center", - "textAlignRight": "Align Right", - "textJustified": "Justified", - "textAlignTop": "Align Top", - "textAlignMiddle": "Align Middle", - "textAlignBottom": "Align Bottom", - "textWrapText": "Wrap Text", - "textHorizontalText": "Horizontal Text", - "textAngleCounterclockwise": "Angle Counterclockwise", - "textAngleClockwise": "Angle Clockwise", - "textVerticalText": "Vertical Text", - "textRotateTextUp": "Rotate Text Up", - "textRotateTextDown": "Rotate Text Down", - "textNoBorder": "No Border", - "textAllBorders": "All Borders", - "textOutsideBorders": "Outside Borders", - "textBottomBorder": "Bottom Border", - "textTopBorder": "Top Border", - "textLeftBorder": "Left Border", - "textRightBorder": "Right Border", - "textInsideBorders": "Inside Borders", - "textInsideVerticalBorder": "Inside Vertical Border", - "textInsideHorizontalBorder": "Inside Horizontal Border", - "textDiagonalUpBorder": "Diagonal Up Border", - "textDiagonalDownBorder": "Diagonal Down Border", - "textThin": "Thin", - "textMedium": "Medium", - "textThick": "Thick", - "textFraction": "Fraction", - "textGeneral": "General", - "textNumber": "Number", - "textInteger": "Integer", - "textScientific": "Scientific", - "textAccounting": "Accounting", - "textCurrency": "Currency", - "textDate": "Date", - "textTime": "Time", - "textPercentage": "Percentage", - "textText": "Text", - "textDollar": "Dollar", - "textEuro": "Euro", - "textPound": "Pound", - "textRouble": "Rouble", - "textYen": "Yen", - "textChart": "Chart", - "textDesign": "Design", - "textVerticalAxis": "Vertical Axis", - "textHorizontalAxis": "Horizontal Axis", - "textRemoveChart": "Remove Chart", - "textLayout": "Layout", - "textType": "Type", - "textChartTitle": "Chart Title", - "textLegend": "Legend", - "textAxisTitle": "Axis Title", - "textHorizontal": "Horizontal", - "textVertical": "Vertical", - "textGridlines": "Gridlines", - "textDataLabels": "Data Labels", - "textNone": "None", - "textOverlay": "Overlay", - "textNoOverlay": "No Overlay", - "textLeft": "Left", - "textTop": "Top", - "textRight": "Right", - "textBottom": "Bottom", - "textLeftOverlay": "Left Overlay", - "textRightOverlay": "Right Overlay", - "textRotated": "Rotated", - "textMajor": "Major", - "textMinor": "Minor", - "textMajorAndMinor": "Major And Minor", - "textCenter": "Center", - "textInnerBottom": "Inner Bottom", - "textInnerTop": "Inner Top", - "textOuterTop": "Outer Top", - "textFit": "Fit Width", - "textMinimumValue": "Minimum Value", - "textMaximumValue": "Maximum Value", - "textAxisCrosses": "Axis Crosses", - "textDisplayUnits": "Display Units", - "textValuesInReverseOrder": "Values in Reverse Order", - "textTickOptions": "Tick Options", - "textMajorType": "Major Type", - "textMinorType": "Minor Type", - "textLabelOptions": "Label Options", - "textLabelPosition": "Label Position", - "textAxisOptions": "Axis Options", - "textValue": "Value", - "textHundreds": "Hundreds", - "textThousands": "Thousands", - "textMillions": "Millions", - "textBillions": "Billions", - "textTrillions": "Trillions", - "textTenThousands": "10 000", - "textHundredThousands": "100 000", - "textTenMillions": "10 000 000", - "textHundredMil": "100 000 000", - "textCross": "Cross", - "textIn": "In", - "textOut": "Out", - "textLow": "Low", - "textHigh": "High", - "textNextToAxis": "Next to Axis", - "textCrossesValue": "Crosses Value", - "textOnTickMarks": "On Tick Marks", - "textBetweenTickMarks": "Between Tick Marks", - "textAxisPosition": "Axis Position", - "textHyperlink": "Hyperlink", - "textLinkType": "Link Type", - "textLink": "Link", - "textSheet": "Sheet", - "textRange": "Range", - "textDisplay": "Display", - "textScreenTip": "Screen Tip", - "textEditLink": "Edit Link", - "textRemoveLink": "Remove Link", - "textRequired": "Required", - "textInternalDataRange": "Internal Data Range", - "textExternalLink": "External Link", - "textDefault": "Selected range", - "textInvalidRange": "Invalid cells range", - "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", - "textFilterOptions": "Filter Options", - "textClearFilter": "Clear Filter", - "textDeleteFilter": "Delete Filter", - "textSelectAll": "Select All", - "textEmptyItem": "{Blanks}", - "textErrorTitle": "Warning", - "textErrorMsg": "You must choose at least one value" - }, - "Settings": { - "textFindAndReplace": "Find and Replace", - "textFindAndReplaceAll": "Find and Replace All", - "textSpreadsheetSettings": "Spreadsheet Settings", - "textApplicationSettings": "Application Settings", - "textDownload": "Download", - "textPrint": "Print", - "textSpreadsheetInfo": "Spreadsheet Info", - "textHelp": "Help", - "textAbout": "About", - "textDone": "Done", - "textSettings": "Settings", - "textBack": "Back", - "textOrientation": "Orientation", - "textPortrait": "Portrait", - "textLandscape": "Landscape", - "textFormat": "Format", - "textMargins": "Margins", - "textColorSchemes": "Color Schemes", - "textHideHeadings": "Hide Headings", - "textHideGridlines": "Hide Gridlines", - "textLeft": "Left", - "textBottom": "Bottom", - "textTop": "Top", - "textRight": "Right", - "textCustomSize": "Custom Size", - "textSpreadsheetFormats": "Spreadsheet Formats", - "textDownloadAs": "Download As", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
    Are you sure you want to continue?", - "notcriticalErrorTitle": "Warning", - "txtEncoding": "Encoding", - "txtDelimiter": "Delimiter", - "txtSpace": "Space", - "txtTab": "Tab", - "advCSVOptions": "Choose CSV Options", - "advDRMOptions": "Protected File", - "advDRMEnterPassword": "You password please:", - "advDRMPassword": "Password", - "closeButtonText": "Close File", - "txtProtected": "Once you enter the password and open the file, the current password to the file will be reset", - "textOpenFile": "Enter a password to open the file", - "txtIncorrectPwd": "Password is incorrect", - "textCancel": "Cancel", - "textUnitOfMeasurement": "Unit Of Measurement", - "textCentimeter": "Centimeter", - "textPoint": "Point", - "textInch": "Inch", - "textMacrosSettings": "Macros Settings", - "textFormulaLanguage": "Formula Language", - "textRegionalSettings": "Regional Settings", - "textCommentingDisplay": "Commenting Display", - "textComments": "Comments", - "textResolvedComments": "Resolved Comments", - "textR1C1Style": "R1C1 Reference Style", - "textDisableAll": "Disable All", - "textDisableAllMacrosWithoutNotification": "Disable all macros without a notification", - "textShowNotification": "Show Notification", - "textDisableAllMacrosWithNotification": "Disable all macros with a notification", - "textEnableAll": "Enable All", - "textEnableAllMacrosWithoutNotification": "Enable all macros without a notification", - "textSpreadsheetTitle": "Spreadsheet Title", - "textOwner": "Owner", - "textLocation": "Location", - "textUploaded": "Uploaded", - "textTitle": "Title", - "textSubject": "Subject", - "textComment": "Comment", - "textLastModified": "Last Modified", - "textLastModifiedBy": "Last Modified By", - "textCreated": "Created", - "textApplication": "Application", - "textAuthor": "Author", - "textVersion": "Version", - "textEmail": "Email", - "textAddress": "Address", - "textTel": "Tel", - "textPoweredBy": "Powered By", - "textFind": "Find", - "textSearch": "Search", - "textReplace": "Replace", - "textMatchCase": "Match Case", - "textMatchCell": "Match Cell", - "textSearchIn": "Search In", - "textWorkbook": "Workbook", - "textSheet": "Sheet", - "textHighlightRes": "Highlight results", - "textByColumns": "By columns", - "textByRows": "By rows", - "textSearchBy": "Search", - "textLookIn": "Look In", - "textFormulas": "Formulas", - "textValues": "Values", - "textNoTextFound": "Text not found", - "textReplaceAll": "Replace All", - "textCollaboration": "Collaboration" - } - }, - "Statusbar": { - "textDuplicate": "Duplicate", - "textDelete": "Delete", - "textHide": "Hide", - "textUnhide": "Unhide", - "textErrorLastSheet": "Workbook must have at least one visible worksheet.", - "textErrorRemoveSheet": "Can\"t delete the worksheet.", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", - "textSheet": "Sheet", - "textRename": "Rename", - "textErrNameExists": "Worksheet with such name already exist.", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, \/, *, ?, [, ], :", - "textErrNotEmpty": "Sheet name must not be empty", - "textRenameSheet": "Rename Sheet", - "textSheetName": "Sheet Name", - "textCancel": "Cancel", - "notcriticalErrorTitle": "Warning", - "textMore": "More" - }, - "Common": { - "ThemeColorPalette": { - "textThemeColors": "Theme Colors", - "textStandartColors": "Standard Colors", - "textCustomColors": "Custom Colors" - }, - "Collaboration": { - "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "notcriticalErrorTitle": "Warning", - "textCollaboration": "Collaboration", - "textBack": "Back", - "textUsers": "Users", - "textEditUser": "Users who are editing the file:", - "textComments": "Comments", - "textAddComment": "Add Comment", - "textCancel": "Cancel", - "textDone": "Done", - "textNoComments": "This document doesn't contain comments", - "textEdit": "Edit", - "textResolve": "Resolve", - "textReopen": "Reopen", - "textAddReply": "Add Reply", - "textDeleteComment": "Delete Comment", - "textMessageDeleteComment": "Do you really want to delete this comment?", - "textMessageDeleteReply": "Do you really want to delete this reply?", - "textDeleteReply": "Delete Reply", - "textEditComment": "Edit Comment", - "textEditReply": "Edit Reply" - } - }, - "About": { - "textAbout": "About", - "textVersion": "Version", - "textEmail": "Email", - "textAddress": "Address", - "textTel": "Tel", - "textPoweredBy": "Powered By", - "textBack": "Back" + "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\"" + }, + "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\"" + }, + "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?" + } + } +} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index b620b4fff5..92de7a2547 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -1,661 +1,576 @@ { - "Common.Controllers.Collaboration.textAddReply": "Añadir respuesta", - "Common.Controllers.Collaboration.textCancel": "Cancelar", - "Common.Controllers.Collaboration.textDeleteComment": "Eliminar comentario", - "Common.Controllers.Collaboration.textDeleteReply": "Eliminar respuesta", - "Common.Controllers.Collaboration.textDone": "Listo", - "Common.Controllers.Collaboration.textEdit": "Editar", - "Common.Controllers.Collaboration.textEditUser": "El documento está siendo editado por múltiples usuarios.", - "Common.Controllers.Collaboration.textMessageDeleteComment": "¿Realmente quiere eliminar este comentario?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "¿Realmente quiere eliminar esta respuesta?", - "Common.Controllers.Collaboration.textReopen": "Volver a abrir", - "Common.Controllers.Collaboration.textResolve": "Resolver", - "Common.Controllers.Collaboration.textYes": "Sí", - "Common.UI.ThemeColorPalette.textCustomColors": "Colores personalizados", - "Common.UI.ThemeColorPalette.textStandartColors": "Colores estándar", - "Common.UI.ThemeColorPalette.textThemeColors": "Colores de tema", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Añadir respuesta", - "Common.Views.Collaboration.textBack": "Atrás", - "Common.Views.Collaboration.textCancel": "Cancelar", - "Common.Views.Collaboration.textCollaboration": "Colaboración", - "Common.Views.Collaboration.textDone": "Listo", - "Common.Views.Collaboration.textEditReply": "Editar respuesta", - "Common.Views.Collaboration.textEditUsers": "Usuarios", - "Common.Views.Collaboration.textEditСomment": "Editar comentario", - "Common.Views.Collaboration.textNoComments": "Esta hoja de cálculo no contiene comentarios", - "Common.Views.Collaboration.textСomments": "Comentarios", - "SSE.Controllers.AddChart.txtDiagramTitle": "Título de gráfico", - "SSE.Controllers.AddChart.txtSeries": "Serie", - "SSE.Controllers.AddChart.txtXAxis": "Eje X", - "SSE.Controllers.AddChart.txtYAxis": "Eje Y", - "SSE.Controllers.AddContainer.textChart": "Gráfico", - "SSE.Controllers.AddContainer.textFormula": "Función", - "SSE.Controllers.AddContainer.textImage": "Imagen", - "SSE.Controllers.AddContainer.textOther": "Otro", - "SSE.Controllers.AddContainer.textShape": "Forma", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.AddLink.textInvalidRange": "¡ERROR!Rango de celdas inválido", - "SSE.Controllers.AddLink.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.AddOther.textCancel": "Cancelar", - "SSE.Controllers.AddOther.textContinue": "Continuar", - "SSE.Controllers.AddOther.textDelete": "Eliminar", - "SSE.Controllers.AddOther.textDeleteDraft": "¿Realmente quiere eliminar el borrador?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Hay que especificar URL de imagen", - "SSE.Controllers.AddOther.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "El enlace no existe. Por favor, corrija o elimine el enlace.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Agregar comentario", - "SSE.Controllers.DocumentHolder.menuAddLink": "Añadir enlace ", - "SSE.Controllers.DocumentHolder.menuCell": "Celda", - "SSE.Controllers.DocumentHolder.menuCopy": "Copiar ", - "SSE.Controllers.DocumentHolder.menuCut": "Cortar", - "SSE.Controllers.DocumentHolder.menuDelete": "Eliminar", - "SSE.Controllers.DocumentHolder.menuEdit": "Editar", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Inmovilizar paneles", - "SSE.Controllers.DocumentHolder.menuHide": "Ocultar", - "SSE.Controllers.DocumentHolder.menuMerge": "Unir", - "SSE.Controllers.DocumentHolder.menuMore": "Más", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Abrir enlace", - "SSE.Controllers.DocumentHolder.menuPaste": "Pegar", - "SSE.Controllers.DocumentHolder.menuShow": "Mostrar", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Movilizar paneles", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Anular combinación", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Desenvolver", - "SSE.Controllers.DocumentHolder.menuViewComment": "Ver comentario", - "SSE.Controllers.DocumentHolder.menuWrap": "Envoltura", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.DocumentHolder.sheetCancel": "Cancelar", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Acciones de Copiar, Cortar y Pegar", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "No mostrar otra vez", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "En la celda unida permanecerán sólo los datos de la celda de la esquina superior izquierda.
    Está seguro de que quiere continuar?", - "SSE.Controllers.EditCell.textAuto": "Auto", - "SSE.Controllers.EditCell.textFonts": "Fuentes", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ERROR! Número máximo de series de datos para un gráfico es 255.", - "SSE.Controllers.EditChart.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:
    precio de apertura, precio máximo, precio mínimo, precio de cierre.", - "SSE.Controllers.EditChart.textAuto": "Auto", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Entre marcas de graduación", - "SSE.Controllers.EditChart.textBillions": "Miles de millones", - "SSE.Controllers.EditChart.textBottom": "Abajo ", - "SSE.Controllers.EditChart.textCenter": "Al centro", - "SSE.Controllers.EditChart.textCross": "Intersección", - "SSE.Controllers.EditChart.textCustom": "Personalizado", - "SSE.Controllers.EditChart.textFit": "Ajustar al ancho", - "SSE.Controllers.EditChart.textFixed": "Fijado", - "SSE.Controllers.EditChart.textHigh": "Alta", - "SSE.Controllers.EditChart.textHorizontal": "Horizontal ", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Cientos", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "En", - "SSE.Controllers.EditChart.textInnerBottom": "Abajo en el interior", - "SSE.Controllers.EditChart.textInnerTop": "Arriba en el interior", - "SSE.Controllers.EditChart.textLeft": "A la izquierda", - "SSE.Controllers.EditChart.textLeftOverlay": "Superposición a la izquierda", - "SSE.Controllers.EditChart.textLow": "Bajo", - "SSE.Controllers.EditChart.textManual": "Manualmente", - "SSE.Controllers.EditChart.textMaxValue": "Valor máximo", - "SSE.Controllers.EditChart.textMillions": "Millones", - "SSE.Controllers.EditChart.textMinValue": "Valor mínimo", - "SSE.Controllers.EditChart.textNextToAxis": "Al lado de eje", - "SSE.Controllers.EditChart.textNone": "Ninguno", - "SSE.Controllers.EditChart.textNoOverlay": "Sin superposición", - "SSE.Controllers.EditChart.textOnTickMarks": "Marcas de graduación", - "SSE.Controllers.EditChart.textOut": "Fuera", - "SSE.Controllers.EditChart.textOuterTop": "Arriba en el exterior", - "SSE.Controllers.EditChart.textOverlay": "Superposición", - "SSE.Controllers.EditChart.textRight": "A la derecha", - "SSE.Controllers.EditChart.textRightOverlay": "Superposición a la derecha", - "SSE.Controllers.EditChart.textRotated": "Girado", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Miles", - "SSE.Controllers.EditChart.textTop": "Superior", - "SSE.Controllers.EditChart.textTrillions": "Billones", - "SSE.Controllers.EditChart.textValue": "Valor", - "SSE.Controllers.EditContainer.textCell": "Celda", - "SSE.Controllers.EditContainer.textChart": "Gráfico", - "SSE.Controllers.EditContainer.textHyperlink": "Hiperenlace", - "SSE.Controllers.EditContainer.textImage": "Imagen", - "SSE.Controllers.EditContainer.textSettings": "Ajustes", - "SSE.Controllers.EditContainer.textShape": "Forma", - "SSE.Controllers.EditContainer.textTable": "Tabla", - "SSE.Controllers.EditContainer.textText": "Texto", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.EditHyperlink.textDefault": "Rango seleccionado", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Hay que especificar URL de imagen.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Enlace externo", - "SSE.Controllers.EditHyperlink.textInternalLink": "Rango de datos interno", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Rango de celdas inválido", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Hay que especificar URL de imagen", - "SSE.Controllers.EditImage.txtNotUrl": "Este campo debe ser una dirección URL en el formato 'http://www.example.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Vacíos}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Usted debe seleccionar al menos un valor", - "SSE.Controllers.FilterOptions.textErrorTitle": "Aviso", - "SSE.Controllers.FilterOptions.textSelectAll": "Seleccionar todo", - "SSE.Controllers.Main.advCSVOptions": "Elegir los parámetros de CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Introduzca su contraseña:", - "SSE.Controllers.Main.advDRMOptions": "Archivo protegido", - "SSE.Controllers.Main.advDRMPassword": "Contraseña", - "SSE.Controllers.Main.applyChangesTextText": "Cargando datos...", - "SSE.Controllers.Main.applyChangesTitleText": "Cargando datos", - "SSE.Controllers.Main.closeButtonText": "Cerrar archivo", - "SSE.Controllers.Main.convertationTimeoutText": "Tiempo de conversión está superado.", - "SSE.Controllers.Main.criticalErrorExtText": "Pulse 'OK' para volver a la lista de documentos.", - "SSE.Controllers.Main.criticalErrorTitle": "Error", - "SSE.Controllers.Main.downloadErrorText": "Error en la descarga", - "SSE.Controllers.Main.downloadMergeText": "Descargando...", - "SSE.Controllers.Main.downloadMergeTitle": "Descargando", - "SSE.Controllers.Main.downloadTextText": "Descargando hoja de cálculo...", - "SSE.Controllers.Main.downloadTitleText": "Descargando hoja de cálculo", - "SSE.Controllers.Main.errorAccessDeny": "Usted no tiene permisos para realizar la acción que está intentando hacer.
    Por favor, contacte con el Administrador del Servidor de Documentos.", - "SSE.Controllers.Main.errorArgsRange": "Un error en la fórmula introducida.
    Se usa un intervalo de argumentos incorrecto.", - "SSE.Controllers.Main.errorAutoFilterChange": "No se permite la operación porque intenta desplazar celdas en una tabla de su hoja de cálculo.", - "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "No se puede realizar la operación para las celdas seleccionadas porque Usted no puede mover una parte de la tabla.
    Seleccione otro rango de celdas para que toda la tabla sea seleccionada y intente de nuevo.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "No se puede realizar la operación para el rango de celdas seleccionado.
    Seleccione un rango de datos uniforme diferente del existente y vuelva a intentarlo.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "No se puede realizar la operación porque el área contiene celdas filtradas.
    Por favor, muestre los elementos filtrados y vuelva a intentarlo.", - "SSE.Controllers.Main.errorBadImageUrl": "URL de imagen es incorrecto", - "SSE.Controllers.Main.errorChangeArray": "No se puede cambiar parte de una matriz.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Se ha perdido la conexión con servidor. No se puede editar el documento ahora.", - "SSE.Controllers.Main.errorConnectToServer": "No se consiguió guardar el documento. Por favor, compruebe los ajustes de conexión o póngase en contacto con su administrador.
    Al hacer clic en el botón 'OK' se le solicitará que descargue el documento.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "No se puede usar este comando con varias selecciones.
    Seleccione un solo rango y intente de nuevo.", - "SSE.Controllers.Main.errorCountArg": "Hay un error en la fórmula introducida.
    Se usa un número de argumentos incorrecto.", - "SSE.Controllers.Main.errorCountArgExceed": "Un error en la fórmula introducida.
    Número de argumentos es excedido.", - "SSE.Controllers.Main.errorCreateDefName": "No se puede editar los rangos con nombre existentes y crear los nuevos,
    ya que algunos de ellos están editándose en este momento.", - "SSE.Controllers.Main.errorDatabaseConnection": "Error externo.
    Error de conexión a la base de datos. Por favor, póngase en contacto con soporte si el error persiste.", - "SSE.Controllers.Main.errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", - "SSE.Controllers.Main.errorDataRange": "Rango de datos incorrecto.", - "SSE.Controllers.Main.errorDataValidate": "El valor que ha introducido no es válido.
    Un usuario ha restringido los valores que pueden ser introducidos en esta celda.", - "SSE.Controllers.Main.errorDefaultMessage": "Código de error: %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
    Use la opción 'Descargar' para guardar la copia de seguridad de archivo en el disco duro de su computadora.", - "SSE.Controllers.Main.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", - "SSE.Controllers.Main.errorFileRequest": "Error externo.
    Error de solicitud de archivo. Por favor, póngase en contacto con soporte si el error persiste.", - "SSE.Controllers.Main.errorFileSizeExceed": "El tamaño del archivo excede la limitación establecida para su servidor. Por favor, póngase en contacto con el administrador del Servidor de documentos para obtener más detalles. ", - "SSE.Controllers.Main.errorFileVKey": "Error externo.
    Clave de seguridad incorrecto. Por favor, póngase en contacto con soporte si el error persiste.", - "SSE.Controllers.Main.errorFillRange": "No se puede rellenar el rango de celdas seleccionado.
    Todas las celdas seleccionadas deben tener el mismo tamaño.", - "SSE.Controllers.Main.errorFormulaName": "Hay un error en la fórmula introducida.
    Se usa un nombre de fórmula incorrecto.", - "SSE.Controllers.Main.errorFormulaParsing": "Error interno mientras analizando la fórmula.", - "SSE.Controllers.Main.errorFrmlMaxLength": "La longitud de su fórmula excede el límite de 8192 carácteres.
    Por favor, edítela e intente de nuevo.", - "SSE.Controllers.Main.errorFrmlMaxReference": "No puede introducir esta fórmula porque tiene demasiados valores,
    referencias de celda, y/o nombres.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Valores de texto en fórmulas son limitados al número de caracteres - 255.
    Use la función CONCATENAR u operador de concatenación (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "La función se refiere a una hoja que no existe.
    Por favor, verifique los datos e inténtelo de nuevo.", - "SSE.Controllers.Main.errorInvalidRef": "Introducir un nombre correcto para la selección o una referencia válida para pasar.", - "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", - "SSE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", - "SSE.Controllers.Main.errorLockedAll": "No se puede realizar la operación porque la hoja ha sido bloqueado 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", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Error al cargar el archivo. Por favor seleccione uno distinto.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Error de fusión.", - "SSE.Controllers.Main.errorMaxPoints": "El número máximo de", - "SSE.Controllers.Main.errorMoveRange": "No se puede cambiar parte de una celda combinada", - "SSE.Controllers.Main.errorMultiCellFormula": "Fórmulas de matriz con celdas múltiples no están permitidas en tablas.", - "SSE.Controllers.Main.errorOpensource": "Usando la gratuita versión Community, puede abrir los documentos sólo para verlos. Para acceder a los editores web móviles se requiere una licencia comercial.", - "SSE.Controllers.Main.errorOpenWarning": "Una de las fórmulas del archivo excede el límite de 8192 caracteres.
    La fórmula fue eliminada.", - "SSE.Controllers.Main.errorOperandExpected": "La función de sintaxis introducida no es correcta. Le recomendamos verificar si no le hace falta uno del paréntesis - '(' o ')'", - "SSE.Controllers.Main.errorPasteMaxRange": "El área de copiar y pegar no coincide.
    Por favor, seleccione una zona con el mismo tamaño o haga clic en la primera celda de una fila para pegar las celdas copiadas.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Por desgracia, no es posible imprimir más de 1500 páginas a la vez en la versión actual.
    Esta restricción será extraida en próximos lanzamientos.", - "SSE.Controllers.Main.errorProcessSaveResult": "Problemas al guardar", - "SSE.Controllers.Main.errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", - "SSE.Controllers.Main.errorSessionAbsolute": "Sesión de editar el documento ha expirado. Por favor, recargue la página.", - "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.errorStockChart": "Orden de las filas incorrecto. Para crear un gráfico de cotizaciones introduzca los datos en la hoja de la forma siguiente:
    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.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Error externo.
    GUID inesparada. Por favor, póngase en contacto con soporte si el error persiste.", - "SSE.Controllers.Main.errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.", - "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "La conexión a Internet ha sido restaurada, y la versión del archivo ha sido cambiada. Antes de poder seguir trabajando, es necesario descargar el archivo o copiar su contenido para asegurarse de que no se pierda nada, y luego recargar esta página. ", - "SSE.Controllers.Main.errorUserDrop": "No se puede acceder al archivo ahora.", - "SSE.Controllers.Main.errorUsersExceed": "El número de usuarios permitido según su plan de precios fue excedido", - "SSE.Controllers.Main.errorViewerDisconnect": "Se ha perdido la conexión. Usted todavía puede visualizar el documento,
    pero no podrá descargarlo antes de que conexión sea restaurada y se actualice la página.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Un error en la fórmula introducida.
    Se usa un número incorrecto de corchetes.", - "SSE.Controllers.Main.errorWrongOperator": "Hay un error en la fórmula introducida. Se usa un operador inválido.
    Por favor, corrija el error.", - "SSE.Controllers.Main.leavePageText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.", - "SSE.Controllers.Main.loadFontsTextText": "Cargando datos...", - "SSE.Controllers.Main.loadFontsTitleText": "Cargando datos", - "SSE.Controllers.Main.loadFontTextText": "Cargando datos...", - "SSE.Controllers.Main.loadFontTitleText": "Cargando datos", - "SSE.Controllers.Main.loadImagesTextText": "Cargando imágenes...", - "SSE.Controllers.Main.loadImagesTitleText": "Cargando imágenes", - "SSE.Controllers.Main.loadImageTextText": "Cargando imagen...", - "SSE.Controllers.Main.loadImageTitleText": "Cargando imagen", - "SSE.Controllers.Main.loadingDocumentTextText": "Cargando hoja de cálculo...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Cargando hoja de cálculo", - "SSE.Controllers.Main.mailMergeLoadFileText": "Cargando fuente de datos...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Cargando fuente de datos", - "SSE.Controllers.Main.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Main.openErrorText": "Se ha producido un error al abrir el archivo ", - "SSE.Controllers.Main.openTextText": "Abriendo documento...", - "SSE.Controllers.Main.openTitleText": "Abriendo documento", - "SSE.Controllers.Main.pastInMergeAreaError": "Es imposible cambiar una parte de la celda unida", - "SSE.Controllers.Main.printTextText": "Imprimiendo documento...", - "SSE.Controllers.Main.printTitleText": "Imprimiendo documento", - "SSE.Controllers.Main.reloadButtonText": "Volver a cargar página", - "SSE.Controllers.Main.requestEditFailedMessageText": "Alguien está editando este documento en este momento. Por favor, inténtelo de nuevo más tarde.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Acceso denegado", - "SSE.Controllers.Main.saveErrorText": "Se ha producido un error al guardar el archivo ", - "SSE.Controllers.Main.savePreparingText": "Preparando para guardar", - "SSE.Controllers.Main.savePreparingTitle": "Preparando para guardar. Espere, por favor...", - "SSE.Controllers.Main.saveTextText": "Guardando documento...", - "SSE.Controllers.Main.saveTitleText": "Guardando documento", - "SSE.Controllers.Main.scriptLoadError": "La conexión a Internet es demasiado lenta, no se podía cargar algunos componentes. Por favor, recargue la página.", - "SSE.Controllers.Main.sendMergeText": "Envío de los resultados de fusión...", - "SSE.Controllers.Main.sendMergeTitle": "Envío de los resultados de fusión", - "SSE.Controllers.Main.textAnonymous": "Anónimo", - "SSE.Controllers.Main.textBack": "Atrás", - "SSE.Controllers.Main.textBuyNow": "Visitar sitio web", - "SSE.Controllers.Main.textCancel": "Cancelar", - "SSE.Controllers.Main.textClose": "Cerrar", - "SSE.Controllers.Main.textContactUs": "Equipo de ventas", - "SSE.Controllers.Main.textCustomLoader": "Note, por favor, que según los términos de la licencia Usted no tiene derecho a cambiar el cargador.
    Por favor, póngase en contacto con nuestro Departamento de Ventas para obtener una cotización.", - "SSE.Controllers.Main.textDone": "Listo", - "SSE.Controllers.Main.textGuest": "Invitado", - "SSE.Controllers.Main.textHasMacros": "El archivo contiene macros automáticas.
    ¿Quiere ejecutar macros?", - "SSE.Controllers.Main.textLoadingDocument": "Cargando hoja de cálculo", - "SSE.Controllers.Main.textNo": "No", - "SSE.Controllers.Main.textNoLicenseTitle": "Se ha alcanzado el límite de licencias", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Función de pago", - "SSE.Controllers.Main.textPassword": "Contraseña", - "SSE.Controllers.Main.textPreloader": "Cargando...", - "SSE.Controllers.Main.textRemember": "Recordar mi elección para todos los archivos", - "SSE.Controllers.Main.textShape": "Forma", - "SSE.Controllers.Main.textStrict": "Modo estricto", - "SSE.Controllers.Main.textTryUndoRedo": "Las funciones Deshacer/Rehacer son desactivadas para el modo de co-edición Rápido.
    Haga Clic en el botón \"Modo estricto\" para cambiar al modo de co-edición al Estricto para editar el archivo sin la interferencia de otros usuarios y enviar sus cambios sólo después de guardarlos. Se puede cambiar entre los modos de co-edición usando los ajustes avanzados de edición.", - "SSE.Controllers.Main.textUsername": "Nombre de usuario", - "SSE.Controllers.Main.textYes": "Sí", - "SSE.Controllers.Main.titleLicenseExp": "Licencia ha expirado", - "SSE.Controllers.Main.titleServerVersion": "Editor ha sido actualizado", - "SSE.Controllers.Main.titleUpdateVersion": "Versión se ha cambiado", - "SSE.Controllers.Main.txtAccent": "Acento", - "SSE.Controllers.Main.txtArt": "Introduzca su texto aquí", - "SSE.Controllers.Main.txtBasicShapes": "Formas básicas", - "SSE.Controllers.Main.txtButtons": "Botones", - "SSE.Controllers.Main.txtCallouts": "Llamadas", - "SSE.Controllers.Main.txtCharts": "Gráficos", - "SSE.Controllers.Main.txtDelimiter": "Delimitador", - "SSE.Controllers.Main.txtDiagramTitle": "Título de gráfico", - "SSE.Controllers.Main.txtEditingMode": "Establecer el modo de edición...", - "SSE.Controllers.Main.txtEncoding": "Codificación", - "SSE.Controllers.Main.txtErrorLoadHistory": "Error en la carga de historial", - "SSE.Controllers.Main.txtFiguredArrows": "Flechas figuradas", - "SSE.Controllers.Main.txtLines": "Líneas", - "SSE.Controllers.Main.txtMath": "Matemáticas", - "SSE.Controllers.Main.txtProtected": "Una vez que se ha introducido la contraseña y abierto el archivo, la contraseña actual al archivo se restablecerá", - "SSE.Controllers.Main.txtRectangles": "Rectángulos", - "SSE.Controllers.Main.txtSeries": "Serie", - "SSE.Controllers.Main.txtSpace": "Espacio", - "SSE.Controllers.Main.txtStarsRibbons": "Cintas y estrellas", - "SSE.Controllers.Main.txtStyle_Bad": "Malo", - "SSE.Controllers.Main.txtStyle_Calculation": "Cálculo", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Celda de control", - "SSE.Controllers.Main.txtStyle_Comma": "Financiero", - "SSE.Controllers.Main.txtStyle_Currency": "Moneda", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texto explicativo", - "SSE.Controllers.Main.txtStyle_Good": "Bueno", - "SSE.Controllers.Main.txtStyle_Heading_1": "Título 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Título 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Título 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Título 4", - "SSE.Controllers.Main.txtStyle_Input": "Entrada", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Celda enlazada", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Nota", - "SSE.Controllers.Main.txtStyle_Output": "Salida", - "SSE.Controllers.Main.txtStyle_Percent": "Por ciento", - "SSE.Controllers.Main.txtStyle_Title": "Título", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Texto de advertencia", - "SSE.Controllers.Main.txtTab": "Pestaña", - "SSE.Controllers.Main.txtXAxis": "Eje X", - "SSE.Controllers.Main.txtYAxis": "Eje Y", - "SSE.Controllers.Main.unknownErrorText": "Error desconocido.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Su navegador no está soportado.", - "SSE.Controllers.Main.uploadImageExtMessage": "Formato de imagen desconocido.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "No hay imágenes subidas.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Tamaño máximo de imagen está superado.", - "SSE.Controllers.Main.uploadImageTextText": "Subiendo imagen...", - "SSE.Controllers.Main.uploadImageTitleText": "Subiendo imagen", - "SSE.Controllers.Main.waitText": "Por favor, espere...", - "SSE.Controllers.Main.warnLicenseExceeded": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
    Por favor, contacte con su administrador para recibir más información.", - "SSE.Controllers.Main.warnLicenseExp": "Su licencia ha expirado.
    Por favor, actualice su licencia y después recargue la página.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "Licencia expirada.
    No tiene acceso a la funcionalidad de edición de documentos.
    Por favor, póngase en contacto con su administrador.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "La licencia requiere ser renovada.
    Tiene un acceso limitado a la funcionalidad de edición de documentos.
    Por favor, póngase en contacto con su administrador para obtener un acceso completo", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Usted ha alcanzado el límite de usuarios para los editores de %1. Por favor, contacte con su administrador para recibir más información.", - "SSE.Controllers.Main.warnNoLicense": "Usted ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización.
    Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", - "SSE.Controllers.Main.warnNoLicenseUsers": "Usted ha alcanzado el límite de usuarios para los editores de %1.
    Contacte con el equipo de ventas de %1 para conocer los términos de actualización personal.", - "SSE.Controllers.Main.warnProcessRightsChange": "El derecho de edición del archivo es denegado.", - "SSE.Controllers.Search.textNoTextFound": "Texto no encontrado", - "SSE.Controllers.Search.textReplaceAll": "Reemplazar todo", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Settings.txtDe": "Alemán", - "SSE.Controllers.Settings.txtEn": "Inglés", - "SSE.Controllers.Settings.txtEs": "Español", - "SSE.Controllers.Settings.txtFr": "Francés", - "SSE.Controllers.Settings.txtIt": "Italiano", - "SSE.Controllers.Settings.txtPl": "Polaco", - "SSE.Controllers.Settings.txtRu": "Ruso", - "SSE.Controllers.Settings.warnDownloadAs": "Si sigue guardando en este formato, todas las características excepto el texto se perderán.
    ¿Está seguro de que quiere continuar?", - "SSE.Controllers.Statusbar.cancelButtonText": "Cancelar", - "SSE.Controllers.Statusbar.errNameExists": "Hoja de trabajo con este nombre ya existe.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Nombre de hoja no puede contener los símbolos: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Nombre de hoja no debe ser vacío", - "SSE.Controllers.Statusbar.errorLastSheet": "Un libro de trabajo debe contener al menos una hoja visible.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "No se puede eliminar la hoja de cálculo.", - "SSE.Controllers.Statusbar.menuDelete": "Eliminar", - "SSE.Controllers.Statusbar.menuDuplicate": "Duplicar", - "SSE.Controllers.Statusbar.menuHide": "Ocultar", - "SSE.Controllers.Statusbar.menuMore": "Más", - "SSE.Controllers.Statusbar.menuRename": "Renombrar", - "SSE.Controllers.Statusbar.menuUnhide": "Mostrar", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Aviso", - "SSE.Controllers.Statusbar.strRenameSheet": "Renombrar hoja", - "SSE.Controllers.Statusbar.strSheet": "Hoja", - "SSE.Controllers.Statusbar.strSheetName": "Nombre de hoja", - "SSE.Controllers.Statusbar.textExternalLink": "Enlace externo", - "SSE.Controllers.Statusbar.warnDeleteSheet": "La hoja de cálculo puede contener los datos. ¿Continuar operación?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Hay cambios no guardados en este documento. Haga clic en \"Permanecer en esta página\" para esperar la función de guardar automáticamente del documento. Haga clic en \"Abandonar esta página\" para descartar todos los cambios no guardados.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Usted abandona la aplicación", - "SSE.Controllers.Toolbar.leaveButtonText": "Salir de esta página", - "SSE.Controllers.Toolbar.stayButtonText": "Quedarse en esta página", - "SSE.Views.AddFunction.sCatDateAndTime": "Fecha y hora", - "SSE.Views.AddFunction.sCatEngineering": "Ingenería", - "SSE.Views.AddFunction.sCatFinancial": "Financial", - "SSE.Views.AddFunction.sCatInformation": "Información", - "SSE.Views.AddFunction.sCatLogical": "Lógico", - "SSE.Views.AddFunction.sCatLookupAndReference": "Búsq. y referencia", - "SSE.Views.AddFunction.sCatMathematic": "Matemát./trigonom.", - "SSE.Views.AddFunction.sCatStatistical": "Estadístico", - "SSE.Views.AddFunction.sCatTextAndData": "Texto y datos", - "SSE.Views.AddFunction.textBack": "Atrás", - "SSE.Views.AddFunction.textGroups": "Categorías", - "SSE.Views.AddLink.textAddLink": "Añadir enlace ", - "SSE.Views.AddLink.textAddress": "Dirección", - "SSE.Views.AddLink.textDisplay": "Mostrar", - "SSE.Views.AddLink.textExternalLink": "Enlace externo", - "SSE.Views.AddLink.textInsert": "Insertar", - "SSE.Views.AddLink.textInternalLink": "Rango de datos interno", - "SSE.Views.AddLink.textLink": "Enlace", - "SSE.Views.AddLink.textLinkType": "Típo de enlace", - "SSE.Views.AddLink.textRange": "Rango", - "SSE.Views.AddLink.textRequired": "Necesario", - "SSE.Views.AddLink.textSelectedRange": "Rango seleccionado", - "SSE.Views.AddLink.textSheet": "Hoja", - "SSE.Views.AddLink.textTip": "Consejos de pantalla", - "SSE.Views.AddOther.textAddComment": "Añadir comentario", - "SSE.Views.AddOther.textAddress": "Dirección", - "SSE.Views.AddOther.textBack": "Atrás", - "SSE.Views.AddOther.textComment": "Comentario", - "SSE.Views.AddOther.textDone": "Listo", - "SSE.Views.AddOther.textFilter": "Filtro", - "SSE.Views.AddOther.textFromLibrary": "Imagen de biblioteca", - "SSE.Views.AddOther.textFromURL": "Imagen de URL", - "SSE.Views.AddOther.textImageURL": "URL de imagen", - "SSE.Views.AddOther.textInsert": "Insertar", - "SSE.Views.AddOther.textInsertImage": "Insertar imagen", - "SSE.Views.AddOther.textLink": "Enlace", - "SSE.Views.AddOther.textLinkSettings": "Parámetros de enlace", - "SSE.Views.AddOther.textSort": "Ordenar y filtrar", - "SSE.Views.EditCell.textAccounting": "Contabilidad", - "SSE.Views.EditCell.textAddCustomColor": "Añadir un Color Personalizado", - "SSE.Views.EditCell.textAlignBottom": "Alinear en la parte inferior", - "SSE.Views.EditCell.textAlignCenter": "Alinear al centro", - "SSE.Views.EditCell.textAlignLeft": "Alinear a la izquierda", - "SSE.Views.EditCell.textAlignMiddle": "Alinear al medio", - "SSE.Views.EditCell.textAlignRight": "Alinear a la derecha", - "SSE.Views.EditCell.textAlignTop": "Alinear en la parte superior", - "SSE.Views.EditCell.textAllBorders": "Todos los bordes", - "SSE.Views.EditCell.textAngleClockwise": "Ángulo descendente", - "SSE.Views.EditCell.textAngleCounterclockwise": "Ángulo ascendente", - "SSE.Views.EditCell.textBack": "Atrás", - "SSE.Views.EditCell.textBorderStyle": "Estilo de borde", - "SSE.Views.EditCell.textBottomBorder": "Borde inferior", - "SSE.Views.EditCell.textCellStyle": "Estilos de celda", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Color", - "SSE.Views.EditCell.textCurrency": "Moneda", - "SSE.Views.EditCell.textCustomColor": "Color personalizado", - "SSE.Views.EditCell.textDate": "Fecha", - "SSE.Views.EditCell.textDiagDownBorder": "Borde diagonal descendente", - "SSE.Views.EditCell.textDiagUpBorder": "Borde diagonal ascendente", - "SSE.Views.EditCell.textDollar": "Dólar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Color de relleno", - "SSE.Views.EditCell.textFonts": "Fuentes", - "SSE.Views.EditCell.textFormat": "Formato", - "SSE.Views.EditCell.textGeneral": "General", - "SSE.Views.EditCell.textHorizontalText": "Texto horizontal", - "SSE.Views.EditCell.textInBorders": "Bordes internos", - "SSE.Views.EditCell.textInHorBorder": "Borde horizontal interno", - "SSE.Views.EditCell.textInteger": "Entero", - "SSE.Views.EditCell.textInVertBorder": "Borde vertical interno", - "SSE.Views.EditCell.textJustified": "Justificado", - "SSE.Views.EditCell.textLeftBorder": "Borde izquierdo", - "SSE.Views.EditCell.textMedium": "Medio", - "SSE.Views.EditCell.textNoBorder": "Sin bordes", - "SSE.Views.EditCell.textNumber": "Número", - "SSE.Views.EditCell.textPercentage": "Porcentaje", - "SSE.Views.EditCell.textPound": "Libra", - "SSE.Views.EditCell.textRightBorder": "Borde derecho", - "SSE.Views.EditCell.textRotateTextDown": "Girar texto hacia abajo", - "SSE.Views.EditCell.textRotateTextUp": "Girar texto hacia arriba", - "SSE.Views.EditCell.textRouble": "Rublo", - "SSE.Views.EditCell.textScientific": "Scientífico", - "SSE.Views.EditCell.textSize": "Tamaño", - "SSE.Views.EditCell.textText": "Texto", - "SSE.Views.EditCell.textTextColor": "Color de texto", - "SSE.Views.EditCell.textTextFormat": "Formato de texto", - "SSE.Views.EditCell.textTextOrientation": "Orientación del texto", - "SSE.Views.EditCell.textThick": "Grueso", - "SSE.Views.EditCell.textThin": "Fino", - "SSE.Views.EditCell.textTime": "Hora", - "SSE.Views.EditCell.textTopBorder": "Borde superior", - "SSE.Views.EditCell.textVerticalText": "Texto vertical", - "SSE.Views.EditCell.textWrapText": "Ajustar texto", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Añadir un Color Personalizado", - "SSE.Views.EditChart.textAuto": "Auto", - "SSE.Views.EditChart.textAxisCrosses": "Intersección con eje", - "SSE.Views.EditChart.textAxisOptions": "Parámetros de eje", - "SSE.Views.EditChart.textAxisPosition": "Posición de eje", - "SSE.Views.EditChart.textAxisTitle": "Título del eje", - "SSE.Views.EditChart.textBack": "Atrás", - "SSE.Views.EditChart.textBackward": "Mover atrás", - "SSE.Views.EditChart.textBorder": "Borde", - "SSE.Views.EditChart.textBottom": "Abajo ", - "SSE.Views.EditChart.textChart": "Gráfico", - "SSE.Views.EditChart.textChartTitle": "Título de gráfico", - "SSE.Views.EditChart.textColor": "Color", - "SSE.Views.EditChart.textCrossesValue": "Valor", - "SSE.Views.EditChart.textCustomColor": "Color personalizado", - "SSE.Views.EditChart.textDataLabels": "Etiquetas de datos", - "SSE.Views.EditChart.textDesign": "Diseño", - "SSE.Views.EditChart.textDisplayUnits": "Unidades de visualización", - "SSE.Views.EditChart.textFill": "Relleno", - "SSE.Views.EditChart.textForward": "Mover adelante", - "SSE.Views.EditChart.textGridlines": "Líneas de cuadrícula", - "SSE.Views.EditChart.textHorAxis": "Eje horizontal", - "SSE.Views.EditChart.textHorizontal": "Horizontal ", - "SSE.Views.EditChart.textLabelOptions": "Parámetros de etiqueta", - "SSE.Views.EditChart.textLabelPos": "Posición de etiqueta", - "SSE.Views.EditChart.textLayout": "Diseño", - "SSE.Views.EditChart.textLeft": "A la izquierda", - "SSE.Views.EditChart.textLeftOverlay": "Superposición a la izquierda", - "SSE.Views.EditChart.textLegend": "Leyenda", - "SSE.Views.EditChart.textMajor": "Principal", - "SSE.Views.EditChart.textMajorMinor": "Principales y secundarios", - "SSE.Views.EditChart.textMajorType": "Tipo principal", - "SSE.Views.EditChart.textMaxValue": "Valor máximo", - "SSE.Views.EditChart.textMinor": "Secundario", - "SSE.Views.EditChart.textMinorType": "Tipo secundario", - "SSE.Views.EditChart.textMinValue": "Valor mínimo", - "SSE.Views.EditChart.textNone": "Ninguno", - "SSE.Views.EditChart.textNoOverlay": "Sin superposición", - "SSE.Views.EditChart.textOverlay": "Superposición", - "SSE.Views.EditChart.textRemoveChart": "Eliminar gráfico", - "SSE.Views.EditChart.textReorder": "Reorganizar", - "SSE.Views.EditChart.textRight": "A la derecha", - "SSE.Views.EditChart.textRightOverlay": "Superposición a la derecha", - "SSE.Views.EditChart.textRotated": "Girado", - "SSE.Views.EditChart.textSize": "Tamaño", - "SSE.Views.EditChart.textStyle": "Estilo", - "SSE.Views.EditChart.textTickOptions": "Parámetros de marcas de graduación", - "SSE.Views.EditChart.textToBackground": "Enviar al fondo", - "SSE.Views.EditChart.textToForeground": "Traer al primer plano", - "SSE.Views.EditChart.textTop": "Superior", - "SSE.Views.EditChart.textType": "Tipo", - "SSE.Views.EditChart.textValReverseOrder": "Valores en orden inverso", - "SSE.Views.EditChart.textVerAxis": "Eje vertical", - "SSE.Views.EditChart.textVertical": "Vertical", - "SSE.Views.EditHyperlink.textBack": "Atrás", - "SSE.Views.EditHyperlink.textDisplay": "Mostrar", - "SSE.Views.EditHyperlink.textEditLink": "Editar enlace", - "SSE.Views.EditHyperlink.textExternalLink": "Enlace externo", - "SSE.Views.EditHyperlink.textInternalLink": "Rango de datos interno", - "SSE.Views.EditHyperlink.textLink": "Enlace", - "SSE.Views.EditHyperlink.textLinkType": "Tipo de enlace", - "SSE.Views.EditHyperlink.textRange": "Rango", - "SSE.Views.EditHyperlink.textRemoveLink": "Eliminar enlace", - "SSE.Views.EditHyperlink.textScreenTip": "Consejos de pantalla", - "SSE.Views.EditHyperlink.textSheet": "Hoja", - "SSE.Views.EditImage.textAddress": "Dirección", - "SSE.Views.EditImage.textBack": "Atrás", - "SSE.Views.EditImage.textBackward": "Mover atrás", - "SSE.Views.EditImage.textDefault": "Tamaño actual", - "SSE.Views.EditImage.textForward": "Mover adelante", - "SSE.Views.EditImage.textFromLibrary": "Imagen de biblioteca", - "SSE.Views.EditImage.textFromURL": "Imagen de URL", - "SSE.Views.EditImage.textImageURL": "URL de imagen", - "SSE.Views.EditImage.textLinkSettings": "Ajustes de enlace", - "SSE.Views.EditImage.textRemove": "Eliminar imagen", - "SSE.Views.EditImage.textReorder": "Reorganizar", - "SSE.Views.EditImage.textReplace": "Reemplazar", - "SSE.Views.EditImage.textReplaceImg": "Reemplazar imagen", - "SSE.Views.EditImage.textToBackground": "Enviar al fondo", - "SSE.Views.EditImage.textToForeground": "Traer al primer plano", - "SSE.Views.EditShape.textAddCustomColor": "Añadir un Color Personalizado", - "SSE.Views.EditShape.textBack": "Atrás", - "SSE.Views.EditShape.textBackward": "Mover atrás", - "SSE.Views.EditShape.textBorder": "Borde", - "SSE.Views.EditShape.textColor": "Color", - "SSE.Views.EditShape.textCustomColor": "Color personalizado", - "SSE.Views.EditShape.textEffects": "Efectos", - "SSE.Views.EditShape.textFill": "Relleno", - "SSE.Views.EditShape.textForward": "Mover adelante", - "SSE.Views.EditShape.textOpacity": "Opacidad ", - "SSE.Views.EditShape.textRemoveShape": "Eliminar forma", - "SSE.Views.EditShape.textReorder": "Reorganizar", - "SSE.Views.EditShape.textReplace": "Reemplazar", - "SSE.Views.EditShape.textSize": "Tamaño", - "SSE.Views.EditShape.textStyle": "Estilo", - "SSE.Views.EditShape.textToBackground": "Enviar al fondo", - "SSE.Views.EditShape.textToForeground": "Traer al primer plano", - "SSE.Views.EditText.textAddCustomColor": "Añadir un Color Personalizado", - "SSE.Views.EditText.textBack": "Atrás", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Color personalizado", - "SSE.Views.EditText.textFillColor": "Color de relleno", - "SSE.Views.EditText.textFonts": "Fuentes", - "SSE.Views.EditText.textSize": "Tamaño", - "SSE.Views.EditText.textTextColor": "Color de texto", - "SSE.Views.FilterOptions.textClearFilter": "Borrar filtro", - "SSE.Views.FilterOptions.textDeleteFilter": "Eliminar filtro", - "SSE.Views.FilterOptions.textFilter": "Opciones de filtro", - "SSE.Views.Search.textByColumns": "Por columnas", - "SSE.Views.Search.textByRows": "Por filas", - "SSE.Views.Search.textDone": "Listo", - "SSE.Views.Search.textFind": "Buscar", - "SSE.Views.Search.textFindAndReplace": "Buscar y reemplazar", - "SSE.Views.Search.textFormulas": "Fórmulas ", - "SSE.Views.Search.textHighlightRes": "Resaltar resultados", - "SSE.Views.Search.textLookIn": "Buscar en", - "SSE.Views.Search.textMatchCase": "Coincidir mayúsculas y minúsculas", - "SSE.Views.Search.textMatchCell": "Coincidir celda", - "SSE.Views.Search.textReplace": "Reemplazar", - "SSE.Views.Search.textSearch": "Búsqueda", - "SSE.Views.Search.textSearchBy": "Búsqueda", - "SSE.Views.Search.textSearchIn": "Buscar en", - "SSE.Views.Search.textSheet": "Hoja", - "SSE.Views.Search.textValues": "Valores", - "SSE.Views.Search.textWorkbook": "Libro de trabajo", - "SSE.Views.Settings.textAbout": "Acerca de producto", - "SSE.Views.Settings.textAddress": "dirección", - "SSE.Views.Settings.textApplication": "Aplicación", - "SSE.Views.Settings.textApplicationSettings": "Ajustes de aplicación", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Atrás", - "SSE.Views.Settings.textBottom": "Abajo ", - "SSE.Views.Settings.textCentimeter": "Centímetro", - "SSE.Views.Settings.textCollaboration": "Colaboración", - "SSE.Views.Settings.textColorSchemes": "Esquemas de color", - "SSE.Views.Settings.textComment": "Comentario", - "SSE.Views.Settings.textCommentingDisplay": "Visualización de los comentarios", - "SSE.Views.Settings.textCreated": "Creado", - "SSE.Views.Settings.textCreateDate": "Fecha de creación", - "SSE.Views.Settings.textCustom": "Personalizado", - "SSE.Views.Settings.textCustomSize": "Tamaño personalizado", - "SSE.Views.Settings.textDisableAll": "Deshabilitar todo", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Deshabilitar todas las macros con notificación", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Deshabilitar todas las macros sin notificación", - "SSE.Views.Settings.textDisplayComments": "Comentarios", - "SSE.Views.Settings.textDisplayResolvedComments": "Comentarios resueltos", - "SSE.Views.Settings.textDocInfo": "Información sobre hoja de cálculo", - "SSE.Views.Settings.textDocTitle": "Título de hoja de cálculo", - "SSE.Views.Settings.textDone": "Listo", - "SSE.Views.Settings.textDownload": "Descargar", - "SSE.Views.Settings.textDownloadAs": "Descargar como...", - "SSE.Views.Settings.textEditDoc": "Editar documento", - "SSE.Views.Settings.textEmail": "email", - "SSE.Views.Settings.textEnableAll": "Habilitar todo", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación ", - "SSE.Views.Settings.textExample": "Ejemplo", - "SSE.Views.Settings.textFind": "Buscar", - "SSE.Views.Settings.textFindAndReplace": "Buscar y reemplazar", - "SSE.Views.Settings.textFormat": "Formato", - "SSE.Views.Settings.textFormulaLanguage": "Idioma de fórmulas", - "SSE.Views.Settings.textHelp": "Ayuda", - "SSE.Views.Settings.textHideGridlines": "Ocultar líneas de la cuadrícula", - "SSE.Views.Settings.textHideHeadings": "Ocultar encabezados", - "SSE.Views.Settings.textInch": "Pulgada", - "SSE.Views.Settings.textLandscape": "Horizontal", - "SSE.Views.Settings.textLastModified": "Última modificación", - "SSE.Views.Settings.textLastModifiedBy": "Modificado por última vez por", - "SSE.Views.Settings.textLeft": "A la izquierda", - "SSE.Views.Settings.textLoading": "Cargando...", - "SSE.Views.Settings.textLocation": "Ubicación", - "SSE.Views.Settings.textMacrosSettings": "Ajustes de macros", - "SSE.Views.Settings.textMargins": "Márgenes", - "SSE.Views.Settings.textOrientation": "Orientación", - "SSE.Views.Settings.textOwner": "Propietario", - "SSE.Views.Settings.textPoint": "Punto", - "SSE.Views.Settings.textPortrait": "Vertical", - "SSE.Views.Settings.textPoweredBy": "Desarrollado por", - "SSE.Views.Settings.textPrint": "Imprimir", - "SSE.Views.Settings.textR1C1Style": "Estilo de referencia R1C1", - "SSE.Views.Settings.textRegionalSettings": "Configuración regional", - "SSE.Views.Settings.textRight": "A la derecha", - "SSE.Views.Settings.textSettings": "Ajustes", - "SSE.Views.Settings.textShowNotification": "Mostrar notificación", - "SSE.Views.Settings.textSpreadsheetFormats": "Formatos de hoja de cálculo", - "SSE.Views.Settings.textSpreadsheetSettings": "Ajustes de hoja de cálculo", - "SSE.Views.Settings.textSubject": "Asunto", - "SSE.Views.Settings.textTel": "Tel.", - "SSE.Views.Settings.textTitle": "Título", - "SSE.Views.Settings.textTop": "Arriba", - "SSE.Views.Settings.textUnitOfMeasurement": "Unidad de medida", - "SSE.Views.Settings.textUploaded": "Cargado", - "SSE.Views.Settings.textVersion": "Versión ", - "SSE.Views.Settings.unknownText": "Desconocido", - "SSE.Views.Toolbar.textBack": "Atrás" + "About": { + "textAbout": "Acerca de", + "textAddress": "Dirección", + "textBack": "Atrás", + "textEmail": "E-mail", + "textPoweredBy": "Con tecnología de", + "textTel": "Tel", + "textVersion": "Versión " + }, + "Common": { + "Collaboration": { + "notcriticalErrorTitle": "Advertencia", + "textAddComment": "Añadir comentario", + "textAddReply": "Añadir respuesta", + "textBack": "Atrás", + "textCancel": "Cancelar", + "textCollaboration": "Colaboración", + "textComments": "Comentarios", + "textDeleteComment": "Eliminar comentario", + "textDeleteReply": "Eliminar respuesta", + "textDone": "Listo", + "textEdit": "Editar", + "textEditComment": "Editar comentario", + "textEditReply": "Editar respuesta", + "textEditUser": "Usuarios que están editando el archivo:", + "textMessageDeleteComment": "¿Realmente quiere eliminar este comentario?", + "textMessageDeleteReply": "¿Realmente quiere eliminar esta respuesta?", + "textNoComments": "Este documento no contiene comentarios", + "textReopen": "Volver a abrir", + "textResolve": "Resolver", + "textTryUndoRedo": "Las funciones Deshacer/Rehacer están desactivadas en el modo de co-edición rápido.", + "textUsers": "Usuarios" + }, + "ThemeColorPalette": { + "textCustomColors": "Colores personalizados", + "textStandartColors": "Colores estándar", + "textThemeColors": "Colores de tema" + } + }, + "ContextMenu": { + "errorCopyCutPaste": "Las acciones de copiar, cortar y pegar utilizando el menú contextual se realizarán sólo dentro del archivo actual.", + "menuAddComment": "Añadir comentario", + "menuAddLink": "Añadir enlace ", + "menuCancel": "Cancelar", + "menuCell": "Celda", + "menuDelete": "Eliminar", + "menuEdit": "Editar", + "menuFreezePanes": "Inmovilizar paneles", + "menuHide": "Ocultar", + "menuMerge": "Combinar", + "menuMore": "Más", + "menuOpenLink": "Abrir enlace", + "menuShow": "Mostrar", + "menuUnfreezePanes": "Movilizar paneles", + "menuUnmerge": "Anular combinación", + "menuUnwrap": "Desajustar", + "menuViewComment": "Ver comentario", + "menuWrap": "Ajustar", + "notcriticalErrorTitle": "Advertencia", + "textCopyCutPasteActions": "Acciones de Copiar, Cortar y Pegar", + "textDoNotShowAgain": "No mostrar de nuevo", + "warnMergeLostData": "La operación puede destruir los datos de las celdas seleccionadas. ¿Continuar?" + }, + "Controller": { + "Main": { + "criticalErrorTitle": "Error", + "errorAccessDeny": "Está intentando realizar una acción para la que no tiene derechos.
    Por favor, contacte con su administrador.", + "errorProcessSaveResult": "Error al guardar", + "errorServerVersion": "La versión del editor ha sido actualizada. La página será recargada para aplicar los cambios.", + "errorUpdateVersion": "Se ha cambiado la versión del archivo. La página será actualizada.", + "leavePageText": "Tiene cambios no guardados en este documento. Haga clic en \"Quedarse en esta página\" para esperar hasta que se guarden automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", + "notcriticalErrorTitle": "Advertencia", + "SDK": { + "txtAccent": "Énfasis", + "txtArt": "Su texto aquí", + "txtDiagramTitle": "Título del gráfico", + "txtSeries": "Serie", + "txtStyle_Bad": "Malo", + "txtStyle_Calculation": "Cálculo", + "txtStyle_Check_Cell": "Celda de comprobación", + "txtStyle_Comma": "Coma", + "txtStyle_Currency": "Moneda", + "txtStyle_Explanatory_Text": "Texto explicativo", + "txtStyle_Good": "Bueno", + "txtStyle_Heading_1": "Título 1", + "txtStyle_Heading_2": "Título 2", + "txtStyle_Heading_3": "Título 3", + "txtStyle_Heading_4": "Título 4", + "txtStyle_Input": "Entrada", + "txtStyle_Linked_Cell": "Celda enlazada", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Nota", + "txtStyle_Output": "Salida", + "txtStyle_Percent": "Por ciento", + "txtStyle_Title": "Título", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Texto de advertencia", + "txtXAxis": "Eje X", + "txtYAxis": "Eje Y" + }, + "textAnonymous": "Anónimo", + "textBuyNow": "Visitar sitio web", + "textClose": "Cerrar", + "textContactUs": "Contactar con el equipo de ventas", + "textCustomLoader": "Por desgracia, no tiene derecho a cambiar el cargador. Por favor, póngase en contacto con nuestro departamento de ventas para obtener una cotización.", + "textGuest": "Invitado", + "textHasMacros": "El archivo contiene macros automáticas.
    ¿Quiere ejecutar macros?", + "textNo": "No", + "textNoLicenseTitle": "Se ha alcanzado el límite de licencia", + "textPaidFeature": "Característica de pago", + "textRemember": "Recordar mi elección", + "textYes": "Sí", + "titleServerVersion": "Editor ha sido actualizado", + "titleUpdateVersion": "Versión ha cambiado", + "warnLicenseExceeded": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con su administrador para obtener más información.", + "warnLicenseLimitedNoAccess": "La licencia ha expirado. No tiene acceso a la funcionalidad de edición de documentos. Por favor, póngase en contacto con su administrador.", + "warnLicenseLimitedRenewed": "La licencia necesita renovación. Tiene acceso limitado a la funcionalidad de edición de documentos.
    Por favor, póngase en contacto con su administrador para obtener acceso completo", + "warnLicenseUsersExceeded": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con su administrador para saber más.", + "warnNoLicense": "Ha alcanzado el límite de conexiones simultáneas con %1 editores. Este documento se abrirá sólo para su visualización. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", + "warnNoLicenseUsers": "Ha alcanzado el límite de usuarios para %1 editores. Póngase en contacto con el equipo de ventas de %1 para conocer las condiciones de actualización personal.", + "warnProcessRightsChange": "No tiene permiso para editar el archivo." + } + }, + "Error": { + "convertationTimeoutText": "Tiempo de conversión está superado.", + "criticalErrorExtText": "Pulse \"OK\" para volver a la lista de documentos.", + "criticalErrorTitle": "Error", + "downloadErrorText": "Error al descargar.", + "errorAccessDeny": "Está intentando realizar una acción para la que no tiene derechos.
    Por favor, contacte con su administrador.", + "errorArgsRange": "Un error en la fórmula.
    Rango de argumentos incorrecto.", + "errorAutoFilterChange": "La operación no está permitida ya que está intentando desplazar las celdas de una tabla de la hoja de cálculo.", + "errorAutoFilterChangeFormatTable": "La operación no se puede realizar para las celdas seleccionadas ya que no es posible mover una parte de una tabla.
    Seleccione otro rango de datos para que se desplace toda la tabla y vuelva a intentarlo.", + "errorAutoFilterDataRange": "La operación no se puede realizar para el rango de celdas seleccionado.
    Seleccione un rango de datos uniforme dentro o fuera de la tabla y vuelva a intentarlo.", + "errorAutoFilterHiddenRange": "La operación no puede realizarse porque el área contiene celdas filtradas.
    Por favor, desoculte los elementos filtrados e inténtelo de nuevo.", + "errorBadImageUrl": "URL de imagen es incorrecta", + "errorChangeArray": "No se puede cambiar parte de una matriz.", + "errorConnectToServer": "No se puede guardar este documento. Compruebe la configuración de su conexión o póngase en contacto con el administrador.
    Cuando haga clic en OK, se le pedirá que descargue el documento.", + "errorCopyMultiselectArea": "No se puede usar este comando con varias selecciones.
    Seleccione un solo rango e inténtelo de nuevo.", + "errorCountArg": "Un error en la fórmula.
    Número de argumentos no válido.", + "errorCountArgExceed": "Un error en la fórmula.
    Se ha superado el número máximo de argumentos.", + "errorCreateDefName": "Los rangos con nombre existentes no pueden ser editados y los nuevos no se pueden crear
    en este momento ya que algunos de ellos están editándose.", + "errorDatabaseConnection": "Error externo.
    Error de conexión a la base de datos. Por favor, contacte con el equipo de soporte técnico.", + "errorDataEncrypted": "Se han recibido cambios cifrados, ellos no pueden ser descifrados.", + "errorDataRange": "Rango de datos incorrecto.", + "errorDataValidate": "El valor que ha introducido no es válido.
    Un usuario ha restringido los valores que pueden ser introducidos en esta celda.", + "errorDefaultMessage": "Código de error: %1", + "errorEditingDownloadas": "Se ha producido un error al trabajar con el documento.
    Utilice la opción 'Descargar' para guardar la copia de seguridad del archivo localmente.", + "errorFilePassProtect": "El archivo está protegido por contraseña y no se puede abrir.", + "errorFileRequest": "Error externo.
    Solicitud de archivo. Por favor, contacte con el equipo de soporte.", + "errorFileSizeExceed": "El tamaño del archivo excede la limitación del servidor.
    Por favor, póngase en contacto con su administrador.", + "errorFileVKey": "Error externo.
    Clave de seguridad incorrecta. Por favor, contacte con el equipo de soporte.", + "errorFillRange": "No se puede rellenar el rango de celdas seleccionado.
    Todas las celdas combinadas deben tener el mismo tamaño.", + "errorFormulaName": "Un error en la fórmula.
    Nombre de fórmula incorrecto.", + "errorFormulaParsing": "Error interno al analizar la fórmula.", + "errorFrmlMaxLength": "No puede añadir esta fórmula ya que su longitud excede el número de caracteres permitidos.
    Por favor, edítela e inténtelo de nuevo.", + "errorFrmlMaxReference": "No puede introducir esta fórmula porque tiene demasiados valores,
    referencias de celda, y/o nombres.", + "errorFrmlMaxTextLength": "Los valores de texto de las fórmulas tienen un límite de 255 caracteres.
    Utilice la función CONCATENATE o el operador de concatenación (&)", + "errorFrmlWrongReferences": "La función hace referencia a una hoja que no existe.
    Por favor, compruebe los datos y vuelva a intentarlo.", + "errorInvalidRef": "Introducir un nombre correcto para la selección o una referencia válida a la que dirigirse.", + "errorKeyEncrypt": "Descriptor de clave desconocido", + "errorKeyExpire": "Descriptor de clave ha expirado", + "errorLockedAll": "No se puede realizar la operación porque la hoja ha sido bloqueada por otro usuario.", + "errorLockedCellPivot": "No puede modificar datos dentro de una tabla pivote.", + "errorLockedWorksheetRename": "No se puede cambiar el nombre de la hoja en este momento, porque se está cambiando el nombre por otro usuario", + "errorMaxPoints": "El número máximo de puntos en serie por gráfico es 4096.", + "errorMoveRange": "No se puede modificar una parte de una celda combinada", + "errorMultiCellFormula": "Las fórmulas de matriz de varias celdas no están permitidas en las tablas.", + "errorOpenWarning": "La longitud de una de las fórmulas en el archivo ha superado
    el número de caracteres permitidos y se ha eliminado.", + "errorOperandExpected": "La sintaxis de la función introducida no es correcta. Por favor, compruebe si ha omitido uno de los paréntesis - '(' o ')'.", + "errorPasteMaxRange": "El área de copiar y pegar no coincide. Por favor, seleccione un área del mismo tamaño o haga clic en la primera celda de una fila para pegar las celdas copiadas.", + "errorPrintMaxPagesCount": "Por desgracia, no es posible imprimir más de 1500 páginas a la vez en la versión actual del programa.
    Esta restricción se eliminará en próximas versiones.", + "errorSessionAbsolute": "La sesión de edición del documento ha expirado. Por favor, vuelva a cargar la página.", + "errorSessionIdle": "El documento no ha sido editado desde hace mucho tiempo. Por favor, vuelva a cargar la página.", + "errorSessionToken": "La conexión con el servidor se ha interrumpido. Por favor, vuelva a cargar la página.", + "errorStockChart": "Orden incorrecto de las filas. Para construir un gráfico de cotizaciones, coloque los datos en la hoja en el siguiente orden:
    precio de apertura, precio máximo, precio mínimo, precio de cierre.", + "errorUnexpectedGuid": "Error externo.
    Guid inesperado. Por favor, contacte con el equipo de soporte.", + "errorUpdateVersionOnDisconnect": "La conexión a Internet se ha restaurado y la versión del archivo ha cambiado.
    Antes de continuar trabajando, necesita descargar el archivo o copiar su contenido para asegurarse de que no ha perdido nada y luego recargar esta página.", + "errorUserDrop": "No se puede acceder al archivo ahora mismo.", + "errorUsersExceed": "Se superó la cantidad de usuarios permitidos por el plan de precios", + "errorViewerDisconnect": "Se ha perdido la conexión. Todavía puede ver el documento,
    pero no podrá descargarlo hasta que se restablezca la conexión y se recargue la página.", + "errorWrongBracketsCount": "Un error en la fórmula.
    Número de corchetes incorrecto.", + "errorWrongOperator": "Un error en la fórmula introducida. Se ha utilizado el operador incorrecto.
    Corrija el error o utilice el botón Esc para cancelar la edición de la fórmula.", + "notcriticalErrorTitle": "Advertencia", + "openErrorText": "Se ha producido un error al abrir el archivo ", + "pastInMergeAreaError": "No se puede modificar una parte de una celda combinada", + "saveErrorText": "Se ha producido un error al guardar el archivo ", + "scriptLoadError": "La conexión es demasiado lenta, algunos de los componentes no se han podido cargar. Por favor, vuelva a cargar la página.", + "unknownErrorText": "Error desconocido.", + "uploadImageExtMessage": "Formato de imagen desconocido.", + "uploadImageFileCountMessage": "No hay imágenes subidas.", + "uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB." + }, + "LongActions": { + "applyChangesTextText": "Cargando datos...", + "applyChangesTitleText": "Cargando datos", + "confirmMoveCellRange": "El rango de celdas de destino puede contener datos. ¿Continuar la operación?", + "confirmPutMergeRange": "Los datos de origen contienen celdas combinadas.
    Se anulará la combinación antes de pegarlas en la tabla.", + "confirmReplaceFormulaInTable": "Las fórmulas de la fila de encabezado se eliminarán y se convertirán en texto estático.
    ¿Desea continuar?", + "downloadTextText": "Descargando documento...", + "downloadTitleText": "Descargando documento", + "loadFontsTextText": "Cargando datos...", + "loadFontsTitleText": "Cargando datos", + "loadFontTextText": "Cargando datos...", + "loadFontTitleText": "Cargando datos", + "loadImagesTextText": "Cargando imágenes...", + "loadImagesTitleText": "Cargando imágenes", + "loadImageTextText": "Cargando imagen...", + "loadImageTitleText": "Cargando imagen", + "loadingDocumentTextText": "Cargando documento...", + "loadingDocumentTitleText": "Cargando documento", + "notcriticalErrorTitle": "Advertencia", + "openTextText": "Abriendo documento...", + "openTitleText": "Abriendo documento", + "printTextText": "Imprimiendo documento...", + "printTitleText": "Imprimiendo documento", + "savePreparingText": "Preparando para guardar", + "savePreparingTitle": "Preparando para guardar. Espere, por favor...", + "saveTextText": "Guardando documento...", + "saveTitleText": "Guardando documento", + "textLoadingDocument": "Cargando documento", + "textNo": "No", + "textOk": "OK", + "textYes": "Sí", + "txtEditingMode": "Establecer el modo de edición...", + "uploadImageTextText": "Subiendo imagen...", + "uploadImageTitleText": "Subiendo imagen", + "waitText": "Por favor, espere..." + }, + "Statusbar": { + "notcriticalErrorTitle": "Advertencia", + "textCancel": "Cancelar", + "textDelete": "Eliminar", + "textDuplicate": "Duplicar", + "textErrNameExists": "La hoja de cálculo con este nombre ya existe.", + "textErrNameWrongChar": "Nombre de hoja no puede contener los símbolos: \\, /, *, ?, [, ], :", + "textErrNotEmpty": "Nombre de hoja no debe ser vacío", + "textErrorLastSheet": "El libro debe tener al menos una hoja de cálculo visible.", + "textErrorRemoveSheet": "No se puede eliminar la hoja de cálculo.", + "textHide": "Ocultar", + "textMore": "Más", + "textRename": "Renombrar", + "textRenameSheet": "Renombrar hoja", + "textSheet": "Hoja", + "textSheetName": "Nombre de hoja", + "textUnhide": "Volver a mostrar", + "textWarnDeleteSheet": "La hoja de cálculo puede tener datos. ¿Continuar con la operación?" + }, + "Toolbar": { + "dlgLeaveMsgText": "Tiene cambios no guardados en este documento. Haga clic en \"Quedarse en esta página\" para esperar hasta que se guarden automáticamente. Haga clic en \"Salir de esta página\" para descartar todos los cambios no guardados.", + "dlgLeaveTitleText": "Usted abandona la aplicación", + "leaveButtonText": "Salir de esta página", + "stayButtonText": "Quedarse en esta página" + }, + "View": { + "Add": { + "errorMaxRows": "¡ERROR! El número máximo de series de datos para un gráfico es 255.", + "errorStockChart": "Orden incorrecto de las filas. Para construir un gráfico de cotizaciones, coloque los datos en la hoja en el siguiente orden:
    precio de apertura, precio máximo, precio mínimo, precio de cierre.", + "notcriticalErrorTitle": "Advertencia", + "sCatDateAndTime": "Fecha y hora", + "sCatEngineering": "Ingeniería", + "sCatFinancial": "Financiero", + "sCatInformation": "Información", + "sCatLogical": "Lógico", + "sCatLookupAndReference": "Búsqueda y Referencia", + "sCatMathematic": "Matemáticas y trigonometría", + "sCatStatistical": "Estadístico", + "sCatTextAndData": "Texto y datos", + "textAddLink": "Añadir enlace ", + "textAddress": "Dirección", + "textBack": "Atrás", + "textChart": "Gráfico", + "textComment": "Comentario", + "textDisplay": "Mostrar", + "textEmptyImgUrl": "Necesita especificar la URL de la imagen.", + "textExternalLink": "Enlace externo", + "textFilter": "Filtro", + "textFunction": "Función", + "textGroups": "CATEGORÍAS", + "textImage": "Imagen", + "textImageURL": "URL de imagen", + "textInsert": "Insertar", + "textInsertImage": "Insertar imagen", + "textInternalDataRange": "Rango de datos interno", + "textInvalidRange": "¡ERROR! Rango de celdas no válido", + "textLink": "Enlace", + "textLinkSettings": "Ajustes de enlace", + "textLinkType": "Tipo de enlace", + "textOther": "Otro", + "textPictureFromLibrary": "Imagen desde biblioteca", + "textPictureFromURL": "Imagen desde URL", + "textRange": "Rango", + "textRequired": "Requerido", + "textScreenTip": "Consejo de pantalla", + "textShape": "Forma", + "textSheet": "Hoja", + "textSortAndFilter": "Ordenar y filtrar", + "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"" + }, + "Edit": { + "notcriticalErrorTitle": "Advertencia", + "textAccounting": "Contabilidad", + "textActualSize": "Tamaño actual", + "textAddCustomColor": "Añadir color personalizado", + "textAddress": "Dirección", + "textAlign": "Alinear", + "textAlignBottom": "Alinear hacia abajo", + "textAlignCenter": "Alinear al centro", + "textAlignLeft": "Alinear a la izquierda", + "textAlignMiddle": "Alinear al medio", + "textAlignRight": "Alinear a la derecha", + "textAlignTop": "Alinear hacia arriba", + "textAllBorders": "Todos los bordes", + "textAngleClockwise": "Ángulo descendente", + "textAngleCounterclockwise": "Ángulo ascendente", + "textAuto": "Auto", + "textAxisCrosses": "Cruces de eje", + "textAxisOptions": "Opciones de eje", + "textAxisPosition": "Posición de eje", + "textAxisTitle": "Título de eje", + "textBack": "Atrás", + "textBetweenTickMarks": "Entre marcas de graduación", + "textBillions": "Miles de millones", + "textBorder": "Borde", + "textBorderStyle": "Estilo de borde", + "textBottom": "Abajo ", + "textBottomBorder": "Borde inferior", + "textBringToForeground": "Traer al primer plano", + "textCell": "Celda", + "textCellStyles": "Estilos de celda", + "textCenter": "Centro", + "textChart": "Gráfico", + "textChartTitle": "Título del gráfico", + "textClearFilter": "Borrar filtro", + "textColor": "Color", + "textCross": "Cruz", + "textCrossesValue": "Valor de cruces", + "textCurrency": "Moneda", + "textCustomColor": "Color personalizado", + "textDataLabels": "Etiquetas de datos", + "textDate": "Fecha", + "textDefault": "Rango seleccionado", + "textDeleteFilter": "Eliminar filtro", + "textDesign": "Diseño", + "textDiagonalDownBorder": "Borde diagonal descendente", + "textDiagonalUpBorder": "Borde diagonal ascendente", + "textDisplay": "Mostrar", + "textDisplayUnits": "Unidades de visualización", + "textDollar": "Dólar", + "textEditLink": "Editar enlace", + "textEffects": "Efectos", + "textEmptyImgUrl": "Necesita especificar la URL de la imagen.", + "textEmptyItem": "{Vacías}", + "textErrorMsg": "Usted debe elegir por lo menos un valor", + "textErrorTitle": "Advertencia", + "textEuro": "Euro", + "textExternalLink": "Enlace externo", + "textFill": "Rellenar", + "textFillColor": "Color de relleno", + "textFilterOptions": "Opciones de filtro", + "textFit": "Ajustar al ancho", + "textFonts": "Fuentes", + "textFormat": "Formato", + "textFraction": "Fracción", + "textFromLibrary": "Imagen desde biblioteca", + "textFromURL": "Imagen desde URL", + "textGeneral": "General", + "textGridlines": "Líneas de cuadrícula", + "textHigh": "Alto", + "textHorizontal": "Horizontal ", + "textHorizontalAxis": "Eje horizontal", + "textHorizontalText": "Texto horizontal", + "textHundredMil": "100 000 000", + "textHundreds": "Cientos", + "textHundredThousands": "100 000", + "textHyperlink": "Hiperenlace", + "textImage": "Imagen", + "textImageURL": "URL de imagen", + "textIn": "En", + "textInnerBottom": "Abajo en el interior", + "textInnerTop": "Arriba en el interior", + "textInsideBorders": "Bordes internos", + "textInsideHorizontalBorder": "Borde horizontal interno", + "textInsideVerticalBorder": "Borde vertical interno", + "textInteger": "Entero", + "textInternalDataRange": "Rango de datos interno", + "textInvalidRange": "Rango de celdas no válido", + "textJustified": "Justificado", + "textLabelOptions": "Opciones de etiqueta", + "textLabelPosition": "Posición de etiqueta", + "textLayout": "Diseño", + "textLeft": "A la izquierda", + "textLeftBorder": "Borde izquierdo", + "textLeftOverlay": "Superposición izquierda", + "textLegend": "Leyenda", + "textLink": "Enlace", + "textLinkSettings": "Ajustes de enlace", + "textLinkType": "Tipo de enlace", + "textLow": "Bajo", + "textMajor": "Principal", + "textMajorAndMinor": "Principales y secundarios", + "textMajorType": "Tipo principal", + "textMaximumValue": "Valor máximo", + "textMedium": "Medio", + "textMillions": "Millones", + "textMinimumValue": "Valor mínimo", + "textMinor": "Menor", + "textMinorType": "Tipo menor", + "textMoveBackward": "Mover hacia atrás", + "textMoveForward": "Moverse hacia adelante", + "textNextToAxis": "Junto al eje", + "textNoBorder": "Sin bordes", + "textNone": "Ninguno", + "textNoOverlay": "Sin superposición", + "textNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"", + "textNumber": "Número", + "textOnTickMarks": "Marcas de graduación", + "textOpacity": "Opacidad ", + "textOut": "Fuera", + "textOuterTop": "Arriba en el exterior", + "textOutsideBorders": "Bordes externos", + "textOverlay": "Superposición", + "textPercentage": "Porcentaje", + "textPictureFromLibrary": "Imagen desde biblioteca", + "textPictureFromURL": "Imagen desde URL", + "textPound": "Libra", + "textPt": "pt", + "textRange": "Rango", + "textRemoveChart": "Eliminar gráfico", + "textRemoveImage": "Eliminar imagen", + "textRemoveLink": "Eliminar enlace", + "textRemoveShape": "Eliminar forma", + "textReorder": "Reordenar", + "textReplace": "Reemplazar", + "textReplaceImage": "Reemplazar imagen", + "textRequired": "Requerido", + "textRight": "A la derecha", + "textRightBorder": "Borde derecho", + "textRightOverlay": "Superposición derecha", + "textRotated": "Girado", + "textRotateTextDown": "Girar texto hacia abajo", + "textRotateTextUp": "Girar texto hacia arriba", + "textRouble": "Rublo", + "textScientific": "Scientífico", + "textScreenTip": "Consejo de pantalla", + "textSelectAll": "Seleccionar todo", + "textSelectObjectToEdit": "Seleccionar el objeto para editar", + "textSendToBackground": "Enviar al fondo", + "textSettings": "Ajustes", + "textShape": "Forma", + "textSheet": "Hoja", + "textSize": "Tamaño", + "textStyle": "Estilo", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000", + "textText": "Texto", + "textTextColor": "Color de texto", + "textTextFormat": "Formato de texto", + "textTextOrientation": "Orientación del texto", + "textThick": "Grueso", + "textThin": "Fino", + "textThousands": "Miles", + "textTickOptions": "Parámetros de marcas de graduación", + "textTime": "Hora", + "textTop": "Arriba", + "textTopBorder": "Borde superior", + "textTrillions": "Trillones", + "textType": "Tipo", + "textValue": "Valor", + "textValuesInReverseOrder": "Valores en orden inverso", + "textVertical": "Vertical", + "textVerticalAxis": "Eje vertical", + "textVerticalText": "Texto vertical", + "textWrapText": "Ajustar texto", + "textYen": "Yen", + "txtNotUrl": "Este campo debe ser una dirección URL en el formato \"http://www.example.com\"" + }, + "Settings": { + "advCSVOptions": "Elegir los parámetros de CSV", + "advDRMEnterPassword": "Su contraseña, por favor:", + "advDRMOptions": "Archivo protegido", + "advDRMPassword": "Contraseña", + "closeButtonText": "Cerrar archivo", + "notcriticalErrorTitle": "Advertencia", + "textAbout": "Acerca de", + "textAddress": "Dirección", + "textApplication": "Aplicación", + "textApplicationSettings": "Ajustes de aplicación", + "textAuthor": "Autor", + "textBack": "Atrás", + "textBottom": "Abajo ", + "textByColumns": "Por columnas", + "textByRows": "Por filas", + "textCancel": "Cancelar", + "textCentimeter": "Centímetro", + "textCollaboration": "Colaboración", + "textColorSchemes": "Esquemas de color", + "textComment": "Comentario", + "textCommentingDisplay": "Demostración de comentarios", + "textComments": "Comentarios", + "textCreated": "Creado", + "textCustomSize": "Tamaño personalizado", + "textDisableAll": "Deshabilitar todo", + "textDisableAllMacrosWithNotification": "Deshabilitar todas las macros con notificación", + "textDisableAllMacrosWithoutNotification": "Deshabilitar todas las macros sin notificación", + "textDone": "Listo", + "textDownload": "Descargar", + "textDownloadAs": "Descargar como", + "textEmail": "E-mail", + "textEnableAll": "Habilitar todo", + "textEnableAllMacrosWithoutNotification": "Habilitar todas las macros sin notificación ", + "textFind": "Buscar", + "textFindAndReplace": "Buscar y reemplazar", + "textFindAndReplaceAll": "Buscar y reemplazar todo", + "textFormat": "Formato", + "textFormulaLanguage": "Idioma de fórmula", + "textFormulas": "Fórmulas ", + "textHelp": "Ayuda", + "textHideGridlines": "Ocultar líneas de la cuadrícula", + "textHideHeadings": "Ocultar encabezados", + "textHighlightRes": "Resaltar resultados", + "textInch": "Pulgada", + "textLandscape": "Panorama", + "textLastModified": "Última modificación", + "textLastModifiedBy": "Última modificación por", + "textLeft": "A la izquierda", + "textLocation": "Ubicación", + "textLookIn": "Buscar en ", + "textMacrosSettings": "Ajustes de macros", + "textMargins": "Márgenes", + "textMatchCase": "Coincidir mayúsculas y minúsculas", + "textMatchCell": "Hacer coincidir las celdas", + "textNoTextFound": "Texto no encontrado", + "textOpenFile": "Introduzca la contraseña para abrir el archivo", + "textOrientation": "Orientación ", + "textOwner": "Propietario", + "textPoint": "Punto", + "textPortrait": "Vertical", + "textPoweredBy": "Con tecnología de", + "textPrint": "Imprimir", + "textR1C1Style": "Estilo de referencia R1C1", + "textRegionalSettings": "Ajustes regionales", + "textReplace": "Reemplazar", + "textReplaceAll": "Reemplazar todo", + "textResolvedComments": "Comentarios resueltos", + "textRight": "A la derecha", + "textSearch": "Buscar", + "textSearchBy": "Buscar", + "textSearchIn": "Buscar en", + "textSettings": "Ajustes", + "textSheet": "Hoja", + "textShowNotification": "Mostrar notificación", + "textSpreadsheetFormats": "Formatos de hoja de cálculo", + "textSpreadsheetInfo": "Información sobre hoja de cálculo", + "textSpreadsheetSettings": "Ajustes de hoja de cálculo", + "textSpreadsheetTitle": "Título de hoja de cálculo", + "textSubject": "Asunto", + "textTel": "Tel", + "textTitle": "Título", + "textTop": "Arriba", + "textUnitOfMeasurement": "Unidad de medida", + "textUploaded": "Cargado", + "textValues": "Valores", + "textVersion": "Versión ", + "textWorkbook": "Libro de trabajo", + "txtDelimiter": "Delimitador", + "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á", + "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?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index d06d249b0f..131af14cde 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -1,661 +1,78 @@ { - "Common.Controllers.Collaboration.textAddReply": "Ajouter réponse", - "Common.Controllers.Collaboration.textCancel": "Annuler", - "Common.Controllers.Collaboration.textDeleteComment": "Supprimer commentaire", - "Common.Controllers.Collaboration.textDeleteReply": "Supprimer réponse", - "Common.Controllers.Collaboration.textDone": "Effectué", - "Common.Controllers.Collaboration.textEdit": "Editer", - "Common.Controllers.Collaboration.textEditUser": "Le document est en cours de modification par plusieurs utilisateurs.", - "Common.Controllers.Collaboration.textMessageDeleteComment": "Voulez-vous vraiment supprimer ce commentaire ?", - "Common.Controllers.Collaboration.textMessageDeleteReply": "Voulez-vous vraiment supprimer cette réponse ?", - "Common.Controllers.Collaboration.textReopen": "Rouvrir", - "Common.Controllers.Collaboration.textResolve": "Résoudre", - "Common.Controllers.Collaboration.textYes": "Oui", - "Common.UI.ThemeColorPalette.textCustomColors": "Couleurs personnalisées", - "Common.UI.ThemeColorPalette.textStandartColors": "Couleurs standard", - "Common.UI.ThemeColorPalette.textThemeColors": "Couleurs de thème", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.Collaboration.textAddReply": "Ajouter réponse", - "Common.Views.Collaboration.textBack": "Retour en arrière", - "Common.Views.Collaboration.textCancel": "Annuler", - "Common.Views.Collaboration.textCollaboration": "Collaboration", - "Common.Views.Collaboration.textDone": "Effectué", - "Common.Views.Collaboration.textEditReply": "Editer réponse", - "Common.Views.Collaboration.textEditUsers": "Utilisateurs", - "Common.Views.Collaboration.textEditСomment": "Editer commentaire", - "Common.Views.Collaboration.textNoComments": "Cette feuille de calcul n'a pas de commentaires", - "Common.Views.Collaboration.textСomments": "Commentaires", - "SSE.Controllers.AddChart.txtDiagramTitle": "Titre du diagramme", - "SSE.Controllers.AddChart.txtSeries": "Série", - "SSE.Controllers.AddChart.txtXAxis": "Axe X", - "SSE.Controllers.AddChart.txtYAxis": "Axe Y", - "SSE.Controllers.AddContainer.textChart": "Diagramme", - "SSE.Controllers.AddContainer.textFormula": "Fonction", - "SSE.Controllers.AddContainer.textImage": "Image", - "SSE.Controllers.AddContainer.textOther": "Autre", - "SSE.Controllers.AddContainer.textShape": "Forme", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Avertissement", - "SSE.Controllers.AddLink.textInvalidRange": "ERREUR ! Plage de cellules invalide", - "SSE.Controllers.AddLink.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Avertissement", - "SSE.Controllers.AddOther.textCancel": "Annuler", - "SSE.Controllers.AddOther.textContinue": "Continuer", - "SSE.Controllers.AddOther.textDelete": "Supprimer", - "SSE.Controllers.AddOther.textDeleteDraft": "Voulez-vous vraiment supprimer le brouillon ?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Spécifiez l'URL de l'image", - "SSE.Controllers.AddOther.txtNotUrl": "Ce champ doit être une URL au format 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Actions de copie, de coupe et de collage du menu contextuel seront appliquées seulement dans le fichier actuel.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "Le lien de référence n'existe pas. Veuillez corriger la référence ou la supprimer.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Ajouter commentaire", - "SSE.Controllers.DocumentHolder.menuAddLink": "Ajouter lien", - "SSE.Controllers.DocumentHolder.menuCell": "Cellule", - "SSE.Controllers.DocumentHolder.menuCopy": "Copier", - "SSE.Controllers.DocumentHolder.menuCut": "Couper", - "SSE.Controllers.DocumentHolder.menuDelete": "Supprimer", - "SSE.Controllers.DocumentHolder.menuEdit": "Editer", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Figer volets", - "SSE.Controllers.DocumentHolder.menuHide": "Masquer", - "SSE.Controllers.DocumentHolder.menuMerge": "Fusionner", - "SSE.Controllers.DocumentHolder.menuMore": "Plus", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Ouvrir le lien", - "SSE.Controllers.DocumentHolder.menuPaste": "Coller", - "SSE.Controllers.DocumentHolder.menuShow": "Afficher", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Libérer les volets", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Annuler la fusion", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Annuler le renvoi", - "SSE.Controllers.DocumentHolder.menuViewComment": "Voir commentaire", - "SSE.Controllers.DocumentHolder.menuWrap": "Renvoi à la ligne", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Avertissement", - "SSE.Controllers.DocumentHolder.sheetCancel": "Annuler", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Actions copier, couper et coller", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Ne plus afficher", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "Seulement les données de la cellule supérieure gauche seront conservées dans la cellule fusionnée.
    Êtes-vous sûr de vouloir continuer ?", - "SSE.Controllers.EditCell.textAuto": "Auto", - "SSE.Controllers.EditCell.textFonts": "Polices", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "ERREUR ! Le nombre maximal de séries de données par diagramme est 255.", - "SSE.Controllers.EditChart.errorStockChart": "Ordre lignes incorrect. Pour créer un diagramme boursier, positionnez vos données sur la feuille de calcul dans l'ordre suivant :
    cours à l'ouverture, cours maximal, cours minimal, cours à la clôture.", - "SSE.Controllers.EditChart.textAuto": "Auto", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Entre graduations", - "SSE.Controllers.EditChart.textBillions": "Milliards", - "SSE.Controllers.EditChart.textBottom": "En bas", - "SSE.Controllers.EditChart.textCenter": "Centre", - "SSE.Controllers.EditChart.textCross": "Croisement", - "SSE.Controllers.EditChart.textCustom": "Personnalisé", - "SSE.Controllers.EditChart.textFit": "Ajuster au largeur", - "SSE.Controllers.EditChart.textFixed": "Fixe", - "SSE.Controllers.EditChart.textHigh": "Haut", - "SSE.Controllers.EditChart.textHorizontal": "Horizontal", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Centaines", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "Dans", - "SSE.Controllers.EditChart.textInnerBottom": "En bas à l'intérieur", - "SSE.Controllers.EditChart.textInnerTop": "En haut à l'intérieur", - "SSE.Controllers.EditChart.textLeft": "Gauche", - "SSE.Controllers.EditChart.textLeftOverlay": "Superposition à gauche", - "SSE.Controllers.EditChart.textLow": "Bas", - "SSE.Controllers.EditChart.textManual": "Manuellement", - "SSE.Controllers.EditChart.textMaxValue": "Valeur maximale", - "SSE.Controllers.EditChart.textMillions": "Millions", - "SSE.Controllers.EditChart.textMinValue": "Valeur minimale", - "SSE.Controllers.EditChart.textNextToAxis": "À côté de l'axe", - "SSE.Controllers.EditChart.textNone": "Aucun", - "SSE.Controllers.EditChart.textNoOverlay": "Sans superposition", - "SSE.Controllers.EditChart.textOnTickMarks": "Graduations", - "SSE.Controllers.EditChart.textOut": "À l'extérieur", - "SSE.Controllers.EditChart.textOuterTop": "En haut à l'extérieur", - "SSE.Controllers.EditChart.textOverlay": "Superposition", - "SSE.Controllers.EditChart.textRight": "À droite", - "SSE.Controllers.EditChart.textRightOverlay": "Superposition à droite", - "SSE.Controllers.EditChart.textRotated": "Incliné", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Milliers", - "SSE.Controllers.EditChart.textTop": "En haut", - "SSE.Controllers.EditChart.textTrillions": "Trillions", - "SSE.Controllers.EditChart.textValue": "Valeur", - "SSE.Controllers.EditContainer.textCell": "Cellule", - "SSE.Controllers.EditContainer.textChart": "Diagramme", - "SSE.Controllers.EditContainer.textHyperlink": "Lien hypertexte", - "SSE.Controllers.EditContainer.textImage": "Image", - "SSE.Controllers.EditContainer.textSettings": "Paramètres", - "SSE.Controllers.EditContainer.textShape": "Forme", - "SSE.Controllers.EditContainer.textTable": "Tableau", - "SSE.Controllers.EditContainer.textText": "Texte", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Avertissement", - "SSE.Controllers.EditHyperlink.textDefault": "Plage sélectionnée", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Spécifiez l'URL de l'image", - "SSE.Controllers.EditHyperlink.textExternalLink": "Lien externe", - "SSE.Controllers.EditHyperlink.textInternalLink": "Plage de données interne", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Plage de cellules non valide", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Avertissement", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Specifiez URL d'image", - "SSE.Controllers.EditImage.txtNotUrl": "Ce champ doit être une URL au format 'http://www.exemple.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Blancs}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Vous devez choisir au moins une valeur", - "SSE.Controllers.FilterOptions.textErrorTitle": "Avertissement", - "SSE.Controllers.FilterOptions.textSelectAll": "Sélectionner tout", - "SSE.Controllers.Main.advCSVOptions": "Choisir options CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Entrez votre mot de passe:", - "SSE.Controllers.Main.advDRMOptions": "Fichier protégé", - "SSE.Controllers.Main.advDRMPassword": "Mot de passe", - "SSE.Controllers.Main.applyChangesTextText": "Chargement des données...", - "SSE.Controllers.Main.applyChangesTitleText": "Chargement des données", - "SSE.Controllers.Main.closeButtonText": "Fermer fichier", - "SSE.Controllers.Main.convertationTimeoutText": "Délai d'attente de la conversion dépassé ", - "SSE.Controllers.Main.criticalErrorExtText": "Appuyez sur OK pour revenir à la liste des documents.", - "SSE.Controllers.Main.criticalErrorTitle": "Erreur", - "SSE.Controllers.Main.downloadErrorText": "Téléchargement echoué.", - "SSE.Controllers.Main.downloadMergeText": "Téléchargement en cours...", - "SSE.Controllers.Main.downloadMergeTitle": "Téléchargement en cours", - "SSE.Controllers.Main.downloadTextText": "Téléchargement feuille de calcul en cours...", - "SSE.Controllers.Main.downloadTitleText": "Téléchargement feuille de calcul en cours", - "SSE.Controllers.Main.errorAccessDeny": "Vous tentez d'exéсuter une action pour laquelle vous ne disposez pas des droits.
    Veuillez contacter l'administrateur de Document Server.", - "SSE.Controllers.Main.errorArgsRange": "Erreur dans la formule entrée.
    La plage des arguments utilisée est incorrecte.", - "SSE.Controllers.Main.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.", - "SSE.Controllers.Main.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.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Impossible de réaliser l'opération sur la plage de cellules spécifiée.
    Sélectionnez la plage de données différente de la plage existante et essayez à nouveau.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "L'opération ne peut pas être effectuée car la zone contient des cellules filtrées.
    Veuillez afficher des éléments filtrés et réessayez.", - "SSE.Controllers.Main.errorBadImageUrl": "URL image incorrecte", - "SSE.Controllers.Main.errorChangeArray": "Vous ne pouvez pas modifier des parties d'une tableau. ", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "La connexion au serveur perdue. Désolé, vous ne pouvez plus modifier le document.", - "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.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Impossible d'exécuter cette commande sur des sélections multiples.
    Sélectionnez une seule plage et essayez à nouveau.", - "SSE.Controllers.Main.errorCountArg": "Erreur dans la formule entrée.
    Le nombre d'arguments utilisé est incorrect.", - "SSE.Controllers.Main.errorCountArgExceed": "Erreur dans la formule entrée.
    Le nombre d'arguments a été dépassé.", - "SSE.Controllers.Main.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.", - "SSE.Controllers.Main.errorDatabaseConnection": "Erreur externe.
    Erreur de connexion base de données. Contactez l'assistance technique si le problême persiste.", - "SSE.Controllers.Main.errorDataEncrypted": "Modifications encodées reçues, mais ne peuvent pas être déchiffrées.", - "SSE.Controllers.Main.errorDataRange": "Plage de données incorrecte.", - "SSE.Controllers.Main.errorDataValidate": "La valeur saisie est incorrecte.
    Un utilisateur a restreint les valeurs pouvant être saisies dans cette cellule.", - "SSE.Controllers.Main.errorDefaultMessage": "Code d'erreur : %1", - "SSE.Controllers.Main.errorEditingDownloadas": "Une erreur s'est produite lors du travail sur le document.
    Utilisez l'option « Télécharger » pour enregistrer une copie de sauvegarde sur le disque dur de votre système.", - "SSE.Controllers.Main.errorFilePassProtect": "Le fichier est protégé par le mot de passe et ne peut pas être ouvert.", - "SSE.Controllers.Main.errorFileRequest": "Erreur externe.
    Erreur de demande de fichier. Contactez l'assistance technique si le problème persiste.", - "SSE.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. ", - "SSE.Controllers.Main.errorFileVKey": "Erreur externe.
    Clé de sécurité incorrecte. Contactez l'assistance technique si le problème persiste.", - "SSE.Controllers.Main.errorFillRange": "Impossible de remplir la plage de cellules sélectionnée.
    Toutes les cellules fusionnées doivent être de la même taille.", - "SSE.Controllers.Main.errorFormulaName": "Erreur dans la formule entrée.
    Le nom de formule utilisé est incorrect.", - "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.errorFrmlWrongReferences": "La fonction fait référence à une feuille qui n'existe pas.
    Veuillez vérifier les données et réessayez.", - "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.errorLockedAll": "L'opération ne peut pas être faite 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 l'instant puisque elle est renommée par un autre utilisateur", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Échec du chargement. Merci de choisir un autre fichier", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Fusion a échoué.", - "SSE.Controllers.Main.errorMaxPoints": "Le nombre maximal de points par graphique est 4096.", - "SSE.Controllers.Main.errorMoveRange": "Impossible de modifier une partie d'une cellule fusionnée", - "SSE.Controllers.Main.errorMultiCellFormula": "Formules de tableau plusieurs cellules ne sont pas autorisées dans les classeurs.", - "SSE.Controllers.Main.errorOpensource": "L'utilisation la version gratuite \"Community version\" permet uniquement la visualisation des documents. Pour avoir accès à l'édition sur mobile, une version commerciale est nécessaire.", - "SSE.Controllers.Main.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.", - "SSE.Controllers.Main.errorOperandExpected": "La syntaxe de la saisie est incorrecte. Veuillez vérifier la présence de l'une des parenthèses - '(' ou ')'.", - "SSE.Controllers.Main.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.", - "SSE.Controllers.Main.errorPrintMaxPagesCount": "Malheureusement, il n’est pas possible d’imprimer plus de 1500 pages à la fois en utilisant la version actuelle du programme.
    Cette restriction sera supprimée dans les versions futures.", - "SSE.Controllers.Main.errorProcessSaveResult": "Échec de l'enregistrement", - "SSE.Controllers.Main.errorServerVersion": "La version de l'éditeur a été mise à jour. La page sera rechargée pour appliquer les modifications.", - "SSE.Controllers.Main.errorSessionAbsolute": "Votre session a expiré. Veuillez recharger la page.", - "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.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.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Erreur externe.
    GUID imprévue. Contactez l'assistance technique si le problème persiste.", - "SSE.Controllers.Main.errorUpdateVersion": "La version du fichier a été changée. La page sera rechargée.", - "SSE.Controllers.Main.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, et rechargez la page.", - "SSE.Controllers.Main.errorUserDrop": "Impossible d'accéder au fichier.", - "SSE.Controllers.Main.errorUsersExceed": "Le nombre d'utilisateurs autorisés par le plan tarifaire a été dépassé", - "SSE.Controllers.Main.errorViewerDisconnect": "Connexion perdue. le document peut être affiché tout de même,
    mais ne pourra pas être téléсhargé sans que la connexion soit restaurée et la page rafraichie.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Erreur dans la formule entrée.
    Le nombre de crochets utilisé est incorrect.", - "SSE.Controllers.Main.errorWrongOperator": "Erreur dans la formule entrée. Opérateur incorrect utilisé.
    Veuillez corriger l'erreur.", - "SSE.Controllers.Main.leavePageText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur 'Rester sur cette page' pour la sauvegarde automatique du document. Cliquez sur 'Quitter cette Page' pour ignorer toutes les modifications non enregistrées.", - "SSE.Controllers.Main.loadFontsTextText": "Chargement des données...", - "SSE.Controllers.Main.loadFontsTitleText": "Chargement des données", - "SSE.Controllers.Main.loadFontTextText": "Chargement des données...", - "SSE.Controllers.Main.loadFontTitleText": "Chargement des données", - "SSE.Controllers.Main.loadImagesTextText": "Chargement des images...", - "SSE.Controllers.Main.loadImagesTitleText": "Chargement des images", - "SSE.Controllers.Main.loadImageTextText": "Chargement d'une image...", - "SSE.Controllers.Main.loadImageTitleText": "Chargement d'une image", - "SSE.Controllers.Main.loadingDocumentTextText": "Chargement feuille de calcul...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Chargement feuille de calcul", - "SSE.Controllers.Main.mailMergeLoadFileText": "Chargement de la source des données...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Chargement de la source des données", - "SSE.Controllers.Main.notcriticalErrorTitle": "Avertissement", - "SSE.Controllers.Main.openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier", - "SSE.Controllers.Main.openTextText": "Ouverture du document...", - "SSE.Controllers.Main.openTitleText": "Ouverture du document", - "SSE.Controllers.Main.pastInMergeAreaError": "Impossible de modifier une partie d'une cellule fusionnée", - "SSE.Controllers.Main.printTextText": "Impression du document...", - "SSE.Controllers.Main.printTitleText": "Impression du document", - "SSE.Controllers.Main.reloadButtonText": "Recharger la page", - "SSE.Controllers.Main.requestEditFailedMessageText": "Quelqu'un est en train de modifier ce document. Veuillez réessayer plus tard.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Accès refusé", - "SSE.Controllers.Main.saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier", - "SSE.Controllers.Main.savePreparingText": "Préparation à l'enregistrement ", - "SSE.Controllers.Main.savePreparingTitle": "Préparation à l'enregistrement en cours. Veuillez patienter...", - "SSE.Controllers.Main.saveTextText": "Enregistrement du document...", - "SSE.Controllers.Main.saveTitleText": "Enregistrement du document", - "SSE.Controllers.Main.scriptLoadError": "La connexion est trop lente, certains éléments ne peuvent pas être chargés. Veuillez recharger la page.", - "SSE.Controllers.Main.sendMergeText": "Envoie du résultat de la fusion...", - "SSE.Controllers.Main.sendMergeTitle": "Envoie du résultat de la fusion", - "SSE.Controllers.Main.textAnonymous": "Anonyme", - "SSE.Controllers.Main.textBack": "Retour en arrière", - "SSE.Controllers.Main.textBuyNow": "Visiter le site web", - "SSE.Controllers.Main.textCancel": "Annuler", - "SSE.Controllers.Main.textClose": "Fermer", - "SSE.Controllers.Main.textContactUs": "Contacter l'équipe de ventes", - "SSE.Controllers.Main.textCustomLoader": "Veuillez noter que conformément aux clauses du contrat de licence vous n'êtes pas autorisé à changer le chargeur.
    Veuillez contacter notre Service des Ventes pour obtenir le devis.", - "SSE.Controllers.Main.textDone": "Effectué", - "SSE.Controllers.Main.textGuest": "Invité", - "SSE.Controllers.Main.textHasMacros": "Le fichier contient des macros automatiques.
    Voulez-vous exécuter les macros ?", - "SSE.Controllers.Main.textLoadingDocument": "Chargement feuille de calcul", - "SSE.Controllers.Main.textNo": "Non", - "SSE.Controllers.Main.textNoLicenseTitle": "La limite de la licence est atteinte", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Fonction payée", - "SSE.Controllers.Main.textPassword": "Mot de passe", - "SSE.Controllers.Main.textPreloader": "Chargement en cours...", - "SSE.Controllers.Main.textRemember": "Se souvenir de mon choix", - "SSE.Controllers.Main.textShape": "Forme", - "SSE.Controllers.Main.textStrict": "Mode strict", - "SSE.Controllers.Main.textTryUndoRedo": "Les fonctions annuler/rétablir sont désactivées pour le mode de la co-édition rapide.
    Cliquez sur le bouton \"Mode strict\" pour passer au mode de la co-édition stricte pour modifier le fichier sans interférence des autres utilisateurs et envoyer vos modifications seulement après leur enregistrement. Vous pouvez basculer entre les modes de la co-édition à l'aide des paramètres avancés de l'éditeur.", - "SSE.Controllers.Main.textUsername": "Nom d'utilisateur", - "SSE.Controllers.Main.textYes": "Oui", - "SSE.Controllers.Main.titleLicenseExp": "Licence expirée", - "SSE.Controllers.Main.titleServerVersion": "Editeur mis à jour", - "SSE.Controllers.Main.titleUpdateVersion": "La version a été modifiée", - "SSE.Controllers.Main.txtAccent": "Accent", - "SSE.Controllers.Main.txtArt": "Entrez votre texte", - "SSE.Controllers.Main.txtBasicShapes": "Formes de base", - "SSE.Controllers.Main.txtButtons": "Boutons", - "SSE.Controllers.Main.txtCallouts": "Légendes", - "SSE.Controllers.Main.txtCharts": "Diagrammes", - "SSE.Controllers.Main.txtDelimiter": "Délimiteur", - "SSE.Controllers.Main.txtDiagramTitle": "Titre du diagramme", - "SSE.Controllers.Main.txtEditingMode": "Définition du mode d'édition...", - "SSE.Controllers.Main.txtEncoding": "Encodage ", - "SSE.Controllers.Main.txtErrorLoadHistory": "Échec du chargement de l'historique", - "SSE.Controllers.Main.txtFiguredArrows": "Flèches figurées", - "SSE.Controllers.Main.txtLines": "Lignes", - "SSE.Controllers.Main.txtMath": "Maths", - "SSE.Controllers.Main.txtProtected": "Une fois le mot de passe saisi et le ficher ouvert, le mot de passe actuel sera réinitialisé", - "SSE.Controllers.Main.txtRectangles": "Rectangles", - "SSE.Controllers.Main.txtSeries": "Série", - "SSE.Controllers.Main.txtSpace": "Espace", - "SSE.Controllers.Main.txtStarsRibbons": "Étoiles et rubans", - "SSE.Controllers.Main.txtStyle_Bad": "Incorrect", - "SSE.Controllers.Main.txtStyle_Calculation": "Calcul", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Vérifier cellule", - "SSE.Controllers.Main.txtStyle_Comma": "Virgule", - "SSE.Controllers.Main.txtStyle_Currency": "Devise", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Texte explicatif", - "SSE.Controllers.Main.txtStyle_Good": "Correct", - "SSE.Controllers.Main.txtStyle_Heading_1": "Titre 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Titre 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Titre 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Titre 4", - "SSE.Controllers.Main.txtStyle_Input": "Entrée", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Cellule liée", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutre", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Remarque", - "SSE.Controllers.Main.txtStyle_Output": "Sortie", - "SSE.Controllers.Main.txtStyle_Percent": "Pourcentage", - "SSE.Controllers.Main.txtStyle_Title": "Titre", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Texte d'avertissement", - "SSE.Controllers.Main.txtTab": "Tabulation", - "SSE.Controllers.Main.txtXAxis": "Axe X", - "SSE.Controllers.Main.txtYAxis": "Axe Y", - "SSE.Controllers.Main.unknownErrorText": "Erreur inconnue.", - "SSE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", - "SSE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", - "SSE.Controllers.Main.uploadImageFileCountMessage": "Aucune image chargée.", - "SSE.Controllers.Main.uploadImageSizeMessage": "La taille de l'image dépasse la limite maximale.", - "SSE.Controllers.Main.uploadImageTextText": "Chargement d'une image en cours...", - "SSE.Controllers.Main.uploadImageTitleText": "Chargement d'une image", - "SSE.Controllers.Main.waitText": "Veuillez patienter...", - "SSE.Controllers.Main.warnLicenseExceeded": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
    Contactez votre administrateur pour en savoir davantage.", - "SSE.Controllers.Main.warnLicenseExp": "Votre licence a expiré.
    Veuillez mettre à jour votre licence et actualisez la page.", - "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "La licence est expirée.
    Vous n'avez plus d'accès aux outils d'édition.
    Veuillez contacter votre administrateur.", - "SSE.Controllers.Main.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", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Vous avez dépassé le nombre maximal d’utilisateurs des éditeurs %1. Contactez votre administrateur pour en savoir davantage.", - "SSE.Controllers.Main.warnNoLicense": "Vous avez dépassé le nombre maximal de connexions simultanées aux éditeurs %1. Ce document sera ouvert à la lecture seulement.
    Contactez l’équipe des ventes %1 pour mettre à jour les termes de la licence.", - "SSE.Controllers.Main.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.", - "SSE.Controllers.Main.warnProcessRightsChange": "Le droit d'édition du fichier vous a été refusé.", - "SSE.Controllers.Search.textNoTextFound": "Le texte est introuvable", - "SSE.Controllers.Search.textReplaceAll": "Remplacer tout", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Avertissement", - "SSE.Controllers.Settings.txtDe": "Allemand", - "SSE.Controllers.Settings.txtEn": "Anglais", - "SSE.Controllers.Settings.txtEs": "Espanol", - "SSE.Controllers.Settings.txtFr": "Français", - "SSE.Controllers.Settings.txtIt": "Italien", - "SSE.Controllers.Settings.txtPl": "Polonais", - "SSE.Controllers.Settings.txtRu": "Russe", - "SSE.Controllers.Settings.warnDownloadAs": "Si vous enregistrez dans ce format, seulement le texte sera conservé.
    Voulez-vous vraiment continuer ?", - "SSE.Controllers.Statusbar.cancelButtonText": "Annuler", - "SSE.Controllers.Statusbar.errNameExists": "Feuulle de travail portant ce nom existe déjà.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Le nom d'une feuille ne peut pas contenir les caractères suivants: \\ / * ? [ ] :", - "SSE.Controllers.Statusbar.errNotEmpty": "Le nom de feuille ne peut pas être vide. ", - "SSE.Controllers.Statusbar.errorLastSheet": "Un classeur doit avoir au moins une feuille de calcul visible.", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Impossible de supprimer la feuille de calcul.", - "SSE.Controllers.Statusbar.menuDelete": "Supprimer", - "SSE.Controllers.Statusbar.menuDuplicate": "Dupliquer", - "SSE.Controllers.Statusbar.menuHide": "Masquer", - "SSE.Controllers.Statusbar.menuMore": "Davantage", - "SSE.Controllers.Statusbar.menuRename": "Renommer", - "SSE.Controllers.Statusbar.menuUnhide": "Afficher", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Alerte", - "SSE.Controllers.Statusbar.strRenameSheet": "Renommer la feuille", - "SSE.Controllers.Statusbar.strSheet": "Feuille", - "SSE.Controllers.Statusbar.strSheetName": "Nom de la feuille", - "SSE.Controllers.Statusbar.textExternalLink": "Lien externe", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Une feuille de calcul peut contenir des données. Continuer l'opération ?", - "SSE.Controllers.Toolbar.dlgLeaveMsgText": "Vous avez des modifications non enregistrées dans ce document. Cliquez sur 'Rester sur cette page' pour la sauvegarde automatique du document. Cliquez sur 'Quitter cette page' pour ignorer toutes les modifications non enregistrées.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Vous quittez l'application", - "SSE.Controllers.Toolbar.leaveButtonText": "Quitter cette page", - "SSE.Controllers.Toolbar.stayButtonText": "Rester sur cette page", - "SSE.Views.AddFunction.sCatDateAndTime": "Date et heure", - "SSE.Views.AddFunction.sCatEngineering": "Ingénierie", - "SSE.Views.AddFunction.sCatFinancial": "Financier", - "SSE.Views.AddFunction.sCatInformation": "Information", - "SSE.Views.AddFunction.sCatLogical": "Logical", - "SSE.Views.AddFunction.sCatLookupAndReference": "Recherche et référence", - "SSE.Views.AddFunction.sCatMathematic": "Maths et trigonométrie", - "SSE.Views.AddFunction.sCatStatistical": "Statistiques", - "SSE.Views.AddFunction.sCatTextAndData": "Texte et données", - "SSE.Views.AddFunction.textBack": "Retour en arrière", - "SSE.Views.AddFunction.textGroups": "Catégories", - "SSE.Views.AddLink.textAddLink": "Ajouter lien", - "SSE.Views.AddLink.textAddress": "Adresse", - "SSE.Views.AddLink.textDisplay": "Affichage", - "SSE.Views.AddLink.textExternalLink": "Lien externe", - "SSE.Views.AddLink.textInsert": "Insérer", - "SSE.Views.AddLink.textInternalLink": "Plage de données interne", - "SSE.Views.AddLink.textLink": "Lien", - "SSE.Views.AddLink.textLinkType": "Type de lien", - "SSE.Views.AddLink.textRange": "Plage", - "SSE.Views.AddLink.textRequired": "Requis", - "SSE.Views.AddLink.textSelectedRange": "Plage sélectionnée", - "SSE.Views.AddLink.textSheet": "Feuille", - "SSE.Views.AddLink.textTip": "Info-bulle", - "SSE.Views.AddOther.textAddComment": "Ajouter commentaire", - "SSE.Views.AddOther.textAddress": "Adresse", - "SSE.Views.AddOther.textBack": "Retour", - "SSE.Views.AddOther.textComment": "Commentaire", - "SSE.Views.AddOther.textDone": "Effectué", - "SSE.Views.AddOther.textFilter": "Filtre", - "SSE.Views.AddOther.textFromLibrary": "Image de la bibliothèque", - "SSE.Views.AddOther.textFromURL": "Image à partir d'une URL", - "SSE.Views.AddOther.textImageURL": "URL image", - "SSE.Views.AddOther.textInsert": "Insérer", - "SSE.Views.AddOther.textInsertImage": "Insérer une image", - "SSE.Views.AddOther.textLink": "Lien", - "SSE.Views.AddOther.textLinkSettings": "Paramètres de lien", - "SSE.Views.AddOther.textSort": "Trier et filtrer", - "SSE.Views.EditCell.textAccounting": "Comptabilité", - "SSE.Views.EditCell.textAddCustomColor": "Ajouter couleur personnalisée", - "SSE.Views.EditCell.textAlignBottom": "Aligner en bas", - "SSE.Views.EditCell.textAlignCenter": "Aligner au centre", - "SSE.Views.EditCell.textAlignLeft": "Aligner à gauche", - "SSE.Views.EditCell.textAlignMiddle": "Aligner au milieu", - "SSE.Views.EditCell.textAlignRight": "Aligner à droite", - "SSE.Views.EditCell.textAlignTop": "Aligner en haut", - "SSE.Views.EditCell.textAllBorders": "Toutes les bordures", - "SSE.Views.EditCell.textAngleClockwise": "Rotation dans le sens des aiguilles d'une montre", - "SSE.Views.EditCell.textAngleCounterclockwise": "Rotation dans le sens inverse des aiguilles d'une montre", - "SSE.Views.EditCell.textBack": "Retour", - "SSE.Views.EditCell.textBorderStyle": "Style de bordure", - "SSE.Views.EditCell.textBottomBorder": "Bordure inférieure", - "SSE.Views.EditCell.textCellStyle": "Styles cellule", - "SSE.Views.EditCell.textCharacterBold": "B", - "SSE.Views.EditCell.textCharacterItalic": "I", - "SSE.Views.EditCell.textCharacterUnderline": "U", - "SSE.Views.EditCell.textColor": "Couleur", - "SSE.Views.EditCell.textCurrency": "Devise", - "SSE.Views.EditCell.textCustomColor": "Couleur personnalisée", - "SSE.Views.EditCell.textDate": "Date", - "SSE.Views.EditCell.textDiagDownBorder": "Bordure diagonale vers le bas", - "SSE.Views.EditCell.textDiagUpBorder": "Bordure diagonale vers le haut", - "SSE.Views.EditCell.textDollar": "Dollar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Couleur remplissage", - "SSE.Views.EditCell.textFonts": "Polices", - "SSE.Views.EditCell.textFormat": "Format", - "SSE.Views.EditCell.textGeneral": "Général", - "SSE.Views.EditCell.textHorizontalText": "Texte horizontal", - "SSE.Views.EditCell.textInBorders": "Bordures intérieures", - "SSE.Views.EditCell.textInHorBorder": "Bordure intérieure horizontale", - "SSE.Views.EditCell.textInteger": "Entier", - "SSE.Views.EditCell.textInVertBorder": "Bordure intérieure verticale", - "SSE.Views.EditCell.textJustified": "Justifié", - "SSE.Views.EditCell.textLeftBorder": "Bordure gauche", - "SSE.Views.EditCell.textMedium": "Moyen", - "SSE.Views.EditCell.textNoBorder": "Sans bordures", - "SSE.Views.EditCell.textNumber": "Numérique", - "SSE.Views.EditCell.textPercentage": "Pourcentage", - "SSE.Views.EditCell.textPound": "Livre", - "SSE.Views.EditCell.textRightBorder": "Bordure droite", - "SSE.Views.EditCell.textRotateTextDown": "Rotation du texte vers le bas", - "SSE.Views.EditCell.textRotateTextUp": "Rotation du texte vers le haut", - "SSE.Views.EditCell.textRouble": "Rouble", - "SSE.Views.EditCell.textScientific": "Scientifique", - "SSE.Views.EditCell.textSize": "Taille", - "SSE.Views.EditCell.textText": "Texte", - "SSE.Views.EditCell.textTextColor": "Couleur du texte", - "SSE.Views.EditCell.textTextFormat": "Format du texte", - "SSE.Views.EditCell.textTextOrientation": "Orientation texte", - "SSE.Views.EditCell.textThick": "Épaisses", - "SSE.Views.EditCell.textThin": "Fines", - "SSE.Views.EditCell.textTime": "Heure", - "SSE.Views.EditCell.textTopBorder": "Bordure supérieure", - "SSE.Views.EditCell.textVerticalText": "Texte vertical", - "SSE.Views.EditCell.textWrapText": "Envelopper le texte ", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Ajouter couleur personnalisée", - "SSE.Views.EditChart.textAuto": "Auto", - "SSE.Views.EditChart.textAxisCrosses": "Croisements de l'axe", - "SSE.Views.EditChart.textAxisOptions": "Options d'axe", - "SSE.Views.EditChart.textAxisPosition": "Position de l'axe", - "SSE.Views.EditChart.textAxisTitle": "Titre de l’axe", - "SSE.Views.EditChart.textBack": "Retour en arrière", - "SSE.Views.EditChart.textBackward": "Déplacer vers l'arrière", - "SSE.Views.EditChart.textBorder": "Bordure", - "SSE.Views.EditChart.textBottom": "En bas", - "SSE.Views.EditChart.textChart": "Diagramme", - "SSE.Views.EditChart.textChartTitle": "Titre du diagramme", - "SSE.Views.EditChart.textColor": "Couleur", - "SSE.Views.EditChart.textCrossesValue": "Valeur croisements", - "SSE.Views.EditChart.textCustomColor": "Couleur personnalisée", - "SSE.Views.EditChart.textDataLabels": "Libellés de données", - "SSE.Views.EditChart.textDesign": "Stylique", - "SSE.Views.EditChart.textDisplayUnits": "Unités affichage", - "SSE.Views.EditChart.textFill": "Remplissage", - "SSE.Views.EditChart.textForward": "Déplacer vers l'avant", - "SSE.Views.EditChart.textGridlines": "Quadrillage", - "SSE.Views.EditChart.textHorAxis": "Axe horizontal", - "SSE.Views.EditChart.textHorizontal": "Horizontal", - "SSE.Views.EditChart.textLabelOptions": "Options d'étiquettes", - "SSE.Views.EditChart.textLabelPos": "Position de l'étiquette", - "SSE.Views.EditChart.textLayout": "Disposition", - "SSE.Views.EditChart.textLeft": "Gauche", - "SSE.Views.EditChart.textLeftOverlay": "Superposition à gauche", - "SSE.Views.EditChart.textLegend": "Légende", - "SSE.Views.EditChart.textMajor": "Principal", - "SSE.Views.EditChart.textMajorMinor": "Principales et secondaires ", - "SSE.Views.EditChart.textMajorType": "Type principal", - "SSE.Views.EditChart.textMaxValue": "Valeur maximale", - "SSE.Views.EditChart.textMinor": "Secondaires", - "SSE.Views.EditChart.textMinorType": "Type secondaire", - "SSE.Views.EditChart.textMinValue": "Valeur minimale", - "SSE.Views.EditChart.textNone": "Aucun", - "SSE.Views.EditChart.textNoOverlay": "Sans superposition", - "SSE.Views.EditChart.textOverlay": "Superposition", - "SSE.Views.EditChart.textRemoveChart": "Supprimer le graphique", - "SSE.Views.EditChart.textReorder": "Réorganiser", - "SSE.Views.EditChart.textRight": "À droite", - "SSE.Views.EditChart.textRightOverlay": "Superposition à droite", - "SSE.Views.EditChart.textRotated": "Incliné", - "SSE.Views.EditChart.textSize": "Taille", - "SSE.Views.EditChart.textStyle": "Style", - "SSE.Views.EditChart.textTickOptions": "Options de graduations", - "SSE.Views.EditChart.textToBackground": "Mettre en arrière-plan", - "SSE.Views.EditChart.textToForeground": "Amener au premier plan", - "SSE.Views.EditChart.textTop": "En haut", - "SSE.Views.EditChart.textType": "Type", - "SSE.Views.EditChart.textValReverseOrder": "Valeurs en ordre inverse", - "SSE.Views.EditChart.textVerAxis": "Axe vertical", - "SSE.Views.EditChart.textVertical": "Vertical", - "SSE.Views.EditHyperlink.textBack": "Retour en arrière", - "SSE.Views.EditHyperlink.textDisplay": "Affichage", - "SSE.Views.EditHyperlink.textEditLink": "Editer lien", - "SSE.Views.EditHyperlink.textExternalLink": "Lien externe", - "SSE.Views.EditHyperlink.textInternalLink": "Plage de données interne", - "SSE.Views.EditHyperlink.textLink": "Lien", - "SSE.Views.EditHyperlink.textLinkType": "Type de lien", - "SSE.Views.EditHyperlink.textRange": "Plage", - "SSE.Views.EditHyperlink.textRemoveLink": "Supprimer le lien", - "SSE.Views.EditHyperlink.textScreenTip": "Info-bulle", - "SSE.Views.EditHyperlink.textSheet": "Feuille", - "SSE.Views.EditImage.textAddress": "Adresse", - "SSE.Views.EditImage.textBack": "Retour en arrière", - "SSE.Views.EditImage.textBackward": "Déplacer vers l'arrière", - "SSE.Views.EditImage.textDefault": "Taille actuelle", - "SSE.Views.EditImage.textForward": "Déplacer vers l'avant", - "SSE.Views.EditImage.textFromLibrary": "Image de la bibliothèque", - "SSE.Views.EditImage.textFromURL": "Image à partir d'une URL", - "SSE.Views.EditImage.textImageURL": "URL image", - "SSE.Views.EditImage.textLinkSettings": "Paramètres de lien", - "SSE.Views.EditImage.textRemove": "Supprimer l'image", - "SSE.Views.EditImage.textReorder": "Réorganiser", - "SSE.Views.EditImage.textReplace": "Remplacer", - "SSE.Views.EditImage.textReplaceImg": "Remplacer l’image", - "SSE.Views.EditImage.textToBackground": "Mettre en arrière-plan", - "SSE.Views.EditImage.textToForeground": "Amener au premier plan", - "SSE.Views.EditShape.textAddCustomColor": "Ajouter couleur personnalisée", - "SSE.Views.EditShape.textBack": "Retour en arrière", - "SSE.Views.EditShape.textBackward": "Déplacer vers l'arrière", - "SSE.Views.EditShape.textBorder": "Bordure", - "SSE.Views.EditShape.textColor": "Couleur", - "SSE.Views.EditShape.textCustomColor": "Couleur personnalisée", - "SSE.Views.EditShape.textEffects": "Effets", - "SSE.Views.EditShape.textFill": "Remplissage", - "SSE.Views.EditShape.textForward": "Déplacer vers l'avant", - "SSE.Views.EditShape.textOpacity": "Opacité", - "SSE.Views.EditShape.textRemoveShape": "Supprimer la forme", - "SSE.Views.EditShape.textReorder": "Réorganiser", - "SSE.Views.EditShape.textReplace": "Remplacer", - "SSE.Views.EditShape.textSize": "Taille", - "SSE.Views.EditShape.textStyle": "Style", - "SSE.Views.EditShape.textToBackground": "Mettre en arrière-plan", - "SSE.Views.EditShape.textToForeground": "Amener au premier plan", - "SSE.Views.EditText.textAddCustomColor": "Ajouter couleur personnalisée", - "SSE.Views.EditText.textBack": "Retour en arrière", - "SSE.Views.EditText.textCharacterBold": "B", - "SSE.Views.EditText.textCharacterItalic": "I", - "SSE.Views.EditText.textCharacterUnderline": "U", - "SSE.Views.EditText.textCustomColor": "Couleur personnalisée", - "SSE.Views.EditText.textFillColor": "Couleur remplissage", - "SSE.Views.EditText.textFonts": "Polices", - "SSE.Views.EditText.textSize": "Taille", - "SSE.Views.EditText.textTextColor": "Couleur du texte", - "SSE.Views.FilterOptions.textClearFilter": "Effacer filtre", - "SSE.Views.FilterOptions.textDeleteFilter": "Supprimer filtre", - "SSE.Views.FilterOptions.textFilter": "Options filtre", - "SSE.Views.Search.textByColumns": "Par colonnes", - "SSE.Views.Search.textByRows": "Par lignes", - "SSE.Views.Search.textDone": "Effectué", - "SSE.Views.Search.textFind": "Rechercher", - "SSE.Views.Search.textFindAndReplace": "Rechercher et remplacer", - "SSE.Views.Search.textFormulas": "Formules", - "SSE.Views.Search.textHighlightRes": "Surligner résultats", - "SSE.Views.Search.textLookIn": "Rechercher dans", - "SSE.Views.Search.textMatchCase": "Respecter la casse", - "SSE.Views.Search.textMatchCell": "Respecter la cellule", - "SSE.Views.Search.textReplace": "Remplacer", - "SSE.Views.Search.textSearch": "Rechercher", - "SSE.Views.Search.textSearchBy": "Recherche", - "SSE.Views.Search.textSearchIn": "Сhamp de recherche", - "SSE.Views.Search.textSheet": "Feuille", - "SSE.Views.Search.textValues": "Valeurs", - "SSE.Views.Search.textWorkbook": "Classeur", - "SSE.Views.Settings.textAbout": "À propos de", - "SSE.Views.Settings.textAddress": "adresse", - "SSE.Views.Settings.textApplication": "Application", - "SSE.Views.Settings.textApplicationSettings": "Réglages application", - "SSE.Views.Settings.textAuthor": "Auteur", - "SSE.Views.Settings.textBack": "Retour", - "SSE.Views.Settings.textBottom": "En bas", - "SSE.Views.Settings.textCentimeter": "Centimètre", - "SSE.Views.Settings.textCollaboration": "Collaboration", - "SSE.Views.Settings.textColorSchemes": "Jeux de couleurs", - "SSE.Views.Settings.textComment": "Commentaire", - "SSE.Views.Settings.textCommentingDisplay": "Affichage commentaires ", - "SSE.Views.Settings.textCreated": "Créé", - "SSE.Views.Settings.textCreateDate": "Date de création", - "SSE.Views.Settings.textCustom": "Personnalisé", - "SSE.Views.Settings.textCustomSize": "Taille personnalisée", - "SSE.Views.Settings.textDisableAll": "Désactiver tout", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Désactiver tous les macros avec notification", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Désactiver tous les macros sans notification", - "SSE.Views.Settings.textDisplayComments": "Commentaires", - "SSE.Views.Settings.textDisplayResolvedComments": "Commentaires résolus", - "SSE.Views.Settings.textDocInfo": "Infos sur tableur", - "SSE.Views.Settings.textDocTitle": "Titre du classeur", - "SSE.Views.Settings.textDone": "Effectué", - "SSE.Views.Settings.textDownload": "Télécharger", - "SSE.Views.Settings.textDownloadAs": "Télécharger comme...", - "SSE.Views.Settings.textEditDoc": "Editer document", - "SSE.Views.Settings.textEmail": "e-mail", - "SSE.Views.Settings.textEnableAll": "Activer tout", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Activer tous les macros sans notification", - "SSE.Views.Settings.textExample": "Exemple", - "SSE.Views.Settings.textFind": "Rechercher", - "SSE.Views.Settings.textFindAndReplace": "Rechercher et remplacer", - "SSE.Views.Settings.textFormat": "Format", - "SSE.Views.Settings.textFormulaLanguage": "Langage formule", - "SSE.Views.Settings.textHelp": "Aide", - "SSE.Views.Settings.textHideGridlines": "Masquer quadrillage", - "SSE.Views.Settings.textHideHeadings": "Masquer en-têtes", - "SSE.Views.Settings.textInch": "Pouce", - "SSE.Views.Settings.textLandscape": "Paysage", - "SSE.Views.Settings.textLastModified": "Dernière modification", - "SSE.Views.Settings.textLastModifiedBy": "Dernière modification par", - "SSE.Views.Settings.textLeft": "À gauche", - "SSE.Views.Settings.textLoading": "Chargement en cours...", - "SSE.Views.Settings.textLocation": "Emplacement", - "SSE.Views.Settings.textMacrosSettings": "Réglages macros", - "SSE.Views.Settings.textMargins": "Marges", - "SSE.Views.Settings.textOrientation": "Orientation", - "SSE.Views.Settings.textOwner": "Propriétaire", - "SSE.Views.Settings.textPoint": "Point", - "SSE.Views.Settings.textPortrait": "Portrait", - "SSE.Views.Settings.textPoweredBy": "Propulsé par ", - "SSE.Views.Settings.textPrint": "Imprimer", - "SSE.Views.Settings.textR1C1Style": "Style de référence L1C1", - "SSE.Views.Settings.textRegionalSettings": "Paramètres régionaux", - "SSE.Views.Settings.textRight": "À droit", - "SSE.Views.Settings.textSettings": "Paramètres", - "SSE.Views.Settings.textShowNotification": "Montrer notification", - "SSE.Views.Settings.textSpreadsheetFormats": "Formats de feuille de calcul", - "SSE.Views.Settings.textSpreadsheetSettings": "Paramètres de feuille de calcul", - "SSE.Views.Settings.textSubject": "Sujet", - "SSE.Views.Settings.textTel": "tél.", - "SSE.Views.Settings.textTitle": "Titre", - "SSE.Views.Settings.textTop": "En haut", - "SSE.Views.Settings.textUnitOfMeasurement": "Unité de mesure", - "SSE.Views.Settings.textUploaded": "Chargé", - "SSE.Views.Settings.textVersion": "Version", - "SSE.Views.Settings.unknownText": "Inconnu", - "SSE.Views.Toolbar.textBack": "Retour en arrière" + "About": { + "textAbout": "A propos", + "textAddress": "Adresse", + "textBack": "Retour" + }, + "Common": { + "Collaboration": { + "textAddComment": "Ajouter un commentaire", + "textAddReply": "Ajouter une réponse", + "textBack": "Retour" + } + }, + "ContextMenu": { + "menuAddComment": "Ajouter un commentaire", + "menuAddLink": "Ajouter un lien" + }, + "Controller": { + "Main": { + "SDK": { + "txtAccent": "Accentuation", + "txtStyle_Bad": "Incorrect" + }, + "textAnonymous": "Anonyme" + } + }, + "Error": { + "errorArgsRange": "Il y a une erreur dans la formule : Plage d'arguments incorrecte.", + "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é.", + "errorFormulaName": "Il y a une erreur dans la formule : nom de la formule incorrecte.", + "errorWrongBracketsCount": "Il y a une erreur dans la formule : Mauvais nombre de parenthèses.", + "errorWrongOperator": "Une erreur dans la formule. L'opérateur n'est pas valide. Corriger l'erreur ou presser Echap pour annuler l'édition de la formule.", + "openErrorText": "Une erreur s’est produite lors de l’ouverture du fichier", + "saveErrorText": "Une erreur s'est produite lors de l'enregistrement du fichier" + }, + "Statusbar": { + "textErrNameWrongChar": "Un nom de feuille ne peut pas contenir les caractères suivants : \\, /, *, ?, [, ], :" + }, + "View": { + "Add": { + "textAddLink": "Ajouter un lien", + "textAddress": "Adresse", + "textBack": "Retour" + }, + "Edit": { + "textAccounting": "Comptabilité", + "textActualSize": "Taille par défaut", + "textAddCustomColor": "Ajouter une couleur personnalisée", + "textAddress": "Adresse", + "textAlign": "Aligner", + "textAlignBottom": "Aligner en bas", + "textAlignCenter": "Alignement centré", + "textAlignLeft": "Aligner à gauche", + "textAlignMiddle": "Aligner au milieu", + "textAlignRight": "Aligner à droite", + "textAlignTop": "Aligner en haut", + "textAllBorders": "Toutes les bordures", + "textBack": "Retour", + "textBillions": "Milliards", + "textBorder": "Bordure", + "textBorderStyle": "Style de bordure", + "textEmptyItem": "{Blancs}", + "textHundredMil": "100000000", + "textHundredThousands": "100000", + "textTenMillions": "10000000", + "textTenThousands": "10000" + }, + "Settings": { + "textAbout": "A propos", + "textAddress": "Adresse", + "textApplication": "Application", + "textApplicationSettings": "Paramètres de l'application", + "textAuthor": "Auteur", + "textBack": "Retour" + } + } } diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index 44ba525874..d7a76846ed 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -1,661 +1,56 @@ { - "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": "Foaia de calcul nu conține comentariile", - "Common.Views.Collaboration.textСomments": "Comentarii", - "SSE.Controllers.AddChart.txtDiagramTitle": "Titlu diagramă", - "SSE.Controllers.AddChart.txtSeries": "Serie", - "SSE.Controllers.AddChart.txtXAxis": "Axa X", - "SSE.Controllers.AddChart.txtYAxis": "Axa Y", - "SSE.Controllers.AddContainer.textChart": "Diagramă", - "SSE.Controllers.AddContainer.textFormula": "Funcție", - "SSE.Controllers.AddContainer.textImage": "Imagine", - "SSE.Controllers.AddContainer.textOther": "Altele", - "SSE.Controllers.AddContainer.textShape": "Forma", - "SSE.Controllers.AddLink.notcriticalErrorTitle": "Avertisment", - "SSE.Controllers.AddLink.textInvalidRange": "EROARE! Zonă de celule nu este validă", - "SSE.Controllers.AddLink.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "SSE.Controllers.AddOther.notcriticalErrorTitle": "Avertisment", - "SSE.Controllers.AddOther.textCancel": "Revocare", - "SSE.Controllers.AddOther.textContinue": "Continuare", - "SSE.Controllers.AddOther.textDelete": "Ștergere", - "SSE.Controllers.AddOther.textDeleteDraft": "Sunteți sigur că doriți să stergeți schiță?", - "SSE.Controllers.AddOther.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "SSE.Controllers.AddOther.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "SSE.Controllers.DocumentHolder.errorCopyCutPaste": "Comenzile copiere, decupare și lipire din meniul contextual se aplică numai documentului curent.", - "SSE.Controllers.DocumentHolder.errorInvalidLink": "Legătură de referință nu există. Corectați sau eliminați legătura.", - "SSE.Controllers.DocumentHolder.menuAddComment": "Adaugă comentariu", - "SSE.Controllers.DocumentHolder.menuAddLink": "Adăugare link", - "SSE.Controllers.DocumentHolder.menuCell": "Celula", - "SSE.Controllers.DocumentHolder.menuCopy": "Copiere", - "SSE.Controllers.DocumentHolder.menuCut": "Decupare", - "SSE.Controllers.DocumentHolder.menuDelete": "Ștergere", - "SSE.Controllers.DocumentHolder.menuEdit": "Editare", - "SSE.Controllers.DocumentHolder.menuFreezePanes": "Înghețare panouri", - "SSE.Controllers.DocumentHolder.menuHide": "Ascunde", - "SSE.Controllers.DocumentHolder.menuMerge": "Îmbinare", - "SSE.Controllers.DocumentHolder.menuMore": "Mai multe", - "SSE.Controllers.DocumentHolder.menuOpenLink": "Deschidere link", - "SSE.Controllers.DocumentHolder.menuPaste": "Lipire", - "SSE.Controllers.DocumentHolder.menuShow": "Afișează", - "SSE.Controllers.DocumentHolder.menuUnfreezePanes": "Dezghețare panouri", - "SSE.Controllers.DocumentHolder.menuUnmerge": "Anulare îmbinării", - "SSE.Controllers.DocumentHolder.menuUnwrap": "Anulare încadrare", - "SSE.Controllers.DocumentHolder.menuViewComment": "Vizualizarea comentariilor", - "SSE.Controllers.DocumentHolder.menuWrap": "Încadrare", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Avertisment", - "SSE.Controllers.DocumentHolder.sheetCancel": "Revocare", - "SSE.Controllers.DocumentHolder.textCopyCutPasteActions": "Comenzile de copiere, decupare și lipire", - "SSE.Controllers.DocumentHolder.textDoNotShowAgain": "Nu se mai afișează ", - "SSE.Controllers.DocumentHolder.warnMergeLostData": "În celula îmbinată se afișează numai conținutul celulei din stânga sus.
    Sunteți sigur că doriți să continuați?", - "SSE.Controllers.EditCell.textAuto": "Auto", - "SSE.Controllers.EditCell.textFonts": "Fonturi", - "SSE.Controllers.EditCell.textPt": "pt", - "SSE.Controllers.EditChart.errorMaxRows": "EROARE! Număr maxim serii de date în diagramă este 225.", - "SSE.Controllers.EditChart.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.EditChart.textAuto": "Auto", - "SSE.Controllers.EditChart.textBetweenTickMarks": "Între gradații", - "SSE.Controllers.EditChart.textBillions": "Miliarde", - "SSE.Controllers.EditChart.textBottom": "Jos", - "SSE.Controllers.EditChart.textCenter": "La centru", - "SSE.Controllers.EditChart.textCross": "Traversare", - "SSE.Controllers.EditChart.textCustom": "Particularizat", - "SSE.Controllers.EditChart.textFit": "Potrivire lățime", - "SSE.Controllers.EditChart.textFixed": "Fixă", - "SSE.Controllers.EditChart.textHigh": "Ridicată", - "SSE.Controllers.EditChart.textHorizontal": "Orizontală", - "SSE.Controllers.EditChart.textHundredMil": "100 000 000", - "SSE.Controllers.EditChart.textHundreds": "Sute", - "SSE.Controllers.EditChart.textHundredThousands": "100 000", - "SSE.Controllers.EditChart.textIn": "În", - "SSE.Controllers.EditChart.textInnerBottom": "În interior în jos", - "SSE.Controllers.EditChart.textInnerTop": "În interor în sus", - "SSE.Controllers.EditChart.textLeft": "Stânga", - "SSE.Controllers.EditChart.textLeftOverlay": "Suprapunere din stânga", - "SSE.Controllers.EditChart.textLow": "Scăzută", - "SSE.Controllers.EditChart.textManual": "Manual", - "SSE.Controllers.EditChart.textMaxValue": "Limita maximă", - "SSE.Controllers.EditChart.textMillions": "Milioane", - "SSE.Controllers.EditChart.textMinValue": "Limita minimă", - "SSE.Controllers.EditChart.textNextToAxis": "Lângă axă", - "SSE.Controllers.EditChart.textNone": "Niciunul", - "SSE.Controllers.EditChart.textNoOverlay": "Fără suprapunere", - "SSE.Controllers.EditChart.textOnTickMarks": "Pe gradații", - "SSE.Controllers.EditChart.textOut": "Din", - "SSE.Controllers.EditChart.textOuterTop": "În exterior în sus", - "SSE.Controllers.EditChart.textOverlay": "Suprapunere", - "SSE.Controllers.EditChart.textRight": "Dreapta", - "SSE.Controllers.EditChart.textRightOverlay": "Suprapunerea din dreapta", - "SSE.Controllers.EditChart.textRotated": "Rotit", - "SSE.Controllers.EditChart.textTenMillions": "10 000 000", - "SSE.Controllers.EditChart.textTenThousands": "10 000", - "SSE.Controllers.EditChart.textThousands": "Mii", - "SSE.Controllers.EditChart.textTop": "Sus", - "SSE.Controllers.EditChart.textTrillions": "Trilioane", - "SSE.Controllers.EditChart.textValue": "Valoare", - "SSE.Controllers.EditContainer.textCell": "Celula", - "SSE.Controllers.EditContainer.textChart": "Diagramă", - "SSE.Controllers.EditContainer.textHyperlink": "Hyperlink", - "SSE.Controllers.EditContainer.textImage": "Imagine", - "SSE.Controllers.EditContainer.textSettings": "Setări", - "SSE.Controllers.EditContainer.textShape": "Forma", - "SSE.Controllers.EditContainer.textTable": "Tabel", - "SSE.Controllers.EditContainer.textText": "Text", - "SSE.Controllers.EditHyperlink.notcriticalErrorTitle": "Avertisment", - "SSE.Controllers.EditHyperlink.textDefault": "Zona selectată", - "SSE.Controllers.EditHyperlink.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "SSE.Controllers.EditHyperlink.textExternalLink": "Link extern", - "SSE.Controllers.EditHyperlink.textInternalLink": "Zonă de date internă", - "SSE.Controllers.EditHyperlink.textInvalidRange": "Zona de celule nu este validă", - "SSE.Controllers.EditHyperlink.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format \"http://www.example.com\"", - "SSE.Controllers.EditImage.notcriticalErrorTitle": "Avertisment", - "SSE.Controllers.EditImage.textEmptyImgUrl": "Trebuie specificată adresa URL a imaginii.", - "SSE.Controllers.EditImage.txtNotUrl": "Câmpul trebuie să conțină adresa URL in format 'http://www.example.com'", - "SSE.Controllers.FilterOptions.textEmptyItem": "{Necompletat}", - "SSE.Controllers.FilterOptions.textErrorMsg": "Selectați cel puțin o valoare", - "SSE.Controllers.FilterOptions.textErrorTitle": "Avertisment", - "SSE.Controllers.FilterOptions.textSelectAll": "Selectare totală", - "SSE.Controllers.Main.advCSVOptions": "Alegerea opțiunilor CSV", - "SSE.Controllers.Main.advDRMEnterPassword": "Introduceți parola:", - "SSE.Controllers.Main.advDRMOptions": "Fișierul protejat", - "SSE.Controllers.Main.advDRMPassword": "Parola", - "SSE.Controllers.Main.applyChangesTextText": "Încărcarea datelor...", - "SSE.Controllers.Main.applyChangesTitleText": "Încărcare date", - "SSE.Controllers.Main.closeButtonText": "Închide fișierul", - "SSE.Controllers.Main.convertationTimeoutText": "Timpul de așteptare pentru conversie a expirat.", - "SSE.Controllers.Main.criticalErrorExtText": "Faceți click pe butonul'OK' pentru a vă întoarce la lista documente. ", - "SSE.Controllers.Main.criticalErrorTitle": "Eroare", - "SSE.Controllers.Main.downloadErrorText": "Descărcare eșuată.", - "SSE.Controllers.Main.downloadMergeText": "Progres descărcare...", - "SSE.Controllers.Main.downloadMergeTitle": "Progres descărcare", - "SSE.Controllers.Main.downloadTextText": "Descărcare foaie de calcul...", - "SSE.Controllers.Main.downloadTitleText": "Descărcare foaie de calcul", - "SSE.Controllers.Main.errorAccessDeny": "Nu aveți dreptul să efectuați acțiunea pe care doriți.
    Contactați administratorul dumneavoastră de Server Documente.", - "SSE.Controllers.Main.errorArgsRange": "Eroare în formulă.
    Zonă argument incorectă.", - "SSE.Controllers.Main.errorAutoFilterChange": "Operațiunea nu este permisă deoarece este o încercare de a deplasa celulele în tabel din foaia de calcul dvs.", - "SSE.Controllers.Main.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.", - "SSE.Controllers.Main.errorAutoFilterDataRange": "Operațiunea nu poare fi efectuată pentru celulele selectate.
    Selectați o altă zonă de date uniformă și încercați din nou.", - "SSE.Controllers.Main.errorAutoFilterHiddenRange": "Operațiunea nu poate fi efectuată deoarece zonă conține celule filtrate.
    Reafișați elementele filtrate și încercați din nou.", - "SSE.Controllers.Main.errorBadImageUrl": "URL-ul imaginii incorectă", - "SSE.Controllers.Main.errorChangeArray": "Nu puteți modifica parte dintr-o matrice.", - "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Conexiunea la server a fost pierdută. Deocamdată, imposibil de editat documentul.", - "SSE.Controllers.Main.errorConnectToServer": "Salvarea documentului nu poate fi finalizată. Verificați configurarea conexeunii sau contactaţi administratorul dumneavoastră de reţea
    Când faceți clic pe OK, vi se va solicita să descărcați documentul.", - "SSE.Controllers.Main.errorCopyMultiselectArea": "Această comandă nu poate fi aplicată la selecții multiple
    Selectați o singură zonă și încercați din nou.", - "SSE.Controllers.Main.errorCountArg": "Eroare în formulă.
    Număr incorect de argumente.", - "SSE.Controllers.Main.errorCountArgExceed": "Eroare în formulă.
    Numărul de argumente a fost depășit.", - "SSE.Controllers.Main.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ță.", - "SSE.Controllers.Main.errorDatabaseConnection": "Eroare externă.
    Eroare de conectare la baza de date. Dacă eroarea persistă, contactați Serviciul de Asistență Clienți.", - "SSE.Controllers.Main.errorDataEncrypted": "Modificările primite sunt criptate, decriptarea este imposibilă.", - "SSE.Controllers.Main.errorDataRange": "Zonă de date incorectă.", - "SSE.Controllers.Main.errorDataValidate": "Valoarea introdusă nu este validă
    Unul dintre utilizatori a restricționat valorile pe care utilizatorii le introduc într-o celulă. ", - "SSE.Controllers.Main.errorDefaultMessage": "Codul de eroare: %1", - "SSE.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.", - "SSE.Controllers.Main.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", - "SSE.Controllers.Main.errorFileRequest": "Eroare externă.
    Eroare la trimiterea solicitării de fișier. Dacă eroarea persistă, contactați Serviciul de Asistență Clienți.", - "SSE.Controllers.Main.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
    Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", - "SSE.Controllers.Main.errorFileVKey": "Eroare externă.
    Cheia de securitate incorectă. Dacă eroarea persistă, contactați Seviciul de Asistență Clienți.", - "SSE.Controllers.Main.errorFillRange": "Completarea celulelor selectate nu este posibilă.
    Configurați toate coloanele îmbinate la aceeași dimensiune.", - "SSE.Controllers.Main.errorFormulaName": "Eroare în formulă.
    Numele formulei incorect.", - "SSE.Controllers.Main.errorFormulaParsing": "Eroare internă de parsare cu formulă.", - "SSE.Controllers.Main.errorFrmlMaxLength": "Lungimea conținutului formulei depășește limita maximă de 8192 caractere.
    Editați-o și încercați din nou.", - "SSE.Controllers.Main.errorFrmlMaxReference": "Nu puteți introduce acestă formula deoarece are prea multe valori,
    referințe de celulă, și/sau nume.", - "SSE.Controllers.Main.errorFrmlMaxTextLength": "Valorile de tip text în o formulă pot conține maxim 255 caractere.
    Utilizați funcția CONCATENATE sau operatorul de calcul (&).", - "SSE.Controllers.Main.errorFrmlWrongReferences": "Funcția se referă la o foaie inexistentă.
    Verificați datele și încercați din nou.", - "SSE.Controllers.Main.errorInvalidRef": "Introduceți numele din selecție corect sau o referință validă de accesat.", - "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", - "SSE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", - "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", - "SSE.Controllers.Main.errorMailMergeLoadFile": "Încărcarea fișierului eșuată. Selectați un alt fișier.", - "SSE.Controllers.Main.errorMailMergeSaveFile": "Îmbinarea eșuată.", - "SSE.Controllers.Main.errorMaxPoints": "Numărul maxim de puncte de date pe serie în diagramă este limitat la 4096.", - "SSE.Controllers.Main.errorMoveRange": "O parte din celulă îmbinată nu poate fi modificată ", - "SSE.Controllers.Main.errorMultiCellFormula": "Formule de matrice cu mai multe celule nu sunt permise în tabele.", - "SSE.Controllers.Main.errorOpensource": "Versiunea gratuită a ediției Community include numai vizualizarea fișierilor. Licența comercială permite utilizarea editoarelor pentru dispozitivele mobile.", - "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.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.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.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.", - "SSE.Controllers.Main.errorUnexpectedGuid": "Eroare externă.
    GUID neașteptat. Dacă eroarea persistă, contactați Seviciul de Asistență Clienți.", - "SSE.Controllers.Main.errorUpdateVersion": "Versiunea fișierului s-a modificat. Pagina va fi reîmprospătată.", - "SSE.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ă.", - "SSE.Controllers.Main.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", - "SSE.Controllers.Main.errorUsersExceed": "Limita de utilizatori stipulată de planul tarifar a fost depășită", - "SSE.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ă.", - "SSE.Controllers.Main.errorWrongBracketsCount": "Eroare în formulă.
    Numărul de paranteze incorect.", - "SSE.Controllers.Main.errorWrongOperator": "Eroare în formulă. Operator necorespunzător.
    Corectați eroarea.", - "SSE.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.", - "SSE.Controllers.Main.loadFontsTextText": "Încărcarea datelor...", - "SSE.Controllers.Main.loadFontsTitleText": "Încărcare date", - "SSE.Controllers.Main.loadFontTextText": "Încărcarea datelor...", - "SSE.Controllers.Main.loadFontTitleText": "Încărcare date", - "SSE.Controllers.Main.loadImagesTextText": "Încărcarea imaginilor...", - "SSE.Controllers.Main.loadImagesTitleText": "Încărcare imagini", - "SSE.Controllers.Main.loadImageTextText": "Încărcarea imaginii...", - "SSE.Controllers.Main.loadImageTitleText": "Încărcare imagine", - "SSE.Controllers.Main.loadingDocumentTextText": "Încărcarea foii de calcul...", - "SSE.Controllers.Main.loadingDocumentTitleText": "Încărcare foaie de calcul", - "SSE.Controllers.Main.mailMergeLoadFileText": "Încărcarea sursei de date...", - "SSE.Controllers.Main.mailMergeLoadFileTitle": "Încărcare sursa de date", - "SSE.Controllers.Main.notcriticalErrorTitle": "Avertisment", - "SSE.Controllers.Main.openErrorText": "Eroare la deschiderea fișierului.", - "SSE.Controllers.Main.openTextText": "Deschiderea fișierului...", - "SSE.Controllers.Main.openTitleText": "Deschidere fișier", - "SSE.Controllers.Main.pastInMergeAreaError": "O parte din celulă îmbinată nu poate fi modificată ", - "SSE.Controllers.Main.printTextText": "Imprimarea documentului...", - "SSE.Controllers.Main.printTitleText": "Imprimarea documentului", - "SSE.Controllers.Main.reloadButtonText": "Reîmprospătare pagina", - "SSE.Controllers.Main.requestEditFailedMessageText": "La moment, alcineva lucrează la documentul. Vă rugăm să încercați mai târziu.", - "SSE.Controllers.Main.requestEditFailedTitleText": "Acces refuzat", - "SSE.Controllers.Main.saveErrorText": "S-a produs o eroare în timpul încercării de salvare a fișierului.", - "SSE.Controllers.Main.savePreparingText": "Pregătire pentru salvare", - "SSE.Controllers.Main.savePreparingTitle": "Pregătire pentru salvare. Vă rugăm să așteptați...", - "SSE.Controllers.Main.saveTextText": "Salvarea documentului...", - "SSE.Controllers.Main.saveTitleText": "Salvare document", - "SSE.Controllers.Main.scriptLoadError": "Conexeunea e prea lentă și unele elemente nu se încarcă. Încercați să reîmprospătati pagina.", - "SSE.Controllers.Main.sendMergeText": "Trimitere îmbinare a corespondenței...", - "SSE.Controllers.Main.sendMergeTitle": "Trimitere îmbinare a corespondenței ", - "SSE.Controllers.Main.textAnonymous": "Anonim", - "SSE.Controllers.Main.textBack": "Înapoi", - "SSE.Controllers.Main.textBuyNow": "Vizitarea site-ul Web", - "SSE.Controllers.Main.textCancel": "Revocare", - "SSE.Controllers.Main.textClose": "Închidere", - "SSE.Controllers.Main.textContactUs": "Contactați Departamentul de Vânzări", - "SSE.Controllers.Main.textCustomLoader": "Vă rugăm să rețineți că conform termenilor de licență nu aveți dreptul să modificați programul de încărcare.
    Pentru obținerea unei cotații de preț vă rugăm să contactați Departamentul de Vânzari.", - "SSE.Controllers.Main.textDone": "Gata", - "SSE.Controllers.Main.textGuest": "Invitat", - "SSE.Controllers.Main.textHasMacros": "Fișierul conține macrocomenzi.
    Doriți să le rulați?", - "SSE.Controllers.Main.textLoadingDocument": "Încărcare foaie de calcul", - "SSE.Controllers.Main.textNo": "Nu", - "SSE.Controllers.Main.textNoLicenseTitle": "Ați atins limita stabilită de licență", - "SSE.Controllers.Main.textOK": "OK", - "SSE.Controllers.Main.textPaidFeature": "Funcția contra plată", - "SSE.Controllers.Main.textPassword": "Parola", - "SSE.Controllers.Main.textPreloader": "Se incarca...", - "SSE.Controllers.Main.textRemember": "Salvează setările pentru toate fișiere", - "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.textUsername": "Nume de utilizator", - "SSE.Controllers.Main.textYes": "Da", - "SSE.Controllers.Main.titleLicenseExp": "Licența a expirat", - "SSE.Controllers.Main.titleServerVersion": "Editorul a fost actualizat", - "SSE.Controllers.Main.titleUpdateVersion": "Versiunea s-a modificat", - "SSE.Controllers.Main.txtAccent": "Accent", - "SSE.Controllers.Main.txtArt": "Textul dvs. aici", - "SSE.Controllers.Main.txtBasicShapes": "Forme de bază", - "SSE.Controllers.Main.txtButtons": "Butoane", - "SSE.Controllers.Main.txtCallouts": "Explicații", - "SSE.Controllers.Main.txtCharts": "Diagrame", - "SSE.Controllers.Main.txtDelimiter": "Delimitator", - "SSE.Controllers.Main.txtDiagramTitle": "Titlu diagramă", - "SSE.Controllers.Main.txtEditingMode": "Setare modul de editare...", - "SSE.Controllers.Main.txtEncoding": "Codificare", - "SSE.Controllers.Main.txtErrorLoadHistory": "Încărcarea istoricului a eșuat", - "SSE.Controllers.Main.txtFiguredArrows": "Săgeți în forme diferite", - "SSE.Controllers.Main.txtLines": "Linii", - "SSE.Controllers.Main.txtMath": "Matematica", - "SSE.Controllers.Main.txtProtected": "Parola curentă va fi resetată, de îndată ce parola este introdusă și fișierul este deschis.", - "SSE.Controllers.Main.txtRectangles": "Dreptunghiuri", - "SSE.Controllers.Main.txtSeries": "Serie", - "SSE.Controllers.Main.txtSpace": "Spațiu", - "SSE.Controllers.Main.txtStarsRibbons": "Stele și forme ondulate", - "SSE.Controllers.Main.txtStyle_Bad": "Eronat", - "SSE.Controllers.Main.txtStyle_Calculation": "Calculare", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Verificarea celulei", - "SSE.Controllers.Main.txtStyle_Comma": "Virgulă", - "SSE.Controllers.Main.txtStyle_Currency": "Monedă", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Text explicativ", - "SSE.Controllers.Main.txtStyle_Good": "Bun", - "SSE.Controllers.Main.txtStyle_Heading_1": "Titlu 1", - "SSE.Controllers.Main.txtStyle_Heading_2": "Titlu 2", - "SSE.Controllers.Main.txtStyle_Heading_3": "Titlu 3", - "SSE.Controllers.Main.txtStyle_Heading_4": "Titlu 4", - "SSE.Controllers.Main.txtStyle_Input": "Intrare", - "SSE.Controllers.Main.txtStyle_Linked_Cell": "Celulă legată", - "SSE.Controllers.Main.txtStyle_Neutral": "Neutru", - "SSE.Controllers.Main.txtStyle_Normal": "Normal", - "SSE.Controllers.Main.txtStyle_Note": "Notă", - "SSE.Controllers.Main.txtStyle_Output": "Ieșirea", - "SSE.Controllers.Main.txtStyle_Percent": "Procent", - "SSE.Controllers.Main.txtStyle_Title": "Titlu", - "SSE.Controllers.Main.txtStyle_Total": "Total", - "SSE.Controllers.Main.txtStyle_Warning_Text": "Mesaj de avertisment", - "SSE.Controllers.Main.txtTab": "Fila", - "SSE.Controllers.Main.txtXAxis": "Axa X", - "SSE.Controllers.Main.txtYAxis": "Axa Y", - "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ă.", - "SSE.Controllers.Main.uploadImageSizeMessage": "Dimensiunea imaginii depășește limita maximă.", - "SSE.Controllers.Main.uploadImageTextText": "Încărcarea imaginii...", - "SSE.Controllers.Main.uploadImageTitleText": "Încărcarea imaginii", - "SSE.Controllers.Main.waitText": "Vă rugăm să așteptați...", - "SSE.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.", - "SSE.Controllers.Main.warnLicenseExp": "Licența dvs. a expirat.
    Licența urmează să fie reînnoită iar pagina reîmprospătată.", - "SSE.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.", - "SSE.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.", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "Ați atins numărul maxim de utilizatori al %1 editoare. Pentru detalii, contactați administratorul dvs.", - "SSE.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.", - "SSE.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.", - "SSE.Controllers.Main.warnProcessRightsChange": "Accesul la editarea fișierului refuzat.", - "SSE.Controllers.Search.textNoTextFound": "Textul nu a fost găsit", - "SSE.Controllers.Search.textReplaceAll": "Înlocuire peste tot", - "SSE.Controllers.Settings.notcriticalErrorTitle": "Avertisment", - "SSE.Controllers.Settings.txtDe": "Germană", - "SSE.Controllers.Settings.txtEn": "Engleză", - "SSE.Controllers.Settings.txtEs": "Spaniolă", - "SSE.Controllers.Settings.txtFr": "Franceză", - "SSE.Controllers.Settings.txtIt": "Italiană", - "SSE.Controllers.Settings.txtPl": "Poloneză", - "SSE.Controllers.Settings.txtRu": "Rusă", - "SSE.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?", - "SSE.Controllers.Statusbar.cancelButtonText": "Revocare", - "SSE.Controllers.Statusbar.errNameExists": "O foaie de calcul cu același nume există deja.", - "SSE.Controllers.Statusbar.errNameWrongChar": "Numele foilor de calcul nu pot să conțină următoarele caractere: \\, /, *, ?, [, ], :", - "SSE.Controllers.Statusbar.errNotEmpty": "Nu lăsați numele foii necompletat", - "SSE.Controllers.Statusbar.errorLastSheet": "În registrul de calcul trebuie să fie vizibilă cel puțin o foie de lucru. ", - "SSE.Controllers.Statusbar.errorRemoveSheet": "Foaia de calcul nu poate fi ștearsă.", - "SSE.Controllers.Statusbar.menuDelete": "Ștergere", - "SSE.Controllers.Statusbar.menuDuplicate": "Dubluri", - "SSE.Controllers.Statusbar.menuHide": "Ascunde", - "SSE.Controllers.Statusbar.menuMore": "Mai multe", - "SSE.Controllers.Statusbar.menuRename": "Redenumire", - "SSE.Controllers.Statusbar.menuUnhide": "Reafișare", - "SSE.Controllers.Statusbar.notcriticalErrorTitle": "Avertisment", - "SSE.Controllers.Statusbar.strRenameSheet": "Redenumire foaie", - "SSE.Controllers.Statusbar.strSheet": "Foaie", - "SSE.Controllers.Statusbar.strSheetName": "Numele foii", - "SSE.Controllers.Statusbar.textExternalLink": "Link extern", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Foile de calcul selectate pot conține datele. Sigur doriți să continuați?", - "SSE.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.", - "SSE.Controllers.Toolbar.dlgLeaveTitleText": "Dumneavoastră părăsiți aplicația", - "SSE.Controllers.Toolbar.leaveButtonText": "Părăsește această pagina", - "SSE.Controllers.Toolbar.stayButtonText": "Rămâi în pagină", - "SSE.Views.AddFunction.sCatDateAndTime": "Dată și oră", - "SSE.Views.AddFunction.sCatEngineering": "Inginerie", - "SSE.Views.AddFunction.sCatFinancial": "Financiar", - "SSE.Views.AddFunction.sCatInformation": "Informații", - "SSE.Views.AddFunction.sCatLogical": "Logic", - "SSE.Views.AddFunction.sCatLookupAndReference": "Căutare și referință", - "SSE.Views.AddFunction.sCatMathematic": "Funcții matematice și trigonometrice", - "SSE.Views.AddFunction.sCatStatistical": "Funcții statistice", - "SSE.Views.AddFunction.sCatTextAndData": "Text și date", - "SSE.Views.AddFunction.textBack": "Înapoi", - "SSE.Views.AddFunction.textGroups": "Categorii", - "SSE.Views.AddLink.textAddLink": "Adăugare link", - "SSE.Views.AddLink.textAddress": "Adresă", - "SSE.Views.AddLink.textDisplay": "Afișare", - "SSE.Views.AddLink.textExternalLink": "Link extern", - "SSE.Views.AddLink.textInsert": "Inserare", - "SSE.Views.AddLink.textInternalLink": "Zonă de date internă", - "SSE.Views.AddLink.textLink": "Link", - "SSE.Views.AddLink.textLinkType": "Tip link", - "SSE.Views.AddLink.textRange": "Zona", - "SSE.Views.AddLink.textRequired": "Obligatoriu", - "SSE.Views.AddLink.textSelectedRange": "Zona selectată", - "SSE.Views.AddLink.textSheet": "Foaie", - "SSE.Views.AddLink.textTip": "Sfaturi ecran", - "SSE.Views.AddOther.textAddComment": "Adaugă comentariu", - "SSE.Views.AddOther.textAddress": "Adresă", - "SSE.Views.AddOther.textBack": "Înapoi", - "SSE.Views.AddOther.textComment": "Comentariu", - "SSE.Views.AddOther.textDone": "Gata", - "SSE.Views.AddOther.textFilter": "Filtrare", - "SSE.Views.AddOther.textFromLibrary": "Imagine dintr-o bibliotecă ", - "SSE.Views.AddOther.textFromURL": "Imaginea prin URL", - "SSE.Views.AddOther.textImageURL": "URL-ul imaginii", - "SSE.Views.AddOther.textInsert": "Inserare", - "SSE.Views.AddOther.textInsertImage": "Inserare imagine", - "SSE.Views.AddOther.textLink": "Link", - "SSE.Views.AddOther.textLinkSettings": "Configurarea link", - "SSE.Views.AddOther.textSort": "Sortare și filtrare", - "SSE.Views.EditCell.textAccounting": "Contabilitate", - "SSE.Views.EditCell.textAddCustomColor": "Adăugarea unei culori particularizate", - "SSE.Views.EditCell.textAlignBottom": "Aliniere jos", - "SSE.Views.EditCell.textAlignCenter": "Aliniere la centru", - "SSE.Views.EditCell.textAlignLeft": "Aliniere la stânga", - "SSE.Views.EditCell.textAlignMiddle": "Aliniere la mijloc", - "SSE.Views.EditCell.textAlignRight": "Aliniere la dreapta", - "SSE.Views.EditCell.textAlignTop": "Aliniere sus", - "SSE.Views.EditCell.textAllBorders": "Toate borduri", - "SSE.Views.EditCell.textAngleClockwise": "Unghi de rotație în sens orar", - "SSE.Views.EditCell.textAngleCounterclockwise": "Unghi de rotație în sens antiorar", - "SSE.Views.EditCell.textBack": "Înapoi", - "SSE.Views.EditCell.textBorderStyle": "Stil bordură", - "SSE.Views.EditCell.textBottomBorder": "Bordura de jos", - "SSE.Views.EditCell.textCellStyle": "Stil celula", - "SSE.Views.EditCell.textCharacterBold": "A", - "SSE.Views.EditCell.textCharacterItalic": "C", - "SSE.Views.EditCell.textCharacterUnderline": "S", - "SSE.Views.EditCell.textColor": "Culoare", - "SSE.Views.EditCell.textCurrency": "Monedă", - "SSE.Views.EditCell.textCustomColor": "Culoare particularizată", - "SSE.Views.EditCell.textDate": "Data", - "SSE.Views.EditCell.textDiagDownBorder": "Bordură diagonală descendentă", - "SSE.Views.EditCell.textDiagUpBorder": "Bordură diagonală ascendentă", - "SSE.Views.EditCell.textDollar": "Dolar", - "SSE.Views.EditCell.textEuro": "Euro", - "SSE.Views.EditCell.textFillColor": "Culoare umplere", - "SSE.Views.EditCell.textFonts": "Fonturi", - "SSE.Views.EditCell.textFormat": "Format", - "SSE.Views.EditCell.textGeneral": "General", - "SSE.Views.EditCell.textHorizontalText": "Text orizontal", - "SSE.Views.EditCell.textInBorders": "Borduri în interiorul ", - "SSE.Views.EditCell.textInHorBorder": "Bordură orizontală în interiorul ", - "SSE.Views.EditCell.textInteger": "Număr întreg", - "SSE.Views.EditCell.textInVertBorder": "Bordură verticală în interiorul ", - "SSE.Views.EditCell.textJustified": "Aliniat stânga-dreapta", - "SSE.Views.EditCell.textLeftBorder": "Bordură din stânga", - "SSE.Views.EditCell.textMedium": "Mediu", - "SSE.Views.EditCell.textNoBorder": "Fără bordură", - "SSE.Views.EditCell.textNumber": "Număr", - "SSE.Views.EditCell.textPercentage": "Procentaj", - "SSE.Views.EditCell.textPound": "Pound", - "SSE.Views.EditCell.textRightBorder": "Bordură din dreapta", - "SSE.Views.EditCell.textRotateTextDown": "Rotirea textului în jos", - "SSE.Views.EditCell.textRotateTextUp": "Rotirea textului în sus", - "SSE.Views.EditCell.textRouble": "Rouble", - "SSE.Views.EditCell.textScientific": "Științific ", - "SSE.Views.EditCell.textSize": "Dimensiune", - "SSE.Views.EditCell.textText": "Text", - "SSE.Views.EditCell.textTextColor": "Culoare text", - "SSE.Views.EditCell.textTextFormat": "Format text", - "SSE.Views.EditCell.textTextOrientation": "Orientarea textului", - "SSE.Views.EditCell.textThick": "Groasă", - "SSE.Views.EditCell.textThin": "Subțire", - "SSE.Views.EditCell.textTime": "Oră", - "SSE.Views.EditCell.textTopBorder": "Bordură de sus", - "SSE.Views.EditCell.textVerticalText": "Text vertical", - "SSE.Views.EditCell.textWrapText": "Incadrarea textului", - "SSE.Views.EditCell.textYen": "Yen", - "SSE.Views.EditChart.textAddCustomColor": "Adăugarea unei culori particularizate", - "SSE.Views.EditChart.textAuto": "Auto", - "SSE.Views.EditChart.textAxisCrosses": "Intersecția cu axă", - "SSE.Views.EditChart.textAxisOptions": "Opțiuni axă", - "SSE.Views.EditChart.textAxisPosition": "Poziție axă", - "SSE.Views.EditChart.textAxisTitle": "Titlu axă", - "SSE.Views.EditChart.textBack": "Înapoi", - "SSE.Views.EditChart.textBackward": "Mutare în ultimul plan", - "SSE.Views.EditChart.textBorder": "Bordură", - "SSE.Views.EditChart.textBottom": "Jos", - "SSE.Views.EditChart.textChart": "Diagramă", - "SSE.Views.EditChart.textChartTitle": "Titlu diagramă", - "SSE.Views.EditChart.textColor": "Culoare", - "SSE.Views.EditChart.textCrossesValue": "Punct de traversare", - "SSE.Views.EditChart.textCustomColor": "Culoare particularizată", - "SSE.Views.EditChart.textDataLabels": "Etichetele de date", - "SSE.Views.EditChart.textDesign": "Proiectare", - "SSE.Views.EditChart.textDisplayUnits": "Unități de afișare", - "SSE.Views.EditChart.textFill": "Umplere", - "SSE.Views.EditChart.textForward": "Deplasare înainte", - "SSE.Views.EditChart.textGridlines": "Linii de grilă", - "SSE.Views.EditChart.textHorAxis": "Axă orizontală", - "SSE.Views.EditChart.textHorizontal": "Orizontală", - "SSE.Views.EditChart.textLabelOptions": "Opțiuni etichetă", - "SSE.Views.EditChart.textLabelPos": "Amplasare etichetă", - "SSE.Views.EditChart.textLayout": "Aspect", - "SSE.Views.EditChart.textLeft": "Stânga", - "SSE.Views.EditChart.textLeftOverlay": "Suprapunere din stânga", - "SSE.Views.EditChart.textLegend": "Legenda", - "SSE.Views.EditChart.textMajor": "Major", - "SSE.Views.EditChart.textMajorMinor": "Major și minor", - "SSE.Views.EditChart.textMajorType": "Tip major", - "SSE.Views.EditChart.textMaxValue": "Limita maximă", - "SSE.Views.EditChart.textMinor": "Minor", - "SSE.Views.EditChart.textMinorType": "Tip minor", - "SSE.Views.EditChart.textMinValue": "Limita minimă", - "SSE.Views.EditChart.textNone": "Niciunul", - "SSE.Views.EditChart.textNoOverlay": "Fără suprapunere", - "SSE.Views.EditChart.textOverlay": "Suprapunere", - "SSE.Views.EditChart.textRemoveChart": "Ștergere diagrama", - "SSE.Views.EditChart.textReorder": "Reordonare", - "SSE.Views.EditChart.textRight": "Dreapta", - "SSE.Views.EditChart.textRightOverlay": "Suprapunerea din dreapta", - "SSE.Views.EditChart.textRotated": "Rotit", - "SSE.Views.EditChart.textSize": "Dimensiune", - "SSE.Views.EditChart.textStyle": "Stil", - "SSE.Views.EditChart.textTickOptions": "Opțiuni gradație", - "SSE.Views.EditChart.textToBackground": "Trimitere în plan secundar", - "SSE.Views.EditChart.textToForeground": "Aducere în prim plan", - "SSE.Views.EditChart.textTop": "Sus", - "SSE.Views.EditChart.textType": "Tip", - "SSE.Views.EditChart.textValReverseOrder": "Valori în ordine inversă ", - "SSE.Views.EditChart.textVerAxis": "Axa verticală", - "SSE.Views.EditChart.textVertical": "Verticală", - "SSE.Views.EditHyperlink.textBack": "Înapoi", - "SSE.Views.EditHyperlink.textDisplay": "Afișare", - "SSE.Views.EditHyperlink.textEditLink": "Editare link", - "SSE.Views.EditHyperlink.textExternalLink": "Link extern", - "SSE.Views.EditHyperlink.textInternalLink": "Zonă de date internă", - "SSE.Views.EditHyperlink.textLink": "Link", - "SSE.Views.EditHyperlink.textLinkType": "Tip link", - "SSE.Views.EditHyperlink.textRange": "Zona", - "SSE.Views.EditHyperlink.textRemoveLink": "Ștergere link", - "SSE.Views.EditHyperlink.textScreenTip": "Sfaturi ecran", - "SSE.Views.EditHyperlink.textSheet": "Foaie", - "SSE.Views.EditImage.textAddress": "Adresă", - "SSE.Views.EditImage.textBack": "Înapoi", - "SSE.Views.EditImage.textBackward": "Mutare în ultimul plan", - "SSE.Views.EditImage.textDefault": "Dimensiunea reală", - "SSE.Views.EditImage.textForward": "Deplasare înainte", - "SSE.Views.EditImage.textFromLibrary": "Imagine dintr-o bibliotecă ", - "SSE.Views.EditImage.textFromURL": "Imaginea prin URL", - "SSE.Views.EditImage.textImageURL": "URL-ul imaginii", - "SSE.Views.EditImage.textLinkSettings": "Configurarea link", - "SSE.Views.EditImage.textRemove": "Ștergere imagine", - "SSE.Views.EditImage.textReorder": "Reordonare", - "SSE.Views.EditImage.textReplace": "Înlocuire", - "SSE.Views.EditImage.textReplaceImg": "Înlocuire imagine", - "SSE.Views.EditImage.textToBackground": "Trimitere în plan secundar", - "SSE.Views.EditImage.textToForeground": "Aducere în prim plan", - "SSE.Views.EditShape.textAddCustomColor": "Adăugarea unei culori particularizate", - "SSE.Views.EditShape.textBack": "Înapoi", - "SSE.Views.EditShape.textBackward": "Mutare în ultimul plan", - "SSE.Views.EditShape.textBorder": "Bordură", - "SSE.Views.EditShape.textColor": "Culoare", - "SSE.Views.EditShape.textCustomColor": "Culoare particularizată", - "SSE.Views.EditShape.textEffects": "Efecte", - "SSE.Views.EditShape.textFill": "Umplere", - "SSE.Views.EditShape.textForward": "Deplasare înainte", - "SSE.Views.EditShape.textOpacity": "Transparență", - "SSE.Views.EditShape.textRemoveShape": "Stergere forma", - "SSE.Views.EditShape.textReorder": "Reordonare", - "SSE.Views.EditShape.textReplace": "Înlocuire", - "SSE.Views.EditShape.textSize": "Dimensiune", - "SSE.Views.EditShape.textStyle": "Stil", - "SSE.Views.EditShape.textToBackground": "Trimitere în plan secundar", - "SSE.Views.EditShape.textToForeground": "Aducere în prim plan", - "SSE.Views.EditText.textAddCustomColor": "Adăugarea unei culori particularizate", - "SSE.Views.EditText.textBack": "Înapoi", - "SSE.Views.EditText.textCharacterBold": "A", - "SSE.Views.EditText.textCharacterItalic": "C", - "SSE.Views.EditText.textCharacterUnderline": "S", - "SSE.Views.EditText.textCustomColor": "Culoare particularizată", - "SSE.Views.EditText.textFillColor": "Culoare umplere", - "SSE.Views.EditText.textFonts": "Fonturi", - "SSE.Views.EditText.textSize": "Dimensiune", - "SSE.Views.EditText.textTextColor": "Culoare text", - "SSE.Views.FilterOptions.textClearFilter": "Golire filtru", - "SSE.Views.FilterOptions.textDeleteFilter": "Eliminare filtru", - "SSE.Views.FilterOptions.textFilter": "Opțiuni filtrare", - "SSE.Views.Search.textByColumns": "După coloană", - "SSE.Views.Search.textByRows": "După rând", - "SSE.Views.Search.textDone": "Gata", - "SSE.Views.Search.textFind": "Găsire", - "SSE.Views.Search.textFindAndReplace": "Găsire și înlocuire", - "SSE.Views.Search.textFormulas": "Formule", - "SSE.Views.Search.textHighlightRes": "Evidențierea rezultatelor", - "SSE.Views.Search.textLookIn": "Domenii de căutare", - "SSE.Views.Search.textMatchCase": "Potrivire litere mari și mici", - "SSE.Views.Search.textMatchCell": "Potrivire celulă", - "SSE.Views.Search.textReplace": "Înlocuire", - "SSE.Views.Search.textSearch": "Căutare", - "SSE.Views.Search.textSearchBy": "Căutare", - "SSE.Views.Search.textSearchIn": "Găsire în", - "SSE.Views.Search.textSheet": "Foaie", - "SSE.Views.Search.textValues": "Valori", - "SSE.Views.Search.textWorkbook": "Registru de calcul", - "SSE.Views.Settings.textAbout": "Informații", - "SSE.Views.Settings.textAddress": "adresă", - "SSE.Views.Settings.textApplication": "Aplicația", - "SSE.Views.Settings.textApplicationSettings": "Setări Aplicație", - "SSE.Views.Settings.textAuthor": "Autor", - "SSE.Views.Settings.textBack": "Înapoi", - "SSE.Views.Settings.textBottom": "Jos", - "SSE.Views.Settings.textCentimeter": "Centimetru", - "SSE.Views.Settings.textCollaboration": "Colaborare", - "SSE.Views.Settings.textColorSchemes": "Schema de culori", - "SSE.Views.Settings.textComment": "Comentariu", - "SSE.Views.Settings.textCommentingDisplay": "Afișare comentarii", - "SSE.Views.Settings.textCreated": "A fost creat", - "SSE.Views.Settings.textCreateDate": "Creat la", - "SSE.Views.Settings.textCustom": "Particularizat", - "SSE.Views.Settings.textCustomSize": "Dimensiunea particularizată", - "SSE.Views.Settings.textDisableAll": "Se dezactivează toate", - "SSE.Views.Settings.textDisableAllMacrosWithNotification": "Se dezactivează toate macrocomenzile, cu notificare", - "SSE.Views.Settings.textDisableAllMacrosWithoutNotification": "Se dezactivează toate macrocomenzile, fără notificare", - "SSE.Views.Settings.textDisplayComments": "Comentarii", - "SSE.Views.Settings.textDisplayResolvedComments": "Comentarii rezolvate", - "SSE.Views.Settings.textDocInfo": "Informații despre foaie de calcul", - "SSE.Views.Settings.textDocTitle": "Titlu foaie de calcul", - "SSE.Views.Settings.textDone": "Gata", - "SSE.Views.Settings.textDownload": "Descărcare", - "SSE.Views.Settings.textDownloadAs": "Descărcare ca...", - "SSE.Views.Settings.textEditDoc": "Editare document", - "SSE.Views.Settings.textEmail": "e-mail", - "SSE.Views.Settings.textEnableAll": "Se activează toate", - "SSE.Views.Settings.textEnableAllMacrosWithoutNotification": "Se activează toate macrocomenzile, fără notificare", - "SSE.Views.Settings.textExample": "Exemplu", - "SSE.Views.Settings.textFind": "Găsire", - "SSE.Views.Settings.textFindAndReplace": "Găsire și înlocuire", - "SSE.Views.Settings.textFormat": "Format", - "SSE.Views.Settings.textFormulaLanguage": "Limba formulă", - "SSE.Views.Settings.textHelp": "Asistență", - "SSE.Views.Settings.textHideGridlines": "Ascundere linii de grilă", - "SSE.Views.Settings.textHideHeadings": "Ascundere titluri", - "SSE.Views.Settings.textInch": "Inch", - "SSE.Views.Settings.textLandscape": "Vedere", - "SSE.Views.Settings.textLastModified": "Data ultimei modificări", - "SSE.Views.Settings.textLastModifiedBy": "Modificat ultima dată de către", - "SSE.Views.Settings.textLeft": "Stânga", - "SSE.Views.Settings.textLoading": "Se incarca...", - "SSE.Views.Settings.textLocation": "Locația", - "SSE.Views.Settings.textMacrosSettings": "Setări macrocomandă", - "SSE.Views.Settings.textMargins": "Margini", - "SSE.Views.Settings.textOrientation": "Orientare", - "SSE.Views.Settings.textOwner": "Posesor", - "SSE.Views.Settings.textPoint": "Point", - "SSE.Views.Settings.textPortrait": "Portret", - "SSE.Views.Settings.textPoweredBy": "Dezvoltat de", - "SSE.Views.Settings.textPrint": "Imprimare", - "SSE.Views.Settings.textR1C1Style": "Stilul de referință R1C1", - "SSE.Views.Settings.textRegionalSettings": "Setări regionale", - "SSE.Views.Settings.textRight": "Dreapta", - "SSE.Views.Settings.textSettings": "Setări", - "SSE.Views.Settings.textShowNotification": "Afișare notificări", - "SSE.Views.Settings.textSpreadsheetFormats": "Formate foii de calcul", - "SSE.Views.Settings.textSpreadsheetSettings": "Setări foaie de calcul", - "SSE.Views.Settings.textSubject": "Subiect", - "SSE.Views.Settings.textTel": "tel", - "SSE.Views.Settings.textTitle": "Titlu", - "SSE.Views.Settings.textTop": "Sus", - "SSE.Views.Settings.textUnitOfMeasurement": "Unitate de măsură ", - "SSE.Views.Settings.textUploaded": "S-a încărcat", - "SSE.Views.Settings.textVersion": "Versiune", - "SSE.Views.Settings.unknownText": "Necunoscut", - "SSE.Views.Toolbar.textBack": "Înapoi" + "About": { + "textAbout": "Despre", + "textAddress": "Adresă" + }, + "Common": { + "Collaboration": { + "textAddComment": "Adaugă comentariu", + "textAddReply": "Adăugare răspuns" + } + }, + "ContextMenu": { + "menuAddComment": "Adaugă comentariu", + "menuAddLink": "Adăugare link" + }, + "Controller": { + "Main": { + "SDK": { + "txtAccent": "Accent" + } + } + }, + "Statusbar": { + "textErrNameWrongChar": "Numele foilor de calcul nu pot să conțină următoarele caractere: \\, /, *, ?, [, ], :" + }, + "View": { + "Add": { + "textAddLink": "Adăugare link", + "textAddress": "Adresă" + }, + "Edit": { + "textAccounting": "Contabilitate", + "textActualSize": "Dimensiunea reală", + "textAddCustomColor": "Adăugarea unei culori particularizate", + "textAddress": "Adresă", + "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", + "textAllBorders": "Toate borduri", + "textEmptyItem": "{Necompletat}", + "textHundredMil": "100 000 000", + "textHundredThousands": "100 000", + "textRightBorder": "Bordură din dreapta", + "textTenMillions": "10 000 000", + "textTenThousands": "10 000" + }, + "Settings": { + "textAbout": "Despre", + "textAddress": "Adresă" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 05a06bf8b0..7f5e08ece6 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -1,661 +1,576 @@ { - "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": "Ось 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": "пт", - "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": "Нажмите '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": "Используя бесплатную версию Community, вы можете открывать документы только на просмотр. Для доступа к мобильным веб-редакторам требуется коммерческая лицензия.", - "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": "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": "Рабочая книга должна содержать не менее одного видимого рабочего листа.", - "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": "email", - "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": "О программе", + "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": "Если вы продолжите сохранение в этот формат, весь функционал, кроме текста, будет потерян.
    Вы действительно хотите продолжить?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 8a0b99560f..6c3c1a04bf 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -1,647 +1,575 @@ { - "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": "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": "此字段应为格式为“http://www.example.com”的网址", - "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.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.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.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.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": "一个错误的输入公式。< br >使用不正确的参数范围。", - "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": "一个错误的输入公式。< br >正确使用数量的参数。", - "SSE.Controllers.Main.errorCountArgExceed": "一个错误的输入公式。< br >超过数量的参数。", - "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": "一个错误的输入公式。< br >正确使用公式名称。", - "SSE.Controllers.Main.errorFormulaParsing": "解析公式时出现内部错误。", - "SSE.Controllers.Main.errorFrmlMaxLength": "公式添加失败:公式中字符的长度超出限制。
    请编辑后重试。", - "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": "文件中的一个公式的长度超过了
    允许的字符数,并被删除。", - "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": "一个错误的输入公式。< br >用括号打错了。", - "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.textHasMacros": "这个文件带有自动宏。
    是否要运行宏?", - "SSE.Controllers.Main.textLoadingDocument": "文件加载中", - "SSE.Controllers.Main.textNo": "不", - "SSE.Controllers.Main.textNoLicenseTitle": "ONLYOFFICE开源版本", - "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": "对于快速的协同编辑模式,取消/重做功能是禁用的。< br >单击“严格模式”按钮切换到严格co-editing模式编辑该文件没有其他用户干扰和发送您的更改只后你拯救他们。您可以使用编辑器高级设置在编辑模式之间切换。", - "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": "与文档服务器的并发连接次数已超出限制,文档打开后将仅供查看。
    请联系您的账户管理员了解详情。", - "SSE.Controllers.Main.warnLicenseExp": "您的许可证已过期。
    请更新您的许可证并刷新页面。", - "SSE.Controllers.Main.warnLicenseUsersExceeded": "并发用户数量已超出限制,文档打开后将仅供查看。
    请联系您的账户管理员了解详情。", - "SSE.Controllers.Main.warnNoLicense": "该版本对文档服务器的并发连接有限制。
    如果需要更多请考虑购买商业许可证。", - "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.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": "\n添加自定义颜色", - "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": "\n添加自定义颜色", - "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": "\n添加自定义颜色", - "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": "\n添加自定义颜色", - "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": "关于", + "textAddress": "地址", + "textBack": "返回", + "textEmail": "电子邮件", + "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": "按下“好”按钮回到文档列表。", + "criticalErrorTitle": "错误", + "downloadErrorText": "下载失败", + "errorAccessDeny": "你正要执行一个你没有权限的操作
    恳请你联系你的管理员。", + "errorArgsRange": "公式中有错误。
    参数范围有误。", + "errorAutoFilterChange": "操作不能被执行,因为它正在尝试平移该工作表中某一个表格的单元格。", + "errorAutoFilterChangeFormatTable": "对于你选中的这些单元格,该操作不能被执行,原因是我们不能移动表格的一部分。
    请选择另外一个数据范围,使得整个表格平移,然后再试一次。", + "errorAutoFilterDataRange": "对于你选中的这些单元格,该操作不能被执行。
    请选择表格内部或外部的规范的数据范围,然后再试一次。", + "errorAutoFilterHiddenRange": "该操作不能被执行。原因是:选中的区域有被隐藏的单元格。
    请将那些被隐藏的元素重新显现出来,然后再试一次。", + "errorBadImageUrl": "图片地址不正确", + "errorChangeArray": "您无法更改部分阵列。", + "errorConnectToServer": "保存失败。请检查你的联网设定,或联系管理员。
    你可以在按下“好”按钮之后下载这个文档。", + "errorCopyMultiselectArea": "该命令不能与多个选择一起使用。
    选择一个范围,然后重试。", + "errorCountArg": "公式中有错误。
    参数数量有误。", + "errorCountArgExceed": "公式中有错误。
    超出了最大允许的参数数量限制。", + "errorCreateDefName": "无法编辑现有的命名范围,因此无法在其中编辑新的范围。", + "errorDatabaseConnection": "外部错误。
    数据库连接错误。请联系客服支持。", + "errorDataEncrypted": "加密更改已收到,无法对其解密。", + "errorDataRange": "数据范围不正确", + "errorDataValidate": "您输入的值无效。
    用户具有可输入此单元格的限制值。", + "errorDefaultMessage": "错误代码:%1", + "errorEditingDownloadas": "在处理此文档时发生了错误。
    请利用“保存”选项将文件备份存储到本地。", + "errorFilePassProtect": "该文件已启动密码保护,无法打开。", + "errorFileRequest": "外部错误。
    文件请求。请联系支持人员。", + "errorFileSizeExceed": "文件大小超出了服务器的限制。
    恳请联系管理员获取更多信息。", + "errorFileVKey": "外部错误。
    安全密钥有误。请联系支持人员。", + "errorFillRange": "无法填充所选范围的单元格。
    所有合并的单元格的大小必须相同。", + "errorFormulaName": "公式中有错误。
    公式名有误。", + "errorFormulaParsing": "解析公式时出现了内部错误。", + "errorFrmlMaxLength": "这个公式长度超出允许的字符数限制,因此你不能添加这个公式。
    恳请重新编辑然后再试一次。", + "errorFrmlMaxReference": "你不能输入这个公式,因为其中包括太多的值,单元格引用,和/或名称。", + "errorFrmlMaxTextLength": "在公式中,文本值的限制为 255 个字符。
    请使用粘合函数(CONCATENATE),或使用粘合运算符 (&)", + "errorFrmlWrongReferences": "该函数参考了一个不存在的工作表。
    恳请你重新检查数据,然后再试一次。", + "errorInvalidRef": "输入选择的正确名称或有效参考。", + "errorKeyEncrypt": "未知密钥描述", + "errorKeyExpire": "密钥过期", + "errorLockedAll": "由于工作表被其他用户锁定,因此无法进行操作。", + "errorLockedCellPivot": "您无法更改透视表中的数据。", + "errorLockedWorksheetRename": "此时由于其他用户重命名该表单,因此无法重命名该表", + "errorMaxPoints": "每个图表序列的最大点值为4096。", + "errorMoveRange": "不能修改合并后的单元格的一部分", + "errorMultiCellFormula": "表格中不允许使用多单元格数组公式。", + "errorOpenWarning": "文件中的一个公式的长度超过了
    允许的字符数,并被删除。", + "errorOperandExpected": "你输入的函数语法有误。请检查你是否漏掉了半边括号,即“(”或“)”。", + "errorPasteMaxRange": "拷贝和粘贴的区域不符。请你选择相同大小的区域。你也可以点选某一行的第一个单元格来粘贴拷贝的单元格。", + "errorPrintMaxPagesCount": "很抱歉,该版本中,暂时还不能一下子打印超过1500页。
    之后的版本将会消除这个限制。", + "errorSessionAbsolute": "该文件编辑窗口已过期。请刷新该页。", + "errorSessionIdle": "该文档已经有一段时间没有编辑了。请刷新该页。", + "errorSessionToken": "与服务器的链接被打断。请刷新该页。", + "errorStockChart": "行的顺序有误。要想建立股票图表,请将数据按照如下顺序安放到表格中:
    开盘价格,最高价格,最低价格,收盘价格。", + "errorUnexpectedGuid": "外部错误。
    全局唯一标识符出现意料之外的状况。请联系支持人员。", + "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": "好", + "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": "你需要指定图片的网页。", + "textExternalLink": "外部链接", + "textFilter": "过滤", + "textFunction": "功能", + "textGroups": "分类", + "textImage": "图片", + "textImageURL": "图片地址", + "textInsert": "插入", + "textInsertImage": "插入图片", + "textInternalDataRange": "内部数据范围", + "textInvalidRange": "失败!单元格范围无效", + "textLink": "链接", + "textLinkSettings": "链接设置", + "textLinkType": "链接类型", + "textOther": "其他", + "textPictureFromLibrary": "图库", + "textPictureFromURL": "来自网络的图片", + "textRange": "范围", + "textRequired": "必填", + "textScreenTip": "屏幕提示", + "textShape": "形状", + "textSheet": "表格", + "textSortAndFilter": "排序和过滤", + "txtNotUrl": "该字段应为“http://www.example.com”格式的URL" + }, + "Edit": { + "notcriticalErrorTitle": "警告", + "textAccounting": "统计", + "textActualSize": "实际大小", + "textAddCustomColor": "\n添加自定义颜色", + "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": "你需要指定图片的网页。", + "textEmptyItem": "{空}", + "textErrorMsg": "您必须至少选择一个值", + "textErrorTitle": "警告", + "textEuro": "欧元", + "textExternalLink": "外部链接", + "textFill": "填满", + "textFillColor": "填色", + "textFilterOptions": "过滤选项", + "textFit": "适合宽度", + "textFonts": "字体", + "textFormat": "格式", + "textFraction": "分数", + "textFromLibrary": "图库", + "textFromURL": "来自网络的图片", + "textGeneral": "常规", + "textGridlines": "网格线", + "textHigh": "高", + "textHorizontal": "水平的", + "textHorizontalAxis": "横轴", + "textHorizontalText": "水平文本", + "textHundredMil": "100 000 000", + "textHundreds": "数以百计", + "textHundredThousands": "100 000", + "textHyperlink": "超链接", + "textImage": "图片", + "textImageURL": "图片地址", + "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": "该字段应为“http://www.example.com”格式的URL", + "textNumber": "数", + "textOnTickMarks": "刻度标记", + "textOpacity": "不透明度", + "textOut": "外", + "textOuterTop": "外顶", + "textOutsideBorders": "外部边框", + "textOverlay": "覆盖", + "textPercentage": "百分比", + "textPictureFromLibrary": "图库", + "textPictureFromURL": "来自网络的图片", + "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": "该字段应为“http://www.example.com”格式的URL" + }, + "Settings": { + "advCSVOptions": "选择CSV选项", + "advDRMEnterPassword": "你的密码,请:", + "advDRMOptions": "受保护的文件", + "advDRMPassword": "密码", + "closeButtonText": "关闭文件", + "notcriticalErrorTitle": "警告", + "textAddress": "地址", + "textApplication": "应用", + "textApplicationSettings": "应用设置", + "textAuthor": "作者", + "textBack": "返回", + "textBottom": "底部", + "textByColumns": "通过列", + "textByRows": "按行", + "textCancel": "取消", + "textCentimeter": "厘米", + "textCollaboration": "协作", + "textColorSchemes": "颜色方案", + "textComment": "评论", + "textCommentingDisplay": "评论显示", + "textComments": "评论", + "textCreated": "已创建", + "textCustomSize": "自定义大小", + "textDisableAll": "解除所有项目", + "textDisableAllMacrosWithNotification": "解除所有带通知的宏", + "textDisableAllMacrosWithoutNotification": "解除所有不带通知的宏", + "textDone": "完成", + "textDownload": "下载", + "textDownloadAs": "另存为", + "textEmail": "电子邮件", + "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": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
    您确定要继续吗?" + } + } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx index 15462d90b0..4af867c16e 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/ContextMenu.jsx @@ -11,7 +11,9 @@ import EditorUIController from '../lib/patch'; @inject ( stores => ({ isEdit: stores.storeAppOptions.isEdit, + canComments: stores.storeAppOptions.canComments, canViewComments: stores.storeAppOptions.canViewComments, + canCoAuthoring: stores.storeAppOptions.canCoAuthoring, users: stores.users, isDisconnected: stores.users.isDisconnected, storeSheets: stores.sheets @@ -32,7 +34,7 @@ class ContextMenu extends ContextMenuController { getUserName(id) { const user = this.props.users.searchUserByCurrentId(id); - return Common.Utils.UserInfoParser.getParsedName(user.asc_getUserName()); + return AscCommon.UserInfoParser.getParsedName(user.asc_getUserName()); } componentWillUnmount() { @@ -175,7 +177,7 @@ class ContextMenu extends ContextMenuController { if (isEdit && EditorUIController.ContextMenu) { return EditorUIController.ContextMenu.mapMenuItems(this); } else { - const {canViewComments } = this.props; + const {canViewComments, canCoAuthoring, canComments } = this.props; const api = Common.EditorApi.get(); const cellinfo = api.asc_getCellInfo(); @@ -199,12 +201,11 @@ class ContextMenu extends ContextMenuController { case Asc.c_oAscSelectionType.RangeShapeText: istextshapemenu = true; break; } - if (iscellmenu || istextchartmenu || istextshapemenu) { - itemsIcon.push({ - event: 'copy', - icon: 'icon-copy' - }); - } + itemsIcon.push({ + event: 'copy', + icon: 'icon-copy' + }); + if (iscellmenu && cellinfo.asc_getHyperlink()) { itemsText.push({ caption: _t.menuOpenLink, @@ -218,6 +219,13 @@ class ContextMenu extends ContextMenuController { }); } + if (iscellmenu && !api.isCellEdited && canCoAuthoring && canComments && !isComments) { + itemsText.push({ + caption: _t.menuAddComment, + event: 'addcomment' + }); + } + return itemsIcon.concat(itemsText); } } diff --git a/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx b/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx index 6e8b153e88..d1c950bb6a 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/FilterOptions.jsx @@ -10,7 +10,8 @@ const FilterOptionsController = () => { const [configFilter, setConfig] = useState(null); const [listVal, setListValue] = useState([]); - const [isValid, setIsValid] = useState(null) + const [isValid, setIsValid] = useState(null); + const [checkSort, setCheckSort] = useState(null); useEffect(() => { function onDocumentReady() { @@ -36,6 +37,9 @@ const FilterOptionsController = () => { setConfig(config); setClearDisable(config); + setCheckSort((config.asc_getSortState() === Asc.c_oAscSortOptions.Ascending ? 'down' : '') || + (config.asc_getSortState() === Asc.c_oAscSortOptions.Descending ? 'up' : '')); + if (Device.phone) { f7.sheet.open('.picker__sheet'); } else { @@ -128,7 +132,7 @@ const FilterOptionsController = () => { }; return ( - ) }; diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index a021ed9e24..34d72d1af9 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -221,7 +221,39 @@ class MainController extends Component { 'Diagram Title': _t.txtDiagramTitle, 'X Axis': _t.txtXAxis, 'Y Axis': _t.txtYAxis, - 'Your text here': _t.txtArt + 'Your text here': _t.txtArt, + 'Table': _t.txtTable, + 'Print_Area': _t.txtPrintArea, + 'Confidential': _t.txtConfidential, + 'Prepared by ': _t.txtPreparedBy + ' ', + 'Page': _t.txtPage, + 'Page %1 of %2': _t.txtPageOf, + 'Pages': _t.txtPages, + 'Date': _t.txtDate, + 'Time': _t.txtTime, + 'Tab': _t.txtTab, + 'File': _t.txtFile, + 'Column': _t.txtColumn, + 'Row': _t.txtRow, + '%1 of %2': _t.txtByField, + '(All)': _t.txtAll, + 'Values': _t.txtValues, + 'Grand Total': _t.txtGrandTotal, + 'Row Labels': _t.txtRowLbls, + 'Column Labels': _t.txtColLbls, + 'Multi-Select (Alt+S)': _t.txtMultiSelect, + 'Clear Filter (Alt+C)': _t.txtClearFilter, + '(blank)': _t.txtBlank, + 'Group': _t.txtGroup, + 'Seconds': _t.txtSeconds, + 'Minutes': _t.txtMinutes, + 'Hours': _t.txtHours, + 'Days': _t.txtDays, + 'Months': _t.txtMonths, + 'Quarters': _t.txtQuarters, + 'Years': _t.txtYears, + '%1 or %2': _t.txtOr, + 'Qtr': _t.txtQuarter }; styleNames.forEach(function(item){ translate[item] = _t['txtStyle_' + item.replace(/ /g, '_')] || item; diff --git a/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx index 8db15a70a0..c778040af3 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Toolbar.jsx @@ -4,12 +4,13 @@ import { f7 } from 'framework7-react'; import { useTranslation } from 'react-i18next'; import ToolbarView from "../view/Toolbar"; -const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo')(observer(props => { +const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetInfo', 'storeFocusObjects')(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 displayCollaboration = props.users.hasEditUsers || appOptions.canViewComments; const docTitle = props.storeSpreadsheetInfo.dataDoc ? props.storeSpreadsheetInfo.dataDoc.title : ''; @@ -20,9 +21,8 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn const api = Common.EditorApi.get(); api.asc_registerCallback('asc_onCanUndoChanged', onApiCanUndo); api.asc_registerCallback('asc_onCanRedoChanged', onApiCanRedo); - api.asc_registerCallback('asc_onSelectionChanged', onApiSelectionChanged); - api.asc_registerCallback('asc_onWorkbookLocked', onApiSelectionChanged); - api.asc_registerCallback('asc_onWorksheetLocked', onApiSelectionChanged); + api.asc_registerCallback('asc_onWorkbookLocked', onApiLocked); + api.asc_registerCallback('asc_onWorksheetLocked', onApiLocked); api.asc_registerCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); Common.Notifications.on('toolbar:activatecontrols', activateControls); @@ -53,9 +53,8 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn const api = Common.EditorApi.get(); api.asc_unregisterCallback('asc_onCanUndoChanged', onApiCanUndo); api.asc_unregisterCallback('asc_onCanRedoChanged', onApiCanRedo); - //api.asc_unregisterCallback('asc_onSelectionChanged', onApiSelectionChanged); TO DO - api.asc_unregisterCallback('asc_onWorkbookLocked', onApiSelectionChanged); - api.asc_unregisterCallback('asc_onWorksheetLocked', onApiSelectionChanged); + api.asc_unregisterCallback('asc_onWorkbookLocked', onApiLocked); + api.asc_unregisterCallback('asc_onWorksheetLocked', onApiLocked); api.asc_unregisterCallback('asc_onActiveSheetChanged', onApiActiveSheetChanged); } }); @@ -133,32 +132,9 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn } const [disabledEditControls, setDisabledEditControls] = useState(false); - const onApiSelectionChanged = (cellInfo) => { + const onApiLocked = () => { if (isDisconnected) return; - - const api = Common.EditorApi.get(); - const info = !!cellInfo ? cellInfo : api.asc_getCellInfo(); - let islocked = false; - - switch (info.asc_getSelectionType()) { - case Asc.c_oAscSelectionType.RangeChart: - case Asc.c_oAscSelectionType.RangeImage: - case Asc.c_oAscSelectionType.RangeShape: - case Asc.c_oAscSelectionType.RangeChartText: - case Asc.c_oAscSelectionType.RangeShapeText: - const objects = api.asc_getGraphicObjectProps(); - for ( let i in objects ) { - if ( objects[i].asc_getObjectType() == Asc.c_oAscTypeSelectElement.Image ) { - if ((islocked = objects[i].asc_getObjectValue().asc_getLocked())) - break; - } - } - break; - default: - islocked = info.asc_getLocked(); - } - - setDisabledEditControls(islocked); + props.storeFocusObjects.setIsLocked(Common.EditorApi.get().asc_getCellInfo()); }; const onApiActiveSheetChanged = (index) => { @@ -196,7 +172,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn onUndo={onUndo} onRedo={onRedo} disabledControls={disabledControls} - disabledEditControls={disabledEditControls} + disabledEditControls={disabledEditControls || isObjectLocked} disabledSettings={disabledSettings} displayCollaboration={displayCollaboration} showEditDocument={showEditDocument} diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx index ef9a13408a..634b8d32df 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddFilter.jsx @@ -1,4 +1,6 @@ import React, {Component} from 'react'; +import { f7 } from 'framework7-react'; +import { withTranslation } from 'react-i18next'; import AddSortAndFilter from '../../view/add/AddFilter'; @@ -7,6 +9,7 @@ class AddFilterController extends Component { super(props); this.onInsertFilter = this.onInsertFilter.bind(this); this.uncheckedFilter = this.uncheckedFilter.bind(this); + this.onInsertSort = this.onInsertSort.bind(this); const api = Common.EditorApi.get(); @@ -38,7 +41,40 @@ class AddFilterController extends Component { onInsertSort (type) { const api = Common.EditorApi.get(); - api.asc_sortColFilter(type == 'down' ? Asc.c_oAscSortOptions.Ascending : Asc.c_oAscSortOptions.Descending, '', undefined, undefined, true); + const { t } = this.props; + const _t = t('View.Add', {returnObjects: true}); + + f7.popup.close('.add-popup'); + f7.popover.close('#add-popover'); + + let typeCheck = type == 'down' ? Asc.c_oAscSortOptions.Ascending : Asc.c_oAscSortOptions.Descending; + if( api.asc_sortCellsRangeExpand()) { + f7.dialog.create({ + title: _t.txtSorting, + text: _t.txtExpandSort, + buttons: [ + { + text: _t.txtExpand, + bold: true, + onClick: () => { + api.asc_sortColFilter(typeCheck, '', undefined, undefined, true); + } + }, + { + text: _t.txtSortSelected, + bold: true, + onClick: () => { + api.asc_sortColFilter(typeCheck, '', undefined, undefined); + } + }, + { + text: _t.textCancel + } + ], + verticalButtons: true, + }).open(); + } else + api.asc_sortColFilter(typeCheck, '', undefined, undefined, api.asc_sortCellsRangeExpand() !== null); } onInsertFilter (checked) { @@ -64,4 +100,4 @@ class AddFilterController extends Component { } } -export default AddFilterController; \ No newline at end of file +export default withTranslation()(AddFilterController); \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/controller/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/controller/edit/EditCell.jsx index 37fd07f146..02046beaa7 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/edit/EditCell.jsx @@ -114,7 +114,6 @@ class EditCellController extends Component { onWrapTextChange(checked) { const api = Common.EditorApi.get(); - console.log(checked); api.asc_setCellTextWrap(checked); } diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx index df4028e756..92dd498641 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/ApplicationSettings.jsx @@ -49,7 +49,7 @@ class ApplicationSettingsController extends Component { onChangeDisplayResolved(value) { const api = Common.EditorApi.get(); - let displayComments = LocalStorage.getBool("sse-mobile-settings-livecomment"); + let displayComments = LocalStorage.getBool("sse-mobile-settings-livecomment",true); if (displayComments) { api.asc_showComments(value); diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/SpreadsheetInfo.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/SpreadsheetInfo.jsx index a3325b3074..37c38b3b0b 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/SpreadsheetInfo.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/SpreadsheetInfo.jsx @@ -57,7 +57,7 @@ class SpreadsheetInfoController extends Component { getModifiedBy() { let valueModifiedBy = this.docProps.asc_getLastModifiedBy(); if (valueModifiedBy) { - return Common.Utils.UserInfoParser.getParsedName(valueModifiedBy); + return AscCommon.UserInfoParser.getParsedName(valueModifiedBy); } return null; } diff --git a/apps/spreadsheeteditor/mobile/src/index_dev.html b/apps/spreadsheeteditor/mobile/src/index_dev.html index 4494d3717d..18a92b0213 100644 --- a/apps/spreadsheeteditor/mobile/src/index_dev.html +++ b/apps/spreadsheeteditor/mobile/src/index_dev.html @@ -59,42 +59,12 @@ return urlParams; } - const encodeUrlParam = str => str.replace(/&/g, '&') - .replace(/"/g, '"') - .replace(/'/g, ''') - .replace(//g, '>'); - let params = getUrlParams(), - lang = (params["lang"] || 'en').split(/[\-\_]/)[0], - logo = /*params["headerlogo"] ? encodeUrlParam(params["headerlogo"]) : */null, - logoOO = null; - if (!logo) { - logoOO = isAndroid ? "../../common/mobile/resources/img/header/header-logo-android.png" : "../../common/mobile/resources/img/header/header-logo-ios.png"; - } + lang = (params["lang"] || 'en').split(/[\-\_]/)[0]; window.frameEditorId = params["frameEditorId"]; window.parentOrigin = params["parentOrigin"]; window.Common = {Locale: {currentLang: lang}}; - - let brendpanel = document.getElementsByClassName('brendpanel')[0]; - if (brendpanel) { - if ( isAndroid ) { - brendpanel.classList.add('android'); - } - brendpanel.classList.add('visible'); - - let elem = document.querySelector('.loading-logo'); - if (elem) { - logo && (elem.innerHTML = ''); - logoOO && (elem.innerHTML = ''); - elem.style.opacity = 1; - } - var placeholder = document.getElementsByClassName('placeholder')[0]; - if (placeholder && isAndroid) { - placeholder.classList.add('android'); - } - } diff --git a/apps/spreadsheeteditor/mobile/src/less/app.less b/apps/spreadsheeteditor/mobile/src/less/app.less index 5338e8a1ff..a3bcb96d93 100644 --- a/apps/spreadsheeteditor/mobile/src/less/app.less +++ b/apps/spreadsheeteditor/mobile/src/less/app.less @@ -83,4 +83,4 @@ width: 25px; } } -} \ No newline at end of file +} diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less index 1a908bcff5..719610da71 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-ios.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-ios.less @@ -299,12 +299,12 @@ &.sortdown { width: 22px; height: 22px; - .encoded-svg-background(''); + .encoded-svg-mask(''); } &.sortup { width: 22px; height: 22px; - .encoded-svg-background(''); + .encoded-svg-mask(''); } // Formats diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-material.less b/apps/spreadsheeteditor/mobile/src/less/icons-material.less index 8c80a42f05..74821ae318 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-material.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-material.less @@ -278,12 +278,12 @@ &.sortdown { width: 22px; height: 22px; - .encoded-svg-background(''); + .encoded-svg-mask(''); } &.sortup { width: 22px; height: 22px; - .encoded-svg-background(''); + .encoded-svg-mask(''); } // Formats diff --git a/apps/spreadsheeteditor/mobile/src/store/appOptions.js b/apps/spreadsheeteditor/mobile/src/store/appOptions.js index b426047ca2..4d405549b9 100644 --- a/apps/spreadsheeteditor/mobile/src/store/appOptions.js +++ b/apps/spreadsheeteditor/mobile/src/store/appOptions.js @@ -68,10 +68,14 @@ export class storeAppOptions { && (!!(config.customization.goback.url) || config.customization.goback.requestClose && this.canRequestClose); this.canBack = this.canBackToFolder === true; this.canPlugins = false; + + AscCommon.UserInfoParser.setParser(true); + AscCommon.UserInfoParser.setCurrentName(this.user.fullname); } setPermissionOptions (document, licType, params, permissions, isSupportEditFeature) { - permissions.edit = params.asc_getRights() !== Asc.c_oRights.Edit ? false : true; + if (params.asc_getRights() !== Asc.c_oRights.Edit) + permissions.edit = false; this.canAutosave = true; this.canAnalytics = params.asc_getIsAnalyticsEnable(); this.canLicense = (licType === Asc.c_oLicenseResult.Success || licType === Asc.c_oLicenseResult.SuccessLimit); @@ -87,6 +91,7 @@ export class storeAppOptions { this.canComments = this.canComments && !((typeof (this.customization) == 'object') && this.customization.comments===false); this.canViewComments = this.canComments || !((typeof (this.customization) == 'object') && this.customization.comments===false); this.canEditComments = this.isOffline || !(typeof (this.customization) == 'object' && this.customization.commentAuthorOnly); + this.canDeleteComments= this.isOffline || !permissions.deleteCommentAuthorOnly; this.canChat = this.canLicense && !this.isOffline && !((typeof (this.customization) == 'object') && this.customization.chat === false); this.canPrint = (permissions.print !== false); this.isRestrictedEdit = !this.isEdit && this.canComments; @@ -95,6 +100,10 @@ export class storeAppOptions { this.canDownload = permissions.download !== false; this.canBranding = params.asc_getCustomization(); this.canBrandingExt = params.asc_getCanBranding() && (typeof this.customization == 'object'); - this.canUseReviewPermissions = this.canLicense && this.customization && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object'); + this.canUseReviewPermissions = this.canLicense && (!!permissions.reviewGroups || this.customization + && this.customization.reviewPermissions && (typeof (this.customization.reviewPermissions) == 'object')); + this.canUseCommentPermissions = this.canLicense && !!permissions.commentGroups; + this.canUseReviewPermissions && AscCommon.UserInfoParser.setReviewPermissions(permissions.reviewGroups, this.customization.reviewPermissions); + this.canUseCommentPermissions && AscCommon.UserInfoParser.setCommentPermissions(permissions.commentGroups); } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js index d18e04d2e3..558d872301 100644 --- a/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/applicationSettings.js @@ -28,13 +28,13 @@ export class storeApplicationSettings { unitMeasurement = Common.Utils.Metric.getCurrentMetric(); macrosMode = 0; - formulaLang = LocalStorage.getItem('sse-settings-func-lang') || dataLang[0].value; + formulaLang = LocalStorage.getItem('sse-settings-func-lang') || this.getFormulaLanguages()[0].value; regCode = undefined; regExample = ''; regData = []; isRefStyle = false; isComments = true; - isResolvedComments = true; + isResolvedComments = true; getFormulaLanguages() { const dataLang = [ diff --git a/apps/spreadsheeteditor/mobile/src/store/cellSettings.js b/apps/spreadsheeteditor/mobile/src/store/cellSettings.js index 838aefe52a..a06ba3ea69 100644 --- a/apps/spreadsheeteditor/mobile/src/store/cellSettings.js +++ b/apps/spreadsheeteditor/mobile/src/store/cellSettings.js @@ -169,7 +169,6 @@ export class storeCellSettings { changeBorderSize(size) { this.borderInfo.width = size; - console.log('change border width ' + size); } changeBorderStyle(type) { diff --git a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js index 936293cb0f..6cb3db2d9a 100644 --- a/apps/spreadsheeteditor/mobile/src/store/focusObjects.js +++ b/apps/spreadsheeteditor/mobile/src/store/focusObjects.js @@ -4,6 +4,7 @@ export class storeFocusObjects { constructor() { makeObservable(this, { focusOn: observable, + changeFocus: action, _focusObjects: observable, _cellInfo: observable, resetFocusObjects: action, @@ -12,15 +13,21 @@ export class storeFocusObjects { selections: computed, shapeObject: computed, imageObject: computed, - chartObject: computed + chartObject: computed, + isLocked: observable, + setIsLocked: action }); } focusOn = undefined; + + changeFocus(isObj) { + this.focusOn = isObj ? 'obj' : 'cell'; + } + _focusObjects = []; resetFocusObjects(objects) { - this.focusOn = 'obj'; this._focusObjects = objects; } @@ -56,7 +63,6 @@ export class storeFocusObjects { _cellInfo; resetCellInfo (cellInfo) { - this.focusOn = 'cell'; this._cellInfo = cellInfo; } @@ -76,4 +82,28 @@ export class storeFocusObjects { return !!this.intf ? this.intf.getChartObject() : null; } + isLocked = false; + + setIsLocked(info) { + let islocked = false; + switch (info.asc_getSelectionType()) { + case Asc.c_oAscSelectionType.RangeChart: + case Asc.c_oAscSelectionType.RangeImage: + case Asc.c_oAscSelectionType.RangeShape: + case Asc.c_oAscSelectionType.RangeChartText: + case Asc.c_oAscSelectionType.RangeShapeText: + const objects = Common.EditorApi.get().asc_getGraphicObjectProps(); + for ( let i in objects ) { + if ( objects[i].asc_getObjectType() == Asc.c_oAscTypeSelectElement.Image ) { + if ((islocked = objects[i].asc_getObjectValue().asc_getLocked())) + break; + } + } + break; + default: + islocked = info.asc_getLocked(); + } + this.isLocked = islocked; + } + } \ 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 c1439de246..9367e06a93 100644 --- a/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/CellEditor.jsx @@ -1,6 +1,7 @@ import React, { useState } from 'react'; import { Input, View, Button, Link } from 'framework7-react'; +import {observer, inject} from "mobx-react"; const viewStyle = { height: 30 @@ -12,6 +13,8 @@ const contentStyle = { const CellEditorView = props => { const [expanded, setExpanded] = useState(false); + const storeAppOptions = props.storeAppOptions; + const isEdit = storeAppOptions.isEdit; const expandClick = e => { setExpanded(!expanded); @@ -20,7 +23,7 @@ const CellEditorView = props => { return @@ -33,4 +36,4 @@ const CellEditorView = props => { ; }; -export default CellEditorView; +export default inject("storeAppOptions")(observer(CellEditorView)); diff --git a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx index e5d3073799..621b5afb92 100644 --- a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx @@ -32,18 +32,20 @@ const FilterOptions = (props) => { } + - props.onSort('sortdown')}> - + props.onSort('sortdown')}> + - props.onSort('sortup')}> - + props.onSort('sortup')}> + + {_t.textClearFilter} props.onDeleteFilter()} id="btn-delete-filter">{_t.textDeleteFilter} diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddFunction.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddFunction.jsx index cd5c2db48c..82cc52a230 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddFunction.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddFunction.jsx @@ -26,6 +26,11 @@ const PageGroup = ({name, type, functions, onInsertFunction, f7router}) => { if (functions[k].group == type) items.push(functions[k]); } + + items.sort(function(a, b) { + return (a.caption.toLowerCase() > b.caption.toLowerCase()) ? 1 : -1; + }); + return ( @@ -88,6 +93,7 @@ const AddFunction = props => { name: name }) } + return ( diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx index 57f69fec0a..d300691ebc 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddLink.jsx @@ -62,7 +62,7 @@ const AddLinkView = props => { const displayDisabled = displayText === 'locked'; displayText = displayDisabled ? _t.textSelectedRange : displayText; const [stateDisplayText, setDisplayText] = useState(displayText); - + const [stateAutoUpdate, setAutoUpdate] = useState(true); const [screenTip, setScreenTip] = useState(''); const activeSheet = props.activeSheet; @@ -88,7 +88,8 @@ const AddLinkView = props => { placeholder={_t.textLink} value={link} onChange={(event) => { - setLink(event.target.value) + setLink(event.target.value); + if(stateAutoUpdate) setDisplayText(event.target.value); }} className={isIos ? 'list-input-right' : ''} /> @@ -114,7 +115,8 @@ const AddLinkView = props => { placeholder={_t.textDisplay} value={stateDisplayText} disabled={displayDisabled} - onChange={(event) => {setDisplayText(event.target.value)}} + onChange={(event) => {setDisplayText(event.target.value); + setAutoUpdate(event.target.value == ''); }} className={isIos ? 'list-input-right' : ''} /> { 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 + ]; return ( @@ -18,8 +25,9 @@ const PageSpreadsheetColorSchemes = props => { { allSchemes ? allSchemes.map((scheme, index) => { + const name = scheme.get_name(); return ( - { if(index !== curScheme) { setScheme(index);
    diff --git a/apps/documenteditor/main/app/view/FileMenu.js b/apps/documenteditor/main/app/view/FileMenu.js index 14c1cb48ef..d3fa08c070 100644 --- a/apps/documenteditor/main/app/view/FileMenu.js +++ b/apps/documenteditor/main/app/view/FileMenu.js @@ -290,6 +290,17 @@ define([ this.rendered = true; this.$el.html($markup); this.$el.find('.content-box').hide(); + if (_.isUndefined(this.scroller)) { + var me = this; + this.scroller = new Common.UI.Scroller({ + el: this.$el.find('.panel-menu'), + suppressScrollX: true, + alwaysVisibleY: true + }); + Common.NotificationCenter.on('window:resize', function() { + me.scroller.update(); + }); + } this.applyMode(); if ( !!this.api ) { @@ -312,6 +323,7 @@ define([ if (!panel) panel = this.active || defPanel; this.$el.show(); + this.scroller.update(); this.selectMenu(panel, opts, defPanel); this.api.asc_enableKeyEvents(false); @@ -456,6 +468,17 @@ define([ this.$el.find('.content-box:visible').hide(); panel.show(opts); + if (this.scroller) { + var itemTop = item.$el.position().top, + itemHeight = item.$el.outerHeight(), + listHeight = this.$el.outerHeight(); + if (itemTop < 0 || itemTop + itemHeight > listHeight) { + var height = this.scroller.$el.scrollTop() + itemTop + (itemHeight - listHeight)/2; + height = (Math.floor(height/itemHeight) * itemHeight); + this.scroller.scrollTop(height); + } + } + this.active = menu; } } diff --git a/apps/documenteditor/main/app/view/FormSettings.js b/apps/documenteditor/main/app/view/FormSettings.js index cb25d8c0a0..19d51c9b85 100644 --- a/apps/documenteditor/main/app/view/FormSettings.js +++ b/apps/documenteditor/main/app/view/FormSettings.js @@ -98,6 +98,7 @@ define([ this.ListOnlySettings = el.find('.form-list'); this.ImageOnlySettings = el.find('.form-image'); this.ConnectedSettings = el.find('.form-connected'); + this.NotImageSettings = el.find('.form-not-image'); }, createDelayedElements: function() { @@ -210,6 +211,20 @@ define([ this.spnWidth.on('change', this.onWidthChange.bind(this)); this.spnWidth.on('inputleave', function(){ me.fireEvent('editcomplete', me);}); + this.chAutofit = new Common.UI.CheckBox({ + el: $markup.findById('#form-chb-autofit'), + labelText: this.textAutofit + }); + this.chAutofit.on('change', this.onChAutofit.bind(this)); + this.lockedControls.push(this.chAutofit); + + this.chMulti = new Common.UI.CheckBox({ + el: $markup.findById('#form-chb-multiline'), + labelText: this.textMulti + }); + this.chMulti.on('change', this.onChMulti.bind(this)); + this.lockedControls.push(this.chMulti); + this.chRequired = new Common.UI.CheckBox({ el: $markup.findById('#form-chb-required'), labelText: this.textRequired, @@ -382,6 +397,29 @@ define([ } }, this)); + this.chAspect = new Common.UI.CheckBox({ + el: $markup.findById('#form-chb-aspect'), + labelText: this.textAspect + }); + this.chAspect.on('change', this.onChAspect.bind(this)); + this.lockedControls.push(this.chAspect); + + this.cmbScale = new Common.UI.ComboBox({ + el: $markup.findById('#form-combo-scale'), + cls: 'input-group-nr', + menuStyle: 'min-width: 100%;', + editable: false, + data: [{ displayValue: this.textAlways, value: Asc.c_oAscPictureFormScaleFlag.Always }, + { displayValue: this.textNever, value: Asc.c_oAscPictureFormScaleFlag.Never }, + { displayValue: this.textTooBig, value: Asc.c_oAscPictureFormScaleFlag.Bigger }, + { displayValue: this.textTooSmall, value: Asc.c_oAscPictureFormScaleFlag.Smaller }] + }); + this.cmbScale.setValue(Asc.c_oAscPictureFormScaleFlag.Always); + this.lockedControls.push(this.cmbScale); + this.cmbScale.on('selected', this.onScaleChanged.bind(this)); + this.cmbScale.on('changed:after', this.onScaleChanged.bind(this)); + this.cmbScale.on('hide:after', this.onHideMenus.bind(this)); + this.updateMetricUnit(); this.UpdateThemeColors(); }, @@ -513,18 +551,59 @@ define([ } }, - onChFixed: function(field, newValue, oldValue, eOpts){ + onChAutofit: function(field, newValue, oldValue, eOpts){ var checked = (field.getValue()=='checked'); if (this.api && !this._noApply) { var props = this._originalProps || new AscCommon.CContentControlPr(); var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr(); - formTextPr.put_FixedSize(checked); + formTextPr.put_AutoFit(checked); props.put_TextFormPr(formTextPr); this.api.asc_SetContentControlProperties(props, this.internalId); this.fireEvent('editcomplete', this); } }, + onChMulti: function(field, newValue, oldValue, eOpts){ + var checked = (field.getValue()=='checked'); + if (this.api && !this._noApply) { + var props = this._originalProps || new AscCommon.CContentControlPr(); + var formTextPr = this._originalTextFormProps || new AscCommon.CSdtTextFormPr(); + formTextPr.put_MultiLine(checked); + props.put_TextFormPr(formTextPr); + this.api.asc_SetContentControlProperties(props, this.internalId); + this.fireEvent('editcomplete', this); + } + }, + + onChFixed: function(field, newValue, oldValue, eOpts){ + if (this.api && !this._noApply) { + this.api.asc_SetFixedForm(this.internalId, field.getValue()=='checked'); + this.fireEvent('editcomplete', this); + } + }, + + onChAspect: function(field, newValue, oldValue, eOpts){ + if (this.api && !this._noApply) { + var props = this._originalProps || new AscCommon.CContentControlPr(); + var pictPr = this._originalPictProps || new AscCommon.CSdtPictureFormPr(); + pictPr.put_ConstantProportions(field.getValue()=='checked'); + props.put_PictureFormPr(pictPr); + this.api.asc_SetContentControlProperties(props, this.internalId); + this.fireEvent('editcomplete', this); + } + }, + + onScaleChanged: function(combo, record) { + if (this.api && !this._noApply) { + var props = this._originalProps || new AscCommon.CContentControlPr(); + var pictPr = this._originalPictProps || new AscCommon.CSdtPictureFormPr(); + pictPr.put_ScaleFlag(record.value); + props.put_PictureFormPr(pictPr); + this.api.asc_SetContentControlProperties(props, this.internalId); + this.fireEvent('editcomplete', this); + } + }, + onGroupKeyChanged: function(combo, record) { if (this.api && !this._noApply) { var props = this._originalProps || new AscCommon.CContentControlPr(); @@ -800,6 +879,30 @@ define([ this.labelFormName.text(ischeckbox ? this.textCheckbox : this.textRadiobox); } + + if (type !== Asc.c_oAscContentControlSpecificType.Picture) { + val = formPr.get_Fixed(); + if ( this._state.Fixed!==val ) { + this.chFixed.setValue(!!val, true); + this._state.Fixed=val; + } + } + } + + var pictPr = props.get_PictureFormPr(); + if (pictPr) { + this._originalPictProps = pictPr; + val = pictPr.get_ConstantProportions(); + if ( this._state.Aspect!==val ) { + this.chAspect.setValue(!!val, true); + this._state.Aspect=val; + } + + val = pictPr.get_ScaleFlag(); + if (this._state.scaleFlag!==val) { + this.cmbScale.setValue(val); + this._state.scaleFlag=val; + } } var formTextPr = props.get_TextFormPr(); @@ -812,16 +915,24 @@ define([ this.chComb.setValue(!!val, true); this._state.Comb=val; } - // - // val = formTextPr.get_FixedSize(); - // if ( this._state.Fixed!==val ) { - // this.chFixed.setValue(!!val, true); - // this._state.Fixed=val; - // } - this.btnColor.setDisabled(!val); + val = formTextPr.get_MultiLine(); + if ( this._state.Multi!==val ) { + this.chMulti.setValue(!!val, true); + this._state.Multi=val; + } + this.chMulti.setDisabled(!this._state.Fixed || this._state.Comb); - this.spnWidth.setDisabled(!val); + val = formTextPr.get_AutoFit(); + if ( this._state.AutoFit!==val ) { + this.chAutofit.setValue(!!val, true); + this._state.AutoFit=val; + } + 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) { this.spnWidth.setValue(val!==0 && val!==undefined ? Common.Utils.Metric.fnRecalcFromMM(val * 25.4 / 20 / 72.0) : -1, true); @@ -974,6 +1085,7 @@ define([ var value = (checkboxOnly || radioboxOnly); this.PlaceholderSettings.toggleClass('hidden', value); this.CheckOnlySettings.toggleClass('hidden', !value); + this.NotImageSettings.toggleClass('hidden', imageOnly); }, onSelectItem: function(listView, itemView, record) { @@ -1025,7 +1137,15 @@ define([ textDisconnect: 'Disconnect', textNoBorder: 'No border', textFixed: 'Fixed size field', - textRequired: 'Required' + textRequired: 'Required', + textAutofit: 'AutoFit', + textMulti: 'Multiline field', + textAspect: 'Lock aspect ratio', + textAlways: 'Always', + textNever: 'Never', + textTooBig: 'Image is Too Big', + textTooSmall: 'Image is Too Small', + textScale: 'When to scale' }, DE.Views.FormSettings || {})); }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/view/FormsTab.js b/apps/documenteditor/main/app/view/FormsTab.js index 281db06b61..665c90c4bc 100644 --- a/apps/documenteditor/main/app/view/FormsTab.js +++ b/apps/documenteditor/main/app/view/FormsTab.js @@ -58,8 +58,8 @@ define([ '' + '' + '' + - '
    -
    +
    -
    -
    -
    -
    -