diff --git a/apps/api/documents/api.js b/apps/api/documents/api.js index 6154a0c5e..8876075ac 100644 --- a/apps/api/documents/api.js +++ b/apps/api/documents/api.js @@ -136,9 +136,10 @@ label: string (default: "Guest") // postfix for user name }, review: { - hideReviewDisplay: false // hide button Review mode, + hideReviewDisplay: false, // hide button Review mode + hoverMode: false, // true - show review balloons on mouse move, not on click on text showReviewChanges: false, - reviewDisplay: 'original', + reviewDisplay: 'original', // original for viewer, markup for editor trackChanges: undefined // true/false - open editor with track changes mode on/off, }, chat: true, @@ -872,8 +873,7 @@ path += app + "/"; path += (config.type === "mobile" || isSafari_mobile) ? "mobile" - : (config.type === "embedded" || (app=='documenteditor') && config.document && config.document.permissions && (config.document.permissions.fillForms===true) && - (config.document.permissions.edit === false) && (config.document.permissions.review !== true) && (config.editorConfig.mode !== 'view')) + : (config.type === "embedded") ? "embed" : "main"; diff --git a/apps/api/wopi/editor-wopi.ejs b/apps/api/wopi/editor-wopi.ejs index d7301abad..a5f0dca1c 100644 --- a/apps/api/wopi/editor-wopi.ejs +++ b/apps/api/wopi/editor-wopi.ejs @@ -308,7 +308,7 @@ div { } }; - postMessageOrigin = fileInfo.PostMessageOrigin; + postMessageOrigin = fileInfo.PostMessageOrigin || "*"; if (postMessageOrigin && (typeof postMessageOrigin === 'string') && postMessageOrigin.charAt(postMessageOrigin.length-1)=='/') postMessageOrigin = postMessageOrigin.substring(0, postMessageOrigin.length - 1); lang = config.editorConfig.lang; diff --git a/apps/common/embed/resources/less/common.less b/apps/common/embed/resources/less/common.less index 8d93e61af..9b525cacd 100644 --- a/apps/common/embed/resources/less/common.less +++ b/apps/common/embed/resources/less/common.less @@ -225,6 +225,12 @@ .margin-right-large { margin-right: 12px; } + .margin-left-small { + margin-left: 8px; + } + .margin-left-large { + margin-left: 12px; + } } // Logo diff --git a/apps/common/main/lib/component/ComboBoxFonts.js b/apps/common/main/lib/component/ComboBoxFonts.js index de2cd9425..fe7c40eab 100644 --- a/apps/common/main/lib/component/ComboBoxFonts.js +++ b/apps/common/main/lib/component/ComboBoxFonts.js @@ -49,24 +49,28 @@ define([ 'use strict'; Common.UI.ComboBoxFonts = Common.UI.ComboBox.extend((function() { - var iconWidth = 302, - iconHeight = Asc.FONT_THUMBNAIL_HEIGHT || 26, + var iconWidth = 300, + iconHeight = Asc.FONT_THUMBNAIL_HEIGHT || 28, thumbCanvas = document.createElement('canvas'), thumbContext = thumbCanvas.getContext('2d'), thumbs = [ {ratio: 1, path: '../../../../sdkjs/common/Images/fonts_thumbnail.png', width: iconWidth, height: iconHeight}, + {ratio: 1.25, path: '../../../../sdkjs/common/Images/fonts_thumbnail@1.25x.png', width: iconWidth * 1.25, height: iconHeight * 1.25}, {ratio: 1.5, path: '../../../../sdkjs/common/Images/fonts_thumbnail@1.5x.png', width: iconWidth * 1.5, height: iconHeight * 1.5}, + {ratio: 1.75, path: '../../../../sdkjs/common/Images/fonts_thumbnail@1.75x.png', width: iconWidth * 1.75, height: iconHeight * 1.75}, {ratio: 2, path: '../../../../sdkjs/common/Images/fonts_thumbnail@2x.png', width: iconWidth * 2, height: iconHeight * 2} ], thumbIdx = 0, - listItemHeight = 26, + listItemHeight = 28, spriteCols = 1, applicationPixelRatio = Common.Utils.applicationPixelRatio(); if (typeof window['AscDesktopEditor'] === 'object') { thumbs[0].path = window['AscDesktopEditor'].getFontsSprite(''); - thumbs[1].path = window['AscDesktopEditor'].getFontsSprite('@1.5x'); - thumbs[2].path = window['AscDesktopEditor'].getFontsSprite('@2x'); + thumbs[1].path = window['AscDesktopEditor'].getFontsSprite('@1.25x'); + thumbs[2].path = window['AscDesktopEditor'].getFontsSprite('@1.5x'); + thumbs[3].path = window['AscDesktopEditor'].getFontsSprite('@1.75x'); + thumbs[4].path = window['AscDesktopEditor'].getFontsSprite('@2x'); } var bestDistance = Math.abs(applicationPixelRatio-thumbs[0].ratio); diff --git a/apps/common/main/lib/component/ComboDataView.js b/apps/common/main/lib/component/ComboDataView.js index 811886b6d..7edb86952 100644 --- a/apps/common/main/lib/component/ComboDataView.js +++ b/apps/common/main/lib/component/ComboDataView.js @@ -244,9 +244,10 @@ define([ onResize: function() { if (this.openButton) { var button = $('button', this.openButton.cmpEl); - button && button.css({ - width : $('.button', this.cmpEl).width(), - height: $('.button', this.cmpEl).height() + var cntButton = $('.button', this.cmpEl); + button && cntButton.width() > 0 && button.css({ + width : cntButton.width(), + height: cntButton.height() }); this.openButton.menu.hide(); diff --git a/apps/common/main/lib/component/HintManager.js b/apps/common/main/lib/component/HintManager.js index 5d8dc004e..095e4187c 100644 --- a/apps/common/main/lib/component/HintManager.js +++ b/apps/common/main/lib/component/HintManager.js @@ -252,11 +252,16 @@ Common.UI.HintManager = new(function() { var _getHints = function() { var docH = Common.Utils.innerHeight() - 20, - docW = Common.Utils.innerWidth() - 20; + docW = Common.Utils.innerWidth() - 20, + topSection = _currentLevel !== 0 && $(_currentSection).length > 0 ? $(_currentSection).offset().top : 0, + bottomSection = _currentLevel !== 0 && $(_currentSection).length > 0 ? topSection + $(_currentSection).height() : docH; + if (_currentControls.length === 0) _getControls(); _currentControls.forEach(function(item, index) { if (!_isItemDisabled(item)) { + var leftBorder = 0, + rightBorder = docW; if ($(_currentSection).prop('id') === 'toolbar' && ($(_currentSection).find('.toolbar-mask').length > 0 || item.closest('.group').find('.toolbar-group-mask').length > 0)) { return; } @@ -266,6 +271,15 @@ Common.UI.HintManager = new(function() { return; } } + if (_currentLevel === 0 && item.closest('.tabs.short').length > 0) { + var blockTabs = item.closest('.tabs.short'); + leftBorder = blockTabs.offset().left; + rightBorder = leftBorder + blockTabs.width(); + if (!item.hasClass('scroll')) { + leftBorder += 20; + rightBorder -= 20; + } + } var hint = $('
' + item.attr('data-hint-title') + '
'); var direction = item.attr('data-hint-direction'); // exceptions @@ -324,7 +338,7 @@ Common.UI.HintManager = new(function() { left = offset.left + (item.outerWidth() - 18) / 2 + offsets[1]; } - if (top < maxHeight && left < docW) { + if (top < maxHeight && left < docW && top > topSection && top < bottomSection && left > leftBorder && left + 18 < rightBorder) { hint.css({ top: top, left: left @@ -370,7 +384,7 @@ Common.UI.HintManager = new(function() { if (e.keyCode == Common.UI.Keys.ALT && _isAlt) { e.preventDefault(); if (!_hintVisible) { - $('input').blur(); // to change value in inputField + $('input:focus').blur(); // to change value in inputField _currentLevel = $('#file-menu-panel').is(':visible') ? 1 : 0; _setCurrentSection(); _showHints(); @@ -449,7 +463,7 @@ Common.UI.HintManager = new(function() { } } } - if (curr.prop('id') === 'btn-goback' || curr.closest('.btn-slot').prop('id') === 'slot-btn-options' || curr.prop('id') === 'left-btn-thumbs') { + if (curr.prop('id') === 'btn-goback' || curr.closest('.btn-slot').prop('id') === 'slot-btn-options' || curr.prop('id') === 'left-btn-thumbs' || curr.hasClass('scroll')) { _resetToDefault(); return; } diff --git a/apps/common/main/lib/component/LoadMask.js b/apps/common/main/lib/component/LoadMask.js index b67060b2b..c1f152205 100644 --- a/apps/common/main/lib/component/LoadMask.js +++ b/apps/common/main/lib/component/LoadMask.js @@ -104,22 +104,29 @@ define([ return this; }, - internalShow: function() { - this.ownerEl.append(this.maskeEl); + internalShowLoader: function() { this.ownerEl.append(this.loaderEl); - this.loaderEl.css('min-width', $('.asc-loadmask-title', this.loaderEl).width() + 105); if (this.ownerEl && this.ownerEl.closest('.asc-window.modal').length==0) Common.util.Shortcuts.suspendEvents(); }, - show: function(immediately){ - // The owner is already masked - if (!!this.ownerEl.ismasked) - return this; + internalShowMask: function() { + if (!!this.ownerEl.ismasked) return; this.ownerEl.ismasked = true; + this.ownerEl.append(this.maskeEl); + }, + + show: function(immediately){ + this.internalShowMask(); + + // The owner is already masked + if (!!this.ownerEl.hasloader) + return this; + + this.ownerEl.hasloader = true; var me = this; if (me.title != me.options.title) { @@ -128,11 +135,11 @@ define([ } if (immediately) { - me.internalShow(); + me.internalShowLoader(); } else if (!me.timerId) { // show mask after 500 ms if it wont be hided me.timerId = setTimeout(function () { - me.internalShow(); + me.internalShowLoader(); },500); } @@ -145,20 +152,23 @@ define([ clearTimeout(this.timerId); this.timerId = 0; } - if (ownerEl && ownerEl.ismasked) { + + ownerEl && ownerEl.ismasked && this.maskeEl && this.maskeEl.remove(); + delete ownerEl.ismasked; + + if (ownerEl && ownerEl.hasloader) { if (ownerEl.closest('.asc-window.modal').length==0 && !Common.Utils.ModalWindow.isVisible()) Common.util.Shortcuts.resumeEvents(); - this.maskeEl && this.maskeEl.remove(); this.loaderEl && this.loaderEl.remove(); } - delete ownerEl.ismasked; + delete ownerEl.hasloader; }, setTitle: function(title) { this.title = title; - if (this.ownerEl && this.ownerEl.ismasked && this.loaderEl){ + if (this.ownerEl && this.ownerEl.hasloader && this.loaderEl){ var el = $('.asc-loadmask-title', this.loaderEl); el.html(title); this.loaderEl.css('min-width', el.width() + 105); @@ -172,7 +182,7 @@ define([ updatePosition: function() { var ownerEl = this.ownerEl, loaderEl = this.loaderEl; - if (ownerEl && ownerEl.ismasked && loaderEl){ + if (ownerEl && ownerEl.hasloader && loaderEl){ loaderEl.css({ top : Math.round(ownerEl.height() / 2 - (loaderEl.height() + parseInt(loaderEl.css('padding-top')) + parseInt(loaderEl.css('padding-bottom'))) / 2) + 'px', left: Math.round(ownerEl.width() / 2 - (loaderEl.width() + parseInt(loaderEl.css('padding-left')) + parseInt(loaderEl.css('padding-right'))) / 2) + 'px' diff --git a/apps/common/main/lib/component/Menu.js b/apps/common/main/lib/component/Menu.js index a9443841f..398f0490c 100644 --- a/apps/common/main/lib/component/Menu.js +++ b/apps/common/main/lib/component/Menu.js @@ -588,7 +588,7 @@ define([ if (this.options.additionalAlign) this.options.additionalAlign.call(this, menuRoot, left, top); else { - var _css = {left: Math.ceil(left), top: Math.ceil(top)}; + var _css = {left: left, top: top}; if (!(menuH < docH)) _css['margin-top'] = 0; menuRoot.css(_css); diff --git a/apps/common/main/lib/component/Mixtbar.js b/apps/common/main/lib/component/Mixtbar.js index 80bf8c471..44fc291ab 100644 --- a/apps/common/main/lib/component/Mixtbar.js +++ b/apps/common/main/lib/component/Mixtbar.js @@ -93,7 +93,7 @@ define([ var _template_tabs = '
' + - '' + + '' + '' + - '' + + '' + '
'; this.$layout = $(options.template({ diff --git a/apps/common/main/lib/component/MultiSliderGradient.js b/apps/common/main/lib/component/MultiSliderGradient.js index 28c2daf09..24dc97504 100644 --- a/apps/common/main/lib/component/MultiSliderGradient.js +++ b/apps/common/main/lib/component/MultiSliderGradient.js @@ -55,6 +55,8 @@ define([ values: [0, 100], colorValues: ['#000000', '#ffffff'], currentThumb: 0, + includeSnap: true, + intervalSnap: 5, thumbTemplate: '
' + '
' + '
' + diff --git a/apps/common/main/lib/component/Slider.js b/apps/common/main/lib/component/Slider.js index d142eed92..05ad8c0c0 100644 --- a/apps/common/main/lib/component/Slider.js +++ b/apps/common/main/lib/component/Slider.js @@ -285,6 +285,8 @@ define([ minValue: 0, maxValue: 100, values: [0, 100], + includeSnap: false, + intervalSnap: undefined, thumbTemplate: '
' }, @@ -312,8 +314,9 @@ define([ me.minValue = me.options.minValue; me.maxValue = me.options.maxValue; me.delta = 100/(me.maxValue - me.minValue); + me.includeSnap = me.options.includeSnap; + me.intervalSnap = me.options.intervalSnap; me.thumbs = []; - if (me.options.el) { me.render(); } @@ -342,9 +345,38 @@ define([ el.find('.track-center').width(me.options.width - 14); el.width(me.options.width); + var setCenters = function (index) { + if(!me.includeSnap) return; + var n = me.minValue; + + var getX = function (position) { + return (0.01 * me.width * position + me.cmpEl.offset().left + me._dragstart)/Common.Utils.zoom(); + }; + + me.centers = []; + _.each(me.thumbs, function (thumb, indexT) { + if ((indexT != index) && (n != thumb.position)) { + me.centers.push(getX((thumb.position - n) / 2 + n)); + n = thumb.position; + } + }); + if(n != me.maxValue) me.centers.push(getX((me.maxValue - n) / 2 + n)); + }; + + var resetPageX = function (e) { + if(!me.includeSnap) return; + _.each(me.centers, function (x) { + if((e.pageX <= x + me.intervalSnap) && (e.pageX >= x - me.intervalSnap)) { + e.pageX = x; + return; + } + }); + }; + var onMouseUp = function (e) { e.preventDefault(); e.stopPropagation(); + resetPageX(e); var index = e.data.index, lastValue = me.thumbs[index].value, @@ -387,6 +419,7 @@ define([ e.preventDefault(); e.stopPropagation(); + resetPageX(e); var index = e.data.index, lastValue = me.thumbs[index].value, @@ -418,6 +451,7 @@ define([ thumb = me.thumbs[index].thumb; me._dragstart = e.pageX*Common.Utils.zoom() - thumb.offset().left - thumb.width()/2; + setCenters(index); me.setActiveThumb(index); _.each(me.thumbs, function (item, idx) { @@ -428,6 +462,7 @@ define([ $(document).on('mousemove', null, e.data, me.binding.onMouseMove); }; + var onTrackMouseUp = function (e) { if ( me.disabled || !_.isUndefined(me._dragstart) || me.thumbs.length > 9) return; diff --git a/apps/common/main/lib/component/TabBar.js b/apps/common/main/lib/component/TabBar.js index 030bf0ce1..a1ef6a17f 100644 --- a/apps/common/main/lib/component/TabBar.js +++ b/apps/common/main/lib/component/TabBar.js @@ -687,6 +687,14 @@ define([ newHintTab.attr('data-hint-direction', 'top'); newHintTab.attr('data-hint-offset', 'medium'); newHintTab.attr('data-hint-title', 'M'); - } + }, + + getWidth: function() { + var width = 21; + this.tabs.forEach(function(tab){ + width += tab.$el.width(); + }); + return width; + }, }); }); diff --git a/apps/common/main/lib/controller/Comments.js b/apps/common/main/lib/controller/Comments.js index a93ccca3c..85e1eb635 100644 --- a/apps/common/main/lib/controller/Comments.js +++ b/apps/common/main/lib/controller/Comments.js @@ -1222,7 +1222,8 @@ define([ renderTo : this.sdkViewName, canRequestUsers: (this.mode) ? this.mode.canRequestUsers : undefined, canRequestSendNotify: (this.mode) ? this.mode.canRequestSendNotify : undefined, - mentionShare: (this.mode) ? this.mode.mentionShare : true + mentionShare: (this.mode) ? this.mode.mentionShare : true, + api: this.api }); this.popover.setCommentsStore(this.popoverComments); } diff --git a/apps/common/main/lib/controller/ReviewChanges.js b/apps/common/main/lib/controller/ReviewChanges.js index fafa6cdc5..0c2953ccf 100644 --- a/apps/common/main/lib/controller/ReviewChanges.js +++ b/apps/common/main/lib/controller/ReviewChanges.js @@ -109,6 +109,7 @@ define([ Common.NotificationCenter.on('api:disconnect', _.bind(this.onCoAuthoringDisconnect, this)); Common.NotificationCenter.on('collaboration:sharing', this.changeAccessRights.bind(this)); Common.NotificationCenter.on('collaboration:sharingdeny', this.onLostEditRights.bind(this)); + Common.NotificationCenter.on('protect:wslock', _.bind(this.onChangeProtectSheet, this)); this.userCollection.on('reset', _.bind(this.onUpdateUsers, this)); this.userCollection.on('add', _.bind(this.onUpdateUsers, this)); @@ -131,8 +132,7 @@ define([ this.api.asc_registerCallback('asc_onUpdateRevisionsChangesPosition', _.bind(this.onApiUpdateChangePosition, this)); this.api.asc_registerCallback('asc_onAuthParticipantsChanged', _.bind(this.onAuthParticipantsChanged, this)); this.api.asc_registerCallback('asc_onParticipantsChanged', _.bind(this.onAuthParticipantsChanged, this)); - this.api.asc_registerCallback('asc_onBeginViewModeInReview', _.bind(this.onBeginViewModeInReview, this)); - this.api.asc_registerCallback('asc_onEndViewModeInReview', _.bind(this.onEndViewModeInReview, this)); + this.api.asc_registerCallback('asc_onChangeDisplayModeInReview', _.bind(this.onChangeDisplayModeInReview, this)); } if (this.appConfig.canReview) this.api.asc_registerCallback('asc_onOnTrackRevisionsChange', _.bind(this.onApiTrackRevisionsChange, this)); @@ -163,7 +163,7 @@ define([ SetDisabled: function(state) { if (this.dlgChanges) this.dlgChanges.close(); - this.view && this.view.SetDisabled(state, this.langs); + this.view && this.view.SetDisabled(state, this.langs, {comments: !!this._state.wsProps['Objects']}); this.setPreviewMode(state); }, @@ -181,7 +181,7 @@ define([ onApiShowChange: function (sdkchange) { if (this.getPopover()) { - if (sdkchange && sdkchange.length>0) { + if (!this.appConfig.reviewHoverMode && sdkchange && sdkchange.length>0) { var i = 0, changes = this.readSDKChange(sdkchange), posX = sdkchange[0].get_X(), @@ -256,7 +256,8 @@ define([ if ((this.appConfig.canReview || this.appConfig.canViewReview) && _.isUndefined(this.popover)) { this.popover = Common.Views.ReviewPopover.prototype.getPopover({ reviewStore : this.popoverChanges, - renderTo : this.sdkViewName + renderTo : this.sdkViewName, + api: this.api }); this.popover.setReviewStore(this.popoverChanges); } @@ -595,7 +596,10 @@ define([ onReviewViewClick: function(menu, item, e) { this.turnDisplayMode(item.value); - !this.appConfig.canReview && Common.localStorage.setItem(this.view.appPrefix + "review-mode", item.value); + if (!this.appConfig.isEdit && !this.appConfig.isRestrictedEdit) + Common.localStorage.setItem(this.view.appPrefix + "review-mode", item.value); // for viewer + else if (item.value=='markup' || item.value=='simple') + Common.localStorage.setItem(this.view.appPrefix + "review-mode-editor", item.value); // for editor save only markup modes Common.NotificationCenter.trigger('edit:complete', this.view); }, @@ -685,27 +689,40 @@ define([ turnDisplayMode: function(mode) { if (this.api) { - if (mode === 'final') - this.api.asc_BeginViewModeInReview(true); - else if (mode === 'original') - this.api.asc_BeginViewModeInReview(false); - else - this.api.asc_EndViewModeInReview(); + var type = Asc.c_oAscDisplayModeInReview.Edit; + switch (mode) { + case 'final': + type = Asc.c_oAscDisplayModeInReview.Final; + break; + case 'original': + type = Asc.c_oAscDisplayModeInReview.Original; + break; + case 'simple': + type = Asc.c_oAscDisplayModeInReview.Simple; + break; + } + this.api.asc_SetDisplayModeInReview(type); } this.disableEditing(mode == 'final' || mode == 'original'); this._state.previewMode = (mode == 'final' || mode == 'original'); }, - onBeginViewModeInReview: function(mode) { - this.disableEditing(true); - this.view && this.view.turnDisplayMode(mode ? 'final' : 'original'); - this._state.previewMode = true; - }, - - onEndViewModeInReview: function() { - this.disableEditing(false); - this.view && this.view.turnDisplayMode('markup'); - this._state.previewMode = false; + onChangeDisplayModeInReview: function(type) { + this.disableEditing(type===Asc.c_oAscDisplayModeInReview.Final || type===Asc.c_oAscDisplayModeInReview.Original); + var mode = 'markup'; + switch (type) { + case Asc.c_oAscDisplayModeInReview.Final: + mode = 'final'; + break; + case Asc.c_oAscDisplayModeInReview.Original: + mode = 'original'; + break; + case Asc.c_oAscDisplayModeInReview.Simple: + mode = 'simple'; + break; + } + this.view && this.view.turnDisplayMode(mode); + this._state.previewMode = (type===Asc.c_oAscDisplayModeInReview.Final || type===Asc.c_oAscDisplayModeInReview.Original); }, isPreviewChangesMode: function() { @@ -807,7 +824,15 @@ define([ me.onApiTrackRevisionsChange(me.api.asc_GetLocalTrackRevisions(), me.api.asc_GetGlobalTrackRevisions()); me.api.asc_HaveRevisionsChanges() && me.view.markChanges(true); - // _setReviewStatus(state, global); + var val = Common.localStorage.getItem(me.view.appPrefix + "review-mode-editor"); + if (val===null) { + val = me.appConfig.customization && me.appConfig.customization.review ? me.appConfig.customization.review.reviewDisplay : undefined; + !val && (val = me.appConfig.customization ? me.appConfig.customization.reviewDisplay : undefined); + val = /^(original|final|markup|simple)$/i.test(val) ? val.toLocaleLowerCase() : 'markup'; + } + + me.turnDisplayMode(val); // load display mode for all modes (viewer or editor) + me.view.turnDisplayMode(val); if ( typeof (me.appConfig.customization) == 'object' && (me.appConfig.customization.review && me.appConfig.customization.review.showReviewChanges==true || (!me.appConfig.customization.review || me.appConfig.customization.review.showReviewChanges===undefined) && me.appConfig.customization.showReviewChanges==true) ) { @@ -823,14 +848,14 @@ define([ } else if (config.canViewReview) { config.canViewReview = (config.isEdit || me.api.asc_HaveRevisionsChanges(true)); // check revisions from all users if (config.canViewReview) { - var val = Common.localStorage.getItem(me.view.appPrefix + "review-mode"); + var val = Common.localStorage.getItem(me.view.appPrefix + (config.isEdit || config.isRestrictedEdit ? "review-mode-editor" : "review-mode")); if (val===null) { val = me.appConfig.customization && me.appConfig.customization.review ? me.appConfig.customization.review.reviewDisplay : undefined; !val && (val = me.appConfig.customization ? me.appConfig.customization.reviewDisplay : undefined); - val = /^(original|final|markup)$/i.test(val) ? val.toLocaleLowerCase() : 'original'; + val = /^(original|final|markup|simple)$/i.test(val) ? val.toLocaleLowerCase() : (config.isEdit || config.isRestrictedEdit ? 'markup' : 'original'); } - me.turnDisplayMode((config.isEdit || config.isRestrictedEdit) ? 'markup' : val); // load display mode only in viewer - me.view.turnDisplayMode((config.isEdit || config.isRestrictedEdit) ? 'markup' : val); + me.turnDisplayMode(val); + me.view.turnDisplayMode(val); } } @@ -840,10 +865,19 @@ define([ me.view.turnChat(state); }); } + me.onChangeProtectSheet(); if (me.view) { - me.view.btnCommentRemove && me.view.btnCommentRemove.setDisabled(!Common.localStorage.getBool(me.view.appPrefix + "settings-livecomment", true)); - me.view.btnCommentResolve && me.view.btnCommentResolve.setDisabled(!Common.localStorage.getBool(me.view.appPrefix + "settings-livecomment", true)); + me.view.btnCommentRemove && me.view.btnCommentRemove.setDisabled(!Common.localStorage.getBool(me.view.appPrefix + "settings-livecomment", true) || !!this._state.wsProps['Objects']); + me.view.btnCommentResolve && me.view.btnCommentResolve.setDisabled(!Common.localStorage.getBool(me.view.appPrefix + "settings-livecomment", true) || !!this._state.wsProps['Objects']); } + + var val = Common.localStorage.getItem(me.view.appPrefix + "settings-review-hover-mode"); + if (val === null) { + val = me.appConfig.customization && me.appConfig.customization.review ? !!me.appConfig.customization.review.hoverMode : false; + } else + val = !!parseInt(val); + Common.Utils.InternalSettings.set(me.view.appPrefix + "settings-review-hover-mode", val); + me.appConfig.reviewHoverMode = val; }, showTips: function(strings) { @@ -974,8 +1008,24 @@ define([ commentsShowHide: function(mode) { if (!this.view) return; var value = Common.Utils.InternalSettings.get(this.view.appPrefix + "settings-livecomment"); - (value!==undefined) && this.view.btnCommentRemove && this.view.btnCommentRemove.setDisabled(mode != 'show' && !value); - (value!==undefined) && this.view.btnCommentResolve && this.view.btnCommentResolve.setDisabled(mode != 'show' && !value); + (value!==undefined) && this.view.btnCommentRemove && this.view.btnCommentRemove.setDisabled(mode != 'show' && !value || !!this._state.wsProps['Objects']); + (value!==undefined) && this.view.btnCommentResolve && this.view.btnCommentResolve.setDisabled(mode != 'show' && !value || !!this._state.wsProps['Objects']); + }, + + onChangeProtectSheet: function(props) { + if (!props) { + var wbprotect = this.getApplication().getController('WBProtection'); + props = wbprotect ? wbprotect.getWSProps() : null; + } + this._state.wsProps = props ? props.wsProps : {}; + this._state.wsLock = props ? props.wsLock : false; + + if (!this.view) return; + var leftmenu = this.getApplication().getController('LeftMenu'), + isCommentsVisible = leftmenu && leftmenu.isCommentsVisible(); + var value = Common.Utils.InternalSettings.get(this.view.appPrefix + "settings-livecomment"); + (value!==undefined) && this.view.btnCommentRemove && this.view.btnCommentRemove.setDisabled(!isCommentsVisible && !value || !!this._state.wsProps['Objects']); + (value!==undefined) && this.view.btnCommentResolve && this.view.btnCommentResolve.setDisabled(!isCommentsVisible && !value || !!this._state.wsProps['Objects']); }, textInserted: 'Inserted:', diff --git a/apps/common/main/lib/controller/Themes.js b/apps/common/main/lib/controller/Themes.js index 6fabc6e3d..500545eb9 100644 --- a/apps/common/main/lib/controller/Themes.js +++ b/apps/common/main/lib/controller/Themes.js @@ -245,6 +245,16 @@ define([ this.api = api; var theme_name = get_ui_theme_name(Common.localStorage.getItem('ui-theme')); + if ( !theme_name ) { + if ( !(Common.Utils.isIE10 || Common.Utils.isIE11) ) + for (var i of document.body.classList.entries()) { + if ( i[1].startsWith('theme-') && !i[1].startsWith('theme-type-') ) { + theme_name = i[1]; + break; + } + } + } + if ( !themes_map[theme_name] ) theme_name = id_default_light_theme; diff --git a/apps/common/main/lib/util/htmlutils.js b/apps/common/main/lib/util/htmlutils.js index ab885cfaf..5b511ce8f 100644 --- a/apps/common/main/lib/util/htmlutils.js +++ b/apps/common/main/lib/util/htmlutils.js @@ -42,7 +42,17 @@ var params = (function() { return urlParams; })(); -if ( !!params.uitheme && !localStorage.getItem("ui-theme-id") ) { +var checkLocalStorage = (function () { + try { + var storage = window['localStorage']; + return true; + } + catch(e) { + return false; + } +})(); + +if ( !!params.uitheme && checkLocalStorage && !localStorage.getItem("ui-theme-id") ) { // const _t = params.uitheme.match(/([\w-]+)/g); if ( params.uitheme == 'default-dark' ) @@ -54,11 +64,11 @@ if ( !!params.uitheme && !localStorage.getItem("ui-theme-id") ) { localStorage.setItem("ui-theme-id", params.uitheme); } -var ui_theme_name = localStorage.getItem("ui-theme-id"); +var ui_theme_name = checkLocalStorage ? localStorage.getItem("ui-theme-id") : undefined; if ( !ui_theme_name ) { if ( window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ) { ui_theme_name = 'theme-dark'; - localStorage.setItem("ui-theme-id", ui_theme_name); + checkLocalStorage && localStorage.setItem("ui-theme-id", ui_theme_name); } } if ( !!ui_theme_name ) { diff --git a/apps/common/main/lib/view/Header.js b/apps/common/main/lib/view/Header.js index e47566747..780ed9d52 100644 --- a/apps/common/main/lib/view/Header.js +++ b/apps/common/main/lib/view/Header.js @@ -806,7 +806,7 @@ define([ tipUndo: 'Undo', tipRedo: 'Redo', textCompactView: 'Hide Toolbar', - textHideStatusBar: 'Hide Status Bar', + textHideStatusBar: 'Combine sheet and status bars', textHideLines: 'Hide Rulers', textZoom: 'Zoom', textAdvSettings: 'Advanced Settings', diff --git a/apps/common/main/lib/view/OpenDialog.js b/apps/common/main/lib/view/OpenDialog.js index 5d7d7ba19..b5584e84b 100644 --- a/apps/common/main/lib/view/OpenDialog.js +++ b/apps/common/main/lib/view/OpenDialog.js @@ -162,10 +162,10 @@ define([ '' ].join(''); diff --git a/apps/common/main/lib/view/ReviewChanges.js b/apps/common/main/lib/view/ReviewChanges.js index 04d197591..2dbbb9511 100644 --- a/apps/common/main/lib/view/ReviewChanges.js +++ b/apps/common/main/lib/view/ReviewChanges.js @@ -316,6 +316,15 @@ define([ template: menuTemplate, description: this.txtMarkup }, + { + caption: this.txtMarkupSimpleCap, + checkable: true, + toggleGroup: 'menuReviewView', + checked: false, + value: 'simple', + template: menuTemplate, + description: this.txtMarkupSimple + }, { caption: this.txtFinalCap, checkable: true, @@ -798,12 +807,13 @@ define([ turnDisplayMode: function(mode) { if (this.btnReviewView) { this.btnReviewView.menu.items[0].setChecked(mode=='markup', true); - this.btnReviewView.menu.items[1].setChecked(mode=='final', true); - this.btnReviewView.menu.items[2].setChecked(mode=='original', true); + this.btnReviewView.menu.items[1].setChecked(mode=='simple', true); + this.btnReviewView.menu.items[2].setChecked(mode=='final', true); + this.btnReviewView.menu.items[3].setChecked(mode=='original', true); } }, - SetDisabled: function (state, langs) { + SetDisabled: function (state, langs, protectProps) { this.btnsSpelling && this.btnsSpelling.forEach(function(button) { if ( button ) { button.setDisabled(state); @@ -821,8 +831,8 @@ define([ }, this); // this.btnChat && this.btnChat.setDisabled(state); - this.btnCommentRemove && this.btnCommentRemove.setDisabled(state || !Common.Utils.InternalSettings.get(this.appPrefix + "settings-livecomment")); - this.btnCommentResolve && this.btnCommentResolve.setDisabled(state || !Common.Utils.InternalSettings.get(this.appPrefix + "settings-livecomment")); + this.btnCommentRemove && this.btnCommentRemove.setDisabled(state || !Common.Utils.InternalSettings.get(this.appPrefix + "settings-livecomment") || protectProps && protectProps.comments); + this.btnCommentResolve && this.btnCommentResolve.setDisabled(state || !Common.Utils.InternalSettings.get(this.appPrefix + "settings-livecomment") || protectProps && protectProps.comments); }, onLostEditRights: function() { @@ -898,7 +908,9 @@ define([ txtOff: 'OFF for me', textWarnTrackChangesTitle: 'Enable Track Changes for everyone?', textWarnTrackChanges: 'Track Changes will be switched ON for all users with full access. The next time anyone opens the doc, Track Changes will remain enabled.', - textEnable: 'Enable' + textEnable: 'Enable', + txtMarkupSimpleCap: 'Simple Markup', + txtMarkupSimple: 'All changes (Editing)
Turn off balloons' } }()), Common.Views.ReviewChanges || {})); diff --git a/apps/common/main/lib/view/ReviewPopover.js b/apps/common/main/lib/view/ReviewPopover.js index 759c2debe..a4ffc454e 100644 --- a/apps/common/main/lib/view/ReviewPopover.js +++ b/apps/common/main/lib/view/ReviewPopover.js @@ -103,6 +103,7 @@ define([ this.canRequestUsers = options.canRequestUsers; this.canRequestSendNotify = options.canRequestSendNotify; this.mentionShare = options.mentionShare; + this.api = options.api; this.externalUsers = []; this._state = {commentsVisible: false, reviewVisible: false}; @@ -784,7 +785,7 @@ define([ } } } - if (!retainContent) + if (!retainContent || this.isOverCursor()) this.calculateSizeOfContent(); }, calculateSizeOfContent: function (testVisible) { @@ -839,7 +840,34 @@ define([ outerHeight = Math.max(commentsView.outerHeight(), this.$window.outerHeight()); - if (sdkBoundsHeight <= outerHeight) { + var movePos = this.isOverCursor(); + if (movePos) { + var newTopDown = movePos[1] + sdkPanelHeight,// try move down + newTopUp = movePos[0] + sdkPanelHeight; // try move up + if (newTopDown + outerHeight>sdkBoundsTop + sdkBoundsHeight) { + var diffDown = sdkBoundsTop + sdkBoundsHeight - newTopDown; + if (newTopUp - outerHeightleftPos && x0leftPos && x1 - - - - - - + + + + + + + + \ No newline at end of file diff --git a/apps/common/main/resources/img/right-panels/gradients.png b/apps/common/main/resources/img/right-panels/gradients.png index e3da621f9..186a96f4d 100644 Binary files a/apps/common/main/resources/img/right-panels/gradients.png and b/apps/common/main/resources/img/right-panels/gradients.png differ diff --git a/apps/common/main/resources/img/right-panels/gradients@1.25x.png b/apps/common/main/resources/img/right-panels/gradients@1.25x.png new file mode 100644 index 000000000..2e561be0b Binary files /dev/null and b/apps/common/main/resources/img/right-panels/gradients@1.25x.png differ diff --git a/apps/common/main/resources/img/right-panels/gradients@1.5x.png b/apps/common/main/resources/img/right-panels/gradients@1.5x.png index cd4b7019b..5746aa76d 100644 Binary files a/apps/common/main/resources/img/right-panels/gradients@1.5x.png and b/apps/common/main/resources/img/right-panels/gradients@1.5x.png differ diff --git a/apps/common/main/resources/img/right-panels/gradients@1.75x.png b/apps/common/main/resources/img/right-panels/gradients@1.75x.png new file mode 100644 index 000000000..b08d9744e Binary files /dev/null and b/apps/common/main/resources/img/right-panels/gradients@1.75x.png differ diff --git a/apps/common/main/resources/img/right-panels/gradients@2x.png b/apps/common/main/resources/img/right-panels/gradients@2x.png index e8ef9320d..2e87c2b74 100644 Binary files a/apps/common/main/resources/img/right-panels/gradients@2x.png and b/apps/common/main/resources/img/right-panels/gradients@2x.png differ diff --git a/apps/common/main/resources/img/right-panels/patterns.png b/apps/common/main/resources/img/right-panels/patterns.png index c6e09b16b..ef7f031f4 100644 Binary files a/apps/common/main/resources/img/right-panels/patterns.png and b/apps/common/main/resources/img/right-panels/patterns.png differ diff --git a/apps/common/main/resources/img/right-panels/patterns@1.25x.png b/apps/common/main/resources/img/right-panels/patterns@1.25x.png new file mode 100644 index 000000000..c42f617c0 Binary files /dev/null and b/apps/common/main/resources/img/right-panels/patterns@1.25x.png differ diff --git a/apps/common/main/resources/img/right-panels/patterns@1.5x.png b/apps/common/main/resources/img/right-panels/patterns@1.5x.png index 3f69c9aa3..9d4ea3044 100644 Binary files a/apps/common/main/resources/img/right-panels/patterns@1.5x.png and b/apps/common/main/resources/img/right-panels/patterns@1.5x.png differ diff --git a/apps/common/main/resources/img/right-panels/patterns@1.75x.png b/apps/common/main/resources/img/right-panels/patterns@1.75x.png new file mode 100644 index 000000000..99113faba Binary files /dev/null and b/apps/common/main/resources/img/right-panels/patterns@1.75x.png differ diff --git a/apps/common/main/resources/img/right-panels/patterns@2x.png b/apps/common/main/resources/img/right-panels/patterns@2x.png index 76c030e47..d253529cd 100644 Binary files a/apps/common/main/resources/img/right-panels/patterns@2x.png and b/apps/common/main/resources/img/right-panels/patterns@2x.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/big/.css.handlebars b/apps/common/main/resources/img/toolbar/1.25x/big/.css.handlebars index 58e97c236..abc34ec3e 100644 --- a/apps/common/main/resources/img/toolbar/1.25x/big/.css.handlebars +++ b/apps/common/main/resources/img/toolbar/1.25x/big/.css.handlebars @@ -4,7 +4,7 @@ (min-resolution: 1.25dppx) and (max-resolution: 1.4dppx), (min-resolution: 120dpi) and (max-resolution: 143dpi) { - .x-huge .toolbar__icon { + .x-huge .toolbar__icon, .toolbar__icon.toolbar__icon-big { background-image: url(resources/{{{escaped_image}}}); background-size: {{scaled width 1.25}}px auto; } diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-italic.png b/apps/common/main/resources/img/toolbar/1.25x/btn-italic.png index e68527f4a..b5840622d 100644 Binary files a/apps/common/main/resources/img/toolbar/1.25x/btn-italic.png and b/apps/common/main/resources/img/toolbar/1.25x/btn-italic.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/btn-strikeout.png b/apps/common/main/resources/img/toolbar/1.25x/btn-strikeout.png index ec206f1db..10176d3fd 100644 Binary files a/apps/common/main/resources/img/toolbar/1.25x/btn-strikeout.png and b/apps/common/main/resources/img/toolbar/1.25x/btn-strikeout.png differ diff --git a/apps/common/main/resources/img/toolbar/1.25x/huge/.css.handlebars b/apps/common/main/resources/img/toolbar/1.25x/huge/.css.handlebars index ddb2130e0..8b5cc35e6 100644 --- a/apps/common/main/resources/img/toolbar/1.25x/huge/.css.handlebars +++ b/apps/common/main/resources/img/toolbar/1.25x/huge/.css.handlebars @@ -1,6 +1,9 @@ {{#spritesheet}} -.options__icon.options__icon-huge { - background-size: 80px auto; - background-size: var(--huge-icon-background-image-width) auto; +.pixel-ratio__1_25 { + .options__icon.options__icon-huge { + background-image: url(resources/{{{escaped_image}}}); + background-size: 80px auto; + background-size: var(--huge-icon-background-image-width) auto; + } } {{/spritesheet}} diff --git a/apps/common/main/resources/img/toolbar/1.75x/big/.css.handlebars b/apps/common/main/resources/img/toolbar/1.75x/big/.css.handlebars index 57a076dbe..6ec4c0213 100644 --- a/apps/common/main/resources/img/toolbar/1.75x/big/.css.handlebars +++ b/apps/common/main/resources/img/toolbar/1.75x/big/.css.handlebars @@ -4,7 +4,7 @@ (min-resolution: 1.75dppx) and (max-resolution: 1.9dppx), (min-resolution: 168dpi) and (max-resolution: 191dpi) { - .x-huge .toolbar__icon { + .x-huge .toolbar__icon, .toolbar__icon.toolbar__icon-big { background-image: url(resources/{{{escaped_image}}}); background-size: {{scaled width 1.75}}px auto; } diff --git a/apps/common/main/resources/img/toolbar/1.75x/btn-italic.png b/apps/common/main/resources/img/toolbar/1.75x/btn-italic.png index 58ad826a6..13614654f 100644 Binary files a/apps/common/main/resources/img/toolbar/1.75x/btn-italic.png and b/apps/common/main/resources/img/toolbar/1.75x/btn-italic.png differ diff --git a/apps/common/main/resources/img/toolbar/1.75x/huge/.css.handlebars b/apps/common/main/resources/img/toolbar/1.75x/huge/.css.handlebars index ddb2130e0..d8ebf2a7f 100644 --- a/apps/common/main/resources/img/toolbar/1.75x/huge/.css.handlebars +++ b/apps/common/main/resources/img/toolbar/1.75x/huge/.css.handlebars @@ -1,6 +1,9 @@ {{#spritesheet}} -.options__icon.options__icon-huge { - background-size: 80px auto; - background-size: var(--huge-icon-background-image-width) auto; +.pixel-ratio__1_75 { + .options__icon.options__icon-huge { + background-image: url(resources/{{{escaped_image}}}); + background-size: 80px auto; + background-size: var(--huge-icon-background-image-width) auto; + } } {{/spritesheet}} diff --git a/apps/common/main/resources/img/toolbar/math@1.25x.png b/apps/common/main/resources/img/toolbar/math@1.25x.png new file mode 100644 index 000000000..32925cf56 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/math@1.25x.png differ diff --git a/apps/common/main/resources/img/toolbar/math@1.75x.png b/apps/common/main/resources/img/toolbar/math@1.75x.png new file mode 100644 index 000000000..d67b677d0 Binary files /dev/null and b/apps/common/main/resources/img/toolbar/math@1.75x.png differ diff --git a/apps/common/main/resources/less/asc-mixins.less b/apps/common/main/resources/less/asc-mixins.less index 87872228a..44f8f6593 100644 --- a/apps/common/main/resources/less/asc-mixins.less +++ b/apps/common/main/resources/less/asc-mixins.less @@ -100,6 +100,26 @@ .pixel-ratio__2 { } + + .pixel-ratio__1_25 { + @ratio: 1.25; + @one-px: 1px / @ratio; + @two-px: 2px / @ratio; + + --pixel-ratio-factor: @ratio; + --scaled-one-pixel: @one-px; + --scaled-two-pixel: @two-px; + } + + .pixel-ratio__1_75 { + @ratio: 1.75; + @one-px: 1px / @ratio; + @two-px: 2px / @ratio; + + --pixel-ratio-factor: @ratio; + --scaled-one-pixel: @one-px; + --scaled-two-pixel: @two-px; + } } .button-normal-icon(@icon-class, @index, @icon-size, @normal-h-offset: 0px) { @@ -211,6 +231,53 @@ } } +.background-ximage-all(@image, @w: auto, @h: auto, @repeat: no-repeat, @commonimage: true) { + .choose-image-path(@commonimage); + @imagepath: '@{path}/@{image}'; + + background-image: if(@icon-src-base64, data-uri(%("%s", '@{imagepath}')), ~"url(@{imagepath})"); + background-repeat: @repeat; + + @1d5ximage: replace(@imagepath, '\.png$', '@1.5x.png'); + @1d75ximage: replace(@imagepath, '\.png$', '@1.75x.png'); + @1d25ximage: replace(@imagepath, '\.png$', '@1.25x.png'); + @2ximage: replace(@imagepath, '\.png$', '@2x.png'); + + @media only screen { + @media (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.49), + (min-resolution: 1.25dppx) and (max-resolution: 1.49dppx), + (min-resolution: 120dpi) and (max-resolution: 143dpi) + { + background-image: ~"url(@{1d25ximage})"; + background-size: @w @h; + } + + @media (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.74), + (min-resolution: 1.5dppx) and (max-resolution: 1.74dppx), + (min-resolution: 144dpi) and (max-resolution: 167dpi) + { + background-image: ~"url(@{1d5ximage})"; + background-size: @w @h; + } + + @media (-webkit-min-device-pixel-ratio: 1.75) and (-webkit-max-device-pixel-ratio: 1.9), + (min-resolution: 1.75dppx) and (max-resolution: 1.9dppx), + (min-resolution: 168dpi) and (max-resolution: 191dpi) + { + background-image: ~"url(@{1d75ximage})"; + background-size: @w @h; + } + + @media (-webkit-min-device-pixel-ratio: 2), + (min-resolution: 2dppx), + (min-resolution: 192dpi) + { + background-image: ~"url(@{2ximage})"; + background-size: @w @h; + } + } +} + .img-commonctrl { &.img-colored { filter: none; @@ -226,7 +293,9 @@ background-repeat: no-repeat; filter: @component-normal-icon-filter; + @1d25ximage: replace(@common-controls, '\.png$', '@1.25x.png'); @1d5ximage: replace(@common-controls, '\.png$', '@1.5x.png'); + @1d75ximage: replace(@common-controls, '\.png$', '@1.75x.png'); @2ximage: replace(@common-controls, '\.png$', '@2x.png'); @media only screen { @@ -246,6 +315,16 @@ background-size: @common-controls-width auto; } } + + .pixel-ratio__1_25 & { + background-image: ~"url(@{common-image-const-path}/@{1d25ximage})"; + background-size: @common-controls-width auto; + } + + .pixel-ratio__1_75 & { + background-image: ~"url(@{common-image-const-path}/@{1d75ximage})"; + background-size: @common-controls-width auto; + } } @img-colorpicker-width: 205px; diff --git a/apps/common/main/resources/less/buttons.less b/apps/common/main/resources/less/buttons.less index 366d020b7..e99bda040 100644 --- a/apps/common/main/resources/less/buttons.less +++ b/apps/common/main/resources/less/buttons.less @@ -694,8 +694,8 @@ li > a.selected, li > a:hover { span.color-auto { - outline: @scaled-one-px-value-ie solid @border-regular-control-ie; - outline: @scaled-one-px-value solid @border-regular-control; + outline: @scaled-one-px-value-ie solid @icon-normal-ie; + outline: @scaled-one-px-value solid @icon-normal; border: @scaled-one-px-value-ie solid @background-normal-ie; border: @scaled-one-px-value solid @background-normal; } diff --git a/apps/common/main/resources/less/combo-border-size.less b/apps/common/main/resources/less/combo-border-size.less index 0d1422789..669b67f60 100644 --- a/apps/common/main/resources/less/combo-border-size.less +++ b/apps/common/main/resources/less/combo-border-size.less @@ -27,6 +27,7 @@ width:60px; height:20px; background-color: transparent; + image-rendering: pixelated; } } @@ -37,16 +38,25 @@ display: inline-block; background-color: transparent; margin: 0 0 0 -3px; + image-rendering: pixelated; } img, .image { background: ~"url(@{common-image-const-path}/combo-border-size/BorderSize.png) no-repeat 0 0"; background-size: 60px auto; + .pixel-ratio__1_25 & { + background-image: ~"url(@{common-image-const-path}/combo-border-size/BorderSize@1.25x.png)"; + } + .pixel-ratio__1_5 & { background-image: ~"url(@{common-image-const-path}/combo-border-size/BorderSize@1.5x.png)"; } + .pixel-ratio__1_75 & { + background-image: ~"url(@{common-image-const-path}/combo-border-size/BorderSize@1.75x.png)"; + } + .pixel-ratio__2 & { background-image: ~"url(@{common-image-const-path}/combo-border-size/BorderSize@2x.png)"; } diff --git a/apps/common/main/resources/less/combo-dataview.less b/apps/common/main/resources/less/combo-dataview.less index 11a8aff52..7c6e27782 100644 --- a/apps/common/main/resources/less/combo-dataview.less +++ b/apps/common/main/resources/less/combo-dataview.less @@ -99,7 +99,7 @@ } .item { - padding: 3px; + padding: 2px; border: @scaled-one-px-value-ie solid @border-regular-control-ie; border: @scaled-one-px-value solid @border-regular-control; .box-shadow(none); @@ -164,6 +164,11 @@ width: @combo-dataview-button-width; height: @combo-dataview-height; + .btn-group, button { + width: 100%; + height: 100%; + } + button { &.dropdown-toggle { padding: 0; diff --git a/apps/common/main/resources/less/combobox.less b/apps/common/main/resources/less/combobox.less index 166449139..f8ae86617 100644 --- a/apps/common/main/resources/less/combobox.less +++ b/apps/common/main/resources/less/combobox.less @@ -38,6 +38,8 @@ .btn { border-left: 0; + border-top-left-radius: 0; + border-bottom-left-radius: 0; border-color: @border-regular-control-ie; border-color: @border-regular-control; background-color: transparent; diff --git a/apps/common/main/resources/less/dimension-picker.less b/apps/common/main/resources/less/dimension-picker.less index 028123f3b..1098376c2 100644 --- a/apps/common/main/resources/less/dimension-picker.less +++ b/apps/common/main/resources/less/dimension-picker.less @@ -21,13 +21,13 @@ .dimension-picker-unhighlighted { //background: transparent repeat scroll 0 0; - .background-ximage-v2('dimension-picker/dimension-unhighlighted.png', 18px); + .background-ximage-all('dimension-picker/dimension-unhighlighted.png', 18px); background-repeat: repeat; } .dimension-picker div.dimension-picker-highlighted { //background: transparent repeat scroll 0 0; - .background-ximage-v2('dimension-picker/dimension-highlighted.png', 18px); + .background-ximage-all('dimension-picker/dimension-highlighted.png', 18px); background-repeat: repeat; } diff --git a/apps/common/main/resources/less/slider.less b/apps/common/main/resources/less/slider.less index cb7b32f55..b6f193d4b 100644 --- a/apps/common/main/resources/less/slider.less +++ b/apps/common/main/resources/less/slider.less @@ -11,6 +11,8 @@ border: @track-height / 2 solid @border-regular-control-ie; border: @track-height / 2 solid @border-regular-control; border-radius: @track-height / 2; + background-color: @border-regular-control-ie; + background-color: @border-regular-control; width: calc(100% + @track-height); margin-left: -@track-height / 2; } diff --git a/apps/common/main/resources/less/spinner.less b/apps/common/main/resources/less/spinner.less index 9e56c1e8d..a87eb17c1 100644 --- a/apps/common/main/resources/less/spinner.less +++ b/apps/common/main/resources/less/spinner.less @@ -39,7 +39,7 @@ .spinner-buttons { position: absolute; top: 0; - right: 1px; + right: @scaled-one-px-value; border-top: @scaled-one-px-value-ie solid transparent; border-top: @scaled-one-px-value solid transparent; border-bottom: @scaled-one-px-value-ie solid transparent; diff --git a/apps/common/main/resources/less/toolbar.less b/apps/common/main/resources/less/toolbar.less index e62daa61e..838c7b622 100644 --- a/apps/common/main/resources/less/toolbar.less +++ b/apps/common/main/resources/less/toolbar.less @@ -551,6 +551,12 @@ .icon { width: 22px; height: 22px; + + .pixel-ratio__1_25 &, + .pixel-ratio__1_75 & { + width: 20px; + height: 20px; + } } } } @@ -584,7 +590,7 @@ border: @scaled-one-px-value solid @border-regular-control; .equation-icon { - .background-ximage-v2('toolbar/math.png', 1500px, @commonimage: true); + .background-ximage-all('toolbar/math.png', 1500px, @commonimage: true); opacity: @component-normal-icon-opacity; .theme-dark & { diff --git a/apps/common/mobile/lib/component/ThemeColorPalette.jsx b/apps/common/mobile/lib/component/ThemeColorPalette.jsx index ea46284f1..72d9063a8 100644 --- a/apps/common/mobile/lib/component/ThemeColorPalette.jsx +++ b/apps/common/mobile/lib/component/ThemeColorPalette.jsx @@ -11,7 +11,7 @@ const ThemeColors = ({ themeColors, onColorClick, curColor }) => { {row.map((effect, index) => { return( {onColorClick(effect.color, effect.effectId, effect.effectValue)}} > diff --git a/apps/common/mobile/lib/controller/ContextMenu.jsx b/apps/common/mobile/lib/controller/ContextMenu.jsx index dd16ee1be..8ddc3a61e 100644 --- a/apps/common/mobile/lib/controller/ContextMenu.jsx +++ b/apps/common/mobile/lib/controller/ContextMenu.jsx @@ -150,8 +150,8 @@ class ContextMenuController extends Component { this.setState({openedMore: false}); } - onMenuItemClick(action) { - this.onApiHideContextMenu(); + async onMenuItemClick(action) { + await this.onApiHideContextMenu(); if (action === 'showActionSheet') { this.setState({openedMore: true}); diff --git a/apps/common/mobile/lib/controller/collaboration/Comments.jsx b/apps/common/mobile/lib/controller/collaboration/Comments.jsx index 1a43a0825..95904000f 100644 --- a/apps/common/mobile/lib/controller/collaboration/Comments.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Comments.jsx @@ -564,25 +564,37 @@ class ViewCommentsController extends Component { this.onResolveComment(comment); break; case 'deleteComment': - f7.dialog.confirm( - _t.textMessageDeleteComment, - _t.textDeleteComment, - () => { - this.deleteComment(comment); - } - ); + f7.dialog.create({ + title: _t.textDeleteComment, + text: _t.textMessageDeleteComment, + buttons: [ + { + text: _t.textCancel + }, + { + text: _t.textOk, + onClick: () => this.deleteComment(comment) + } + ] + }).open(); break; case 'editReply': this.props.storeComments.openEditReply(true, comment, reply); break; case 'deleteReply': - f7.dialog.confirm( - _t.textMessageDeleteReply, - _t.textDeleteReply, - () => { - this.deleteReply(comment, reply); - } - ); + f7.dialog.create({ + title: _t.textDeleteReply, + text: _t.textMessageDeleteReply, + buttons: [ + { + text: _t.textCancel + }, + { + text: _t.textOk, + onClick: () => this.deleteReply(comment, reply) + } + ] + }).open(); break; case 'addReply': this.props.storeComments.openAddReply(true, comment); diff --git a/apps/common/mobile/lib/controller/collaboration/Review.jsx b/apps/common/mobile/lib/controller/collaboration/Review.jsx index a56773d84..c9a0e0d76 100644 --- a/apps/common/mobile/lib/controller/collaboration/Review.jsx +++ b/apps/common/mobile/lib/controller/collaboration/Review.jsx @@ -25,27 +25,29 @@ class InitReview extends Component { api.asc_SetTrackRevisions(trackChanges); // Init display mode - if (!appOptions.canReview) { - const canViewReview = appOptions.isEdit || api.asc_HaveRevisionsChanges(true); + + const canViewReview = appOptions.canReview || appOptions.isEdit || api.asc_HaveRevisionsChanges(true); + if (!appOptions.canReview) appOptions.setCanViewReview(canViewReview); - if (canViewReview) { - let viewReviewMode = LocalStorage.getItem("de-view-review-mode"); - if (viewReviewMode === null) { - viewReviewMode = appOptions.customization && appOptions.customization.review ? appOptions.customization.review.reviewDisplay : undefined; - !viewReviewMode && (viewReviewMode = appOptions.customization ? appOptions.customization.reviewDisplay : undefined); - viewReviewMode = /^(original|final|markup)$/i.test(viewReviewMode) ? viewReviewMode.toLocaleLowerCase() : 'original'; - } - viewReviewMode = (appOptions.isEdit || appOptions.isRestrictedEdit) ? 'markup' : viewReviewMode; - const displayMode = viewReviewMode.toLocaleLowerCase(); - if (displayMode === 'final') { - api.asc_BeginViewModeInReview(true); - } else if (displayMode === 'original') { - api.asc_BeginViewModeInReview(false); - } else { - api.asc_EndViewModeInReview(); - } - props.storeReview.changeDisplayMode(displayMode); + if (canViewReview) { + let viewReviewMode = (appOptions.isEdit || appOptions.isRestrictedEdit) ? null : LocalStorage.getItem("de-view-review-mode"); + if (viewReviewMode === null) { + viewReviewMode = appOptions.customization && appOptions.customization.review ? appOptions.customization.review.reviewDisplay : undefined; + !viewReviewMode && (viewReviewMode = appOptions.customization ? appOptions.customization.reviewDisplay : undefined); + viewReviewMode = /^(original|final|markup|simple)$/i.test(viewReviewMode) ? viewReviewMode.toLocaleLowerCase() : ( appOptions.isEdit || appOptions.isRestrictedEdit ? 'markup' : 'original'); } + let displayMode = viewReviewMode.toLocaleLowerCase(); + let type = Asc.c_oAscDisplayModeInReview.Edit; + switch (displayMode) { + case 'final': + type = Asc.c_oAscDisplayModeInReview.Final; + break; + case 'original': + type = Asc.c_oAscDisplayModeInReview.Original; + break; + } + api.asc_SetDisplayModeInReview(type); + props.storeReview.changeDisplayMode(displayMode); } }); } @@ -102,14 +104,17 @@ class Review extends Component { onDisplayMode (mode) { const api = Common.EditorApi.get(); - if (mode === 'final') { - api.asc_BeginViewModeInReview(true); - } else if (mode === 'original') { - api.asc_BeginViewModeInReview(false); - } else { - api.asc_EndViewModeInReview(); + let type = Asc.c_oAscDisplayModeInReview.Edit; + switch (mode) { + case 'final': + type = Asc.c_oAscDisplayModeInReview.Final; + break; + case 'original': + type = Asc.c_oAscDisplayModeInReview.Original; + break; } - !this.appConfig.canReview && LocalStorage.setItem("de-view-review-mode", mode); + api.asc_SetDisplayModeInReview(type); + !this.appConfig.isEdit && !this.appConfig.isRestrictedEdit && LocalStorage.setItem("de-view-review-mode", mode); this.props.storeReview.changeDisplayMode(mode); } diff --git a/apps/common/mobile/lib/view/collaboration/Collaboration.jsx b/apps/common/mobile/lib/view/collaboration/Collaboration.jsx index b78c1ca6b..c6d51d586 100644 --- a/apps/common/mobile/lib/view/collaboration/Collaboration.jsx +++ b/apps/common/mobile/lib/view/collaboration/Collaboration.jsx @@ -85,7 +85,7 @@ const routes = [ } ]; -const PageCollaboration = inject('storeAppOptions')(observer(props => { +const PageCollaboration = inject('storeAppOptions', 'users')(observer(props => { const { t } = useTranslation(); const _t = t('Common.Collaboration', {returnObjects: true}); const appOptions = props.storeAppOptions; @@ -102,9 +102,11 @@ const PageCollaboration = inject('storeAppOptions')(observer(props => { } - - - + {props.users.editUsers.length > 0 && + + + + } {appOptions.canViewComments && diff --git a/apps/common/mobile/resources/less/common-material.less b/apps/common/mobile/resources/less/common-material.less index 3062318fb..ae9e9d669 100644 --- a/apps/common/mobile/resources/less/common-material.less +++ b/apps/common/mobile/resources/less/common-material.less @@ -48,6 +48,11 @@ display: flex; justify-content: center; } + &-inner { + background: var(--f7-navbar-bg-color); + background-image: var(--f7-navbar-bg-image, var(--f7-bars-bg-image)); + background-color: var(--f7-navbar-bg-color, var(--f7-bars-bg-color)); + } } .page.page-with-subnavbar.page-with-logo { @@ -62,8 +67,13 @@ margin-bottom: 0; margin-top: 8px; } + .add-image { + ul:before, :after{ + display: none; + } + } .inputs-list { - ul:after, :before{ + ul:after { display: none; } } diff --git a/apps/common/mobile/resources/less/common.less b/apps/common/mobile/resources/less/common.less index 394561dfc..1584e33e9 100644 --- a/apps/common/mobile/resources/less/common.less +++ b/apps/common/mobile/resources/less/common.less @@ -257,6 +257,8 @@ margin-top: 14px; background-image: url(../img/themes/themes.png); display: block; + background-repeat: no-repeat; + background-size: cover; } .item-theme.active:before { content: ''; @@ -531,28 +533,44 @@ padding-left: 5px; padding-right: 5px; padding-top: 5px; - } - li { - border: 0.5px solid #c8c7cc; - padding: 2px; - background-repeat: no-repeat; - width: 106px; - height: 56px; - margin-bottom: 10px; - background-position: center; - } - .item-inner:after { - display: none; - } - .item-theme.active:before { - content: ''; - position: absolute; - width: 22px; - height: 22px; - right: 2px; - bottom: 2px; - z-index: 1; - .encoded-svg-background(''); + li.item-theme { + border: 0.5px solid #c8c7cc; + padding: 2px; + background-repeat: no-repeat; + width: 106px; + height: 56px; + margin-bottom: 10px; + background-position: center; + .item-content { + width: 100%; + height: 100%; + padding: 0; + .item-inner { + width: 100%; + height: 100%; + padding: 0; + &:after { + display: none; + } + .thumb { + width: 100%; + height: 100%; + padding: 0; + background-size: contain; + } + } + } + &.active:before { + content: ''; + position: absolute; + width: 22px; + height: 22px; + right: 2px; + bottom: 2px; + z-index: 1; + .encoded-svg-background(''); + } + } } } diff --git a/apps/documenteditor/embed/index.html b/apps/documenteditor/embed/index.html index 3fa779e70..2efe95f95 100644 --- a/apps/documenteditor/embed/index.html +++ b/apps/documenteditor/embed/index.html @@ -197,8 +197,8 @@
-
-
of 0
+
of 0
+
diff --git a/apps/documenteditor/embed/index.html.deploy b/apps/documenteditor/embed/index.html.deploy index aa9a9c4fe..35e4518a5 100644 --- a/apps/documenteditor/embed/index.html.deploy +++ b/apps/documenteditor/embed/index.html.deploy @@ -189,8 +189,8 @@
-
-
of 0
+
of 0
+
diff --git a/apps/documenteditor/embed/index_loader.html b/apps/documenteditor/embed/index_loader.html index af3c1d916..7fc5b6a0d 100644 --- a/apps/documenteditor/embed/index_loader.html +++ b/apps/documenteditor/embed/index_loader.html @@ -298,8 +298,8 @@
-
-
of 0
+
of 0
+
diff --git a/apps/documenteditor/embed/index_loader.html.deploy b/apps/documenteditor/embed/index_loader.html.deploy index c70bdcc1c..a944efbb8 100644 --- a/apps/documenteditor/embed/index_loader.html.deploy +++ b/apps/documenteditor/embed/index_loader.html.deploy @@ -290,8 +290,8 @@
-
-
of 0
+
of 0
+
diff --git a/apps/documenteditor/embed/js/ApplicationController.js b/apps/documenteditor/embed/js/ApplicationController.js index dac8d554c..da52b2010 100644 --- a/apps/documenteditor/embed/js/ApplicationController.js +++ b/apps/documenteditor/embed/js/ApplicationController.js @@ -627,7 +627,6 @@ DE.ApplicationController = new(function(){ $('#id-btn-clear-fields').hide(); btnSubmit.hide(); } else { - $('#id-pages').hide(); $('#id-btn-next-field .caption').text(me.textNext); $('#id-btn-clear-fields .caption').text(me.textClear); @@ -743,6 +742,10 @@ DE.ApplicationController = new(function(){ message = me.errorForceSave; break; + case Asc.c_oAscError.ID.LoadingFontError: + message = me.errorLoadingFont; + break; + default: message = me.errorDefaultMessage.replace('%1', id); break; @@ -928,6 +931,7 @@ DE.ApplicationController = new(function(){ textGotIt: 'Got it', errorForceSave: "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", txtEmpty: '(Empty)', - txtPressLink: 'Press Ctrl and click link' + txtPressLink: 'Press Ctrl and click link', + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' } })(); \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/ca.json b/apps/documenteditor/embed/locale/ca.json index 319f01d6f..6655d3459 100644 --- a/apps/documenteditor/embed/locale/ca.json +++ b/apps/documenteditor/embed/locale/ca.json @@ -1,44 +1,47 @@ { - "common.view.modals.txtCopy": "Copiat al porta-retalls", - "common.view.modals.txtEmbed": "Incrustar", + "common.view.modals.txtCopy": "Copia al porta-retalls", + "common.view.modals.txtEmbed": "Incrusta", "common.view.modals.txtHeight": "Alçada", - "common.view.modals.txtShare": "Compartir Enllaç", + "common.view.modals.txtShare": "Comparteix l'enllaç", "common.view.modals.txtWidth": "Amplada", - "DE.ApplicationController.convertationErrorText": "Conversió Fallida", - "DE.ApplicationController.convertationTimeoutText": "Conversió fora de temps", + "DE.ApplicationController.convertationErrorText": "No s'ha pogut convertir", + "DE.ApplicationController.convertationTimeoutText": "S'ha superat el temps de conversió.", "DE.ApplicationController.criticalErrorTitle": "Error", - "DE.ApplicationController.downloadErrorText": "Descàrrega fallida.", - "DE.ApplicationController.downloadTextText": "Descarregant document...", - "DE.ApplicationController.errorAccessDeny": "Intenteu realitzar una acció per la qual no teniu drets.
Poseu-vos en contacte amb l'administrador del servidor de documents.", + "DE.ApplicationController.downloadErrorText": "S'ha produït un error en la baixada", + "DE.ApplicationController.downloadTextText": "S'està baixant el document...", + "DE.ApplicationController.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", "DE.ApplicationController.errorDefaultMessage": "Codi d'error:%1", - "DE.ApplicationController.errorEditingDownloadas": "S'ha produït un error durant el treball amb el document.
Utilitzeu l'opció \"Desar com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", + "DE.ApplicationController.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Baixa-ho com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", "DE.ApplicationController.errorFilePassProtect": "El fitxer està protegit amb contrasenya i no es pot obrir.", - "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer excedeix la limitació establerta per al vostre servidor. Podeu contactar amb l'administrador del Document Server per obtenir més detalls.", - "DE.ApplicationController.errorSubmit": "Error en enviar", - "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connexió a Internet s'ha restaurat i la versió del fitxer s'ha canviat.
Abans de continuar treballant, heu de descarregar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, tornar a carregar aquesta pàgina.", - "DE.ApplicationController.errorUserDrop": "Ara no es pot accedir al fitxer.", - "DE.ApplicationController.notcriticalErrorTitle": "Avis", + "DE.ApplicationController.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel vostre servidor. Contacteu amb el vostre administrador del servidor de documents per obtenir més informació.", + "DE.ApplicationController.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa-ho com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", + "DE.ApplicationController.errorSubmit": "No s'ha pogut enviar.", + "DE.ApplicationController.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, torneu a carregar aquesta pàgina.", + "DE.ApplicationController.errorUserDrop": "Ara mateix no es pot accedir al fitxer.", + "DE.ApplicationController.notcriticalErrorTitle": "Advertiment", "DE.ApplicationController.scriptLoadError": "La connexió és massa lenta, alguns dels components no s’han pogut carregar. Torneu a carregar la pàgina.", "DE.ApplicationController.textAnonymous": "Anònim", - "DE.ApplicationController.textClear": "Esborrar tots els camps", + "DE.ApplicationController.textClear": "Esborra tots els camps", "DE.ApplicationController.textGotIt": "Ho tinc", "DE.ApplicationController.textGuest": "Convidat", - "DE.ApplicationController.textLoadingDocument": "Carregant document", - "DE.ApplicationController.textNext": "Següent camp", + "DE.ApplicationController.textLoadingDocument": "S'està carregant el document", + "DE.ApplicationController.textNext": "Camp següent", "DE.ApplicationController.textOf": "de", - "DE.ApplicationController.textRequired": "Ompli tots els camps requerits per enviar el formulari.", - "DE.ApplicationController.textSubmit": "Enviar", - "DE.ApplicationController.textSubmited": "Formulari enviat amb èxit
Faci clic per a tancar el consell", - "DE.ApplicationController.txtClose": "Tancar", - "DE.ApplicationController.unknownErrorText": "Error Desconegut.", + "DE.ApplicationController.textRequired": "Emplena tots els camps necessaris per enviar el formulari.", + "DE.ApplicationController.textSubmit": "Envia", + "DE.ApplicationController.textSubmited": "El formulari s'ha enviat amb èxit
Cliqueu per a tancar el consell", + "DE.ApplicationController.txtClose": "Tanca", + "DE.ApplicationController.txtEmpty": "(Buit)", + "DE.ApplicationController.txtPressLink": "Prem CTRL i clica a l'enllaç", + "DE.ApplicationController.unknownErrorText": "Error desconegut.", "DE.ApplicationController.unsupportedBrowserErrorText": "El vostre navegador no és compatible.", - "DE.ApplicationController.waitText": "Si us plau, esperi...", - "DE.ApplicationView.txtDownload": "\nDescarregar", - "DE.ApplicationView.txtDownloadDocx": "Desar com a .docx", - "DE.ApplicationView.txtDownloadPdf": "Desar com a pdf", - "DE.ApplicationView.txtEmbed": "Incrustar", - "DE.ApplicationView.txtFileLocation": "Obrir ubicació del fitxer", - "DE.ApplicationView.txtFullScreen": "Pantalla Completa", - "DE.ApplicationView.txtPrint": "Imprimir", - "DE.ApplicationView.txtShare": "Compartir" + "DE.ApplicationController.waitText": "Espereu...", + "DE.ApplicationView.txtDownload": "Baixa", + "DE.ApplicationView.txtDownloadDocx": "Baixa-ho com a .docx", + "DE.ApplicationView.txtDownloadPdf": "Baixa-ho com a pdf", + "DE.ApplicationView.txtEmbed": "Incrusta", + "DE.ApplicationView.txtFileLocation": "Obre la ubicació del fitxer", + "DE.ApplicationView.txtFullScreen": "Pantalla sencera", + "DE.ApplicationView.txtPrint": "Imprimeix", + "DE.ApplicationView.txtShare": "Comparteix" } \ No newline at end of file diff --git a/apps/documenteditor/embed/locale/de.json b/apps/documenteditor/embed/locale/de.json index 09023d4de..ae40db87d 100644 --- a/apps/documenteditor/embed/locale/de.json +++ b/apps/documenteditor/embed/locale/de.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Fehler bei der Bearbeitung.
Speichern Sie eine Kopie dieser Datei auf Ihrem Computer, indem Sie auf \"Herunterladen als...\" klicken.", "DE.ApplicationController.errorFilePassProtect": "Das Dokument ist kennwortgeschützt und kann nicht geöffnet werden.", "DE.ApplicationController.errorFileSizeExceed": "Die Dateigröße überschreitet die für Ihren Server festgelegte Einschränkung.
Weitere Informationen können Sie von Ihrem Document Server-Administrator erhalten.", + "DE.ApplicationController.errorForceSave": "Beim Speichern der Datei ist ein Fehler aufgetreten. Verwenden Sie die Option \"Herunterladen als\", um die Datei auf Ihrer Computerfestplatte zu speichern oder versuchen Sie es später erneut.", + "DE.ApplicationController.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "DE.ApplicationController.errorSubmit": "Fehler beim Senden.", "DE.ApplicationController.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.", "DE.ApplicationController.errorUserDrop": "Der Zugriff auf diese Datei ist nicht möglich.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Senden", "DE.ApplicationController.textSubmited": "Das Formular wurde erfolgreich abgesendet
Klicken Sie hier, um den Tipp auszublenden", "DE.ApplicationController.txtClose": "Schließen", + "DE.ApplicationController.txtEmpty": "(Leer)", + "DE.ApplicationController.txtPressLink": "Drücken Sie STRG und klicken Sie auf den Link", "DE.ApplicationController.unknownErrorText": "Unbekannter Fehler.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.", "DE.ApplicationController.waitText": "Bitte warten...", diff --git a/apps/documenteditor/embed/locale/en.json b/apps/documenteditor/embed/locale/en.json index ce0a6ba1e..87c407871 100644 --- a/apps/documenteditor/embed/locale/en.json +++ b/apps/documenteditor/embed/locale/en.json @@ -15,6 +15,7 @@ "DE.ApplicationController.errorFilePassProtect": "The file is password protected and cannot be opened.", "DE.ApplicationController.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", "DE.ApplicationController.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "DE.ApplicationController.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "DE.ApplicationController.errorSubmit": "Submit failed.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", "DE.ApplicationController.errorUserDrop": "The file cannot be accessed right now.", diff --git a/apps/documenteditor/embed/locale/es.json b/apps/documenteditor/embed/locale/es.json index de92ca281..f85fdbeeb 100644 --- a/apps/documenteditor/embed/locale/es.json +++ b/apps/documenteditor/embed/locale/es.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Se produjo un error durante el trabajo con el documento.
Use la opción 'Descargar como...' para guardar la copia de seguridad de este archivo en el disco duro de su ordenador.", "DE.ApplicationController.errorFilePassProtect": "El archivo está protegido por una contraseña y no puede ser abierto.", "DE.ApplicationController.errorFileSizeExceed": "El tamaño del archivo excede el límite establecido para su servidor. Por favor póngase en contacto con el administrador del Servidor de Documentos para obtener más información.", + "DE.ApplicationController.errorForceSave": "Ha ocurrido un error al guardar el archivo. Por favor, use la opción \"Descargar como\" para guardar el archivo en el disco duro de su ordenador o inténtelo de nuevo más tarde.", + "DE.ApplicationController.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "DE.ApplicationController.errorSubmit": "Error al enviar.", "DE.ApplicationController.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.", "DE.ApplicationController.errorUserDrop": "No se puede acceder al archivo en este momento.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Enviar", "DE.ApplicationController.textSubmited": "Formulario enviado con éxito
Haga clic para cerrar el consejo", "DE.ApplicationController.txtClose": "Cerrar", + "DE.ApplicationController.txtEmpty": "(Vacío)", + "DE.ApplicationController.txtPressLink": "Pulse CTRL y haga clic en el enlace", "DE.ApplicationController.unknownErrorText": "Error desconocido.", "DE.ApplicationController.unsupportedBrowserErrorText": "Su navegador no es compatible.", "DE.ApplicationController.waitText": "Por favor, espere...", diff --git a/apps/documenteditor/embed/locale/fr.json b/apps/documenteditor/embed/locale/fr.json index c56b67a2f..c824ad31f 100644 --- a/apps/documenteditor/embed/locale/fr.json +++ b/apps/documenteditor/embed/locale/fr.json @@ -14,6 +14,8 @@ "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.errorForceSave": "Une erreur est survenue lors de l'enregistrement du fichier. Veuillez utiliser l'option «Télécharger en tant que» pour enregistrer le fichier sur le disque dur de votre ordinateur ou réessayer plus tard.", + "DE.ApplicationController.errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "DE.ApplicationController.errorSubmit": "Échec de soumission", "DE.ApplicationController.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.", "DE.ApplicationController.errorUserDrop": "Impossible d'accéder au fichier.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Soumettre ", "DE.ApplicationController.textSubmited": "Le formulaire a été soumis avec succès
Cliquez ici pour fermer l'astuce", "DE.ApplicationController.txtClose": "Fermer", + "DE.ApplicationController.txtEmpty": "(Vide)", + "DE.ApplicationController.txtPressLink": "Appuyez sur Ctrl et cliquez sur le lien", "DE.ApplicationController.unknownErrorText": "Erreur inconnue.", "DE.ApplicationController.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", "DE.ApplicationController.waitText": "Veuillez patienter...", diff --git a/apps/documenteditor/embed/locale/it.json b/apps/documenteditor/embed/locale/it.json index 288d3065c..f288348a8 100644 --- a/apps/documenteditor/embed/locale/it.json +++ b/apps/documenteditor/embed/locale/it.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "Si è verificato un errore durante il lavoro con il documento.
Utilizzare l'opzione 'Scarica come ...' per salvare la copia di backup del file sul disco rigido del computer.", "DE.ApplicationController.errorFilePassProtect": "Il file è protetto da una password. Impossibile aprirlo.", "DE.ApplicationController.errorFileSizeExceed": "La dimensione del file supera la limitazione impostata per il tuo server.
Per i dettagli, contatta l'amministratore del Document server.", + "DE.ApplicationController.errorForceSave": "Si è verificato un errore durante il salvataggio del file. Utilizzare l'opzione 'Scarica come' per salvare il file sul disco rigido del computer o riprovare più tardi.", + "DE.ApplicationController.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", "DE.ApplicationController.errorSubmit": "Invio fallito.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "La connessione Internet è stata ripristinata e la versione del file è stata modificata.
Prima di poter continuare a lavorare, è necessario scaricare il file o copiarne il contenuto per assicurarsi che non vada perso nulla, successivamente ricaricare questa pagina.", "DE.ApplicationController.errorUserDrop": "Impossibile accedere al file subito.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "‎Invia‎", "DE.ApplicationController.textSubmited": "Modulo inviato con successo
Fare click per chiudere la notifica
", "DE.ApplicationController.txtClose": "Chiudi", + "DE.ApplicationController.txtEmpty": "(Vuoto)", + "DE.ApplicationController.txtPressLink": "Premi CTRL e clicca sul collegamento", "DE.ApplicationController.unknownErrorText": "Errore sconosciuto.", "DE.ApplicationController.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", "DE.ApplicationController.waitText": "Per favore, attendi...", diff --git a/apps/documenteditor/embed/locale/ro.json b/apps/documenteditor/embed/locale/ro.json index 2916153cc..5ca9d3c10 100644 --- a/apps/documenteditor/embed/locale/ro.json +++ b/apps/documenteditor/embed/locale/ro.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "S-a produs o eroare în timpul editării documentului.
Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca...", "DE.ApplicationController.errorFilePassProtect": "Fișierul este protejat cu parolă și deaceea nu poate fi deschis.", "DE.ApplicationController.errorFileSizeExceed": "Dimensiunea fișierului depășește limita permisă de serverul Dvs.
Pentru detalii, contactați administratorul dumneavoastră de Server Documente.", + "DE.ApplicationController.errorForceSave": "S-a produs o eroare în timpul salvării fișierului. Pentru copierea de rezervă pe PC utilizați opțiunea Descărcare ca... sau încercați din nou mai târziu.", + "DE.ApplicationController.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "DE.ApplicationController.errorSubmit": "Remiterea eșuată.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Conexiunea la Internet s-a restabilit și versiunea fișierului s-a schimbat.
Înainte de a continua, fișierul trebuie descărcat sau conținutul fișierului copiat ca să vă asigurați că nimic nu e pierdut, apoi reîmprospătați această pagină.", "DE.ApplicationController.errorUserDrop": "Fișierul nu poate fi accesat deocamdată.", @@ -30,6 +32,8 @@ "DE.ApplicationController.textSubmit": "Remitere", "DE.ApplicationController.textSubmited": "Formularul a fost remis cu succes
Faceţi clic pentru a închide sfatul", "DE.ApplicationController.txtClose": "Închidere", + "DE.ApplicationController.txtEmpty": "(Gol)", + "DE.ApplicationController.txtPressLink": "Apăsați Ctrl și faceți clic pe linkul", "DE.ApplicationController.unknownErrorText": "Eroare necunoscută.", "DE.ApplicationController.unsupportedBrowserErrorText": "Browserul nu este compatibil.", "DE.ApplicationController.waitText": "Vă rugăm să așteptați...", diff --git a/apps/documenteditor/embed/locale/ru.json b/apps/documenteditor/embed/locale/ru.json index e6c834b14..daab5337f 100644 --- a/apps/documenteditor/embed/locale/ru.json +++ b/apps/documenteditor/embed/locale/ru.json @@ -14,6 +14,8 @@ "DE.ApplicationController.errorEditingDownloadas": "В ходе работы с документом произошла ошибка.
Используйте опцию 'Скачать как...', чтобы сохранить резервную копию файла на жесткий диск компьютера.", "DE.ApplicationController.errorFilePassProtect": "Файл защищен паролем и не может быть открыт.", "DE.ApplicationController.errorFileSizeExceed": "Размер файла превышает ограничение, установленное для вашего сервера.
Обратитесь к администратору Сервера документов для получения дополнительной информации.", + "DE.ApplicationController.errorForceSave": "При сохранении файла произошла ошибка. Используйте опцию 'Скачать как', чтобы сохранить файл на жестком диске компьютера или повторите попытку позже.", + "DE.ApplicationController.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "DE.ApplicationController.errorSubmit": "Не удалось отправить.", "DE.ApplicationController.errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "DE.ApplicationController.errorUserDrop": "В настоящий момент файл недоступен.", @@ -30,7 +32,8 @@ "DE.ApplicationController.textSubmit": "Отправить", "DE.ApplicationController.textSubmited": "Форма успешно отправлена
Нажмите, чтобы закрыть подсказку", "DE.ApplicationController.txtClose": "Закрыть", - "DE.ApplicationController.txtPressLink": "Нажмите Ctrl и щелкните по ссылке", + "DE.ApplicationController.txtEmpty": "(Пусто)", + "DE.ApplicationController.txtPressLink": "Нажмите CTRL и щелкните по ссылке", "DE.ApplicationController.unknownErrorText": "Неизвестная ошибка.", "DE.ApplicationController.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.", "DE.ApplicationController.waitText": "Пожалуйста, подождите...", diff --git a/apps/documenteditor/main/app/controller/LeftMenu.js b/apps/documenteditor/main/app/controller/LeftMenu.js index c57d4026c..a0327f889 100644 --- a/apps/documenteditor/main/app/controller/LeftMenu.js +++ b/apps/documenteditor/main/app/controller/LeftMenu.js @@ -511,7 +511,7 @@ define([ onCreateNew: function(menu, type) { if ( !Common.Controllers.Desktop.process('create:new') ) { - if (this.mode.canRequestCreateNew) + if (type == 'blank' && this.mode.canRequestCreateNew) Common.Gateway.requestCreateNew(); else { var newDocumentPage = window.open(type == 'blank' ? this.mode.createUrl : type, "_blank"); @@ -899,6 +899,10 @@ define([ } }, + isCommentsVisible: function() { + return this.leftMenu && this.leftMenu.panelComments && this.leftMenu.panelComments.isVisible(); + }, + textNoTextFound : 'Text not found', newDocumentTitle : 'Unnamed document', requestEditRightsText : 'Requesting editing rights...', diff --git a/apps/documenteditor/main/app/controller/Main.js b/apps/documenteditor/main/app/controller/Main.js index 0105baa1f..749392a85 100644 --- a/apps/documenteditor/main/app/controller/Main.js +++ b/apps/documenteditor/main/app/controller/Main.js @@ -373,7 +373,7 @@ define([ this.appOptions.user.anonymous && Common.localStorage.setItem("guest-id", this.appOptions.user.id); this.appOptions.isDesktopApp = this.editorConfig.targetApp == 'desktop'; - this.appOptions.canCreateNew = this.editorConfig.canRequestCreateNew || !_.isEmpty(this.editorConfig.createUrl); + this.appOptions.canCreateNew = this.editorConfig.canRequestCreateNew || !_.isEmpty(this.editorConfig.createUrl) || this.editorConfig.templates && this.editorConfig.templates.length; this.appOptions.canOpenRecent = this.editorConfig.recent !== undefined && !this.appOptions.isDesktopApp; this.appOptions.templates = this.editorConfig.templates; this.appOptions.recent = this.editorConfig.recent; @@ -1830,6 +1830,10 @@ define([ config.msg = this.errorSubmit; break; + case Asc.c_oAscError.ID.LoadingFontError: + config.msg = this.errorLoadingFont; + break; + default: config.msg = (typeof id == 'string') ? id : this.errorDefaultMessage.replace('%1', id); break; @@ -3026,7 +3030,8 @@ define([ txtStyle_endnote_text: 'Endnote Text', txtTOCHeading: 'TOC Heading', textDisconnect: 'Connection is lost', - errorLang: 'The interface language is not loaded.
Please contact your Document Server administrator.' + errorLang: 'The interface language is not loaded.
Please contact your Document Server administrator.', + errorLoadingFont: 'Fonts are not loaded.
Please contact your Document Server administrator.' } })(), DE.Controllers.Main || {})) }); \ No newline at end of file diff --git a/apps/documenteditor/main/app/template/StatusBar.template b/apps/documenteditor/main/app/template/StatusBar.template index 655483e90..bcf70b81d 100644 --- a/apps/documenteditor/main/app/template/StatusBar.template +++ b/apps/documenteditor/main/app/template/StatusBar.template @@ -1,7 +1,7 @@
- + diff --git a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js index d4e268cb4..3361d8e73 100644 --- a/apps/spreadsheeteditor/main/app/view/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/view/DocumentHolder.js @@ -927,7 +927,7 @@ define([ cls: 'shifted-right', menuAlign: 'tl-tr', items : [ - { template: _.template('') }, + { template: _.template('') }, {caption: '--'}, me.menuParagraphBulletNone = new Common.UI.MenuItem({ caption : me.textNone, diff --git a/apps/spreadsheeteditor/main/app/view/FileMenu.js b/apps/spreadsheeteditor/main/app/view/FileMenu.js index d5f967fd2..89f3ce5af 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenu.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenu.js @@ -221,7 +221,10 @@ define([ el : $markup.elementById('#fm-btn-history'), action : 'history', caption : this.btnHistoryCaption, - canFocused: false + canFocused: false, + dataHint: 1, + dataHintDirection: 'left-top', + dataHintOffset: [2, 14] }); this.items = []; @@ -371,7 +374,7 @@ define([ if ( this.mode.canCreateNew ) { if (this.mode.templates && this.mode.templates.length) { $('a',this.miNew.$el).text(this.btnCreateNewCaption + '...'); - !this.panels['new'] && (this.panels['new'] = (new SSE.Views.FileMenuPanels.CreateNew({menu: this, docs: this.mode.templates})).render()); + !this.panels['new'] && (this.panels['new'] = (new SSE.Views.FileMenuPanels.CreateNew({menu: this, docs: this.mode.templates, blank: this.mode.canRequestCreateNew || !!this.mode.createUrl})).render()); } } diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 7a3a17670..9441ee29d 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1732,30 +1732,26 @@ define([ }, template: _.template([ - '

<%= scope.fromBlankText %>


', - '
', - '
', - '', - '', - '', - '
', - '
', - '

<%= scope.newDocumentText %>

', - '<%= scope.newDescriptionText %>', - '
', - '
', - '

<%= scope.fromTemplateText %>


', + '

<%= scope.txtCreateNew %>

', '
', - '<% _.each(docs, function(item) { %>', + '<% if (blank) { %> ', + '
', + '
', + '', + '
', + '
<%= scope.txtBlank %>
', + '
', + '<% } %>', + '<% _.each(docs, function(item, index) { %>', '
', - '
', + '
', ' style="background-image: url(<%= item.image %>);">', - '<% } else { ' + - 'print(\">\")' + - ' } %>', - '
', - '
<%= Common.Utils.String.htmlEncode(item.title || item.name || "") %>
', + ' <%} else {' + + 'print(\">\")' + + ' } %>', + '
', + '
<%= Common.Utils.String.htmlEncode(item.title || item.name || "") %>
', '
', '<% }) %>', '
' @@ -1765,13 +1761,24 @@ define([ Common.UI.BaseView.prototype.initialize.call(this,arguments); this.menu = options.menu; + this.docs = options.docs; + this.blank = !!options.blank; }, render: function() { this.$el.html(this.template({ scope: this, - docs: this.options[0].docs + docs: this.docs, + blank: this.blank })); + var docs = (this.blank ? [{title: this.txtBlank}] : []).concat(this.docs); + var thumbsElm= this.$el.find('.thumb-wrap, .blank-document'); + _.each(thumbsElm, function (tmb, index){ + $(tmb).find('.title').tooltip({ + title : docs[index].title, + placement : 'cursor' + }); + }); if (_.isUndefined(this.scroller)) { this.scroller = new Common.UI.Scroller({ @@ -1799,10 +1806,8 @@ define([ this.menu.fireEvent('create:new', [this.menu, e.currentTarget.attributes['template'].value]); }, - fromBlankText : 'From Blank', - newDocumentText : 'New Spreadsheet', - newDescriptionText : 'Create a new blank text document which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a document of a certain type or purpose where some styles have already been pre-applied.', - fromTemplateText : 'From Template' + txtBlank: 'Blank spreadsheet', + txtCreateNew: 'Create New' }, SSE.Views.FileMenuPanels.CreateNew || {})); SSE.Views.FileMenuPanels.DocumentInfo = Common.UI.BaseView.extend(_.extend({ diff --git a/apps/spreadsheeteditor/main/app/view/ProtectDialog.js b/apps/spreadsheeteditor/main/app/view/ProtectDialog.js index b6ada3867..5890a4e4f 100644 --- a/apps/spreadsheeteditor/main/app/view/ProtectDialog.js +++ b/apps/spreadsheeteditor/main/app/view/ProtectDialog.js @@ -64,6 +64,8 @@ define([ this.txtDescription = options.txtDescription || ''; this.type = options.type || 'workbook'; this.props = options.props; + this.names = options.names; + this.isEdit = options.isEdit; this.api = options.api; this.template = options.template || [ @@ -164,7 +166,25 @@ define([ blankError : this.txtEmpty, style : 'width: 100%;', maxLength: 255, - validateOnBlur: false + validateOnBlur: false, + validateOnChange: false, + validation : function(value) { + if (value=='') return true; + + var res = me.api.asc_checkProtectedRangeName(value); + switch (res) { + case Asc.c_oAscDefinedNameReason.WrongName: + return me.textInvalidName; + break; + case Asc.c_oAscDefinedNameReason.Existed: + return (me.isEdit && me.props.asc_getName().toLowerCase() == value.toLowerCase()) ? true : me.textExistName; + case Asc.c_oAscDefinedNameReason.OK: + var index = me.names.indexOf(value.toLowerCase()); + return (index<0 || me.isEdit && me.props.asc_getName().toLowerCase() == value.toLowerCase()) ? true : me.textExistName; + default: + return me.textInvalidName; + } + } }); this.txtDataRange = new Common.UI.InputFieldBtn({ el : $('#id-range-txt'), @@ -429,7 +449,9 @@ define([ txtRange: 'Range', txtEmpty: 'This field is required', textSelectData: 'Select Data', - textInvalidRange: 'ERROR! Invalid cells range' + textInvalidRange: 'ERROR! Invalid cells range', + textInvalidName: 'The range title must begin with a letter and may only contain letters, numbers, and spaces.', + textExistName: 'ERROR! Range with such a title already exists' }, SSE.Views.ProtectDialog || {})); }); diff --git a/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js b/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js index 66701f65f..9e0356252 100644 --- a/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js +++ b/apps/spreadsheeteditor/main/app/view/ProtectRangesDlg.js @@ -248,11 +248,16 @@ define([ 'text!spreadsheeteditor/main/app/template/ProtectRangesDlg.template', props = new Asc.CProtectedRange(); props.asc_setSqref(me.api.asc_getActiveRangeStr(Asc.referenceType.A)); } + var names = []; + this.rangeList.store.each(function(item){ + names.push(item.get('name').toLowerCase()); + }); var win = new SSE.Views.ProtectDialog({ title : isEdit ? me.txtEditRange : me.txtNewRange, type : 'range', props : props, + names : names, isEdit : isEdit, api : me.api, buttons : ['ok', 'cancel'], diff --git a/apps/spreadsheeteditor/main/app/view/Statusbar.js b/apps/spreadsheeteditor/main/app/view/Statusbar.js index 43848e2d9..3d8d73df2 100644 --- a/apps/spreadsheeteditor/main/app/view/Statusbar.js +++ b/apps/spreadsheeteditor/main/app/view/Statusbar.js @@ -79,6 +79,12 @@ define([ scope: this })); + this.cntStatusbar = $('.statusbar', this.el); + this.isCompact = Common.localStorage.getBool('sse-compact-statusbar', true); + if (!this.isCompact) { + this.cntStatusbar.addClass('no-compact'); + } + this.editMode = false; this.rangeSelectionMode = Asc.c_oAscSelectionDialogType.None; @@ -393,16 +399,27 @@ define([ var customizeStatusBarMenuTemplate = _.template(''+ '
'+ - '
<%= caption %>
' + - '' + + '
<%= caption %>
' + + '' + '
'); this.customizeStatusBarMenu = new Common.UI.Menu({ - style: 'margin-top: -14px; margin-left: -7px;', + style: 'margin-top: 0px; margin-left: -7px;', menuAlign: 'bl-tl', + menuAlignEl: $(this.el), items: [ //{template: _.template('
' + this.textCustomizeStatusBar + '
')}, //{caption: '--'}, + { + id: 'saved-status', + caption: this.itemStatus, + value: 'status', + checkable: true, + checked: true, + template: customizeStatusBarMenuTemplate, + exampleval: '' + }, + {caption: '--'}, { id: 'math-item-average', caption: this.itemAverage, @@ -473,6 +490,14 @@ define([ this.boxZoom = $('#status-zoom-box', this.el); this.boxZoom.find('.separator').css('border-left-color','transparent'); + this.boxNumberSheets = $('#status-number-of-sheet', this.el); + this.isCompact && this.boxNumberSheets.hide(); + this.labelNumberSheets = $('#label-sheets', this.boxNumberSheets); + + this.boxAction = $('#status-action', this.el); + this.boxAction.hide(); + this.labelAction = $('#label-action', this.boxAction); + this.$el.append('
'); this.$customizeStatusBarMenu = this.$el.find('#statusbar-menu'); this.$customizeStatusBarMenu.on({ @@ -598,6 +623,9 @@ define([ $('#status-label-zoom').text(Common.Utils.String.format(this.zoomText, Math.floor((this.api.asc_getZoom() +.005)*100))); + this.updateNumberOfSheet(sindex, wc); + this.updateTabbarBorders(); + me.fireEvent('sheet:changed', [me, sindex]); me.fireEvent('sheet:updateColors', [true]); Common.NotificationCenter.trigger('comments:updatefilter', ['doc', 'sheet' + me.api.asc_getActiveWorksheetId()], false); @@ -613,6 +641,11 @@ define([ this.labelSum.text((info.sum && info.sum.length) ? (this.textSum + ': ' + info.sum) : ''); this.labelAverage.text((info.average && info.average.length) ? (this.textAverage + ': ' + info.average) : ''); + this.labelMin[info.min && info.min.length > 0 ? 'show' : 'hide'](); + this.labelMax[info.max && info.max.length > 0 ? 'show' : 'hide'](); + this.labelSum[info.sum && info.sum.length > 0 ? 'show' : 'hide'](); + this.labelAverage[info.average && info.average.length > 0 ? 'show' : 'hide'](); + this.customizeStatusBarMenu.items.forEach(function (item) { if (item.options.id === 'math-item-average') { item.options.exampleval = (info.average && info.average.length) ? info.average : ''; @@ -624,8 +657,6 @@ define([ item.options.exampleval = (info.count) ? String(info.count) : ''; } else if (item.options.id === 'math-item-sum') { item.options.exampleval = (info.sum && info.sum.length) ? info.sum : ''; - } else { - item.options.exampleval = ''; } $(item.el).find('label').text(item.options.exampleval); }); @@ -669,6 +700,8 @@ define([ onSheetChanged: function(o, index, tab) { this.api.asc_showWorksheet(tab.sheetindex); + this.updateNumberOfSheet(tab.sheetindex, this.api.asc_getWorksheetsCount()); + if (this.hasTabInvisible && !this.tabbar.isTabVisible(index)) { this.tabbar.setTabVisible(index); } @@ -795,19 +828,49 @@ define([ }, updateTabbarBorders: function() { - var right = parseInt(this.boxZoom.css('width')), visible = false; + var visible = false; + var right = parseInt(this.boxZoom.css('width')); if (this.boxMath.is(':visible')) { - right += parseInt(this.boxMath.css('width')); + this.boxMath.css({'right': right + 'px'}); + right += parseInt(this.boxMath.css('width')); visible = true; } - if (this.boxFiltered.is(':visible')) { - right += parseInt(this.boxFiltered.css('width')); + this.boxFiltered.css({'right': right + 'px'}); + right += parseInt(this.boxFiltered.css('width')); visible = true; } - this.boxZoom.find('.separator').css('border-left-color',visible?'':'transparent'); - this.tabBarBox.css('right', right + 'px'); + if (this.isCompact) { + if (this.boxAction.is(':visible')) { + var tabsWidth = this.tabbar.getWidth(); + if (Common.Utils.innerWidth() - right - 175 - 140 - tabsWidth > 0) { // docWidth - right - left - this.boxAction.width + var left = tabsWidth + 175; + this.boxAction.css({'right': right + 'px', 'left': left + 'px', 'width': 'auto'}); + this.boxAction.find('.separator').css('border-left-color', 'transparent'); + } else { + this.boxAction.css({'right': right + 'px', 'left': 'auto', 'width': '140px'}); + this.boxAction.find('.separator').css('border-left-color', ''); + visible = true; + } + right += parseInt(this.boxAction.css('width')); + } + + this.boxMath.is(':visible') && this.boxMath.css({'top': '0px', 'bottom': 'auto'}); + this.boxFiltered.is(':visible') && this.boxFiltered.css({'top': '0px', 'bottom': 'auto'}); + this.boxZoom.css({'top': '0px', 'bottom': 'auto'}); + this.tabBarBox.css('right', right + 'px'); + } else { + if (this.boxAction.is(':visible')) { + this.boxAction.css({'right': right + 'px', 'left': '135px', 'width': 'auto'}); + this.boxAction.find('.separator').css('border-left-color', 'transparent'); + } + this.boxMath.is(':visible') && this.boxMath.css({'top': 'auto', 'bottom': '0px'}); + this.boxFiltered.is(':visible') && this.boxFiltered.css({'top': 'auto', 'bottom': '0px'}); + this.boxZoom.css({'top': 'auto', 'bottom': '0px'}); + this.tabBarBox.css('right', '0px'); + } + this.boxZoom.find('.separator').css('border-left-color', visible ? '' : 'transparent'); }, updateVisibleItemsBoxMath: function () { @@ -852,7 +915,9 @@ define([ onCustomizeStatusBarAfterShow: function (obj) { if (obj.atposition) { - obj.setOffset(obj.atposition.left); + var statusHeight = $(this.el).height(), + offsetTop = !this.isCompact && (obj.atposition.top - $(this.el).offset().top > statusHeight/2) ? statusHeight/2 : 0; + obj.setOffset(obj.atposition.left, offsetTop); } this.enableKeyEvents = true; }, @@ -870,12 +935,16 @@ define([ onCustomizeStatusBarClick: function (o, item, event) { var value = item.value, checked = item.checked; - this.boxMath.find('#status-math-' + value)[checked ? 'removeClass' : 'addClass']('hide'); - if (this.boxMath.find('label').length === this.boxMath.find('label.hide').length) { - this.boxMath.find('.separator').hide(); + if (value === 'status') { + this.boxAction[checked ? 'removeClass' : 'addClass']('hide'); } else { - if (this.boxMath.find('.separator').is(":hidden")) { - this.boxMath.find('.separator').show(); + this.boxMath.find('#status-math-' + value)[checked ? 'removeClass' : 'addClass']('hide'); + if (this.boxMath.find('label').length === this.boxMath.find('label.hide').length) { + this.boxMath.find('.separator').hide(); + } else { + if (this.boxMath.find('.separator').is(":hidden")) { + this.boxMath.find('.separator').show(); + } } } this.updateVisibleItemsBoxMath(); @@ -885,6 +954,50 @@ define([ item.$el.find('a').blur(); }, + onChangeCompact: function (compact) { + this.isCompact = compact; + if (compact) { + this.cntStatusbar.removeClass('no-compact'); + this.boxNumberSheets.hide(); + //this.boxAction.hide(); + } else { + this.cntStatusbar.addClass('no-compact'); + this.boxNumberSheets.show(); + //this.boxAction.show(); + } + this.updateTabbarBorders(); + this.onTabInvisible(undefined, this.tabbar.checkInvisible(true)); + }, + + updateNumberOfSheet: function (active, count) { + this.labelNumberSheets.text( + Common.Utils.String.format(this.sheetIndexText, active + 1, count) + ); + }, + + showStatusMessage: function(message) { + this.labelAction.text(message); + this.customizeStatusBarMenu.items.forEach(function (item) { + if (item.options.id === 'saved-status') { + item.options.exampleval = message; + } + $(item.el).find('label').text(item.options.exampleval); + }); + if (!this.boxAction.is(':visible')) { + this.boxAction.show(); + } + var me = this; + _.delay(function(){ + me.updateTabbarBorders(); + me.onTabInvisible(undefined, me.tabbar.checkInvisible(true)); + },30); + }, + + clearStatusMessage: function() { + this.labelAction.text(''); + }, + + sheetIndexText : 'Sheet {0} of {1}', tipZoomIn : 'Zoom In', tipZoomOut : 'Zoom Out', tipZoomFactor : 'Magnification', @@ -920,6 +1033,7 @@ define([ itemMinimum : 'Minimum', itemMaximum : 'Maximum', itemSum : 'Sum', + itemStatus : 'Saving status', itemProtect : 'Protect', itemUnProtect : 'Unprotect' }, SSE.Views.Statusbar || {})); diff --git a/apps/spreadsheeteditor/main/app/view/TableSettings.js b/apps/spreadsheeteditor/main/app/view/TableSettings.js index 705c35feb..656464358 100644 --- a/apps/spreadsheeteditor/main/app/view/TableSettings.js +++ b/apps/spreadsheeteditor/main/app/view/TableSettings.js @@ -492,7 +492,7 @@ define([ this.mnuTableTemplatePicker.selectRecord(rec, true); this.btnTableTemplate.resumeEvents(); - this.$el.find('.icon-template-table').css({'background-image': 'url(' + rec.get("imageUrl") + ')', 'height': '46px', 'width': '61px', 'background-position': 'center', 'background-size': 'cover'}); + this.$el.find('.icon-template-table').css({'background-image': 'url(' + rec.get("imageUrl") + ')', 'height': '44px', 'width': '60px', 'background-position': 'center', 'background-size': 'cover'}); this._state.TemplateName=value; } @@ -514,7 +514,7 @@ define([ cls : 'btn-large-dataview sheet-template-table', iconCls : 'icon-template-table', menu : new Common.UI.Menu({ - style: 'width: 512px;', + style: 'width: 505px;', items: [ { template: _.template('') } ] @@ -530,7 +530,7 @@ define([ restoreHeight: 325, groups: new Common.UI.DataViewGroupStore(), store: new Common.UI.DataViewStore(), - itemTemplate: _.template('
'), + itemTemplate: _.template('
'), style: 'max-height: 325px;' }); }); diff --git a/apps/spreadsheeteditor/main/app/view/Toolbar.js b/apps/spreadsheeteditor/main/app/view/Toolbar.js index a11d75f43..7a25f45e5 100644 --- a/apps/spreadsheeteditor/main/app/view/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/view/Toolbar.js @@ -880,7 +880,7 @@ define([ lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set.ruleFilter, _set.multiselect, _set.cantModifyFilter, _set.wsLock], menu : new Common.UI.Menu({ items: [ - { template: _.template('
') } + { template: _.template('
') } ] }), dataHint : '1', @@ -903,7 +903,7 @@ define([ cls : 'combo-styles', enableKeyEvents : true, itemWidth : 112, - itemHeight : 38, + itemHeight : 40, menuMaxHeight : 226, lock : [_set.editCell, _set.selChart, _set.selChartText, _set.selShape, _set.selShapeText, _set.selImage, _set.selSlicer, _set.lostConnect, _set.coAuth, _set['FormatCells']], dataHint : '1', diff --git a/apps/spreadsheeteditor/main/app/view/ViewTab.js b/apps/spreadsheeteditor/main/app/view/ViewTab.js index 017fe8dc7..269283802 100644 --- a/apps/spreadsheeteditor/main/app/view/ViewTab.js +++ b/apps/spreadsheeteditor/main/app/view/ViewTab.js @@ -98,7 +98,10 @@ define([ iconCls: 'toolbar__icon btn-sheet-view', caption: me.capBtnSheetView, lock : [_set.lostConnect, _set.coAuth], - menu: true + menu: true, + dataHint : '1', + dataHintDirection: 'bottom', + dataHintOffset: 'small' }); this.lockedControls.push(this.btnSheetView); @@ -107,7 +110,10 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-sheet-view-new', caption : this.textCreate, - lock : [_set.coAuth, _set.lostConnect] + lock : [_set.coAuth, _set.lostConnect], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'big' }); this.lockedControls.push(this.btnCreateView); Common.Utils.injectComponent($host.find('#slot-createview'), this.btnCreateView); @@ -117,7 +123,10 @@ define([ cls : 'btn-toolbar', iconCls : 'toolbar__icon btn-sheet-view-close', caption : this.textClose, - lock : [_set.sheetView, _set.coAuth, _set.lostConnect] + lock : [_set.sheetView, _set.coAuth, _set.lostConnect], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'big' }); this.lockedControls.push(this.btnCloseView); Common.Utils.injectComponent($host.find('#slot-closeview'), this.btnCloseView); @@ -192,7 +201,10 @@ define([ this.chZeros = new Common.UI.CheckBox({ el: $host.findById('#slot-chk-zeros'), labelText: this.textZeros, - lock : [_set.sheetLock, _set.lostConnect, _set.coAuth] + lock : [_set.sheetLock, _set.lostConnect, _set.coAuth], + dataHint : '1', + dataHintDirection: 'left', + dataHintOffset: 'small' }); this.lockedControls.push(this.chZeros); diff --git a/apps/spreadsheeteditor/main/app/view/Viewport.js b/apps/spreadsheeteditor/main/app/view/Viewport.js index baa0d58c9..89b7e2707 100644 --- a/apps/spreadsheeteditor/main/app/view/Viewport.js +++ b/apps/spreadsheeteditor/main/app/view/Viewport.js @@ -99,7 +99,8 @@ define([ stretch: true }, { el: items[3], - height: 25 + alias: 'statusbar', + height: Common.localStorage.getBool('sse-compact-statusbar', true) ? 25 : 50 }] }); diff --git a/apps/spreadsheeteditor/main/locale/ca.json b/apps/spreadsheeteditor/main/locale/ca.json index 1ab48b540..457116245 100644 --- a/apps/spreadsheeteditor/main/locale/ca.json +++ b/apps/spreadsheeteditor/main/locale/ca.json @@ -1,7 +1,7 @@ { - "cancelButtonText": "Cancel·lar", - "Common.Controllers.Chat.notcriticalErrorTitle": "Avis", - "Common.Controllers.Chat.textEnterMessage": "Introduïu el vostre missatge aquí", + "cancelButtonText": "Cancel·la", + "Common.Controllers.Chat.notcriticalErrorTitle": "Advertiment", + "Common.Controllers.Chat.textEnterMessage": "Introdueix el teu missatge aquí", "Common.define.chartData.textArea": "Àrea", "Common.define.chartData.textAreaStacked": "Àrea apilada", "Common.define.chartData.textAreaStackedPer": "Àrea apilada al 100%", @@ -12,16 +12,16 @@ "Common.define.chartData.textBarStacked": "Columna apilada", "Common.define.chartData.textBarStacked3d": "Columna 3D apilada", "Common.define.chartData.textBarStackedPer": "Columna apilada al 100%", - "Common.define.chartData.textBarStackedPer3d": "columna 3D apilada al 100%", + "Common.define.chartData.textBarStackedPer3d": "Columna 3D apilada al 100%", "Common.define.chartData.textCharts": "Gràfics", "Common.define.chartData.textColumn": "Columna", "Common.define.chartData.textColumnSpark": "Columna", - "Common.define.chartData.textCombo": "Combo", + "Common.define.chartData.textCombo": "Quadre combinat", "Common.define.chartData.textComboAreaBar": "Àrea apilada - columna agrupada", - "Common.define.chartData.textComboBarLine": "Columna-línia agrupada", - "Common.define.chartData.textComboBarLineSecondary": " Columna-línia agrupada a l'eix secundari", + "Common.define.chartData.textComboBarLine": "Columna agrupada - línia", + "Common.define.chartData.textComboBarLineSecondary": " Columna agrupada - línia a l'eix secundari", "Common.define.chartData.textComboCustom": "Combinació personalitzada", - "Common.define.chartData.textDoughnut": "Donut", + "Common.define.chartData.textDoughnut": "Anelles", "Common.define.chartData.textHBarNormal": "Barra agrupada", "Common.define.chartData.textHBarNormal3d": "Barra 3D agrupada", "Common.define.chartData.textHBarStacked": "Barra apilada", @@ -36,7 +36,7 @@ "Common.define.chartData.textLineStackedMarker": "Línia apilada amb marcadors", "Common.define.chartData.textLineStackedPer": "Línia apilada al 100%", "Common.define.chartData.textLineStackedPerMarker": "Línia apilada al 100% amb marcadors", - "Common.define.chartData.textPie": "Gràfic circular", + "Common.define.chartData.textPie": "Circular", "Common.define.chartData.textPie3d": "Pastís 3D", "Common.define.chartData.textPoint": "XY (Dispersió)", "Common.define.chartData.textScatter": "Dispersió", @@ -45,9 +45,9 @@ "Common.define.chartData.textScatterSmooth": "Dispersió amb línies suaus", "Common.define.chartData.textScatterSmoothMarker": "Dispersió amb línies suaus i marcadors", "Common.define.chartData.textSparks": "Sparklines", - "Common.define.chartData.textStock": "Existències", + "Common.define.chartData.textStock": "Accions", "Common.define.chartData.textSurface": "Superfície", - "Common.define.chartData.textWinLossSpark": "Guanyar/Pèrdua", + "Common.define.chartData.textWinLossSpark": "Pèrdues i guanys", "Common.define.conditionalData.exampleText": "AaBbCcYyZz", "Common.define.conditionalData.noFormatText": "No s'ha definit cap format", "Common.define.conditionalData.text1Above": "1 per sobre de des. est.", @@ -56,18 +56,18 @@ "Common.define.conditionalData.text2Below": "2 per sota de des. est.", "Common.define.conditionalData.text3Above": "3 per sobre de des. est.", "Common.define.conditionalData.text3Below": "3 per sota de des. est.", - "Common.define.conditionalData.textAbove": "Damunt", + "Common.define.conditionalData.textAbove": "Amunt", "Common.define.conditionalData.textAverage": "Mitjana", "Common.define.conditionalData.textBegins": "Comença amb", "Common.define.conditionalData.textBelow": "Sota", - "Common.define.conditionalData.textBetween": "entre", + "Common.define.conditionalData.textBetween": "Entre", "Common.define.conditionalData.textBlank": "En blanc", "Common.define.conditionalData.textBlanks": "Conté espais en blanc", - "Common.define.conditionalData.textBottom": "Inferior", + "Common.define.conditionalData.textBottom": "Part inferior", "Common.define.conditionalData.textContains": "Conté", "Common.define.conditionalData.textDataBar": "Barra de dades", "Common.define.conditionalData.textDate": "Data", - "Common.define.conditionalData.textDuplicate": "Duplicar", + "Common.define.conditionalData.textDuplicate": "Duplica", "Common.define.conditionalData.textEnds": "Acaba amb", "Common.define.conditionalData.textEqAbove": "Igual o superior a", "Common.define.conditionalData.textEqBelow": "Igual o inferior a", @@ -76,19 +76,19 @@ "Common.define.conditionalData.textErrors": "Conté errors", "Common.define.conditionalData.textFormula": "Fórmula", "Common.define.conditionalData.textGreater": "Més gran que", - "Common.define.conditionalData.textGreaterEq": "Major o Igual a", + "Common.define.conditionalData.textGreaterEq": "Més gran o igual a", "Common.define.conditionalData.textIconSets": "Conjunts d'icones", "Common.define.conditionalData.textLast7days": "En els darrers 7 dies", "Common.define.conditionalData.textLastMonth": "El mes passat", "Common.define.conditionalData.textLastWeek": "La setmana passada", "Common.define.conditionalData.textLess": "Menor que", "Common.define.conditionalData.textLessEq": "Menor o igual a", - "Common.define.conditionalData.textNextMonth": "Mes següent", - "Common.define.conditionalData.textNextWeek": "Setmana següent", + "Common.define.conditionalData.textNextMonth": "El mes que ve", + "Common.define.conditionalData.textNextWeek": "La setmana que ve", "Common.define.conditionalData.textNotBetween": "No entre", "Common.define.conditionalData.textNotBlanks": "No conté espais en blanc", "Common.define.conditionalData.textNotContains": "No conté", - "Common.define.conditionalData.textNotEqual": "No igual a", + "Common.define.conditionalData.textNotEqual": "No és igual a", "Common.define.conditionalData.textNotErrors": "No conté errors", "Common.define.conditionalData.textText": "Text", "Common.define.conditionalData.textThisMonth": "Aquest mes", @@ -99,783 +99,783 @@ "Common.define.conditionalData.textUnique": "Únic", "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.warnFileLocked": "El document és obert 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.Translation.warnFileLockedBtnView": "Obre per a la seva visualització", "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", "Common.UI.ComboBorderSize.txtNoBorders": "Sense vores", "Common.UI.ComboBorderSizeEditable.txtNoBorders": "Sense vores", - "Common.UI.ComboDataView.emptyComboText": "Sense Estils", - "Common.UI.ExtendedColorDialog.addButtonText": "Afegir", + "Common.UI.ComboDataView.emptyComboText": "Sense estils", + "Common.UI.ExtendedColorDialog.addButtonText": "Afegeix", "Common.UI.ExtendedColorDialog.textCurrent": "Actual", - "Common.UI.ExtendedColorDialog.textHexErr": "El valor introduït és incorrecte.
Introduïu un valor entre 000000 i FFFFFF.", + "Common.UI.ExtendedColorDialog.textHexErr": "El valor introduït no és correcte.
Introduïu un valor entre 000000 i FFFFFF.", "Common.UI.ExtendedColorDialog.textNew": "Nou", - "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït és incorrecte.
Introduïu un valor numèric entre 0 i 255.", - "Common.UI.HSBColorPicker.textNoColor": "Sense Color", - "Common.UI.SearchDialog.textHighlight": "Ressaltar els resultats", + "Common.UI.ExtendedColorDialog.textRGBErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 0 i 255.", + "Common.UI.HSBColorPicker.textNoColor": "Sense color", + "Common.UI.SearchDialog.textHighlight": "Ressalta els resultats", "Common.UI.SearchDialog.textMatchCase": "Sensible a majúscules i minúscules", - "Common.UI.SearchDialog.textReplaceDef": "Introduïu el text de substitució", - "Common.UI.SearchDialog.textSearchStart": "Introduïu el vostre text aquí", - "Common.UI.SearchDialog.textTitle": "Buscar i Canviar", - "Common.UI.SearchDialog.textTitle2": "Buscar", - "Common.UI.SearchDialog.textWholeWords": "Només paraules completes", - "Common.UI.SearchDialog.txtBtnHideReplace": "Amagar Reemplaça", - "Common.UI.SearchDialog.txtBtnReplace": "Canviar", - "Common.UI.SearchDialog.txtBtnReplaceAll": "Canviar-ho Tot", - "Common.UI.SynchronizeTip.textDontShow": "No torneu a mostrar aquest missatge", - "Common.UI.SynchronizeTip.textSynchronize": "Un altre usuari ha canviat el document.
Feu clic per desar els canvis i tornar a carregar les actualitzacions.", - "Common.UI.ThemeColorPalette.textStandartColors": "Colors Estàndards", - "Common.UI.ThemeColorPalette.textThemeColors": "Colors Tema", + "Common.UI.SearchDialog.textReplaceDef": "Introdueix el text de substitució", + "Common.UI.SearchDialog.textSearchStart": "Introdueix el teu text aquí", + "Common.UI.SearchDialog.textTitle": "Cerca i substitueix", + "Common.UI.SearchDialog.textTitle2": "Cerca", + "Common.UI.SearchDialog.textWholeWords": "Només paraules senceres", + "Common.UI.SearchDialog.txtBtnHideReplace": "Amaga substituir", + "Common.UI.SearchDialog.txtBtnReplace": "Substitueix", + "Common.UI.SearchDialog.txtBtnReplaceAll": "Substitueix-ho tot ", + "Common.UI.SynchronizeTip.textDontShow": "No tornis a mostrar aquest missatge", + "Common.UI.SynchronizeTip.textSynchronize": "Un altre usuari ha canviat el document.
Cliqueu per desar els canvis i tornar a carregar les actualitzacions.", + "Common.UI.ThemeColorPalette.textStandartColors": "Colors estàndard", + "Common.UI.ThemeColorPalette.textThemeColors": "Colors del tema", "Common.UI.Themes.txtThemeClassicLight": "Llum clàssica", "Common.UI.Themes.txtThemeDark": "Fosc", "Common.UI.Themes.txtThemeLight": "Clar", - "Common.UI.Window.cancelButtonText": "Cancel·lar", - "Common.UI.Window.closeButtonText": "Tancar", + "Common.UI.Window.cancelButtonText": "Cancel·la", + "Common.UI.Window.closeButtonText": "Tanca", "Common.UI.Window.noButtonText": "No", - "Common.UI.Window.okButtonText": "Acceptar", + "Common.UI.Window.okButtonText": "D'acord", "Common.UI.Window.textConfirmation": "Confirmació", - "Common.UI.Window.textDontShow": "No torneu a mostrar aquest missatge", + "Common.UI.Window.textDontShow": "No tornis a mostrar aquest missatge", "Common.UI.Window.textError": "Error", "Common.UI.Window.textInformation": "Informació", - "Common.UI.Window.textWarning": "Avis", + "Common.UI.Window.textWarning": "Advertiment", "Common.UI.Window.yesButtonText": "Sí", "Common.Utils.Metric.txtCm": "cm", "Common.Utils.Metric.txtPt": "pt", "Common.Views.About.txtAddress": "adreça:", - "Common.Views.About.txtLicensee": "LLICÈNCIA", - "Common.Views.About.txtLicensor": "LLICENCIAL", - "Common.Views.About.txtMail": "email:", - "Common.Views.About.txtPoweredBy": "Impulsat per", + "Common.Views.About.txtLicensee": "LLICENCIATARI", + "Common.Views.About.txtLicensor": "LLICENCIADOR", + "Common.Views.About.txtMail": "correu electrònic:", + "Common.Views.About.txtPoweredBy": "Amb tecnologia de", "Common.Views.About.txtTel": "tel.: ", "Common.Views.About.txtVersion": "Versió", - "Common.Views.AutoCorrectDialog.textAdd": "Afegir", - "Common.Views.AutoCorrectDialog.textApplyAsWork": "Aplicar mentre treballeu", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció Automàtica", - "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que escriviu", + "Common.Views.AutoCorrectDialog.textAdd": "Afegeix", + "Common.Views.AutoCorrectDialog.textApplyAsWork": "Aplica-ho mentre hi treballes", + "Common.Views.AutoCorrectDialog.textAutoCorrect": "Correcció automàtica", + "Common.Views.AutoCorrectDialog.textAutoFormat": "Format automàtic a mesura que escric", "Common.Views.AutoCorrectDialog.textBy": "Per", - "Common.Views.AutoCorrectDialog.textDelete": "Esborrar", + "Common.Views.AutoCorrectDialog.textDelete": "Suprimeix", "Common.Views.AutoCorrectDialog.textHyperlink": "Dreceres d'internet i de xarxa amb enllaços", - "Common.Views.AutoCorrectDialog.textMathCorrect": "Correcció Automàtica Matemàtica", - "Common.Views.AutoCorrectDialog.textNewRowCol": "Incloure files i columnes noves a la taula", - "Common.Views.AutoCorrectDialog.textRecognized": "Funcions Reconegudes", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions següents són expressions matemàtiques reconegudes. No es posaran en cursiva automàticament.", + "Common.Views.AutoCorrectDialog.textMathCorrect": "Autocorrecció de símbols matemàtics", + "Common.Views.AutoCorrectDialog.textNewRowCol": "Inclou files i columnes noves a la taula", + "Common.Views.AutoCorrectDialog.textRecognized": "Funcions reconegudes", + "Common.Views.AutoCorrectDialog.textRecognizedDesc": "Les expressions següents són expressions matemàtiques reconegudes. No es posaran automàticament en cursiva.", "Common.Views.AutoCorrectDialog.textReplace": "Substitueix", - "Common.Views.AutoCorrectDialog.textReplaceText": "Reemplaçar Mentre Escriu", - "Common.Views.AutoCorrectDialog.textReplaceType": "Substituïu el text mentre escriviu", - "Common.Views.AutoCorrectDialog.textReset": "Restablir", - "Common.Views.AutoCorrectDialog.textResetAll": "Restableix a valor predeterminat", - "Common.Views.AutoCorrectDialog.textRestore": "Restaurar", - "Common.Views.AutoCorrectDialog.textTitle": "Correcció Automàtica", + "Common.Views.AutoCorrectDialog.textReplaceText": "Substitució mentre escriviu", + "Common.Views.AutoCorrectDialog.textReplaceType": "Substitueix el text a mesura que escric", + "Common.Views.AutoCorrectDialog.textReset": "Restableix", + "Common.Views.AutoCorrectDialog.textResetAll": "Restableix els valors predeterminats", + "Common.Views.AutoCorrectDialog.textRestore": "Restaura", + "Common.Views.AutoCorrectDialog.textTitle": "Correcció automàtica", "Common.Views.AutoCorrectDialog.textWarnAddRec": "Les funcions reconegudes han de contenir només les lletres de la A a la Z, en majúscules o en minúscules.", - "Common.Views.AutoCorrectDialog.textWarnResetRec": "Qualsevol expressió que hàgiu afegit se suprimirà i es restabliran les eliminades. Vols continuar?", - "Common.Views.AutoCorrectDialog.warnReplace": "L'entrada de correcció automàtica de %1 ja existeix. El voleu substituir?", - "Common.Views.AutoCorrectDialog.warnReset": "Qualsevol autocorrecció que hàgiu afegit se suprimirà i les modificades es restauraran als seus valors originals. Vols continuar?", + "Common.Views.AutoCorrectDialog.textWarnResetRec": "Qualsevol expressió que hàgiu afegit se suprimirà i es restabliran les eliminades. Voleu continuar?", + "Common.Views.AutoCorrectDialog.warnReplace": "L'entrada de correcció automàtica de %1 ja existeix. La voleu substituir?", + "Common.Views.AutoCorrectDialog.warnReset": "Qualsevol autocorrecció que hàgiu afegit se suprimirà i les modificades es restauraran als seus valors originals. Voleu continuar?", "Common.Views.AutoCorrectDialog.warnRestore": "L'entrada de correcció automàtica de %1 es restablirà al seu valor original. Vols continuar?", - "Common.Views.Chat.textSend": "Enviar", - "Common.Views.Comments.textAdd": "Afegir", - "Common.Views.Comments.textAddComment": "Afegir Comentari", - "Common.Views.Comments.textAddCommentToDoc": "Afegir Comentari al Document", - "Common.Views.Comments.textAddReply": "Afegir Resposta", + "Common.Views.Chat.textSend": "Envia", + "Common.Views.Comments.textAdd": "Afegeix", + "Common.Views.Comments.textAddComment": "Afegeix un comentari", + "Common.Views.Comments.textAddCommentToDoc": "Afegeix un comentari al document", + "Common.Views.Comments.textAddReply": "Afegeix una resposta", "Common.Views.Comments.textAnonym": "Convidat", - "Common.Views.Comments.textCancel": "Cancel·lar", - "Common.Views.Comments.textClose": "Tancar", + "Common.Views.Comments.textCancel": "Cancel·la", + "Common.Views.Comments.textClose": "Tanca", "Common.Views.Comments.textComments": "Comentaris", - "Common.Views.Comments.textEdit": "Acceptar", - "Common.Views.Comments.textEnterCommentHint": "Introduïu el vostre comentari aquí", - "Common.Views.Comments.textHintAddComment": "Afegir comentari", - "Common.Views.Comments.textOpenAgain": "Obriu de nou", - "Common.Views.Comments.textReply": "Contestar", + "Common.Views.Comments.textEdit": "D'acord", + "Common.Views.Comments.textEnterCommentHint": "Introdueix el teu comentari aquí", + "Common.Views.Comments.textHintAddComment": "Afegeix un comentari", + "Common.Views.Comments.textOpenAgain": "Torna-ho a obrir", + "Common.Views.Comments.textReply": "Respon", "Common.Views.Comments.textResolve": "Resol", "Common.Views.Comments.textResolved": "Resolt", - "Common.Views.CopyWarningDialog.textDontShow": "No torneu a mostrar aquest missatge", - "Common.Views.CopyWarningDialog.textMsg": "Copiar, tallar i enganxar accions mitjançant els botons de la barra d’eines de l’editor i les accions del menú contextual només es realitzaran dins d’aquesta pestanya editor.

Per copiar o enganxar a o des d’aplicacions fora de la pestanya editor, utilitzeu les combinacions de teclat següents:", - "Common.Views.CopyWarningDialog.textTitle": "Accions de Copiar, Tallar i Pegar ", - "Common.Views.CopyWarningDialog.textToCopy": "Per Copiar", - "Common.Views.CopyWarningDialog.textToCut": "Per Tallar", - "Common.Views.CopyWarningDialog.textToPaste": "Per Pegar", - "Common.Views.DocumentAccessDialog.textLoading": "Carregant...", - "Common.Views.DocumentAccessDialog.textTitle": "Configuració per Compartir", + "Common.Views.CopyWarningDialog.textDontShow": "No tornis a mostrar aquest missatge", + "Common.Views.CopyWarningDialog.textMsg": "Les accions de copiar, tallar i enganxar mitjançant els botons de la barra d’eines de l’editor i les accions del menú contextual només es realitzaran dins d’aquesta pestanya editor.

Per copiar o enganxar a o des d’aplicacions fora de la pestanya de l'editor, utilitzeu les combinacions de teclat següents:", + "Common.Views.CopyWarningDialog.textTitle": "Accions de copia, talla i enganxa ", + "Common.Views.CopyWarningDialog.textToCopy": "Per copiar", + "Common.Views.CopyWarningDialog.textToCut": "Per tallar", + "Common.Views.CopyWarningDialog.textToPaste": "Per enganxar", + "Common.Views.DocumentAccessDialog.textLoading": "S'està carregant...", + "Common.Views.DocumentAccessDialog.textTitle": "Configuració de l'ús compartit\n\t", "Common.Views.EditNameDialog.textLabel": "Etiqueta:", - "Common.Views.EditNameDialog.textLabelError": "La etiqueta no pot estar buida.", + "Common.Views.EditNameDialog.textLabelError": "L'etiqueta no pot estar en blanc.", "Common.Views.Header.labelCoUsersDescr": "Usuaris que editen el fitxer:", - "Common.Views.Header.textAddFavorite": "Marcar com a favorit", + "Common.Views.Header.textAddFavorite": "Marca com a favorit", "Common.Views.Header.textAdvSettings": "Configuració avançada", - "Common.Views.Header.textBack": "Obrir ubicació del arxiu", - "Common.Views.Header.textCompactView": "Amagar la Barra d'Eines", - "Common.Views.Header.textHideLines": "Amagar Regles", - "Common.Views.Header.textHideStatusBar": "Amagar la Barra d'Estat", - "Common.Views.Header.textRemoveFavorite": "Elimina dels Favorits", - "Common.Views.Header.textSaveBegin": "Desant...", + "Common.Views.Header.textBack": "Obre la ubicació del fitxer", + "Common.Views.Header.textCompactView": "Amaga la barra d'eines", + "Common.Views.Header.textHideLines": "Amaga els regles", + "Common.Views.Header.textHideStatusBar": "Amaga la barra d'estat", + "Common.Views.Header.textRemoveFavorite": "Suprimeix de favorits", + "Common.Views.Header.textSaveBegin": "S'està desant...", "Common.Views.Header.textSaveChanged": "Modificat", - "Common.Views.Header.textSaveEnd": "Tots els canvis guardats", - "Common.Views.Header.textSaveExpander": "Tots els canvis guardats", + "Common.Views.Header.textSaveEnd": "S'han desat tots els canvis", + "Common.Views.Header.textSaveExpander": "S'han desat tots els canvis", "Common.Views.Header.textZoom": "Zoom", "Common.Views.Header.tipAccessRights": "Gestiona els drets d’accés al document", - "Common.Views.Header.tipDownload": "Descarregar arxiu", - "Common.Views.Header.tipGoEdit": "Editar el fitxer actual", - "Common.Views.Header.tipPrint": "Imprimir arxiu", - "Common.Views.Header.tipRedo": "Refer", - "Common.Views.Header.tipSave": "Desar", - "Common.Views.Header.tipUndo": "Desfer", - "Common.Views.Header.tipUndock": "Desacoblar en una finestra independent", - "Common.Views.Header.tipViewSettings": "Mostra la configuració", - "Common.Views.Header.tipViewUsers": "Consulteu els usuaris i gestioneu els drets d’accés als documents", - "Common.Views.Header.txtAccessRights": "Canviar els drets d’accés", - "Common.Views.Header.txtRename": "Renombrar", - "Common.Views.ImageFromUrlDialog.textUrl": "Pegar URL d'imatge:", - "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és obligatori", - "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", - "Common.Views.ListSettingsDialog.textBulleted": "Llista encuadrada", - "Common.Views.ListSettingsDialog.textNumbering": "Numerats", - "Common.Views.ListSettingsDialog.tipChange": "Canviar vinyeta", - "Common.Views.ListSettingsDialog.txtBullet": "Vinyeta", + "Common.Views.Header.tipDownload": "Baixa el fitxer", + "Common.Views.Header.tipGoEdit": "Edita el fitxer actual", + "Common.Views.Header.tipPrint": "Imprimeix el fitxer", + "Common.Views.Header.tipRedo": "Refés", + "Common.Views.Header.tipSave": "Desa", + "Common.Views.Header.tipUndo": "Desfés", + "Common.Views.Header.tipUndock": "Desacobla en una finestra independent", + "Common.Views.Header.tipViewSettings": "Configuració de la visualització", + "Common.Views.Header.tipViewUsers": "Mostra els usuaris i gestiona els permisos d’accés als documents", + "Common.Views.Header.txtAccessRights": "Canvia els drets d’accés", + "Common.Views.Header.txtRename": "Canvia el nom", + "Common.Views.ImageFromUrlDialog.textUrl": "Enganxa una URL d'imatge:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "Aquest camp és necessari", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.example.com\"", + "Common.Views.ListSettingsDialog.textBulleted": "Amb pics", + "Common.Views.ListSettingsDialog.textNumbering": "Numerat", + "Common.Views.ListSettingsDialog.tipChange": "Canvia el pic", + "Common.Views.ListSettingsDialog.txtBullet": "Pic", "Common.Views.ListSettingsDialog.txtColor": "Color", - "Common.Views.ListSettingsDialog.txtNewBullet": "Nova vinyeta", + "Common.Views.ListSettingsDialog.txtNewBullet": "Pic nou", "Common.Views.ListSettingsDialog.txtNone": "Cap", "Common.Views.ListSettingsDialog.txtOfText": "% de text", "Common.Views.ListSettingsDialog.txtSize": "Mida", - "Common.Views.ListSettingsDialog.txtStart": "Començar a", + "Common.Views.ListSettingsDialog.txtStart": "Comença a", "Common.Views.ListSettingsDialog.txtSymbol": "Símbol", - "Common.Views.ListSettingsDialog.txtTitle": "Configuració de la Llista", + "Common.Views.ListSettingsDialog.txtTitle": "Configuració de la llista", "Common.Views.ListSettingsDialog.txtType": "Tipus", - "Common.Views.OpenDialog.closeButtonText": "Tancar Arxiu", - "Common.Views.OpenDialog.textInvalidRange": "Interval de cel·les no vàlid", - "Common.Views.OpenDialog.textSelectData": "Seleccionar dades", + "Common.Views.OpenDialog.closeButtonText": "Tanca el fitxer", + "Common.Views.OpenDialog.textInvalidRange": "L'interval de cel·les no és vàlid", + "Common.Views.OpenDialog.textSelectData": "Selecciona dades", "Common.Views.OpenDialog.txtAdvanced": "Avançat", "Common.Views.OpenDialog.txtColon": "Dos punts", - "Common.Views.OpenDialog.txtComma": "Financier", + "Common.Views.OpenDialog.txtComma": "Coma", "Common.Views.OpenDialog.txtDelimiter": "Delimitador", - "Common.Views.OpenDialog.txtDestData": "Trieu on posar les dades", - "Common.Views.OpenDialog.txtEmpty": "Aquest camp és obligatori", + "Common.Views.OpenDialog.txtDestData": "Tria on posar les dades", + "Common.Views.OpenDialog.txtEmpty": "Aquest camp és necessari", "Common.Views.OpenDialog.txtEncoding": "Codificació", - "Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya es incorrecta.", - "Common.Views.OpenDialog.txtOpenFile": "Introduïu una contrasenya per obrir el fitxer", + "Common.Views.OpenDialog.txtIncorrectPwd": "La contrasenya no és correcta.", + "Common.Views.OpenDialog.txtOpenFile": "Introdueix una contrasenya per obrir el fitxer", "Common.Views.OpenDialog.txtOther": "Altre", "Common.Views.OpenDialog.txtPassword": "Contrasenya", - "Common.Views.OpenDialog.txtPreview": "Vista Prèvia", + "Common.Views.OpenDialog.txtPreview": "Visualització prèvia", "Common.Views.OpenDialog.txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer.", "Common.Views.OpenDialog.txtSemicolon": "Punt i coma", "Common.Views.OpenDialog.txtSpace": "Espai", - "Common.Views.OpenDialog.txtTab": "Pestanya", - "Common.Views.OpenDialog.txtTitle": "Tria %1 opció", - "Common.Views.OpenDialog.txtTitleProtected": "Arxiu Protegit", - "Common.Views.PasswordDialog.txtDescription": "Establir una contrasenya per protegir el document", + "Common.Views.OpenDialog.txtTab": "Tabulador", + "Common.Views.OpenDialog.txtTitle": "Tria opcions %1", + "Common.Views.OpenDialog.txtTitleProtected": "El fitxer està protegit", + "Common.Views.PasswordDialog.txtDescription": "Estableix una contrasenya per protegir aquest document", "Common.Views.PasswordDialog.txtIncorrectPwd": "La contrasenya de confirmació no és idèntica", "Common.Views.PasswordDialog.txtPassword": "Contrasenya", "Common.Views.PasswordDialog.txtRepeat": "Repeteix la contrasenya", "Common.Views.PasswordDialog.txtTitle": "Estableix la contrasenya", - "Common.Views.PasswordDialog.txtWarning": "Avis: si perdeu o oblideu la contrasenya, no es podrà recuperar. Desa-la en un lloc segur.", - "Common.Views.PluginDlg.textLoading": "Carregant", - "Common.Views.Plugins.groupCaption": "Connectors", - "Common.Views.Plugins.strPlugins": "Connectors", - "Common.Views.Plugins.textLoading": "Carregant", - "Common.Views.Plugins.textStart": "Començar", - "Common.Views.Plugins.textStop": "Parar", - "Common.Views.Protection.hintAddPwd": "Xifrar amb contrasenya", - "Common.Views.Protection.hintPwd": "Canviar o Esborrar Contrasenya", - "Common.Views.Protection.hintSignature": "Afegir signatura digital o línia de signatura", - "Common.Views.Protection.txtAddPwd": "Afegir contrasenya", - "Common.Views.Protection.txtChangePwd": "Canviar la contrasenya", + "Common.Views.PasswordDialog.txtWarning": "Advertiment: si perdeu o oblideu la contrasenya, no la podreu recuperar. Deseu-la en un lloc segur.", + "Common.Views.PluginDlg.textLoading": "S'està carregant", + "Common.Views.Plugins.groupCaption": "Complements", + "Common.Views.Plugins.strPlugins": "Complements", + "Common.Views.Plugins.textLoading": "S'està carregant", + "Common.Views.Plugins.textStart": "Comença", + "Common.Views.Plugins.textStop": "Atura", + "Common.Views.Protection.hintAddPwd": "Xifra amb contrasenya", + "Common.Views.Protection.hintPwd": "Canvia o suprimeix la contrasenya", + "Common.Views.Protection.hintSignature": "Afegeix una signatura digital o línia de signatura", + "Common.Views.Protection.txtAddPwd": "Afegeix una contrasenya", + "Common.Views.Protection.txtChangePwd": "Canvia la contrasenya", "Common.Views.Protection.txtDeletePwd": "Suprimeix la contrasenya", - "Common.Views.Protection.txtEncrypt": "Xifrar", - "Common.Views.Protection.txtInvisibleSignature": "Afegir signatura digital", - "Common.Views.Protection.txtSignature": "Firma", - "Common.Views.Protection.txtSignatureLine": "Afegir línia de signatura", - "Common.Views.RenameDialog.textName": "Nom Fitxer", + "Common.Views.Protection.txtEncrypt": "Xifra", + "Common.Views.Protection.txtInvisibleSignature": "Afegeix una signatura digital", + "Common.Views.Protection.txtSignature": "Signatura", + "Common.Views.Protection.txtSignatureLine": "Afegeix una línia de signatura", + "Common.Views.RenameDialog.textName": "Nom del fitxer", "Common.Views.RenameDialog.txtInvalidName": "El nom del fitxer no pot contenir cap dels caràcters següents:", - "Common.Views.ReviewChanges.hintNext": "Al següent canvi", + "Common.Views.ReviewChanges.hintNext": "Al canvi següent", "Common.Views.ReviewChanges.hintPrev": "Al canvi anterior", "Common.Views.ReviewChanges.strFast": "Ràpid", - "Common.Views.ReviewChanges.strFastDesc": "Coedició en temps real. Tots els canvis es guarden automàticament.", + "Common.Views.ReviewChanges.strFastDesc": "Coedició en temps real. Tots els canvis s'han desat automàticament.", "Common.Views.ReviewChanges.strStrict": "Estricte", - "Common.Views.ReviewChanges.strStrictDesc": "Feu servir el botó \"Desa\" per sincronitzar els canvis que feu i els altres.", - "Common.Views.ReviewChanges.tipAcceptCurrent": "Acceptar el canvi actual", - "Common.Views.ReviewChanges.tipCoAuthMode": "Configura el mode de coedició", - "Common.Views.ReviewChanges.tipCommentRem": "Esborrar comentaris", - "Common.Views.ReviewChanges.tipCommentRemCurrent": "Esborrar comentaris actuals", - "Common.Views.ReviewChanges.tipCommentResolve": "Resoldre comentaris", - "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resoldre comentaris actuals", + "Common.Views.ReviewChanges.strStrictDesc": "Fes servir el botó \"Desar\" per sincronitzar els canvis que tu i els altres feu.", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Accepta el canvi actual", + "Common.Views.ReviewChanges.tipCoAuthMode": "Estableix el mode de coedició", + "Common.Views.ReviewChanges.tipCommentRem": "Suprimeix els comentaris", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Suprimeix els comentaris actuals", + "Common.Views.ReviewChanges.tipCommentResolve": "Resol els comentaris", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resol els comentaris actuals", "Common.Views.ReviewChanges.tipHistory": "Mostra l'historial de versions", - "Common.Views.ReviewChanges.tipRejectCurrent": "Rebutjar canvi actual", - "Common.Views.ReviewChanges.tipReview": "Control de Canvis", - "Common.Views.ReviewChanges.tipReviewView": "Seleccioneu el mode que voleu que es mostrin els canvis", - "Common.Views.ReviewChanges.tipSetDocLang": "Definiu l’idioma del document", - "Common.Views.ReviewChanges.tipSetSpelling": "Comprovació Ortogràfica", + "Common.Views.ReviewChanges.tipRejectCurrent": "Rebutja el canvi actual", + "Common.Views.ReviewChanges.tipReview": "Control de canvis", + "Common.Views.ReviewChanges.tipReviewView": "Selecciona la manera que vols que es mostrin els canvis", + "Common.Views.ReviewChanges.tipSetDocLang": "Estableix l’idioma del document", + "Common.Views.ReviewChanges.tipSetSpelling": "Revisió ortogràfica", "Common.Views.ReviewChanges.tipSharing": "Gestiona els drets d’accés al document", - "Common.Views.ReviewChanges.txtAccept": "Acceptar", - "Common.Views.ReviewChanges.txtAcceptAll": "Acceptar Tots els Canvis", - "Common.Views.ReviewChanges.txtAcceptChanges": "Acceptar canvis", - "Common.Views.ReviewChanges.txtAcceptCurrent": "Acceptar el Canvi Actual", - "Common.Views.ReviewChanges.txtChat": "Chat", - "Common.Views.ReviewChanges.txtClose": "Tancar", - "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de Coedició", - "Common.Views.ReviewChanges.txtCommentRemAll": "Esborrar tots els comentaris", - "Common.Views.ReviewChanges.txtCommentRemCurrent": "Esborrar comentaris actuals", - "Common.Views.ReviewChanges.txtCommentRemMy": "Esborrar els Meus Comentaris", - "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Esborrar els meus actuals comentaris", - "Common.Views.ReviewChanges.txtCommentRemove": "Esborrar", + "Common.Views.ReviewChanges.txtAccept": "Accepta ", + "Common.Views.ReviewChanges.txtAcceptAll": "Accepta tots els canvis", + "Common.Views.ReviewChanges.txtAcceptChanges": "Accepta els canvis", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Accepta el canvi actual", + "Common.Views.ReviewChanges.txtChat": "Xat", + "Common.Views.ReviewChanges.txtClose": "Tanca", + "Common.Views.ReviewChanges.txtCoAuthMode": "Mode de coedició", + "Common.Views.ReviewChanges.txtCommentRemAll": "Suprimeix tots els comentaris", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Suprimeix els comentaris actuals", + "Common.Views.ReviewChanges.txtCommentRemMy": "Suprimeix els meus comentaris", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Suprimeix els meus comentaris actuals", + "Common.Views.ReviewChanges.txtCommentRemove": "Suprimeix", "Common.Views.ReviewChanges.txtCommentResolve": "Resoldre", - "Common.Views.ReviewChanges.txtCommentResolveAll": "Resoldre tots els comentaris", - "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resoldre comentaris actuals", - "Common.Views.ReviewChanges.txtCommentResolveMy": "Resoldre els Meus Comentaris", - "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resoldre els Meus Comentaris Actuals", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resol tots els comentaris", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resol els comentaris actuals", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resol els meus comentaris", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resol els meus comentaris actuals", "Common.Views.ReviewChanges.txtDocLang": "Idioma", - "Common.Views.ReviewChanges.txtFinal": "Tots el canvis acceptats (Previsualitzar)", + "Common.Views.ReviewChanges.txtFinal": "S'han acceptat tots el canvis (Previsualitzar)", "Common.Views.ReviewChanges.txtFinalCap": "Final", - "Common.Views.ReviewChanges.txtHistory": "Historial de Versions", + "Common.Views.ReviewChanges.txtHistory": "Historial de versions", "Common.Views.ReviewChanges.txtMarkup": "Tots els canvis (Edició)", - "Common.Views.ReviewChanges.txtMarkupCap": "Marge", + "Common.Views.ReviewChanges.txtMarkupCap": "Etiquetatge", "Common.Views.ReviewChanges.txtNext": "Següent", - "Common.Views.ReviewChanges.txtOriginal": "Tots els canvis rebutjats (Previsualitzar)", + "Common.Views.ReviewChanges.txtOriginal": "S'han rebutjat tots els canvis (Previsualitzar)", "Common.Views.ReviewChanges.txtOriginalCap": "Original", "Common.Views.ReviewChanges.txtPrev": "Anterior", - "Common.Views.ReviewChanges.txtReject": "Rebutjar", - "Common.Views.ReviewChanges.txtRejectAll": "Rebutjar Tots els Canvis", - "Common.Views.ReviewChanges.txtRejectChanges": "Rebutjar canvis", - "Common.Views.ReviewChanges.txtRejectCurrent": "Rebutjar canvi actual", - "Common.Views.ReviewChanges.txtSharing": "Compartir", - "Common.Views.ReviewChanges.txtSpelling": "Comprovació Ortogràfica", - "Common.Views.ReviewChanges.txtTurnon": "Control de Canvis", - "Common.Views.ReviewChanges.txtView": "Mode de Visualització", - "Common.Views.ReviewPopover.textAdd": "Afegir", - "Common.Views.ReviewPopover.textAddReply": "Afegir Resposta", - "Common.Views.ReviewPopover.textCancel": "Cancel·lar", - "Common.Views.ReviewPopover.textClose": "Tancar", - "Common.Views.ReviewPopover.textEdit": "Acceptar", - "Common.Views.ReviewPopover.textMention": "+mention proporcionarà accés al document i enviarà un correu electrònic", + "Common.Views.ReviewChanges.txtReject": "Rebutja", + "Common.Views.ReviewChanges.txtRejectAll": "Rebutja tots els canvis", + "Common.Views.ReviewChanges.txtRejectChanges": "Rebutja els canvis", + "Common.Views.ReviewChanges.txtRejectCurrent": "Rebutja el canvi actual", + "Common.Views.ReviewChanges.txtSharing": "Ús compartit", + "Common.Views.ReviewChanges.txtSpelling": "Revisió ortogràfica", + "Common.Views.ReviewChanges.txtTurnon": "Control de canvis", + "Common.Views.ReviewChanges.txtView": "Mode de visualització", + "Common.Views.ReviewPopover.textAdd": "Afegeix", + "Common.Views.ReviewPopover.textAddReply": "Afegeix una resposta", + "Common.Views.ReviewPopover.textCancel": "Cancel·la", + "Common.Views.ReviewPopover.textClose": "Tanca", + "Common.Views.ReviewPopover.textEdit": "D'acord", + "Common.Views.ReviewPopover.textMention": "+mention donarà accés al document i enviarà un correu electrònic", "Common.Views.ReviewPopover.textMentionNotify": "+mention notificarà l'usuari per correu electrònic", - "Common.Views.ReviewPopover.textOpenAgain": "Obriu de nou", - "Common.Views.ReviewPopover.textReply": "Contestar", + "Common.Views.ReviewPopover.textOpenAgain": "Torna-ho a obrir", + "Common.Views.ReviewPopover.textReply": "Respon", "Common.Views.ReviewPopover.textResolve": "Resol", - "Common.Views.SaveAsDlg.textLoading": "Carregant", - "Common.Views.SaveAsDlg.textTitle": "Carpeta per desar-la", - "Common.Views.SelectFileDlg.textLoading": "Carregant", - "Common.Views.SelectFileDlg.textTitle": "Seleccionar Origen de Dades", + "Common.Views.SaveAsDlg.textLoading": "S'està carregant", + "Common.Views.SaveAsDlg.textTitle": "Carpeta per desar", + "Common.Views.SelectFileDlg.textLoading": "S'està carregant", + "Common.Views.SelectFileDlg.textTitle": "Selecciona l'origen de les dades", "Common.Views.SignDialog.textBold": "Negreta", "Common.Views.SignDialog.textCertificate": "Certificat", - "Common.Views.SignDialog.textChange": "Canviar", - "Common.Views.SignDialog.textInputName": "Posar nom de qui ho firma", - "Common.Views.SignDialog.textItalic": "Itàlica", - "Common.Views.SignDialog.textNameError": "El nom del signant no pot estar buit.", - "Common.Views.SignDialog.textPurpose": "Finalitat de signar aquest document", - "Common.Views.SignDialog.textSelect": "Seleccionar", - "Common.Views.SignDialog.textSelectImage": "Seleccionar Imatge", - "Common.Views.SignDialog.textSignature": "La firma es veu com", - "Common.Views.SignDialog.textTitle": "Firmar document", - "Common.Views.SignDialog.textUseImage": "o feu clic a \"Selecciona imatge\" per utilitzar una imatge com a signatura", + "Common.Views.SignDialog.textChange": "Canvia", + "Common.Views.SignDialog.textInputName": "Introdueix el nom del signant", + "Common.Views.SignDialog.textItalic": "Cursiva", + "Common.Views.SignDialog.textNameError": "El nom del signant no es pot quedar en blanc.", + "Common.Views.SignDialog.textPurpose": "Objectiu de la signatura d'aquest document", + "Common.Views.SignDialog.textSelect": "Selecciona", + "Common.Views.SignDialog.textSelectImage": "Selecciona una imatge", + "Common.Views.SignDialog.textSignature": "La signatura es veu així", + "Common.Views.SignDialog.textTitle": "Signa el document", + "Common.Views.SignDialog.textUseImage": "o clica a \"Selecciona imatge\" per utilitzar una imatge com a signatura", "Common.Views.SignDialog.textValid": "Vàlid des de %1 fins a %2", - "Common.Views.SignDialog.tipFontName": "Nom de Font", - "Common.Views.SignDialog.tipFontSize": "Mida de Font", + "Common.Views.SignDialog.tipFontName": "Nom del tipus de lletra", + "Common.Views.SignDialog.tipFontSize": "Mida del tipus de lletra", "Common.Views.SignSettingsDialog.textAllowComment": "Permet al signant afegir comentaris al diàleg de signatura", - "Common.Views.SignSettingsDialog.textInfo": "Informació de qui Firma", + "Common.Views.SignSettingsDialog.textInfo": "Informació del signant", "Common.Views.SignSettingsDialog.textInfoEmail": "Correu electrònic", "Common.Views.SignSettingsDialog.textInfoName": "Nom", - "Common.Views.SignSettingsDialog.textInfoTitle": "Títol de qui Firma", - "Common.Views.SignSettingsDialog.textInstructions": "Instruccions per a qui Firma", - "Common.Views.SignSettingsDialog.textShowDate": "Mostra la data de la signatura", - "Common.Views.SignSettingsDialog.textTitle": "Configuració de la Firma", - "Common.Views.SignSettingsDialog.txtEmpty": "Aquest camp és obligatori", + "Common.Views.SignSettingsDialog.textInfoTitle": "Títol del signant", + "Common.Views.SignSettingsDialog.textInstructions": "Instruccions per al signant", + "Common.Views.SignSettingsDialog.textShowDate": "Mostra la data de la signatura a la línia de signatura", + "Common.Views.SignSettingsDialog.textTitle": "Configuració de la signatura", + "Common.Views.SignSettingsDialog.txtEmpty": "Aquest camp és necessari", "Common.Views.SymbolTableDialog.textCharacter": "Caràcter", - "Common.Views.SymbolTableDialog.textCode": "Valor HEX Unicode", - "Common.Views.SymbolTableDialog.textCopyright": "Signatura de Propietat Intel·lectual", - "Common.Views.SymbolTableDialog.textDCQuote": "Tancar Doble Pressupost", - "Common.Views.SymbolTableDialog.textDOQuote": "Obertura de Cotització Doble", - "Common.Views.SymbolTableDialog.textEllipsis": "El·lipsi Horitzontal", - "Common.Views.SymbolTableDialog.textEmDash": "EM Dash", - "Common.Views.SymbolTableDialog.textEmSpace": "Em Espai", - "Common.Views.SymbolTableDialog.textEnDash": "En Dash", - "Common.Views.SymbolTableDialog.textEnSpace": "En Espai", - "Common.Views.SymbolTableDialog.textFont": "Font", - "Common.Views.SymbolTableDialog.textNBHyphen": "Guionet no trencador", + "Common.Views.SymbolTableDialog.textCode": "Valor Unicode HEX", + "Common.Views.SymbolTableDialog.textCopyright": "Símbol del copyright", + "Common.Views.SymbolTableDialog.textDCQuote": "Cometes dobles de tancament", + "Common.Views.SymbolTableDialog.textDOQuote": "Dobles cometes d'obertura", + "Common.Views.SymbolTableDialog.textEllipsis": "El·lipsi horitzontal", + "Common.Views.SymbolTableDialog.textEmDash": "Guió llarg", + "Common.Views.SymbolTableDialog.textEmSpace": "Espai llarg", + "Common.Views.SymbolTableDialog.textEnDash": "Guió curt", + "Common.Views.SymbolTableDialog.textEnSpace": "Espai curt", + "Common.Views.SymbolTableDialog.textFont": "Tipus de lletra", + "Common.Views.SymbolTableDialog.textNBHyphen": "Guió sense ruptura", "Common.Views.SymbolTableDialog.textNBSpace": "Espai sense pauses", - "Common.Views.SymbolTableDialog.textPilcrow": "Cartell Indicatiu", + "Common.Views.SymbolTableDialog.textPilcrow": "Signe de calderó", "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Espai llarg", - "Common.Views.SymbolTableDialog.textRange": "Rang", + "Common.Views.SymbolTableDialog.textRange": "Interval", "Common.Views.SymbolTableDialog.textRecent": "Símbols utilitzats recentment", - "Common.Views.SymbolTableDialog.textRegistered": "Registre Registrat", - "Common.Views.SymbolTableDialog.textSCQuote": "Tancar Simple Pressupost", - "Common.Views.SymbolTableDialog.textSection": "Signe de Secció", + "Common.Views.SymbolTableDialog.textRegistered": "Símbol de registrat", + "Common.Views.SymbolTableDialog.textSCQuote": "Cometes simples de tancament", + "Common.Views.SymbolTableDialog.textSection": "Signe de secció", "Common.Views.SymbolTableDialog.textShortcut": "Tecla de drecera", - "Common.Views.SymbolTableDialog.textSHyphen": "Guionet Suau", - "Common.Views.SymbolTableDialog.textSOQuote": "Obertura de la Cotització Única", - "Common.Views.SymbolTableDialog.textSpecial": "Caràcters Especials", + "Common.Views.SymbolTableDialog.textSHyphen": "Guionet virtual", + "Common.Views.SymbolTableDialog.textSOQuote": "Cometes simples d'obertura", + "Common.Views.SymbolTableDialog.textSpecial": "Caràcters especials", "Common.Views.SymbolTableDialog.textSymbols": "Símbols", "Common.Views.SymbolTableDialog.textTitle": "Símbol", - "Common.Views.SymbolTableDialog.textTradeMark": "Símbol de Marca Comercial", + "Common.Views.SymbolTableDialog.textTradeMark": "Símbol de marca comercial", "Common.Views.UserNameDialog.textDontShow": "No em tornis a preguntar", "Common.Views.UserNameDialog.textLabel": "Etiqueta:", "Common.Views.UserNameDialog.textLabelError": "L'etiqueta no pot estar en blanc.", "SSE.Controllers.DataTab.textColumns": "Columnes", "SSE.Controllers.DataTab.textEmptyUrl": "Heu d'especificar l'URL.", "SSE.Controllers.DataTab.textRows": "Files", - "SSE.Controllers.DataTab.textWizard": "Text en Columnes", + "SSE.Controllers.DataTab.textWizard": "Text en columnes", "SSE.Controllers.DataTab.txtDataValidation": "Validació de dades", - "SSE.Controllers.DataTab.txtExpand": "Ampliar", + "SSE.Controllers.DataTab.txtExpand": "Expandeix", "SSE.Controllers.DataTab.txtExpandRemDuplicates": "Les dades al costat de la selecció no se suprimiran. Voleu ampliar la selecció per incloure les dades adjacents o continuar només amb les cel·les actualment seleccionades?", - "SSE.Controllers.DataTab.txtExtendDataValidation": "La selecció conté algunes cel·les sense la configuració de validació de dades.
Vols ampliar la validació de dades a aquestes cel·les?", - "SSE.Controllers.DataTab.txtImportWizard": "Assistent per Importar Text", - "SSE.Controllers.DataTab.txtRemDuplicates": "Eliminar els Duplicats", - "SSE.Controllers.DataTab.txtRemoveDataValidation": "La selecció conté més d'un tipus de validació.
Esborrar la configuració actual i continua?", - "SSE.Controllers.DataTab.txtRemSelected": "Eliminar les opcions seleccionades", - "SSE.Controllers.DataTab.txtUrlTitle": "Enganxeu una URL de dades", + "SSE.Controllers.DataTab.txtExtendDataValidation": "La selecció conté algunes cel·les sense la configuració de validació de dades.
Voleu ampliar la validació de dades a aquestes cel·les?", + "SSE.Controllers.DataTab.txtImportWizard": "Auxiliar d'importació de text", + "SSE.Controllers.DataTab.txtRemDuplicates": "Suprimeix els duplicats", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "La selecció conté més d'un tipus de validació.
Voleu esborrar la configuració actual i continuar?", + "SSE.Controllers.DataTab.txtRemSelected": "Suprimeix a la selecció", + "SSE.Controllers.DataTab.txtUrlTitle": "Enganxa un URL de dades", "SSE.Controllers.DocumentHolder.alignmentText": "Alineació", - "SSE.Controllers.DocumentHolder.centerText": "Centre", - "SSE.Controllers.DocumentHolder.deleteColumnText": "Suprimeix la Columna", - "SSE.Controllers.DocumentHolder.deleteRowText": "Suprimeix fila", - "SSE.Controllers.DocumentHolder.deleteText": "Esborra", + "SSE.Controllers.DocumentHolder.centerText": "Centra", + "SSE.Controllers.DocumentHolder.deleteColumnText": "Suprimeix la columna", + "SSE.Controllers.DocumentHolder.deleteRowText": "Suprimeix la fila", + "SSE.Controllers.DocumentHolder.deleteText": "Suprimeix", "SSE.Controllers.DocumentHolder.errorInvalidLink": "La referència d'enllaç no existeix. Corregiu l'enllaç o suprimiu-lo.", "SSE.Controllers.DocumentHolder.guestText": "Convidat", - "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Columna Esquerra", - "SSE.Controllers.DocumentHolder.insertColumnRightText": "Columna Dreta", - "SSE.Controllers.DocumentHolder.insertRowAboveText": "Fila de Dalt", - "SSE.Controllers.DocumentHolder.insertRowBelowText": "Fila de Baix", - "SSE.Controllers.DocumentHolder.insertText": "Insertar", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Columna a l'esquerra", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Columna a la dreta", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Fila a dalt", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Fila a baix", + "SSE.Controllers.DocumentHolder.insertText": "Insereix", "SSE.Controllers.DocumentHolder.leftText": "Esquerra", - "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Avis", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Advertiment", "SSE.Controllers.DocumentHolder.rightText": "Dreta", "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "Opcions de correcció automàtica", "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Amplada de la columna {0} símbols ({1} píxels)", - "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Alçada de fila {0} punts ({1} píxels)", - "SSE.Controllers.DocumentHolder.textCtrlClick": "Feu clic a l'enllaç per obrir-lo o feu clic i manteniu premut el botó del ratolí per seleccionar la cel·la.", - "SSE.Controllers.DocumentHolder.textInsertLeft": "Inserir a l'esquerra", - "SSE.Controllers.DocumentHolder.textInsertTop": "Inserir A dalt", - "SSE.Controllers.DocumentHolder.textPasteSpecial": "Pegar especial", - "SSE.Controllers.DocumentHolder.textStopExpand": "Aturar l'expansió automàtica de les taules", - "SSE.Controllers.DocumentHolder.textSym": "sym", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Alçada de la fila {0} punts ({1} píxels)", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Clica a l'enllaç per obrir-lo o clica i mantingues premut el botó del ratolí per seleccionar la cel·la.", + "SSE.Controllers.DocumentHolder.textInsertLeft": "Insereix a l'esquerra", + "SSE.Controllers.DocumentHolder.textInsertTop": "Insereix a la part superior", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Enganxada amb opcions", + "SSE.Controllers.DocumentHolder.textStopExpand": "Atura l'expansió automàtica de les taules", + "SSE.Controllers.DocumentHolder.textSym": "simbòlic", "SSE.Controllers.DocumentHolder.tipIsLocked": "Un altre usuari està editant aquest element.", "SSE.Controllers.DocumentHolder.txtAboveAve": "Per sobre de la mitja", - "SSE.Controllers.DocumentHolder.txtAddBottom": "Afegir línia inferior", - "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Afegir barra de fracció", - "SSE.Controllers.DocumentHolder.txtAddHor": "Afegir línia horitzontal", - "SSE.Controllers.DocumentHolder.txtAddLB": "Afegir línia inferior esquerra", - "SSE.Controllers.DocumentHolder.txtAddLeft": "Afegiu vora esquerra", - "SSE.Controllers.DocumentHolder.txtAddLT": "Afegir línia superior esquerra", - "SSE.Controllers.DocumentHolder.txtAddRight": "Afegir vora dreta", - "SSE.Controllers.DocumentHolder.txtAddTop": "Afegir vora superior", - "SSE.Controllers.DocumentHolder.txtAddVer": "Afegir línia vertical", - "SSE.Controllers.DocumentHolder.txtAlignToChar": "Alinear al caràcter", + "SSE.Controllers.DocumentHolder.txtAddBottom": "Afegeix línia inferior", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Afegeix una barra de fracció", + "SSE.Controllers.DocumentHolder.txtAddHor": "Afegeix una línia horitzontal", + "SSE.Controllers.DocumentHolder.txtAddLB": "Afegeix una línia inferior esquerra", + "SSE.Controllers.DocumentHolder.txtAddLeft": "Afegeix una vora a l'esquerra", + "SSE.Controllers.DocumentHolder.txtAddLT": "Afegeix una línia superior esquerra", + "SSE.Controllers.DocumentHolder.txtAddRight": "Afegeix una vora a la dreta", + "SSE.Controllers.DocumentHolder.txtAddTop": "Afegeix vora superior", + "SSE.Controllers.DocumentHolder.txtAddVer": "Afegeix línia vertical", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "Alinea al caràcter", "SSE.Controllers.DocumentHolder.txtAll": "(Tots)", "SSE.Controllers.DocumentHolder.txtAnd": "i", "SSE.Controllers.DocumentHolder.txtBegins": "Comença amb", "SSE.Controllers.DocumentHolder.txtBelowAve": "Per sota de la mitja", "SSE.Controllers.DocumentHolder.txtBlanks": "(En blanc)", - "SSE.Controllers.DocumentHolder.txtBorderProps": "Propietats Vora", - "SSE.Controllers.DocumentHolder.txtBottom": "Inferior", + "SSE.Controllers.DocumentHolder.txtBorderProps": "Propietats de la vora", + "SSE.Controllers.DocumentHolder.txtBottom": "Part inferior", "SSE.Controllers.DocumentHolder.txtColumn": "Columna", - "SSE.Controllers.DocumentHolder.txtColumnAlign": "Alineació de Columnes", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "Alineació de la columna", "SSE.Controllers.DocumentHolder.txtContains": "Conté", - "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Disminuir la mida de l’argument", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Redueix la mida de l'argument", "SSE.Controllers.DocumentHolder.txtDeleteArg": "Suprimeix l'argument", - "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Suprimeix la pausa manual", - "SSE.Controllers.DocumentHolder.txtDeleteChars": "Esborrar els caràcters adjunts", - "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Esborrar els caràcters i els separadors adjunts", - "SSE.Controllers.DocumentHolder.txtDeleteEq": "Suprimeix l’equació", + "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Suprimeix el salt manual", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "Suprimeix els caràcters adjunts", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Suprimeix els caràcters i els separadors adjunts", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "Suprimir l’equació", "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Suprimeix el gràfic", - "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Elimina el radical", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Suprimeix el radical", "SSE.Controllers.DocumentHolder.txtEnds": "Acaba amb", - "SSE.Controllers.DocumentHolder.txtEquals": "És igual", + "SSE.Controllers.DocumentHolder.txtEquals": "És igual a", "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Igual al color de la cel·la", "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Igual al color del tipus de lletra", - "SSE.Controllers.DocumentHolder.txtExpand": "Ampliar i ordenar", - "SSE.Controllers.DocumentHolder.txtExpandSort": "Les dades al costat de la selecció no es classificaran. Voleu ampliar la selecció per incloure les dades adjacents o continuar ordenant només les cel·les actualment seleccionades?", - "SSE.Controllers.DocumentHolder.txtFilterBottom": "Inferior", + "SSE.Controllers.DocumentHolder.txtExpand": "Amplia i ordena", + "SSE.Controllers.DocumentHolder.txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. ¿Voleu ampliar la selecció per incloure les dades adjacents o bé voleu continuar i ordenar només les cel·les seleccionades?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Part inferior", "SSE.Controllers.DocumentHolder.txtFilterTop": "Superior", "SSE.Controllers.DocumentHolder.txtFractionLinear": "Canvia a fracció lineal", - "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Canviar a la fracció inclinada", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Canvia a fracció inclinada", "SSE.Controllers.DocumentHolder.txtFractionStacked": "Canvia a fracció apilada", "SSE.Controllers.DocumentHolder.txtGreater": "Més gran que", - "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Major o Igual a", - "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Carrega el text", - "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Línia sota el tex", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Més gran o igual a", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Caràcter sobre el text", + "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Caràcter sota el text", "SSE.Controllers.DocumentHolder.txtHeight": "Alçada", - "SSE.Controllers.DocumentHolder.txtHideBottom": "Amagar vora del botó", - "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Amagar límit del botó", - "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Amagar el claudàtor del tancament", - "SSE.Controllers.DocumentHolder.txtHideDegree": "Amagar el grau", - "SSE.Controllers.DocumentHolder.txtHideHor": "Amagar línia horitzontal", - "SSE.Controllers.DocumentHolder.txtHideLB": "Amagar la línia del botó inferior esquerra", - "SSE.Controllers.DocumentHolder.txtHideLeft": "Amagar la vora esquerra", - "SSE.Controllers.DocumentHolder.txtHideLT": "Amagar la línia superior esquerra", - "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Amagar el claudàtor d’obertura", - "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Amagar el marcador de lloc", - "SSE.Controllers.DocumentHolder.txtHideRight": "Amagar la vora dreta", - "SSE.Controllers.DocumentHolder.txtHideTop": "Amagar la vora superior", - "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Amagar el límit superior", - "SSE.Controllers.DocumentHolder.txtHideVer": "Amagar línia vertical", - "SSE.Controllers.DocumentHolder.txtImportWizard": "Assistent per Importar Text", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Amaga la vora inferior", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Amaga el límit inferior", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Amaga el claudàtor de tancament", + "SSE.Controllers.DocumentHolder.txtHideDegree": "Amaga el grau", + "SSE.Controllers.DocumentHolder.txtHideHor": "Amaga la línia horitzontal", + "SSE.Controllers.DocumentHolder.txtHideLB": "Amaga la línia inferior esquerra", + "SSE.Controllers.DocumentHolder.txtHideLeft": "Amaga la vora esquerra", + "SSE.Controllers.DocumentHolder.txtHideLT": "Amaga la línia superior esquerra", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Amaga el claudàtor d’obertura", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Amaga el marcador de posició", + "SSE.Controllers.DocumentHolder.txtHideRight": "Amaga la vora dreta", + "SSE.Controllers.DocumentHolder.txtHideTop": "Amaga la vora superior", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Amaga el límit superior", + "SSE.Controllers.DocumentHolder.txtHideVer": "Amaga la línia vertical", + "SSE.Controllers.DocumentHolder.txtImportWizard": "Auxiliar d'importació de text", "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Augmenta la mida de l'argument", - "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Inseriu argument després", - "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Inseriu argument abans", - "SSE.Controllers.DocumentHolder.txtInsertBreak": "Inserir falca manual", - "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Inserir equació després de", - "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Inserir equació abans de", - "SSE.Controllers.DocumentHolder.txtItems": "Objectes", - "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Mantenir sols text", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Insereix un argument després", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Insereix un argument abans", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "Insereix un salt manual", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Insereix una equació després de", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Insereix una equació abans de", + "SSE.Controllers.DocumentHolder.txtItems": "Elements", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Conserva només el text", "SSE.Controllers.DocumentHolder.txtLess": "Menor que", "SSE.Controllers.DocumentHolder.txtLessEquals": "Menor o igual que", - "SSE.Controllers.DocumentHolder.txtLimitChange": "Canviar els límits de la ubicació", - "SSE.Controllers.DocumentHolder.txtLimitOver": "Límit damunt del text", + "SSE.Controllers.DocumentHolder.txtLimitChange": "Canvia els límits de la ubicació", + "SSE.Controllers.DocumentHolder.txtLimitOver": "Límit sobre el text", "SSE.Controllers.DocumentHolder.txtLimitUnder": "Límit sota el text", - "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Relaciona els claudàtors amb l'alçada de l'argument", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Assigna els claudàtors a l'alçada de l'argument", "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Alineació de la matriu", - "SSE.Controllers.DocumentHolder.txtNoChoices": "No hi ha opcions per omplir la cel·la.
Només es poden seleccionar els valors de text de la columna per ser substituïts.", - "SSE.Controllers.DocumentHolder.txtNotBegins": "No comença", + "SSE.Controllers.DocumentHolder.txtNoChoices": "No hi ha opcions per omplir la cel·la.
Només es poden seleccionar valors de text de la columna per substituir-los.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "No comença per", "SSE.Controllers.DocumentHolder.txtNotContains": "No conté", "SSE.Controllers.DocumentHolder.txtNotEnds": "No acaba amb", - "SSE.Controllers.DocumentHolder.txtNotEquals": "No igual a", + "SSE.Controllers.DocumentHolder.txtNotEquals": "No és igual a", "SSE.Controllers.DocumentHolder.txtOr": "o", "SSE.Controllers.DocumentHolder.txtOverbar": "Barra sobre el text", - "SSE.Controllers.DocumentHolder.txtPaste": "Pegar", + "SSE.Controllers.DocumentHolder.txtPaste": "Enganxar", "SSE.Controllers.DocumentHolder.txtPasteBorders": "Fórmula sense vores", "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Fórmula + amplada de la columna", - "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Formatació de la Destinació", - "SSE.Controllers.DocumentHolder.txtPasteFormat": "Pegar sols format", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Format de destinació", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "Enganxa només el format", "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Fórmula + format de número", - "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Pegar sols formula", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Enganxa només la fórmula", "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Fórmula + tot el format", - "SSE.Controllers.DocumentHolder.txtPasteLink": "Pegar vincle", - "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Imatge Vinculada", + "SSE.Controllers.DocumentHolder.txtPasteLink": "Enganxa l'enllaç", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Imatge enllaçada", "SSE.Controllers.DocumentHolder.txtPasteMerge": "Combinar el format condicional", "SSE.Controllers.DocumentHolder.txtPastePicture": "Imatge", - "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Format de font", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Format d'origen", "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transposa", "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Valor + tot el format", "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Valor + format número", - "SSE.Controllers.DocumentHolder.txtPasteValues": "Pegar sols valor", - "SSE.Controllers.DocumentHolder.txtPercent": "percentatge", - "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Torna a reutilitzar la autoexpansió de la taula", - "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Treure la barra de fracció", - "SSE.Controllers.DocumentHolder.txtRemLimit": "Esborrar límit", - "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Treure caràcter d'accent", - "SSE.Controllers.DocumentHolder.txtRemoveBar": "Esborrar barra", - "SSE.Controllers.DocumentHolder.txtRemScripts": "Esborrar text", - "SSE.Controllers.DocumentHolder.txtRemSubscript": "Esborrar subíndexs", - "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Esborrar superíndexs", - "SSE.Controllers.DocumentHolder.txtRowHeight": "Alçada de Fila", - "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Índexs després de text", - "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Índexs abans de text", + "SSE.Controllers.DocumentHolder.txtPasteValues": "Enganxa només el valor", + "SSE.Controllers.DocumentHolder.txtPercent": "Per cent", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Refés l'expansió automàtica de la taula", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Suprimeix la barra de fracció", + "SSE.Controllers.DocumentHolder.txtRemLimit": "Suprimeix el límit", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Suprimeix el caràcter d'accent", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "Suprimeix la barra", + "SSE.Controllers.DocumentHolder.txtRemScripts": "Suprimeix els scripts", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "Suprimeix el subíndex", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Suprimir el superíndex", + "SSE.Controllers.DocumentHolder.txtRowHeight": "Alçada de fila", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Scripts després de text", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Scripts abans de text", "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Mostra el límit inferior", "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Mostra el claudàtor de tancament", - "SSE.Controllers.DocumentHolder.txtShowDegree": "Mostrar grau", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Mostra el grau", "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Mostra el claudàtor d’obertura", - "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Mostra el marcador de lloc", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Mostra el marcador de posició", "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Mostra el límit superior", "SSE.Controllers.DocumentHolder.txtSorting": "Ordenació", - "SSE.Controllers.DocumentHolder.txtSortSelected": "Ordenar els objectes seleccionats", - "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Estirar claudàtors", + "SSE.Controllers.DocumentHolder.txtSortSelected": "Ordena els objectes seleccionats", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Estira els claudàtors", "SSE.Controllers.DocumentHolder.txtTop": "Superior", - "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra sota text", - "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Desfer la expansió automàtica de la taula", - "SSE.Controllers.DocumentHolder.txtUseTextImport": "Utilitzeu l'assistent d'importació de text", + "SSE.Controllers.DocumentHolder.txtUnderbar": "Barra sota el text", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Desfés l'expansió automàtica de la taula", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Utilitza l'auxiliar d'importació de text", "SSE.Controllers.DocumentHolder.txtWidth": "Amplada", "SSE.Controllers.FormulaDialog.sCategoryAll": "Tot", "SSE.Controllers.FormulaDialog.sCategoryCube": "Cub", "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Base de dades", - "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Data i hora", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Hora i data", "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Enginyeria", - "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financer", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Finances", "SSE.Controllers.FormulaDialog.sCategoryInformation": "Informació", "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 darrers utilitzats", "SSE.Controllers.FormulaDialog.sCategoryLogical": "Lògic", - "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Busca i Referència", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Cerca i referències", "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Matemàtiques i trigonometria", "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Estadístiques", - "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Tex i dades", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Text i dades", "SSE.Controllers.LeftMenu.newDocumentTitle": "Full de càlcul sense nom", - "SSE.Controllers.LeftMenu.textByColumns": "Per Columnes", + "SSE.Controllers.LeftMenu.textByColumns": "Per columnes", "SSE.Controllers.LeftMenu.textByRows": "Per files", - "SSE.Controllers.LeftMenu.textFormulas": "Formules", - "SSE.Controllers.LeftMenu.textItemEntireCell": "Tot el contingut de la cel·la", - "SSE.Controllers.LeftMenu.textLookin": "Mirar a", + "SSE.Controllers.LeftMenu.textFormulas": "Fórmules", + "SSE.Controllers.LeftMenu.textItemEntireCell": "Contingut de tota la cel·la", + "SSE.Controllers.LeftMenu.textLookin": "Cerca", "SSE.Controllers.LeftMenu.textNoTextFound": "No s'han trobat les dades que heu cercat. Ajusteu les opcions de cerca.", - "SSE.Controllers.LeftMenu.textReplaceSkipped": "La substitució s’ha realitzat. Es van saltar {0} ocurrències.", - "SSE.Controllers.LeftMenu.textReplaceSuccess": "La recerca s’ha fet. Es van substituir les coincidències: {0}", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "S'ha realitzat la substitució. S'han omès {0} ocurrències.", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "S'ha fet la cerca. S'han substituït les coincidències: {0}", "SSE.Controllers.LeftMenu.textSearch": "Cerca", "SSE.Controllers.LeftMenu.textSheet": "Full", "SSE.Controllers.LeftMenu.textValues": "Valors", - "SSE.Controllers.LeftMenu.textWarning": "Avis", + "SSE.Controllers.LeftMenu.textWarning": "Advertiment", "SSE.Controllers.LeftMenu.textWithin": "Dins de", "SSE.Controllers.LeftMenu.textWorkbook": "Llibre de treball", "SSE.Controllers.LeftMenu.txtUntitled": "Sense títol", - "SSE.Controllers.LeftMenu.warnDownloadAs": "Si continueu guardant en aquest format, es perdran totes les funcions, excepte el text.
Esteu segur que voleu continuar?", - "SSE.Controllers.Main.confirmMoveCellRange": "El rang de cel·les de destinació pot contenir dades. Continuar l'operació?", + "SSE.Controllers.LeftMenu.warnDownloadAs": "Si continueu desant en aquest format, es perdran totes les característiques, excepte el text.
Segur que voleu continuar?", + "SSE.Controllers.Main.confirmMoveCellRange": "L'interval de cel·les de destinació pot contenir dades. Voleu continuar l'operació?", "SSE.Controllers.Main.confirmPutMergeRange": "Les dades de l’origen contenien cel·les fusionades.
No s’havien fusionat abans d’enganxar-les a la taula.", "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Les fórmules de la fila de capçalera s'eliminaran i es convertiran en text estàtic.
Voleu continuar?", - "SSE.Controllers.Main.convertationTimeoutText": "Conversió fora de temps", - "SSE.Controllers.Main.criticalErrorExtText": "Prem \"Acceptar\" per tornar al document.", + "SSE.Controllers.Main.convertationTimeoutText": "S'ha superat el temps de conversió.", + "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.downloadErrorText": "S'ha produït un error en la baixada", "SSE.Controllers.Main.downloadTextText": "S'està baixant el full de càlcul ...", - "SSE.Controllers.Main.downloadTitleText": "Descarregant el full de càlcul", + "SSE.Controllers.Main.downloadTitleText": "S'està baixant el full de càlcul", "SSE.Controllers.Main.errNoDuplicates": "No s'han trobat valors duplicats.", - "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.errorAccessDeny": "No teniu permisos per realitzar aquesta acció.
Contacteu amb el vostre administrador del servidor de documents.", + "SSE.Controllers.Main.errorArgsRange": "S'ha produït un error en la la fórmula que s'ha introduït.
S'utilitza un interval d'arguments que no és correcte.", + "SSE.Controllers.Main.errorAutoFilterChange": "No es permet l'operació, ja que s'intenta canviar les cel·les d'una taula del full de càlcul.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "No s'ha pogut fer l'operació per a les cel·les seleccionades, ja que no es pot moure una part de la taula.
Seleccioneu un altre interval de dades perquè es canviï tota la taula i torneu-ho a provar.", "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.errorAutoFilterHiddenRange": "L’operació no es pot realitzar perquè l’àrea conté cel·les filtrades.
Desactiveu els filtres i torneu-ho a provar.", + "SSE.Controllers.Main.errorBadImageUrl": "L'URL de la imatge no és correcta", "SSE.Controllers.Main.errorCannotUngroup": "No es pot desagrupar. Per iniciar un esquema, seleccioneu les files o columnes de detall i agrupeu-les.", "SSE.Controllers.Main.errorChangeArray": "No podeu canviar part d'una matriu.", - "SSE.Controllers.Main.errorChangeFilteredRange": "Això canviarà un interval filtrat al vostre full de càlcul.
Per completar aquesta tasca, si us plau, elimineu els Filtres Automàtics.", - "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.errorChangeFilteredRange": "Això canviarà un interval filtrat al full de càlcul.
Per completar aquesta tasca, suprimiu els filtres automàtics.", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "S'ha perdut la connexió amb el servidor. Ara no es pot editar el document.", + "SSE.Controllers.Main.errorConnectToServer": "No s'ha pogut desar el document. Comproveu la configuració de la connexió o contacteu amb el vostre administrador.
Quan cliqueu el botó \"D'acord\", se us demanarà que descarregueu el document.", + "SSE.Controllers.Main.errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
Seleccioneu un interval únic i torneu-ho a provar.", + "SSE.Controllers.Main.errorCountArg": "S'ha produït un error en la la fórmula que s'ha introduït.
S'utilitza un nombre d'arguments que no és correcte.", + "SSE.Controllers.Main.errorCountArgExceed": "S'ha produït un error en la fórmula que s'ha introduït.
S'ha superat el nombre d'arguments.", + "SSE.Controllers.Main.errorCreateDefName": "No es poden editar els intervals de nom existents i no s'en poden crear de nous
en aquest moment perquè algú els ha obert.", + "SSE.Controllers.Main.errorDatabaseConnection": "Error extern.
Error de connexió amb la base de dades. Contacteu amb l'assistència tècnica 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.errorDataValidate": "El valor que heu introduït no és vàlid.
Un usuari té valors restringits que es poden introduir en aquesta cel·la.", - "SSE.Controllers.Main.errorDefaultMessage": "Error codi:%1 ", - "SSE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error durant el treball amb el document.
Utilitzeu l'opció \"Baixa com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", - "SSE.Controllers.Main.errorEditingSaveas": "S'ha produït un error durant el treball amb el document.
Utilitzeu l'opció \"Desa com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", - "SSE.Controllers.Main.errorEditView": "La vista de full existent no es pot editar i les noves no es poden crear en aquest moment, ja que s’estan editant algunes d’elles.", - "SSE.Controllers.Main.errorEmailClient": "No s'ha pogut trobar cap client de correu electrònic", + "SSE.Controllers.Main.errorDataRange": "L'interval de dades no és correcte.", + "SSE.Controllers.Main.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.", + "SSE.Controllers.Main.errorDefaultMessage": "Codi d'error:%1", + "SSE.Controllers.Main.errorEditingDownloadas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Baixa com a ...\" per desar la còpia de seguretat del fitxer al disc dur del vostre ordinador.", + "SSE.Controllers.Main.errorEditingSaveas": "S'ha produït un error mentre es treballava amb el document.
Utilitzeu l'opció \"Desar com a ...\" per desar la còpia de seguretat del fitxer al disc dur de l’ordinador.", + "SSE.Controllers.Main.errorEditView": "La visualització del full existent no es pot editar i no es poden crear de noves en aquest moment, ja que s’estan editant algunes d’elles.", + "SSE.Controllers.Main.errorEmailClient": "No s'ha trobat cap client de correu electrònic", "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.errorFileRequest": "Error extern.
Error de sol·licitud de fitxer. Contacteu amb l'assistència tècnica en cas que l'error continuï.", + "SSE.Controllers.Main.errorFileSizeExceed": "La mida del fitxer supera el límit establert pel vostre servidor. Contacteu amb el vostre administrador del servidor de documents per obtenir més informació.", + "SSE.Controllers.Main.errorFileVKey": "Error extern.
La clau de seguretat no és correcta. Contacteu amb l'assistència tècnica en cas que l'error continuï.", + "SSE.Controllers.Main.errorFillRange": "No s'ha pogut omplir l'interval de cel·les seleccionat.
Totes les cel·les combinades han de tenir la mateixa mida.", "SSE.Controllers.Main.errorForceSave": "S'ha produït un error en desar el fitxer. Utilitzeu l'opció \"Baixa com a\" per desar el fitxer al disc dur de l’ordinador o torneu-ho a provar més endavant.", - "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.errorFTChangeTableRangeError": "No es pot completar l'operació per a l'interval de cel·les seleccionat.
Seleccioneu un interval de manera que la primera fila de taula estigués a la mateixa fila
i la taula resultant es superposés a l'actual.", - "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "No es pot completar l'operació per al rang de cel·les seleccionat.
Seleccioneu un rang que no inclogui altres taules.", - "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.errorLabledColumnsPivot": "Per crear una taula dinàmica, heu d'utilitzar dades organitzades com a llista amb columnes amb etiquetes.", + "SSE.Controllers.Main.errorFormulaName": "S'ha produït un error en la fórmula que s'ha introduït.
S'utilitza un nom de fórmula que no és correcte.", + "SSE.Controllers.Main.errorFormulaParsing": "Error intern en 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 torneu-ho a provar.", + "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 estan 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 torneu-ho a provar.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "No es pot completar l'operació per a l'interval de cel·les seleccionat.
Seleccioneu un interval de manera que la primera fila de taula estigui a la mateixa fila
i la taula resultant es superposi a l'actual.", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "No es pot completar l'operació per a l'interval de cel·les seleccionat.
Seleccioneu un interval que no inclogui altres taules.", + "SSE.Controllers.Main.errorInvalidRef": "Introdueix un nom correcte per a la selecció o una referència vàlida a la qual accedir.", + "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de claus desconegut", + "SSE.Controllers.Main.errorKeyExpire": "El descriptor de claus ha caducat", + "SSE.Controllers.Main.errorLabledColumnsPivot": "Per crear una taula dinàmica, utilitzeu les dades que s’organitzen com una llista amb columnes etiquetades.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "La referència per a la ubicació o l'interval de dades no és vàlida.", - "SSE.Controllers.Main.errorLockedAll": "L'operació no s'ha pogut fer ja que un altre usuari ha bloquejat el full.", - "SSE.Controllers.Main.errorLockedCellPivot": "No podeu canviar les dades d'una taula de pivot.", - "SSE.Controllers.Main.errorLockedWorksheetRename": "De moment no es pot canviar el nom del full ja que el torna a anomenar un altre usuari", + "SSE.Controllers.Main.errorLockedAll": "Aquesta operació no es pot fer perquè un altre usuari ha bloquejat el full.", + "SSE.Controllers.Main.errorLockedCellPivot": "No podeu canviar les dades d'una taula dinàmica", + "SSE.Controllers.Main.errorLockedWorksheetRename": "En aquest moment no es pot canviar el nom del full de càlcul, perquè ja ho fa un altre usuari", "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.errorMoveSlicerError": "Els desplegables de taula no es poden copiar d’un quadern de treball a un altre.
Proveu de nou seleccionant tota la taula i els desplegables.", - "SSE.Controllers.Main.errorMultiCellFormula": "Les fórmules de matrius multicel·lulars no estan permeses a les taules.", - "SSE.Controllers.Main.errorNoDataToParse": "No s'ha seleccionat cap dada per analitzar-la.", - "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.errorMoveSlicerError": "Els afinadors de taula no es poden copiar d’un llibre de càlcul a un altre.
Torneu-ho a provar seleccionant tota la taula i els desplegables.", + "SSE.Controllers.Main.errorMultiCellFormula": "No es permeten fórmules de matriu de múltiples cel·les a les taules.", + "SSE.Controllers.Main.errorNoDataToParse": "No s'han seleccionat dades per analitzar.", + "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 fórmula s'ha suprimit.", "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.errorPasteMultiSelect": "Aquesta acció no es pot fer en una selecció de rang múltiple.
Selecciona un interval únic i torna-ho a provar.", - "SSE.Controllers.Main.errorPasteSlicerError": "Les segmentacions de taules no es poden copiar d’un llibre a un altre.", + "SSE.Controllers.Main.errorPasteMaxRange": "L’àrea de còpia i enganxa no coincideix.
Seleccioneu una àrea amb la mateixa mida o cliqueu a la primera cel·la d’una fila per enganxar les cel·les copiades.", + "SSE.Controllers.Main.errorPasteMultiSelect": "Aquesta acció no es pot fer en una selecció de diversos intervals.
Seleccioneu un sol interval i torneu-ho a provar.", + "SSE.Controllers.Main.errorPasteSlicerError": "Els afinadors de la taula no es poden copiar d’un llibre a un altre.", "SSE.Controllers.Main.errorPivotGroup": "No es pot agrupar aquesta selecció.", - "SSE.Controllers.Main.errorPivotOverlap": "Un informe de la taula de pivot no pot sobreposar-se a una taula.", - "SSE.Controllers.Main.errorPivotWithoutUnderlying": "L'informe Taula dinàmica s'ha desat sense les dades subjacents.
Utilitzeu el botó «Refresca» per actualitzar l'informe.", - "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.errorPivotOverlap": "Un informe de la taula de pivot no es pot superposar a una taula.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "L'informe de la taula dinàmica s'ha desat sense les dades subjacents.
Utilitzeu el botó «Refresca» per actualitzar l'informe.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "No és possible imprimir més de 1500 pàgines alhora a la versió actual del programa.
Aquesta restricció s'eliminarà a les properes versions.", + "SSE.Controllers.Main.errorProcessSaveResult": "No s'ha pogut desar", "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.errorSessionIdle": "Fa temps que no s'obre el document. Torneu a carregar la pàgina.", "SSE.Controllers.Main.errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", "SSE.Controllers.Main.errorSetPassword": "No s'ha pogut establir la contrasenya.", - "SSE.Controllers.Main.errorSingleColumnOrRowError": "La referència d'ubicació no és vàlida perquè les cel·les no estan totes a la mateixa columna o fila.
Seleccioneu les cel·les que estiguin totes en una sola columna o fila.", - "SSE.Controllers.Main.errorStockChart": "Ordre de fila incorrecte. Per crear un gràfic de valors, col·loqueu les dades del full en l’ordre següent:
preu d’obertura, preu màxim, preu mínim, preu de tancament.", - "SSE.Controllers.Main.errorToken": "El testimoni de seguretat del document no està format correctament.
Contacteu l'administrador del servidor de documents.", - "SSE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb l'administrador del Document Server.", - "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.errorSingleColumnOrRowError": "La referència d'ubicació no és vàlida perquè les cel·les són totes a la mateixa columna o fila.
Seleccioneu les cel·les que es trobin totes en una sola columna o fila.", + "SSE.Controllers.Main.errorStockChart": "L'ordre de fila no és correcte. 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 s'ha format correctament.
Contacteu amb el vostre administrador del servidor de documents.", + "SSE.Controllers.Main.errorTokenExpire": "El testimoni de seguretat del document ha caducat.
Contacteu amb el vostre administrador del servidor de documents.", + "SSE.Controllers.Main.errorUnexpectedGuid": "Error extern.
GUID inesperat. Contacteu amb l'assistència tècnica en cas que l'error continuï.", + "SSE.Controllers.Main.errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, torneu 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": "Es perd la connexió. Encara podeu visualitzar el document,
però no podreu descarregar-lo ni imprimir-lo fins que no es restableixi la connexió i es torni a carregar la pàgina.", + "SSE.Controllers.Main.errorUsersExceed": "S'ha superat el nombre d’usuaris permès pel vostre pla", + "SSE.Controllers.Main.errorViewerDisconnect": "S'ha perdut la connexió. Encara podeu visualitzar el document,
però no podreu descarregar-lo ni imprimir-lo fins que no es restableixi la connexió i es torni a carregar la pàgina.", "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.errRemDuplicates": "Duplica els valors trobats i suprimits: {0}, resten valors únics: {1}.", - "SSE.Controllers.Main.leavePageText": "Heu fet canvis no guardats en aquest full de càlcul. Feu clic a \"Continua en aquesta pàgina\" i \"Desa\" per desar-les. Feu clic a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", - "SSE.Controllers.Main.leavePageTextOnClose": "Es perdran tots els canvis no desats en aquest full de càlcul.
Feu clic a «Cancel·la» i després a «Desa» per desar-los. Feu clic a \"D'acord\" 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.loadingDocumentTitleText": "Carregant full de càlcul", - "SSE.Controllers.Main.notcriticalErrorTitle": "Avis", + "SSE.Controllers.Main.errorWrongOperator": "S'ha produït un error en la fórmula que s'ha introduït perquè utilitza un operador que no és correcte.
Corregiu l'error.", + "SSE.Controllers.Main.errRemDuplicates": "S'han trobat i suprimit valors duplicats: {0}, resten valors únics: {1}.", + "SSE.Controllers.Main.leavePageText": "Teniu canvis no desats en aquest full de càlcul. Cliqueu a \"Continua en aquesta pàgina\" i \"Desa\" per desar-les. Cliqueu a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "SSE.Controllers.Main.leavePageTextOnClose": "Es perdran tots els canvis no desats en aquest full de càlcul.
Cliqueu a «Cancel·la» i després a «Desa» per desar-los. Cliqueu a \"D'acord\" per descartar tots els canvis no desats.", + "SSE.Controllers.Main.loadFontsTextText": "S'estant carregant les dades...", + "SSE.Controllers.Main.loadFontsTitleText": "S'estan carregant les dades", + "SSE.Controllers.Main.loadFontTextText": "S'estant carregant les dades...", + "SSE.Controllers.Main.loadFontTitleText": "S'estan carregant les dades", + "SSE.Controllers.Main.loadImagesTextText": "S'estan carregant les imatges...", + "SSE.Controllers.Main.loadImagesTitleText": "S'estan carregant les imatges", + "SSE.Controllers.Main.loadImageTextText": "S'està carregant la imatge...", + "SSE.Controllers.Main.loadImageTitleText": "S'està carregant la imatge", + "SSE.Controllers.Main.loadingDocumentTitleText": "S'està carregant full de càlcul", + "SSE.Controllers.Main.notcriticalErrorTitle": "Advertiment", "SSE.Controllers.Main.openErrorText": "S'ha produït un error en obrir el fitxer.", - "SSE.Controllers.Main.openTextText": "Obertura full de càlcul...", - "SSE.Controllers.Main.openTitleText": "Obertura Full de Càlcul", + "SSE.Controllers.Main.openTextText": "S'està obrint el full de càlcul...", + "SSE.Controllers.Main.openTitleText": "S'està obrint el full de càlcul", "SSE.Controllers.Main.pastInMergeAreaError": "No es pot canviar part d’una cel·la fusionada", - "SSE.Controllers.Main.printTextText": "Imprimint full de càlcul", - "SSE.Controllers.Main.printTitleText": "Imprimint Full de Càlcul", - "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.printTextText": "S'està imprimint el full de càlcul...", + "SSE.Controllers.Main.printTitleText": "S'està imprimint el full de càlcul", + "SSE.Controllers.Main.reloadButtonText": "Recarrega la pàgina", + "SSE.Controllers.Main.requestEditFailedMessageText": "Algú té obert ara aquest document. Intenteu-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.saveErrorTextDesktop": "Aquest fitxer no es pot desar o crear.
Les raons possibles són:
1. El fitxer és de només lectura.
2. El fitxer està sent editat per altres usuaris.
3. El disc està ple o corromput.", - "SSE.Controllers.Main.savePreparingText": "Preparant per guardar", - "SSE.Controllers.Main.savePreparingTitle": "Preparant per guardar. Si us plau, esperi", - "SSE.Controllers.Main.saveTextText": "Desant el full de càlcul...", - "SSE.Controllers.Main.saveTitleText": "Desant el Full de Càlcul", + "SSE.Controllers.Main.saveErrorTextDesktop": "Aquest fitxer no es pot desar o crear.
Les possibles raons són:
1. El fitxer és només de lectura.
2. El fitxer és en aquests moments ediat per altres usuaris.
3. El disc és ple o s'ha fet malbé.", + "SSE.Controllers.Main.savePreparingText": "S'està preparant per desar", + "SSE.Controllers.Main.savePreparingTitle": "S'està preparant per desar. Espereu...", + "SSE.Controllers.Main.saveTextText": "S'està desant el full de càlcul...", + "SSE.Controllers.Main.saveTitleText": "S'està desant el full de càlcul", "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.textAnonymous": "Anònim", - "SSE.Controllers.Main.textBuyNow": "Visita el Lloc Web", - "SSE.Controllers.Main.textClose": "Tancar", - "SSE.Controllers.Main.textCloseTip": "Feu clic per tancar", + "SSE.Controllers.Main.textBuyNow": "Visita el lloc web", + "SSE.Controllers.Main.textClose": "Tanca", + "SSE.Controllers.Main.textCloseTip": "Clica per tancar el consell", "SSE.Controllers.Main.textConfirm": "Confirmació", - "SSE.Controllers.Main.textContactUs": "Contacte 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.textContactUs": "Contacta amb vendes", + "SSE.Controllers.Main.textCustomLoader": "Tingueu en compte que, segons els termes de la llicència, no teniu permís per canviar el carregador.
Consulteu el nostre departament de vendes per obtenir un pressupost.", "SSE.Controllers.Main.textGuest": "Convidat", - "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.textLongName": "Introduïu un nom de menys de 128 caràcters.", + "SSE.Controllers.Main.textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar les macros?", + "SSE.Controllers.Main.textLoadingDocument": "S'està carregant el full de càlcul", + "SSE.Controllers.Main.textLongName": "Escriviu un nom que tingui menys de 128 caràcters.", "SSE.Controllers.Main.textNo": "No", - "SSE.Controllers.Main.textNoLicenseTitle": "Heu arribat al límit de la licència", - "SSE.Controllers.Main.textPaidFeature": "Funció de Pagament", + "SSE.Controllers.Main.textNoLicenseTitle": "S'ha assolit el límit de llicència", + "SSE.Controllers.Main.textPaidFeature": "Funció de pagament", "SSE.Controllers.Main.textPleaseWait": "L’operació pot trigar més temps del previst. Espereu...", - "SSE.Controllers.Main.textRecalcFormulas": "Calculant formules...", - "SSE.Controllers.Main.textRemember": "Recordar la meva elecció per a tots els fitxers", - "SSE.Controllers.Main.textRenameError": "El nom d'usuari no pot estar buit.", - "SSE.Controllers.Main.textRenameLabel": "Introduïu un nom per a la col·laboració", + "SSE.Controllers.Main.textRecalcFormulas": "S'estan calculant les fórmules...", + "SSE.Controllers.Main.textRemember": "Recorda la meva elecció per a tots els fitxers", + "SSE.Controllers.Main.textRenameError": "El nom d'usuari no pot estar en blanc.", + "SSE.Controllers.Main.textRenameLabel": "Escriviu un nom que s'utilitzarà per a la col·laboració", "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.textTryUndoRedoWarn": "Les funcions Desfer/Refer estan desactivades per al mode de coedició ràpida.", + "SSE.Controllers.Main.textTryUndoRedo": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida. Cliqueu al botó \"Mode estricte\" per canviar al mode de coedició estricte i editar el fitxer sense que hi hagi interferències d'altres usuaris i enviar els vostres canvis un cop els hagueu desat. Podeu canviar entre els modes de coedició mitjançant l'editor \"Paràmetres avançats\".", + "SSE.Controllers.Main.textTryUndoRedoWarn": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.", "SSE.Controllers.Main.textYes": "Sí", - "SSE.Controllers.Main.titleLicenseExp": "Llicència Caducada", - "SSE.Controllers.Main.titleRecalcFormulas": "Calculant...", + "SSE.Controllers.Main.titleLicenseExp": "La llicència ha caducat", + "SSE.Controllers.Main.titleRecalcFormulas": "S'està calculant...", "SSE.Controllers.Main.titleServerVersion": "S'ha actualitzat l'editor", "SSE.Controllers.Main.txtAccent": "Accent", "SSE.Controllers.Main.txtAll": "(Tots)", - "SSE.Controllers.Main.txtArt": "El seu text aquí", - "SSE.Controllers.Main.txtBasicShapes": "Formes Bàsiques", + "SSE.Controllers.Main.txtArt": "El vostre text aquí", + "SSE.Controllers.Main.txtBasicShapes": "Formes bàsiques", "SSE.Controllers.Main.txtBlank": "(en blanc)", "SSE.Controllers.Main.txtButtons": "Botons", "SSE.Controllers.Main.txtByField": "%1 de %2", - "SSE.Controllers.Main.txtCallouts": "Trucades", + "SSE.Controllers.Main.txtCallouts": "Crides", "SSE.Controllers.Main.txtCharts": "Gràfics", - "SSE.Controllers.Main.txtClearFilter": "Esborrar el Filtre (Alt + C)", - "SSE.Controllers.Main.txtColLbls": "Etiquetes de Columnes", + "SSE.Controllers.Main.txtClearFilter": "Suprimeix el filtre (Alt + C)", + "SSE.Controllers.Main.txtColLbls": "Etiquetes de la columna", "SSE.Controllers.Main.txtColumn": "Columna", "SSE.Controllers.Main.txtConfidential": "Confidencial", "SSE.Controllers.Main.txtDate": "Data", "SSE.Controllers.Main.txtDays": "Dies", - "SSE.Controllers.Main.txtDiagramTitle": "Títol del Gràfic", - "SSE.Controllers.Main.txtEditingMode": "Establir el mode d'edició ...", - "SSE.Controllers.Main.txtFiguredArrows": "Fletxes Figurades", + "SSE.Controllers.Main.txtDiagramTitle": "Títol del gràfic", + "SSE.Controllers.Main.txtEditingMode": "Estableix el mode d'edició ...", + "SSE.Controllers.Main.txtFiguredArrows": "Fletxes de figures", "SSE.Controllers.Main.txtFile": "Fitxer", - "SSE.Controllers.Main.txtGrandTotal": "Total General", - "SSE.Controllers.Main.txtGroup": "Grup", - "SSE.Controllers.Main.txtHours": "hores", + "SSE.Controllers.Main.txtGrandTotal": "Total general", + "SSE.Controllers.Main.txtGroup": "Agrupa", + "SSE.Controllers.Main.txtHours": "Hores", "SSE.Controllers.Main.txtLines": "Línies", "SSE.Controllers.Main.txtMath": "Matemàtiques", "SSE.Controllers.Main.txtMinutes": "Minuts", "SSE.Controllers.Main.txtMonths": "Mesos", - "SSE.Controllers.Main.txtMultiSelect": "Selecció Múltiple (Alt+S)", + "SSE.Controllers.Main.txtMultiSelect": "Selecció múltiple (Alt+S)", "SSE.Controllers.Main.txtOr": "%1 o %2", "SSE.Controllers.Main.txtPage": "Pàgina", "SSE.Controllers.Main.txtPageOf": "Pàgina %1 de %2", "SSE.Controllers.Main.txtPages": "Pàgines", "SSE.Controllers.Main.txtPreparedBy": "Preparat per", - "SSE.Controllers.Main.txtPrintArea": "Àrea d'Impressió", - "SSE.Controllers.Main.txtQuarter": "Qtr", + "SSE.Controllers.Main.txtPrintArea": "Àrea d'impressió", + "SSE.Controllers.Main.txtQuarter": "Trim", "SSE.Controllers.Main.txtQuarters": "Trimestres", "SSE.Controllers.Main.txtRectangles": "Rectangles", "SSE.Controllers.Main.txtRow": "Fila", - "SSE.Controllers.Main.txtRowLbls": "Etiquetes de Fila", + "SSE.Controllers.Main.txtRowLbls": "Etiquetes de la fila", "SSE.Controllers.Main.txtSeconds": "Segons", - "SSE.Controllers.Main.txtSeries": "Serie", - "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Trucada amb Línia 1 (Vora i Barra d'Èmfasis)", - "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Trucada amb Línia 2 (Vora i Barra d'Èmfasis)", - "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Trucada amb Línia 3 (Vora i Barra d'Èmfasis)", - "SSE.Controllers.Main.txtShape_accentCallout1": "Trucada amb Línia 1 (Barra d'Èmfasis)", - "SSE.Controllers.Main.txtShape_accentCallout2": "Trucada amb Línia 2 (Barra d'Èmfasis)", - "SSE.Controllers.Main.txtShape_accentCallout3": "Trucada amb Línia 3 (Barra d'Èmfasis)", - "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Botó Enrere o Anterior", - "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Botó d’Inici", + "SSE.Controllers.Main.txtSeries": "Series", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Crida amb línia 1 (vora i barra d'èmfasi)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Crida amb línia 2 (vora i barra d'èmfasi)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Crida amb línia 3 (vora i barra d'èmfasi)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Crida amb línia 1 (barra d'èmfasi)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Crida amb línia 2 (barra d'èmfasi)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Crida amb línia 3 (barra d'èmfasi)", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Botó enrere o anterior", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Botó d’inici", "SSE.Controllers.Main.txtShape_actionButtonBlank": "Botó en blanc", - "SSE.Controllers.Main.txtShape_actionButtonDocument": "Botó de Document", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "Botó de document", "SSE.Controllers.Main.txtShape_actionButtonEnd": "Botó final", - "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Botó Endavant o Següent", - "SSE.Controllers.Main.txtShape_actionButtonHelp": "Botó Ajuda", - "SSE.Controllers.Main.txtShape_actionButtonHome": "Botó Inici", - "SSE.Controllers.Main.txtShape_actionButtonInformation": "Botó Informació", - "SSE.Controllers.Main.txtShape_actionButtonMovie": "Botó Vídeo", - "SSE.Controllers.Main.txtShape_actionButtonReturn": "Botó de Retorn", - "SSE.Controllers.Main.txtShape_actionButtonSound": "Botó de So", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Botó endavant o següent", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Botó d'ajuda", + "SSE.Controllers.Main.txtShape_actionButtonHome": "Botó d'inici", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Botó d'informació", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Botó de vídeo", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Botó de retorn", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Botó de so", "SSE.Controllers.Main.txtShape_arc": "Arc", - "SSE.Controllers.Main.txtShape_bentArrow": "Fletxa Doblada", - "SSE.Controllers.Main.txtShape_bentConnector5": "Connector del colze", - "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connector de fletxa del colze", - "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connector de doble fletxa del colze", - "SSE.Controllers.Main.txtShape_bentUpArrow": "Fletxa cap amunt", + "SSE.Controllers.Main.txtShape_bentArrow": "Fletxa doblegada", + "SSE.Controllers.Main.txtShape_bentConnector5": "Connector angular", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Connector angular de fletxa", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Connector angular de doble fletxa", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Fletxa doblegada cap amunt", "SSE.Controllers.Main.txtShape_bevel": "Bisell", "SSE.Controllers.Main.txtShape_blockArc": "Arc de bloc", - "SSE.Controllers.Main.txtShape_borderCallout1": "Trucada amb Línia 1", - "SSE.Controllers.Main.txtShape_borderCallout2": "Trucada amb Línia 2", - "SSE.Controllers.Main.txtShape_borderCallout3": "Trucada amb Línia 3", - "SSE.Controllers.Main.txtShape_bracePair": "Braça Doble", - "SSE.Controllers.Main.txtShape_callout1": "Trucada amb Línia 1 (Sense Vora)", - "SSE.Controllers.Main.txtShape_callout2": "Trucada amb Línia 2 (Sense Vora)", - "SSE.Controllers.Main.txtShape_callout3": "Trucada amb Línia 3 (Sense Vora)", + "SSE.Controllers.Main.txtShape_borderCallout1": "Crida amb línia 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Crida amb línia 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Crida amb línia 3", + "SSE.Controllers.Main.txtShape_bracePair": "Clau doble", + "SSE.Controllers.Main.txtShape_callout1": "Crida amb línia 1 (sense vora)", + "SSE.Controllers.Main.txtShape_callout2": "Crida amb línia 2 (sense vora)", + "SSE.Controllers.Main.txtShape_callout3": "Crida amb línia 3 (sense vora)", "SSE.Controllers.Main.txtShape_can": "Cilindre", - "SSE.Controllers.Main.txtShape_chevron": "Chevron", - "SSE.Controllers.Main.txtShape_chord": "Chord", - "SSE.Controllers.Main.txtShape_circularArrow": "Fletxa Circular", + "SSE.Controllers.Main.txtShape_chevron": "Cometes angulars", + "SSE.Controllers.Main.txtShape_chord": "Corda", + "SSE.Controllers.Main.txtShape_circularArrow": "Fletxa circular", "SSE.Controllers.Main.txtShape_cloud": "Núvol", - "SSE.Controllers.Main.txtShape_cloudCallout": "Trucada de Núvol", + "SSE.Controllers.Main.txtShape_cloudCallout": "Crida de núvol", "SSE.Controllers.Main.txtShape_corner": "Cantonada", "SSE.Controllers.Main.txtShape_cube": "Cub", "SSE.Controllers.Main.txtShape_curvedConnector3": "Connector corbat", - "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Conector de fletxa corba", - "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connector de doble fletxa corbat", - "SSE.Controllers.Main.txtShape_curvedDownArrow": "Fletxa corba cap avall", - "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Fletxa esquerra corba", - "SSE.Controllers.Main.txtShape_curvedRightArrow": "Fletxa dreta corba", - "SSE.Controllers.Main.txtShape_curvedUpArrow": "Fletxa corba cap amunt", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Connector de fletxa corba", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Connector de doble fletxa corbada", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "Fletxa cap avall corbada", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Fletxa esquerra corbada", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Fletxa dreta corbada", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "Fletxa corbada cap amunt", "SSE.Controllers.Main.txtShape_decagon": "Decàgon", - "SSE.Controllers.Main.txtShape_diagStripe": "Banda Diagonal", + "SSE.Controllers.Main.txtShape_diagStripe": "Banda diagonal", "SSE.Controllers.Main.txtShape_diamond": "Diamant", "SSE.Controllers.Main.txtShape_dodecagon": "Dodecàgon", - "SSE.Controllers.Main.txtShape_donut": "Anell", - "SSE.Controllers.Main.txtShape_doubleWave": "Doble Ona", + "SSE.Controllers.Main.txtShape_donut": "Anella", + "SSE.Controllers.Main.txtShape_doubleWave": "Ona doble", "SSE.Controllers.Main.txtShape_downArrow": "Fletxa cap avall", - "SSE.Controllers.Main.txtShape_downArrowCallout": "Trucada de Fletxa Avall", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Crida de fletxa cap avall", "SSE.Controllers.Main.txtShape_ellipse": "El·lipse", "SSE.Controllers.Main.txtShape_ellipseRibbon": "Cinta cap avall corbada", - "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Cinta corbada", - "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagrama de Flux: Procés Alternatiu", - "SSE.Controllers.Main.txtShape_flowChartCollate": "Diagrama de Flux: Collar", - "SSE.Controllers.Main.txtShape_flowChartConnector": "Diagrama de Flux: Connector", - "SSE.Controllers.Main.txtShape_flowChartDecision": "Diagrama de Flux: Decisió", - "SSE.Controllers.Main.txtShape_flowChartDelay": "Diagrama de Flux: Retard", - "SSE.Controllers.Main.txtShape_flowChartDisplay": "Diagrama de Flux: Visualització", - "SSE.Controllers.Main.txtShape_flowChartDocument": "Diagrama de Flux: Document", - "SSE.Controllers.Main.txtShape_flowChartExtract": "Diagrama de Flux: Extracte", - "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Diagrama de Flux: Dades", - "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagrama de Flux: Magatzem Intern", - "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagrama de Flux: Disc Magnètic", - "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagrama de Flux: Accés Directe", - "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagrama de Flux: Seqüencial", - "SSE.Controllers.Main.txtShape_flowChartManualInput": "Diagrama de Flux: Entrada Manual", - "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Diagrama de Flux: Manual", - "SSE.Controllers.Main.txtShape_flowChartMerge": "Diagrama de Flux: Combinar", - "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Diagrama de Flux: Multi Document", - "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagrama de flux: Connector Fora de Pàgina", - "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagrama de Flux: Dades Emmagatzemades", - "SSE.Controllers.Main.txtShape_flowChartOr": "Diagrama de Flux: O", - "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagrama de flux: Procés Predefinit", - "SSE.Controllers.Main.txtShape_flowChartPreparation": "Diagrama de Flux: Preparació", - "SSE.Controllers.Main.txtShape_flowChartProcess": "Diagrama de Flux: Procés", - "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagrama de Flux: Fitxa", - "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagrama de Flux: Cinta Punxada", - "SSE.Controllers.Main.txtShape_flowChartSort": "Diagrama de Flux: Ordena", - "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagrama de Flux: Resum i Unió", - "SSE.Controllers.Main.txtShape_flowChartTerminator": "Diagrama de Flux: Finalització", - "SSE.Controllers.Main.txtShape_foldedCorner": "Carpeta Plegada", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Cinta corbada cap amunt", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Diagrama de flux: procés alternatiu", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Diagrama de flux: intercala", + "SSE.Controllers.Main.txtShape_flowChartConnector": "Diagrama de flux: connector", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Diagrama de flux: decisió", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Diagrama de flux: retard", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Diagrama de flux: visualització", + "SSE.Controllers.Main.txtShape_flowChartDocument": "Diagrama de flux: document", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Diagrama de flux: extracte", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Diagrama de flux: dades", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Diagrama de flux: emmagatzematge intern", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Diagrama de flux: disc magnètic", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Diagrama de flux: emmagatzematge d'accés directe", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Diagrama de flux: emmagatzematge d'accés seqüencial", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Diagrama de flux: entrada manual", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Diagrama de flux: operació manual", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Diagrama de flux: combina", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Diagrama de flux: document múltiple", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Diagrama de flux: connector fora de pàgina", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Diagrama de flux: dades emmagatzemades", + "SSE.Controllers.Main.txtShape_flowChartOr": "Diagrama de flux: o", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Diagrama de flux: procés predefinit", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Diagrama de flux: preparació", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Diagrama de flux: procés", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Diagrama de flux: fitxa", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Diagrama de flux: cinta perforada", + "SSE.Controllers.Main.txtShape_flowChartSort": "Diagrama de flux: ordenació", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Diagrama de flux: Y", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Diagrama de flux: finalitzador", + "SSE.Controllers.Main.txtShape_foldedCorner": "Cantonada plegada", "SSE.Controllers.Main.txtShape_frame": "Marc", - "SSE.Controllers.Main.txtShape_halfFrame": "Mig Marg", + "SSE.Controllers.Main.txtShape_halfFrame": "Mig marc", "SSE.Controllers.Main.txtShape_heart": "Cor", "SSE.Controllers.Main.txtShape_heptagon": "Heptàgon", "SSE.Controllers.Main.txtShape_hexagon": "Hexàgon", @@ -884,53 +884,53 @@ "SSE.Controllers.Main.txtShape_irregularSeal1": "Explosió 1", "SSE.Controllers.Main.txtShape_irregularSeal2": "Explosió 2", "SSE.Controllers.Main.txtShape_leftArrow": "Fletxa Esquerra", - "SSE.Controllers.Main.txtShape_leftArrowCallout": "Trucada de Fletxa a l'Esquerra", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Crida de fletxa a l'esquerra", "SSE.Controllers.Main.txtShape_leftBrace": "Obrir clau", - "SSE.Controllers.Main.txtShape_leftBracket": "Obrir claudàtor", - "SSE.Controllers.Main.txtShape_leftRightArrow": "Fletxa Esquerra i Dreta", - "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Trucada de Fletxa Esquerra i Dreta", - "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Fletxa Esquerra, Dreta i a Dalt", - "SSE.Controllers.Main.txtShape_leftUpArrow": "Fletxa Esquerra i a Dalt", - "SSE.Controllers.Main.txtShape_lightningBolt": "Llamp", + "SSE.Controllers.Main.txtShape_leftBracket": "Claudàtor d'obertura", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Fletxa esquerra i dreta", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Crida fletxa esquerra i dreta", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Fletxa esquerra, dreta i cap amunt", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Fletxa esquerra i cap amunt", + "SSE.Controllers.Main.txtShape_lightningBolt": "Llampec", "SSE.Controllers.Main.txtShape_line": "Línia", "SSE.Controllers.Main.txtShape_lineWithArrow": "Fletxa", "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Fletxa doble", "SSE.Controllers.Main.txtShape_mathDivide": "Divisió", "SSE.Controllers.Main.txtShape_mathEqual": "Igual", "SSE.Controllers.Main.txtShape_mathMinus": "Menys", - "SSE.Controllers.Main.txtShape_mathMultiply": "Multiplicar", - "SSE.Controllers.Main.txtShape_mathNotEqual": "No Igual", + "SSE.Controllers.Main.txtShape_mathMultiply": "Multiplica", + "SSE.Controllers.Main.txtShape_mathNotEqual": "No és igual", "SSE.Controllers.Main.txtShape_mathPlus": "Més", "SSE.Controllers.Main.txtShape_moon": "Lluna", - "SSE.Controllers.Main.txtShape_noSmoking": "\"No\" Símbol", - "SSE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la Dreta Encaixada", - "SSE.Controllers.Main.txtShape_octagon": "Octagon", - "SSE.Controllers.Main.txtShape_parallelogram": "Paral·lelograma", + "SSE.Controllers.Main.txtShape_noSmoking": "Símbol \"No\"", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Fletxa a la dreta oscada", + "SSE.Controllers.Main.txtShape_octagon": "Octàgon", + "SSE.Controllers.Main.txtShape_parallelogram": "Paral·lelogram", "SSE.Controllers.Main.txtShape_pentagon": "Pentàgon", - "SSE.Controllers.Main.txtShape_pie": "Sector del cercle", - "SSE.Controllers.Main.txtShape_plaque": "Firmar", + "SSE.Controllers.Main.txtShape_pie": "Circular", + "SSE.Controllers.Main.txtShape_plaque": "Signa", "SSE.Controllers.Main.txtShape_plus": "Més", "SSE.Controllers.Main.txtShape_polyline1": "Gargot", "SSE.Controllers.Main.txtShape_polyline2": "Forma lliure", - "SSE.Controllers.Main.txtShape_quadArrow": "Fletxa Quàdruple", - "SSE.Controllers.Main.txtShape_quadArrowCallout": "Trucada de Fletxa Quàdruple", + "SSE.Controllers.Main.txtShape_quadArrow": "Fletxa quàdruple", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Crida de fletxa quàdruple", "SSE.Controllers.Main.txtShape_rect": "Rectangle", - "SSE.Controllers.Main.txtShape_ribbon": "Cinta avall", + "SSE.Controllers.Main.txtShape_ribbon": "Cinta cap avall", "SSE.Controllers.Main.txtShape_ribbon2": "Cinta cap amunt", - "SSE.Controllers.Main.txtShape_rightArrow": "Fletxa Dreta", - "SSE.Controllers.Main.txtShape_rightArrowCallout": "Trucada de Fletxa a la Dreta", - "SSE.Controllers.Main.txtShape_rightBrace": "Tancar Clau", - "SSE.Controllers.Main.txtShape_rightBracket": "Tancar Claudàtor", - "SSE.Controllers.Main.txtShape_round1Rect": "Rectangle de Cantonada Rodona", - "SSE.Controllers.Main.txtShape_round2DiagRect": "Rectangle Cantoner en Diagonal Rodó", - "SSE.Controllers.Main.txtShape_round2SameRect": "Rectangle Cantoner del Mateix Costat", - "SSE.Controllers.Main.txtShape_roundRect": "Rectangle Cantoner Rodó", - "SSE.Controllers.Main.txtShape_rtTriangle": "Triangle Rectangle", - "SSE.Controllers.Main.txtShape_smileyFace": "Cara Somrient", - "SSE.Controllers.Main.txtShape_snip1Rect": "Retallar rectangle de cantonada senzilla", - "SSE.Controllers.Main.txtShape_snip2DiagRect": "Retallar rectangle de cantonada diagonal", - "SSE.Controllers.Main.txtShape_snip2SameRect": "Retallar Rectangle de la cantonada del mateix costat", - "SSE.Controllers.Main.txtShape_snipRoundRect": "Retallar i Rondejar rectangle de cantonada senzilla", + "SSE.Controllers.Main.txtShape_rightArrow": "Fletxa dreta", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Crida de fletxa dreta", + "SSE.Controllers.Main.txtShape_rightBrace": "Clau de tancament", + "SSE.Controllers.Main.txtShape_rightBracket": "Claudàtor de tancament", + "SSE.Controllers.Main.txtShape_round1Rect": "Rectangle de cantonada única rodona", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Rectangle de cantonada diagonal rodona", + "SSE.Controllers.Main.txtShape_round2SameRect": "Rectangle de cantonada lateral igual rodona", + "SSE.Controllers.Main.txtShape_roundRect": "Rectangle de cantonada arrodonida", + "SSE.Controllers.Main.txtShape_rtTriangle": "Triangle rectangle", + "SSE.Controllers.Main.txtShape_smileyFace": "Cara somrient", + "SSE.Controllers.Main.txtShape_snip1Rect": "Rectangle de cantonada única retallada", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Rectangle de cantonada diagonal retallada", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Rectangle de cantonada retallada del mateix costat", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Rectangle amb cantonades rodones i retallades", "SSE.Controllers.Main.txtShape_spline": "Corba", "SSE.Controllers.Main.txtShape_star10": "Estrella de 10 puntes", "SSE.Controllers.Main.txtShape_star12": "Estrella de 12 puntes", @@ -943,233 +943,236 @@ "SSE.Controllers.Main.txtShape_star7": "Estrella de 7 puntes", "SSE.Controllers.Main.txtShape_star8": "Estrella de 8 puntes", "SSE.Controllers.Main.txtShape_stripedRightArrow": "Fletxa a la dreta amb bandes", - "SSE.Controllers.Main.txtShape_sun": "Sol", + "SSE.Controllers.Main.txtShape_sun": "dg.", "SSE.Controllers.Main.txtShape_teardrop": "Llàgrima", - "SSE.Controllers.Main.txtShape_textRect": "Quadre de Text", + "SSE.Controllers.Main.txtShape_textRect": "Quadre de text", "SSE.Controllers.Main.txtShape_trapezoid": "Trapezi", "SSE.Controllers.Main.txtShape_triangle": "Triangle", "SSE.Controllers.Main.txtShape_upArrow": "Fletxa amunt", - "SSE.Controllers.Main.txtShape_upArrowCallout": "Trucada de fletxa cap amunt", - "SSE.Controllers.Main.txtShape_upDownArrow": "Fletxa cap amunt i abaix", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Crida de fletxa amunt", + "SSE.Controllers.Main.txtShape_upDownArrow": "Fletxa cap amunt i cap avall", "SSE.Controllers.Main.txtShape_uturnArrow": "Fletxa en U", - "SSE.Controllers.Main.txtShape_verticalScroll": "Desplaçament Vertical", + "SSE.Controllers.Main.txtShape_verticalScroll": "Desplaçament vertical", "SSE.Controllers.Main.txtShape_wave": "Ona", - "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Trucada Ovalada", - "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Trucada Rectangular", - "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Llibre Rectangular de Punt Rodó", - "SSE.Controllers.Main.txtStarsRibbons": "Estrelles i Cintes", - "SSE.Controllers.Main.txtStyle_Bad": "Dolent", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Crida oval", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Crida rectangular", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Crida rectangular arrodonida", + "SSE.Controllers.Main.txtStarsRibbons": "Estrelles i cintes", + "SSE.Controllers.Main.txtStyle_Bad": "Incorrecte", "SSE.Controllers.Main.txtStyle_Calculation": "Càlcul", - "SSE.Controllers.Main.txtStyle_Check_Cell": "Celda de Control", - "SSE.Controllers.Main.txtStyle_Comma": "Financier", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Cel·la de comprovació", + "SSE.Controllers.Main.txtStyle_Comma": "Coma", "SSE.Controllers.Main.txtStyle_Currency": "Moneda", - "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Text Explicatiu", - "SSE.Controllers.Main.txtStyle_Good": "Bo", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Text explicatiu", + "SSE.Controllers.Main.txtStyle_Good": "Correcte", "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_Linked_Cell": "Cel·la enllaçada", + "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", "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_Output": "Resultat", + "SSE.Controllers.Main.txtStyle_Percent": "Per cent", "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.txtStyle_Warning_Text": "Text d'advertiment", + "SSE.Controllers.Main.txtTab": "Tabulador", "SSE.Controllers.Main.txtTable": "Taula", "SSE.Controllers.Main.txtTime": "Hora", "SSE.Controllers.Main.txtValues": "Valors", "SSE.Controllers.Main.txtXAxis": "Eix X", "SSE.Controllers.Main.txtYAxis": "Eix Y", "SSE.Controllers.Main.txtYears": "Anys", - "SSE.Controllers.Main.unknownErrorText": "Error Desconegut.", + "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.uploadDocExtMessage": "Format de document desconegut.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "No s'ha carregat cap document.", + "SSE.Controllers.Main.uploadDocSizeMessage": "S'ha superat el límit màxim de mida del document.", + "SSE.Controllers.Main.uploadImageExtMessage": "Format d'imatge desconegut.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "No s'ha carregat cap imatge.", "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...", - "SSE.Controllers.Main.warnBrowserIE9": "L’aplicació té baixes capacitats en IE9. Utilitzeu IE10 o superior", - "SSE.Controllers.Main.warnBrowserZoom": "La configuració del zoom actual del navegador no és totalment compatible. Restabliu el zoom per defecte prement Ctrl+0.", - "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.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funcionalitat d'edició de documents.
Contacteu amb l'administrador.", - "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Teniu un accés limitat a la funcionalitat d'edició de documents.
Contacteu amb l'administrador per obtenir accés complet", - "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.uploadImageTextText": "S'està carregant la imatge...", + "SSE.Controllers.Main.uploadImageTitleText": "S'està carregant la imatge", + "SSE.Controllers.Main.waitText": "Espereu...", + "SSE.Controllers.Main.warnBrowserIE9": "L’aplicació té poca capacitat en IE9. Utilitzeu IE10 o superior", + "SSE.Controllers.Main.warnBrowserZoom": "La configuració de zoom actual del navegador no és compatible del tot. Restabliu el zoom per defecte tot prement Ctrl+0.", + "SSE.Controllers.Main.warnLicenseExceeded": "Heu arribat al límit de connexions simultànies amb %1 editors. Aquest document només s'obrirà en mode lectura.
Contacteu amb el vostre administrador per obtenir més informació.", + "SSE.Controllers.Main.warnLicenseExp": "La vostra llicència ha caducat.
Actualitzeu la llicència i recarregueu la pàgina.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "La llicència ha caducat.
No teniu accés a la funció d'edició de documents.
Contacteu amb el vostre administrador.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "Cal renovar la llicència.
Teniu un accés limitat a la funció d'edició de documents.
Contacteu amb el vostre administrador per obtenir accés complet", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb el vostre administrador per a més informació.", "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.Print.strAllSheets": "Totes les Fulles", - "SSE.Controllers.Print.textFirstCol": "Primera Columna", + "SSE.Controllers.Main.warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", + "SSE.Controllers.Main.warnProcessRightsChange": "No teniu permís per editar el fitxer.", + "SSE.Controllers.Print.strAllSheets": "Tots els fulls", + "SSE.Controllers.Print.textFirstCol": "Primera columna", "SSE.Controllers.Print.textFirstRow": "Primera fila", - "SSE.Controllers.Print.textFrozenCols": "Congelar columnes", - "SSE.Controllers.Print.textFrozenRows": "Congelar Línies", - "SSE.Controllers.Print.textInvalidRange": "ERROR! Interval de celdes no vàlid", - "SSE.Controllers.Print.textNoRepeat": "No repetir", - "SSE.Controllers.Print.textRepeat": "Repetir...", - "SSE.Controllers.Print.textSelectRange": "Seleccionar l’interval", - "SSE.Controllers.Print.textWarning": "Avis", + "SSE.Controllers.Print.textFrozenCols": "Immobilitza columnes", + "SSE.Controllers.Print.textFrozenRows": "Immobilitza línies", + "SSE.Controllers.Print.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", + "SSE.Controllers.Print.textNoRepeat": "No repeteixis", + "SSE.Controllers.Print.textRepeat": "Repeteix...", + "SSE.Controllers.Print.textSelectRange": "Seleccionar un interval", + "SSE.Controllers.Print.textWarning": "Advertiment", "SSE.Controllers.Print.txtCustom": "Personalitzat", - "SSE.Controllers.Print.warnCheckMargings": "Márgenes son incorrectos", - "SSE.Controllers.Statusbar.errorLastSheet": "El quadern de treball ha de tenir almenys un full de treball visible.", + "SSE.Controllers.Print.warnCheckMargings": "Els marges no són correctes", + "SSE.Controllers.Statusbar.errorLastSheet": "El llibre de treball ha de tenir com a mínim un full de càlcul visible.", "SSE.Controllers.Statusbar.errorRemoveSheet": "No es pot suprimir el full de treball.", "SSE.Controllers.Statusbar.strSheet": "Full", "SSE.Controllers.Statusbar.textSheetViewTip": "Esteu en mode de visualització de fulls. Els filtres i l'ordenació només són visibles per a vosaltres i per a aquells que encara estan en aquesta visualització.", "SSE.Controllers.Statusbar.textSheetViewTipFilters": "Esteu en mode de vista del full. Els filtres només són visibles per a vós i per a aquells que encara estan en aquesta vista.", - "SSE.Controllers.Statusbar.warnDeleteSheet": "Els fulls de treball seleccionats poden contenir dades. Esteu segur que voleu continuar?", + "SSE.Controllers.Statusbar.warnDeleteSheet": "Els fulls de càlcul seleccionats poden contenir dades. Esteu segur que voleu continuar?", "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", - "SSE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que guardareu no està disponible al dispositiu actual.
L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible.
Voleu continuar ?", - "SSE.Controllers.Toolbar.errorComboSeries": "Per crear un diagrama combinat, seleccioneu almenys dues sèries de dades.", + "SSE.Controllers.Toolbar.confirmAddFontName": "El tipus de lletra que desareu no està disponible al dispositiu actual.
L'estil de text es mostrarà amb un dels tipus de lletra del sistema, el tipus de lletra desat s'utilitzarà quan estigui disponible.
Voleu continuar ?", + "SSE.Controllers.Toolbar.errorComboSeries": "Per crear un diagrama combinat, seleccioneu com a mínim dues sèries de dades.", "SSE.Controllers.Toolbar.errorMaxRows": "ERROR! El nombre màxim de sèries de dades per gràfic és de 255", - "SSE.Controllers.Toolbar.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.Toolbar.errorStockChart": "L'ordre de fila no és correcte. 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.Toolbar.textAccent": "Accents", - "SSE.Controllers.Toolbar.textBracket": "Claudàtor", + "SSE.Controllers.Toolbar.textBracket": "Claudàtors", "SSE.Controllers.Toolbar.textDirectional": "Direccional", - "SSE.Controllers.Toolbar.textFontSizeErr": "El valor introduït és incorrecte.
Introduïu un valor numèric entre 1 i 409", + "SSE.Controllers.Toolbar.textFontSizeErr": "El valor introduït no és correcte.
Introduïu un valor numèric entre 1 i 409", "SSE.Controllers.Toolbar.textFraction": "Fraccions", "SSE.Controllers.Toolbar.textFunction": "Funcions", "SSE.Controllers.Toolbar.textIndicator": "Indicadors", - "SSE.Controllers.Toolbar.textInsert": "Insertar", + "SSE.Controllers.Toolbar.textInsert": "Insereix", "SSE.Controllers.Toolbar.textIntegral": "Integrals", - "SSE.Controllers.Toolbar.textLargeOperator": "Operadors Grans", - "SSE.Controllers.Toolbar.textLimitAndLog": "Límit i Logaritmes", - "SSE.Controllers.Toolbar.textLongOperation": "Operació Llarga", + "SSE.Controllers.Toolbar.textLargeOperator": "Operadors grans", + "SSE.Controllers.Toolbar.textLimitAndLog": "Límit i logaritmes", + "SSE.Controllers.Toolbar.textLongOperation": "Operació llarga", "SSE.Controllers.Toolbar.textMatrix": "Matrius", "SSE.Controllers.Toolbar.textOperator": "Operadors", - "SSE.Controllers.Toolbar.textPivot": "Taula Clau", + "SSE.Controllers.Toolbar.textPivot": "Taula dinàmica", "SSE.Controllers.Toolbar.textRadical": "Radicals", "SSE.Controllers.Toolbar.textRating": "Valoracions", - "SSE.Controllers.Toolbar.textScript": "Índexs", + "SSE.Controllers.Toolbar.textScript": "Scripts", "SSE.Controllers.Toolbar.textShapes": "Formes", "SSE.Controllers.Toolbar.textSymbols": "Símbols", - "SSE.Controllers.Toolbar.textWarning": "Avis", + "SSE.Controllers.Toolbar.textWarning": "Advertiment", "SSE.Controllers.Toolbar.txtAccent_Accent": "Agut", "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Fletxa dreta-esquerra superior", - "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa superior cap a esquerra", - "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Fletxa superior cap a dreta", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Fletxa esquerra a sobre", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Fletxa dreta a sobre", "SSE.Controllers.Toolbar.txtAccent_Bar": "Barra", - "SSE.Controllers.Toolbar.txtAccent_BarBot": "Barra Subjacent", - "SSE.Controllers.Toolbar.txtAccent_BarTop": "Barra Superposada", - "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula a celda (amb el marcador de posició)", - "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula a celda (exemple)", - "SSE.Controllers.Toolbar.txtAccent_Check": "Comprovar", - "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Clau Subjacent", - "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Clau Superposada", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "Barra subjacent", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Barra superposada", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Fórmula emmarcada (amb contenidor)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Fórmula emmarcada (exemple)", + "SSE.Controllers.Toolbar.txtAccent_Check": "Comprova", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Clau subjacent", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Clau superposada", "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", - "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC amb barra a sobre", - "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR i amb barra sobreposada", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC amb la barra a dalt", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y amb barra superposada", "SSE.Controllers.Toolbar.txtAccent_DDDot": "Tres punts", - "SSE.Controllers.Toolbar.txtAccent_DDot": "Doble punt", + "SSE.Controllers.Toolbar.txtAccent_DDot": "Dos punts", "SSE.Controllers.Toolbar.txtAccent_Dot": "Punt", "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Doble barra superior", - "SSE.Controllers.Toolbar.txtAccent_Grave": "Accent Greu", - "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Agrupant el caràcter de sota", - "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Agrupació del caràcter anterior", - "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpon cap a l'esquerra per sobre", - "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpon superior cap a dreta", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Accent greu", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Caràcter d'agrupament a sota", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Caràcter d'agrupament a sobre", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Arpó esquerre a sobre", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Arpó dret a sobre", "SSE.Controllers.Toolbar.txtAccent_Hat": "Circumflex", - "SSE.Controllers.Toolbar.txtAccent_Smile": "Accent breu", - "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", - "SSE.Controllers.Toolbar.txtBracket_Angle": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Claudàtor amb separadors", - "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Claudàtor amb separadors", - "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Curve": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Claudàtor amb separadors", - "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (dos condicions)", + "SSE.Controllers.Toolbar.txtAccent_Smile": "Breu", + "SSE.Controllers.Toolbar.txtAccent_Tilde": "Titlla", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Claudàtors amb separadors", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Claudàtors amb separadors", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Claudàtors amb separadors", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Casos (dues condicions)", "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Casos (tres condicions)", "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Objecte apilat", "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Objecte apilat", - "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Casos exemple", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Exemple de casos", "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Coeficient binomial", "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Coeficient binomial", - "SSE.Controllers.Toolbar.txtBracket_Line": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_LowLim": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Round": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Claudàtor amb separadors", - "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Square": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_UppLim": "Claudàtor", - "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Claudàtor Únic", - "SSE.Controllers.Toolbar.txtDeleteCells": "Suprimeix Cel·les", - "SSE.Controllers.Toolbar.txtExpand": "Ampliar i ordenar", - "SSE.Controllers.Toolbar.txtExpandSort": "Les dades al costat de la selecció no es classificaran. Voleu ampliar la selecció per incloure les dades adjacents o continuar ordenant només les cel·les actualment seleccionades?", + "SSE.Controllers.Toolbar.txtBracket_Line": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Round": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Claudàtors amb separadors", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Square": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Claudàtors", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Claudàtor únic", + "SSE.Controllers.Toolbar.txtDeleteCells": "Suprimeix cel·les", + "SSE.Controllers.Toolbar.txtExpand": "Amplia i ordena", + "SSE.Controllers.Toolbar.txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. ¿Voleu ampliar la selecció per incloure les dades adjacents o bé voleu continuar i ordenar només les cel·les seleccionades?", "SSE.Controllers.Toolbar.txtFractionDiagonal": "Fracció inclinada", "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Diferencial", "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Diferencial", "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Diferencial", "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Diferencial", "SSE.Controllers.Toolbar.txtFractionHorizontal": "Fracció lineal", - "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi dividit a 2", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi sobre 2", "SSE.Controllers.Toolbar.txtFractionSmall": "Fracció petita", "SSE.Controllers.Toolbar.txtFractionVertical": "Fracció apilada", - "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Funció de cosinus inversa", - "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Funció hiperbòlica del cosinus invers", - "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Funció de cotangent inversa", - "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Funció cotangent inversa hiperbòlic", - "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Funció de cosecant inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Funció cosinus inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Funció cosinus inversa hiperbòlica", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Funció cotangent inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Funció cotangent inversa hiperbòlica", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Funció cosecant inversa", "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Funció cosecant inversa hiperbòlica", - "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Funció de secant inversa", - "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Funció secant hiperbòlica", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Funció secant inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Funció secant inversa hiperbòlica", "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Funció sinus inversa", - "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció hiperbòlica del seno invers", - "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Funció de tangent inversa", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Funció de sinus invers hiperbòlica", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Funció tangent inversa", "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Funció tangent inversa hiperbòlica", - "SSE.Controllers.Toolbar.txtFunction_Cos": "Funció cosina", - "SSE.Controllers.Toolbar.txtFunction_Cosh": "Funció del cosin hiperbòlic", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Funció cosinus", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Funció cosinus hiperbòlica", "SSE.Controllers.Toolbar.txtFunction_Cot": "Funció cotangent", - "SSE.Controllers.Toolbar.txtFunction_Coth": "Funció cotangent hiperbòlic", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Funció cotangent hiperbòlica", "SSE.Controllers.Toolbar.txtFunction_Csc": "Funció cosecant", - "SSE.Controllers.Toolbar.txtFunction_Csch": "Funció cosecant hiperbòlic", - "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus Zeta", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Funció cosecant hiperbòlica", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sinus de zeta", "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", - "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Formula de Tangent", - "SSE.Controllers.Toolbar.txtFunction_Sec": "Funció Secant", - "SSE.Controllers.Toolbar.txtFunction_Sech": "Funció secant hiperbòlic", - "SSE.Controllers.Toolbar.txtFunction_Sin": "Funció Sinus", - "SSE.Controllers.Toolbar.txtFunction_Sinh": "Funció sinusoïdal hiperbòlica", - "SSE.Controllers.Toolbar.txtFunction_Tan": "Funció Tangent", - "SSE.Controllers.Toolbar.txtFunction_Tanh": "Funció tangent hiperbòlic", - "SSE.Controllers.Toolbar.txtInsertCells": "Inserir Cel·les", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Fórmula de tangent", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Funció secant", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Funció secant hiperbòlica", + "SSE.Controllers.Toolbar.txtFunction_Sin": "Funció de sinus", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Funció de sinus hiperbòlica", + "SSE.Controllers.Toolbar.txtFunction_Tan": "Funció tangent", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Funció tangent hiperbòlica", + "SSE.Controllers.Toolbar.txtInsertCells": "Insereix cel·les", "SSE.Controllers.Toolbar.txtIntegral": "Integral", - "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Theta diferencial", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Diferencial theta", "SSE.Controllers.Toolbar.txtIntegral_dx": "Diferencial x", "SSE.Controllers.Toolbar.txtIntegral_dy": "Diferencial y", "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", - "SSE.Controllers.Toolbar.txtIntegralDouble": "Doble integral", - "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Doble integral", - "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Doble integral", - "SSE.Controllers.Toolbar.txtIntegralOriented": "Contorn integral", - "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contorn integral", + "SSE.Controllers.Toolbar.txtIntegralDouble": "Integral doble", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Integral doble", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Integral doble", + "SSE.Controllers.Toolbar.txtIntegralOriented": "Integral de contorn", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Integral de contorn", "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Integral de superfície", "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Integral de superfície", "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Integral de superfície", - "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contorn integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Integral de contorn", "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volum integral", "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volum integral", "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volum integral", @@ -1177,7 +1180,7 @@ "SSE.Controllers.Toolbar.txtIntegralTriple": "Integral triple", "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Integral triple", "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Integral triple", - "SSE.Controllers.Toolbar.txtInvalidRange": "ERROR! Interval de cel·les no vàlid", + "SSE.Controllers.Toolbar.txtInvalidRange": "ERROR! L'interval de cel·les no és vàlid", "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Falca", "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Falca", "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Falca", @@ -1188,9 +1191,9 @@ "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Coproducte", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Coproducte", "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Coproducte", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Suma", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Suma", - "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Suma", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Sumatori", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Sumatori", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Sumatori", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Producte", "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Unió", "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Lletra V", @@ -1208,20 +1211,20 @@ "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Producte", "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Producte", "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Producte", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Suma", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Suma", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Suma", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Suma", - "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Suma", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Sumatori", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Sumatori", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Sumatori", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Sumatori", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Sumatori", "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Unió", "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Unió", "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Unió", "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Unió", "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Unió", - "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemple de Límit", - "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemple de Màxim", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Exemple de límit", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Exemple de màxim", "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Límit", - "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritme Natural", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Logaritme natural", "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logaritme", "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logaritme", "SSE.Controllers.Toolbar.txtLimitLog_Max": "Màxim", @@ -1238,73 +1241,73 @@ "SSE.Controllers.Toolbar.txtMatrix_3_1": "Matriu buida 3x1", "SSE.Controllers.Toolbar.txtMatrix_3_2": "Matriu buida 3x2", "SSE.Controllers.Toolbar.txtMatrix_3_3": "Matriu buida 3x3", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Punts Subíndexs", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punts en línia mitja", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punts en diagonal", - "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Punts Verticals", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriu escassa", - "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriu escassa", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Punts de línia de base", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Punts de la línia del mig", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Punts diagonals", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Punts verticals", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Matriu estequiomètrica", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Matriu estequiomètrica", "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "Matriu d’identitat 2x2", "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "Matriu d’identitat 3x3", "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "Matriu d’identitat 3x3", "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "Matriu d’identitat 3x3", "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Fletxa dreta-esquerra inferior", "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Fletxa dreta-esquerra superior", - "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Fletxa inferior cap a esquerra", - "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Fletxa superior cap a esquerra", - "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Fletxa inferior cap a dreta", - "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Fletxa superior cap a dreta", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Fletxa esquerra a sota", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Fletxa esquerra a sobre", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Fletxa dreta a sota", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Fletxa dreta a sobre", "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Dos punts igual", - "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Rendiments", - "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Rendiments Delta", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Rendiment", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Rendiment delta", "SSE.Controllers.Toolbar.txtOperator_Definition": "Igual per definició", "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta igual a", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Fletxa dreta-esquerra inferior", "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Fletxa dreta-esquerra superior", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Fletxa inferior cap a esquerra", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Fletxa superior cap a esquerra", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Fletxa inferior cap a dreta", - "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Fletxa superior cap a dreta", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Fletxa esquerra a sota", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Fletxa esquerra a sobre", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Fletxa dreta a sota", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Fletxa dreta a sobre", "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Igual igual", "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Menys igual", "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Més igual", - "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Unitat de Mesura", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Mesurat per", "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Arrel quadrada amb grau", "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Arrel cúbica", - "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radical amb índex", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radical amb grau", "SSE.Controllers.Toolbar.txtRadicalSqrt": "Arrel quadrada", - "SSE.Controllers.Toolbar.txtScriptCustom_1": "Índex", - "SSE.Controllers.Toolbar.txtScriptCustom_2": "Índex", - "SSE.Controllers.Toolbar.txtScriptCustom_3": "Índex", - "SSE.Controllers.Toolbar.txtScriptCustom_4": "Índex", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Script", "SSE.Controllers.Toolbar.txtScriptSub": "Subíndex", "SSE.Controllers.Toolbar.txtScriptSubSup": "Subíndex-superíndex", - "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Subíndex-superíndex esquerra", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Subíndex-superíndex esquerre\n\t", "SSE.Controllers.Toolbar.txtScriptSup": "Superíndex", "SSE.Controllers.Toolbar.txtSorting": "Ordenació", - "SSE.Controllers.Toolbar.txtSortSelected": "Ordenar els objectes seleccionats", + "SSE.Controllers.Toolbar.txtSortSelected": "Ordena els objectes seleccionats", "SSE.Controllers.Toolbar.txtSymbol_about": "Aproximadament", "SSE.Controllers.Toolbar.txtSymbol_additional": "Complement", - "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", - "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "Àlef", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alfa", "SSE.Controllers.Toolbar.txtSymbol_approx": "Gairebé igual a", "SSE.Controllers.Toolbar.txtSymbol_ast": "Operador asterisc", "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", "SSE.Controllers.Toolbar.txtSymbol_beth": "Bet", - "SSE.Controllers.Toolbar.txtSymbol_bullet": "Operador de Vinyeta", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Operador de pic", "SSE.Controllers.Toolbar.txtSymbol_cap": "Intersecció", - "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Arrel de Cub", - "SSE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsis horitzontal de línia mitja", - "SSE.Controllers.Toolbar.txtSymbol_celsius": "Graus Celsius", - "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Arrel cúbica", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "El·lipsi horitzontal de línia mitja", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "Graus celsius", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Khi", "SSE.Controllers.Toolbar.txtSymbol_cong": "Aproximadament igual a", "SSE.Controllers.Toolbar.txtSymbol_cup": "Unió", - "SSE.Controllers.Toolbar.txtSymbol_ddots": "El·lipsi en diagonal a baix", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "El·lipsi en diagonal cap avall", "SSE.Controllers.Toolbar.txtSymbol_degree": "Graus", "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", - "SSE.Controllers.Toolbar.txtSymbol_div": "Rètol de divisió", + "SSE.Controllers.Toolbar.txtSymbol_div": "Signe de divisió", "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Fletxa cap avall", "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Conjunt buit", "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Èpsilon", @@ -1313,11 +1316,11 @@ "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", "SSE.Controllers.Toolbar.txtSymbol_exists": "Existeix", "SSE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", - "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus Fahrenheit", - "SSE.Controllers.Toolbar.txtSymbol_forall": "Per tot", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Graus fahrenheit", + "SSE.Controllers.Toolbar.txtSymbol_forall": "Per a tot", "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", - "SSE.Controllers.Toolbar.txtSymbol_geq": "Major o Igual a", - "SSE.Controllers.Toolbar.txtSymbol_gg": "Major que", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Més gran o igual a", + "SSE.Controllers.Toolbar.txtSymbol_gg": "Molt més gran que", "SSE.Controllers.Toolbar.txtSymbol_greater": "Més gran que", "SSE.Controllers.Toolbar.txtSymbol_in": "Element de", "SSE.Controllers.Toolbar.txtSymbol_inc": "Increment", @@ -1329,212 +1332,212 @@ "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Fletxa esquerra-dreta", "SSE.Controllers.Toolbar.txtSymbol_leq": "Menor o igual que", "SSE.Controllers.Toolbar.txtSymbol_less": "Menor que", - "SSE.Controllers.Toolbar.txtSymbol_ll": "Menor que", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Molt més petit que", "SSE.Controllers.Toolbar.txtSymbol_minus": "Menys", "SSE.Controllers.Toolbar.txtSymbol_mp": "Menys més", - "SSE.Controllers.Toolbar.txtSymbol_mu": "Dim", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", - "SSE.Controllers.Toolbar.txtSymbol_neq": "No igual a", + "SSE.Controllers.Toolbar.txtSymbol_neq": "No és igual a", "SSE.Controllers.Toolbar.txtSymbol_ni": "Conté com a membre", "SSE.Controllers.Toolbar.txtSymbol_not": "Signe de negació", "SSE.Controllers.Toolbar.txtSymbol_notexists": "No existeix", - "SSE.Controllers.Toolbar.txtSymbol_nu": "Ni", - "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "SSE.Controllers.Toolbar.txtSymbol_o": "Òmicron", "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", - "SSE.Controllers.Toolbar.txtSymbol_partial": "Derivada parcial", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Diferencial parcial", "SSE.Controllers.Toolbar.txtSymbol_percent": "Percentatge", - "SSE.Controllers.Toolbar.txtSymbol_phi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Fi", "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", "SSE.Controllers.Toolbar.txtSymbol_plus": "Més", - "SSE.Controllers.Toolbar.txtSymbol_pm": "Més menos", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Més menys", "SSE.Controllers.Toolbar.txtSymbol_propto": "Proporcional a", "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", - "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Quart directori", - "SSE.Controllers.Toolbar.txtSymbol_qed": "Fi de la prova", - "SSE.Controllers.Toolbar.txtSymbol_rddots": "El·lipsis en diagonal d'esquerra a dreta", - "SSE.Controllers.Toolbar.txtSymbol_rho": "Ro", - "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Fletxa Dreta", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Arrel quarta", + "SSE.Controllers.Toolbar.txtSymbol_qed": "Final de la demostració", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "El·lipsi en diagonal d'esquerra a dreta", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Fletxa dreta", "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", - "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Signe de Radical", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Símbol de radical", "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", "SSE.Controllers.Toolbar.txtSymbol_therefore": "Per tant", "SSE.Controllers.Toolbar.txtSymbol_theta": "Zeta", - "SSE.Controllers.Toolbar.txtSymbol_times": "Signe de Multiplicació", + "SSE.Controllers.Toolbar.txtSymbol_times": "Signe de multiplicació", "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Fletxa amunt", - "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Èpsilon", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Ípsilon", "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Variant d’èpsilon", - "SSE.Controllers.Toolbar.txtSymbol_varphi": "Variant Pi", - "SSE.Controllers.Toolbar.txtSymbol_varpi": "Variant Pi", - "SSE.Controllers.Toolbar.txtSymbol_varrho": "Variant Ro", - "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Variant Sigma", - "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Variant Zeta", - "SSE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsis Vertical", - "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Variant Fi", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Variant pi", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Variant de Rho", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Variant sigma", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Variant zeta", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "El·lipsi vertical", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Ksi", "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", - "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Estil de Taula Fosca", - "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Estil de la Taula Clara", - "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Estil de la Taula Mitja", - "SSE.Controllers.Toolbar.warnLongOperation": "L’operació que esteu a punt de realitzar pot trigar molt temps a completar-se.
Esteu segur que voleu continuar?", - "SSE.Controllers.Toolbar.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.Viewport.textFreezePanes": "Congela Panells", - "SSE.Controllers.Viewport.textFreezePanesShadow": "Mostra l’Ombra dels Panells Congelats", - "SSE.Controllers.Viewport.textHideFBar": "Amagar barra de formules", - "SSE.Controllers.Viewport.textHideGridlines": "Amagar Quadrícules", - "SSE.Controllers.Viewport.textHideHeadings": "Amagar Encapçalaments", - "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separador Decimal", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Estil de taula fosc", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Estil de la taula clar", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Estil de taula mitjà", + "SSE.Controllers.Toolbar.warnLongOperation": "L’operació que esteu a punt de realitzar pot trigar molt temps a completar-se.
Segur que voleu continuar?", + "SSE.Controllers.Toolbar.warnMergeLostData": "Només les dades de la cel·la superior esquerra romandran a la cel·la combinada.
Esteu segur que voleu continuar?", + "SSE.Controllers.Viewport.textFreezePanes": "Immobilitza les subfinestres", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Mostra l'ombra de les subfinestres immobilitzades", + "SSE.Controllers.Viewport.textHideFBar": "Amaga la barra de fórmules", + "SSE.Controllers.Viewport.textHideGridlines": "Amaga les línies de la quadrícula ", + "SSE.Controllers.Viewport.textHideHeadings": "Amaga els títols", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Separador de decimals", "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Separador de milers", "SSE.Views.AdvancedSeparatorDialog.textLabel": "Configuració que es fa servir per reconèixer les dades numèriques", "SSE.Views.AdvancedSeparatorDialog.textTitle": "Configuració Avançada", - "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtre Personalitzat", - "SSE.Views.AutoFilterDialog.textAddSelection": "Afegiu la selecció actual al filtre", + "SSE.Views.AutoFilterDialog.btnCustomFilter": "Filtre personalitzat", + "SSE.Views.AutoFilterDialog.textAddSelection": "Afegeix la selecció actual al filtre", "SSE.Views.AutoFilterDialog.textEmptyItem": "{En blanc}", "SSE.Views.AutoFilterDialog.textSelectAll": "Selecciona-ho tot ", - "SSE.Views.AutoFilterDialog.textSelectAllResults": "Seleccionar Tots els Resultats de la Cerca", - "SSE.Views.AutoFilterDialog.textWarning": "Avis", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "Selecciona tots els resultats de la cerca", + "SSE.Views.AutoFilterDialog.textWarning": "Advertiment", "SSE.Views.AutoFilterDialog.txtAboveAve": "Per sobre de la mitja", "SSE.Views.AutoFilterDialog.txtBegins": "Comença amb...", "SSE.Views.AutoFilterDialog.txtBelowAve": "Per sota de la mitja", "SSE.Views.AutoFilterDialog.txtBetween": "Entre...", - "SSE.Views.AutoFilterDialog.txtClear": "Esborrar", + "SSE.Views.AutoFilterDialog.txtClear": "Suprimeix", "SSE.Views.AutoFilterDialog.txtContains": "Conté...", - "SSE.Views.AutoFilterDialog.txtEmpty": "Introduïu un filtre de cel·la", + "SSE.Views.AutoFilterDialog.txtEmpty": "Introdueix un filtre de cel·la", "SSE.Views.AutoFilterDialog.txtEnds": "Acaba amb...", - "SSE.Views.AutoFilterDialog.txtEquals": "És igual...", + "SSE.Views.AutoFilterDialog.txtEquals": "És igual a...", "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filtra per color de les cel·les", "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filtra per color de la lletra", "SSE.Views.AutoFilterDialog.txtGreater": "Més gran que...", - "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Major o igual a...", - "SSE.Views.AutoFilterDialog.txtLabelFilter": "Filtre Etiqueta", - "SSE.Views.AutoFilterDialog.txtLess": "Menys que...", - "SSE.Views.AutoFilterDialog.txtLessEquals": "Menys que o igual a...", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Més gran o igual a...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Filtre per etiqueta", + "SSE.Views.AutoFilterDialog.txtLess": "Menor que...", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Menor que o igual que...", "SSE.Views.AutoFilterDialog.txtNotBegins": "No comença per...", "SSE.Views.AutoFilterDialog.txtNotBetween": "No entre...", "SSE.Views.AutoFilterDialog.txtNotContains": "No conté...", "SSE.Views.AutoFilterDialog.txtNotEnds": "No acaba amb...", - "SSE.Views.AutoFilterDialog.txtNotEquals": "No igual a...", - "SSE.Views.AutoFilterDialog.txtNumFilter": "Filtre de Números", - "SSE.Views.AutoFilterDialog.txtReapply": "Reaplicar", + "SSE.Views.AutoFilterDialog.txtNotEquals": "No és igual a...", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Filtre de número", + "SSE.Views.AutoFilterDialog.txtReapply": "Torna-ho a aplicar", "SSE.Views.AutoFilterDialog.txtSortCellColor": "Ordena per color de les cel·les", - "SSE.Views.AutoFilterDialog.txtSortFontColor": "Ordenar per color de lletra", - "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Ordenar de Major a Menor", - "SSE.Views.AutoFilterDialog.txtSortLow2High": "Ordenar de Menor a Major", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "Ordena per color de la lletra", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Ordena de major a menor", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "Ordena de menor a major", "SSE.Views.AutoFilterDialog.txtSortOption": "Més opcions de classificació ...", - "SSE.Views.AutoFilterDialog.txtTextFilter": "Filtre de Text", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Filtre del text", "SSE.Views.AutoFilterDialog.txtTitle": "Filtre", - "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", - "SSE.Views.AutoFilterDialog.txtValueFilter": "Valor del Filtre", - "SSE.Views.AutoFilterDialog.warnFilterError": "Per aplicar un filtre de valor, cal aplicar almenys un camp a l’àrea de valors.", - "SSE.Views.AutoFilterDialog.warnNoSelected": "Heu de triar almenys un valor", - "SSE.Views.CellEditor.textManager": "Gestor de Noms", - "SSE.Views.CellEditor.tipFormula": "Inserir funció", + "SSE.Views.AutoFilterDialog.txtTop10": "Els 10 primers", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Filtre per valor", + "SSE.Views.AutoFilterDialog.warnFilterError": "Necessiteu com a mínim un camp a l'àrea Valors per aplicar un filtre de valors.", + "SSE.Views.AutoFilterDialog.warnNoSelected": "Com a mínim heu de triar un valor", + "SSE.Views.CellEditor.textManager": "Administrador de noms", + "SSE.Views.CellEditor.tipFormula": "Insereix una funció", "SSE.Views.CellRangeDialog.errorMaxRows": "ERROR! El nombre màxim de sèries de dades per gràfic és de 255", - "SSE.Views.CellRangeDialog.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.Views.CellRangeDialog.txtEmpty": "Aquest camp és obligatori", - "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Interval de celdes no vàlid", - "SSE.Views.CellRangeDialog.txtTitle": "Seleccionar Interval de dades", - "SSE.Views.CellSettings.strShrink": "Encaixar pàgina", - "SSE.Views.CellSettings.strWrap": "Ajustar el text", + "SSE.Views.CellRangeDialog.errorStockChart": "L'ordre de fila no és correcte. 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.Views.CellRangeDialog.txtEmpty": "Aquest camp és necessari", + "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! L'interval de cel·les no és vàlid", + "SSE.Views.CellRangeDialog.txtTitle": "Selecciona un interval de dades", + "SSE.Views.CellSettings.strShrink": "Redueix fins ajustar", + "SSE.Views.CellSettings.strWrap": "Ajusta el text", "SSE.Views.CellSettings.textAngle": "Angle", - "SSE.Views.CellSettings.textBackColor": "Color de Fons", - "SSE.Views.CellSettings.textBackground": "Color de Fons", + "SSE.Views.CellSettings.textBackColor": "Color de fons", + "SSE.Views.CellSettings.textBackground": "Color de fons", "SSE.Views.CellSettings.textBorderColor": "Color", - "SSE.Views.CellSettings.textBorders": "Estil de la Vora", - "SSE.Views.CellSettings.textClearRule": "Netejar les regles", - "SSE.Views.CellSettings.textColor": "Omplir de Color", - "SSE.Views.CellSettings.textColorScales": "Escala de color", + "SSE.Views.CellSettings.textBorders": "Estil de les vores", + "SSE.Views.CellSettings.textClearRule": "Esborra les normes", + "SSE.Views.CellSettings.textColor": "Color d'emplenament", + "SSE.Views.CellSettings.textColorScales": "Escales de color", "SSE.Views.CellSettings.textCondFormat": "Format condicional", - "SSE.Views.CellSettings.textControl": "Control de Text", - "SSE.Views.CellSettings.textDataBars": "Barra de Dades", + "SSE.Views.CellSettings.textControl": "Control del text", + "SSE.Views.CellSettings.textDataBars": "Barra de dades", "SSE.Views.CellSettings.textDirection": "Direcció", - "SSE.Views.CellSettings.textFill": "Omplir", - "SSE.Views.CellSettings.textForeground": "Color de Primer Pla", - "SSE.Views.CellSettings.textGradient": "Punts de Degradat", + "SSE.Views.CellSettings.textFill": "Emplena", + "SSE.Views.CellSettings.textForeground": "Color de primer pla", + "SSE.Views.CellSettings.textGradient": "Degradat", "SSE.Views.CellSettings.textGradientColor": "Color", - "SSE.Views.CellSettings.textGradientFill": "Omplir Degradat", - "SSE.Views.CellSettings.textIndent": "Sagnat", + "SSE.Views.CellSettings.textGradientFill": "Emplenament de gradient", + "SSE.Views.CellSettings.textIndent": "Sagnia", "SSE.Views.CellSettings.textItems": "Elements", "SSE.Views.CellSettings.textLinear": "Lineal", - "SSE.Views.CellSettings.textManageRule": "Gestionar Regles", - "SSE.Views.CellSettings.textNewRule": "Nova regla", - "SSE.Views.CellSettings.textNoFill": "Sense Omplir", - "SSE.Views.CellSettings.textOrientation": "Orientació del Text", + "SSE.Views.CellSettings.textManageRule": "Administra les regles", + "SSE.Views.CellSettings.textNewRule": "Crea una regla", + "SSE.Views.CellSettings.textNoFill": "Sense emplenament", + "SSE.Views.CellSettings.textOrientation": "Orientació del text", "SSE.Views.CellSettings.textPattern": "Patró", "SSE.Views.CellSettings.textPatternFill": "Patró", "SSE.Views.CellSettings.textPosition": "Posició", "SSE.Views.CellSettings.textRadial": "Radial", - "SSE.Views.CellSettings.textSelectBorders": "Seleccioneu les vores que vulgueu canviar aplicant l'estil escollit anteriorment", + "SSE.Views.CellSettings.textSelectBorders": "Selecciona les vores que vulguis canviar tot aplicant l'estil escollit anteriorment", "SSE.Views.CellSettings.textSelection": "Des de la selecció actual", - "SSE.Views.CellSettings.textThisPivot": "Des d'aquesta taula pivot", - "SSE.Views.CellSettings.textThisSheet": "Des d'aquest full de treball", + "SSE.Views.CellSettings.textThisPivot": "Des d'aquest document principal", + "SSE.Views.CellSettings.textThisSheet": "Des d'aquest full de càlcul", "SSE.Views.CellSettings.textThisTable": "Des d'aquesta taula", - "SSE.Views.CellSettings.tipAddGradientPoint": "Afegir punt de degradat", - "SSE.Views.CellSettings.tipAll": "Establir el límit exterior i totes les línies interiors", - "SSE.Views.CellSettings.tipBottom": "Establir només la vora inferior exterior", - "SSE.Views.CellSettings.tipDiagD": "Estableix la vora en diagonal abaix", - "SSE.Views.CellSettings.tipDiagU": "Estableix la vora en diagonal cap a dalt", - "SSE.Views.CellSettings.tipInner": "Establir només línies interiors", - "SSE.Views.CellSettings.tipInnerHor": "Establir només línies interiors horitzontals", - "SSE.Views.CellSettings.tipInnerVert": "Establir només línies interiors verticals", - "SSE.Views.CellSettings.tipLeft": "Definir només la vora exterior esquerra", - "SSE.Views.CellSettings.tipNone": "No establir vores", - "SSE.Views.CellSettings.tipOuter": "Definir només la vora exterior", - "SSE.Views.CellSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "SSE.Views.CellSettings.tipRight": "Definir només la vora externa dreta", - "SSE.Views.CellSettings.tipTop": "Definir només la vora superior externa", + "SSE.Views.CellSettings.tipAddGradientPoint": "Afegeix un punt de degradat", + "SSE.Views.CellSettings.tipAll": "Estableix el límit exterior i totes les línies interiors", + "SSE.Views.CellSettings.tipBottom": "Estableix només la vora inferior exterior", + "SSE.Views.CellSettings.tipDiagD": "Estableix la vora diagonal inferior", + "SSE.Views.CellSettings.tipDiagU": "Estableix la vora diagonal superior", + "SSE.Views.CellSettings.tipInner": "Estableix només les línies interiors", + "SSE.Views.CellSettings.tipInnerHor": "Estableix només les línies interiors horitzontals", + "SSE.Views.CellSettings.tipInnerVert": "Estableix només línies interiors verticals", + "SSE.Views.CellSettings.tipLeft": "Estableix només la vora exterior esquerra", + "SSE.Views.CellSettings.tipNone": "No estableixis vores", + "SSE.Views.CellSettings.tipOuter": "Estableix només la vora exterior", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Suprimeix el punt de degradat", + "SSE.Views.CellSettings.tipRight": "Estableix només la vora exterior dreta", + "SSE.Views.CellSettings.tipTop": "Estableix només la vora superior externa", "SSE.Views.ChartDataDialog.errorInFormula": "Hi ha un error a la fórmula que heu introduït.", - "SSE.Views.ChartDataDialog.errorInvalidReference": "La referència no és vàlida. La referència ha de ser un full de treball obert.", + "SSE.Views.ChartDataDialog.errorInvalidReference": "La referència no és vàlida. La referència ha de ser un full de càlcul obert.", "SSE.Views.ChartDataDialog.errorMaxPoints": "El nombre màxim de punts de la sèrie per gràfic és de 4096.", "SSE.Views.ChartDataDialog.errorMaxRows": "El nombre màxim de sèries de dades per gràfic és de 255.", "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "La referència no és vàlida. Les referències de títols, valors, mides o etiquetes de dades han de ser una sola cel·la, fila o columna.", "SSE.Views.ChartDataDialog.errorNoValues": "Per crear un gràfic, la sèrie ha de contenir com a mínim un valor.", - "SSE.Views.ChartDataDialog.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.Views.ChartDataDialog.textAdd": "Afegir", - "SSE.Views.ChartDataDialog.textCategory": "Etiquetes d'Eix Horitzontal (Categoria)", + "SSE.Views.ChartDataDialog.errorStockChart": "L'ordre de fila no és correcte. 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.Views.ChartDataDialog.textAdd": "Afegeix", + "SSE.Views.ChartDataDialog.textCategory": "Etiquetes d'eix horitzontal (categoria)", "SSE.Views.ChartDataDialog.textData": "Interval de dades del gràfic", - "SSE.Views.ChartDataDialog.textDelete": "Esborrar", - "SSE.Views.ChartDataDialog.textDown": "A baix", - "SSE.Views.ChartDataDialog.textEdit": "Editar", - "SSE.Views.ChartDataDialog.textInvalidRange": "Interval de cel·les no vàlid", - "SSE.Views.ChartDataDialog.textSelectData": "Seleccionar dades", - "SSE.Views.ChartDataDialog.textSeries": "Entrades de Llegenda (Sèries)", - "SSE.Views.ChartDataDialog.textSwitch": "Canviar Fila/Columna", - "SSE.Views.ChartDataDialog.textTitle": "Dades del Gràfic", + "SSE.Views.ChartDataDialog.textDelete": "Suprimeix", + "SSE.Views.ChartDataDialog.textDown": "Avall", + "SSE.Views.ChartDataDialog.textEdit": "Edita", + "SSE.Views.ChartDataDialog.textInvalidRange": "L'interval de cel·les no és vàlid", + "SSE.Views.ChartDataDialog.textSelectData": "Selecciona dades", + "SSE.Views.ChartDataDialog.textSeries": "Entrades de llegenda (sèrie)", + "SSE.Views.ChartDataDialog.textSwitch": "Canvia la fila o la columna", + "SSE.Views.ChartDataDialog.textTitle": "Dades del gràfic", "SSE.Views.ChartDataDialog.textUp": "Amunt", "SSE.Views.ChartDataRangeDialog.errorInFormula": "Hi ha un error a la fórmula que heu introduït.", - "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "La referència no és vàlida. La referència ha de ser un full de treball obert.", - "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "El nombre màxim de punts de la sèrie per gràfic és de 4096.", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "La referència no és vàlida. La referència ha de ser un full de càlcul obert.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "El nombre màxim de punts en sèries per gràfic és de 4096.", "SSE.Views.ChartDataRangeDialog.errorMaxRows": "El nombre màxim de sèries de dades per gràfic és de 255.", "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "La referència no és vàlida. Les referències de títols, valors, mides o etiquetes de dades han de ser una sola cel·la, fila o columna.", "SSE.Views.ChartDataRangeDialog.errorNoValues": "Per crear un gràfic, la sèrie ha de contenir com a mínim un valor.", - "SSE.Views.ChartDataRangeDialog.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.Views.ChartDataRangeDialog.textInvalidRange": "Interval de cel·les no vàlid", - "SSE.Views.ChartDataRangeDialog.textSelectData": "Seleccionar dades", - "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Rang d'etiquetes de l'eix", - "SSE.Views.ChartDataRangeDialog.txtChoose": "Trieu el rang", - "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Nom de la Sèrie", - "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Etiquetes d'Eix", - "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Editar Series", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "L'ordre de fila no és correcte. 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.Views.ChartDataRangeDialog.textInvalidRange": "L'interval de cel·les no és vàlid", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Selecciona dades", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Interval d'etiquetes de l'eix", + "SSE.Views.ChartDataRangeDialog.txtChoose": "Tria l'interval", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Nom de la sèrie", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Etiquetes de l'eix", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Edita la sèrie", "SSE.Views.ChartDataRangeDialog.txtValues": "Valors", "SSE.Views.ChartDataRangeDialog.txtXValues": "Valors X", "SSE.Views.ChartDataRangeDialog.txtYValues": "Valors Y", - "SSE.Views.ChartSettings.strLineWeight": "Gruix de Línia", + "SSE.Views.ChartSettings.strLineWeight": "Gruix de línia", "SSE.Views.ChartSettings.strSparkColor": "Color", "SSE.Views.ChartSettings.strTemplate": "Plantilla", "SSE.Views.ChartSettings.textAdvanced": "Mostra la configuració avançada", - "SSE.Views.ChartSettings.textBorderSizeErr": "El valor introduït és incorrecte.
Introduïu un valor entre 0 pt i 1584 pt.", + "SSE.Views.ChartSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", "SSE.Views.ChartSettings.textChangeType": "Canvia el tipus", - "SSE.Views.ChartSettings.textChartType": "Canviar el tipus de gràfic", - "SSE.Views.ChartSettings.textEditData": "Editar Dades i Ubicació", - "SSE.Views.ChartSettings.textFirstPoint": "Primer Punt", + "SSE.Views.ChartSettings.textChartType": "Canvia el tipus de gràfic", + "SSE.Views.ChartSettings.textEditData": "Edita les dades i la ubicació", + "SSE.Views.ChartSettings.textFirstPoint": "Primer punt", "SSE.Views.ChartSettings.textHeight": "Alçada", - "SSE.Views.ChartSettings.textHighPoint": "Punt Alt", - "SSE.Views.ChartSettings.textKeepRatio": "Proporcions Constants", - "SSE.Views.ChartSettings.textLastPoint": "Últim punt", - "SSE.Views.ChartSettings.textLowPoint": "Punt Baix", + "SSE.Views.ChartSettings.textHighPoint": "Punt alt", + "SSE.Views.ChartSettings.textKeepRatio": "Proporcions constants", + "SSE.Views.ChartSettings.textLastPoint": "El darrer punt", + "SSE.Views.ChartSettings.textLowPoint": "Punt baix", "SSE.Views.ChartSettings.textMarkers": "Marcadors", - "SSE.Views.ChartSettings.textNegativePoint": "Punt Negatiu", - "SSE.Views.ChartSettings.textRanges": "Interval de Dades", - "SSE.Views.ChartSettings.textSelectData": "Seleccionar Dades", + "SSE.Views.ChartSettings.textNegativePoint": "Punt negatiu", + "SSE.Views.ChartSettings.textRanges": "Interval de dades", + "SSE.Views.ChartSettings.textSelectData": "Selecciona dades", "SSE.Views.ChartSettings.textShow": "Mostra", "SSE.Views.ChartSettings.textSize": "Mida", "SSE.Views.ChartSettings.textStyle": "Estil", @@ -1542,172 +1545,172 @@ "SSE.Views.ChartSettings.textWidth": "Amplada", "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERROR! El nombre màxim de punts de la sèrie per gràfic és de 4096.", "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! El nombre màxim de sèries de dades per gràfic és de 255", - "SSE.Views.ChartSettingsDlg.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.Views.ChartSettingsDlg.textAbsolute": "No moure o canviar mida les cel·les", - "SSE.Views.ChartSettingsDlg.textAlt": "Text Alternatiu", + "SSE.Views.ChartSettingsDlg.errorStockChart": "L'ordre de fila no és correcte. 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.Views.ChartSettingsDlg.textAbsolute": "No moguis o canviïs la mida les cel·les", + "SSE.Views.ChartSettingsDlg.textAlt": "Text alternatiu", "SSE.Views.ChartSettingsDlg.textAltDescription": "Descripció", - "SSE.Views.ChartSettingsDlg.textAltTip": "La representació alternativa basada en text de la informació d’objectes visuals, que es llegirà a les persones amb deficiències de visió o cognitives per ajudar-les a comprendre millor quina informació hi ha a la imatge, autoforma, gràfic o taula.", + "SSE.Views.ChartSettingsDlg.textAltTip": "La representació de la informació dels objectes visuals que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.", "SSE.Views.ChartSettingsDlg.textAltTitle": "Títol", - "SSE.Views.ChartSettingsDlg.textAuto": "Auto", - "SSE.Views.ChartSettingsDlg.textAutoEach": "Automàtic per Cadascun", - "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Creus d’Eix", - "SSE.Views.ChartSettingsDlg.textAxisOptions": "Opcions de l’Eix", - "SSE.Views.ChartSettingsDlg.textAxisPos": "Posició de l’Eix", - "SSE.Views.ChartSettingsDlg.textAxisSettings": "Configuració de l’Eix", + "SSE.Views.ChartSettingsDlg.textAuto": "Automàtic", + "SSE.Views.ChartSettingsDlg.textAutoEach": "Automàtic per a cadascun", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Creus de l'eix", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "Opcions de l’eix", + "SSE.Views.ChartSettingsDlg.textAxisPos": "Posició de l’eix", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "Configuració de l’eix", "SSE.Views.ChartSettingsDlg.textAxisTitle": "Títol", - "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre Marques de Graduació", - "SSE.Views.ChartSettingsDlg.textBillions": "Bilions", - "SSE.Views.ChartSettingsDlg.textBottom": "Inferior", - "SSE.Views.ChartSettingsDlg.textCategoryName": "Nom de Categoria", - "SSE.Views.ChartSettingsDlg.textCenter": "Centre", + "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Entre les marques", + "SSE.Views.ChartSettingsDlg.textBillions": "Milers de milions", + "SSE.Views.ChartSettingsDlg.textBottom": "Part inferior", + "SSE.Views.ChartSettingsDlg.textCategoryName": "Nom de categoria", + "SSE.Views.ChartSettingsDlg.textCenter": "Centra", "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Elements del gràfic i
Llegenda del gràfic", - "SSE.Views.ChartSettingsDlg.textChartTitle": "Títol del Gràfic", + "SSE.Views.ChartSettingsDlg.textChartTitle": "Títol del gràfic", "SSE.Views.ChartSettingsDlg.textCross": "Creu", "SSE.Views.ChartSettingsDlg.textCustom": "Personalitzat", - "SSE.Views.ChartSettingsDlg.textDataColumns": "a columnes", - "SSE.Views.ChartSettingsDlg.textDataLabels": "Etiquetes de Dades", - "SSE.Views.ChartSettingsDlg.textDataRows": "a files", - "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Visualitza la Llegenda", - "SSE.Views.ChartSettingsDlg.textEmptyCells": "Cel·les amagades i buides", - "SSE.Views.ChartSettingsDlg.textEmptyLine": "Connectar punts de dades amb línies", - "SSE.Views.ChartSettingsDlg.textFit": "Ajusta a Amplada", + "SSE.Views.ChartSettingsDlg.textDataColumns": "en columnes", + "SSE.Views.ChartSettingsDlg.textDataLabels": "Etiquetes de dades", + "SSE.Views.ChartSettingsDlg.textDataRows": "en files", + "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Visualitza la llegenda", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "Les cel·les estan amagades i buides", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "Connecta els punts de dades amb la línia", + "SSE.Views.ChartSettingsDlg.textFit": "Ajusta-ho a l'amplària", "SSE.Views.ChartSettingsDlg.textFixed": "Fixat", "SSE.Views.ChartSettingsDlg.textFormat": "Format de l'etiqueta", - "SSE.Views.ChartSettingsDlg.textGaps": "Bretxa", - "SSE.Views.ChartSettingsDlg.textGridLines": "Quadrícules", - "SSE.Views.ChartSettingsDlg.textGroup": "Agrupar sparkline", - "SSE.Views.ChartSettingsDlg.textHide": "Amagar", - "SSE.Views.ChartSettingsDlg.textHideAxis": "Amagar eix", + "SSE.Views.ChartSettingsDlg.textGaps": "Intervals", + "SSE.Views.ChartSettingsDlg.textGridLines": "Línies de la quadrícula", + "SSE.Views.ChartSettingsDlg.textGroup": "Agrupa sparkline", + "SSE.Views.ChartSettingsDlg.textHide": "Amaga", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Amaga l'eix", "SSE.Views.ChartSettingsDlg.textHigh": "Alt", - "SSE.Views.ChartSettingsDlg.textHorAxis": "Eix Horitzontal", - "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Eix Horitzontal secundari", + "SSE.Views.ChartSettingsDlg.textHorAxis": "Eix horitzontal", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Eix horitzontal secundari", "SSE.Views.ChartSettingsDlg.textHorizontal": "Horitzontal", - "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", + "SSE.Views.ChartSettingsDlg.textHundredMil": "100.000.000", "SSE.Views.ChartSettingsDlg.textHundreds": "Centenars", - "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", + "SSE.Views.ChartSettingsDlg.textHundredThousands": "100.000", "SSE.Views.ChartSettingsDlg.textIn": "A", - "SSE.Views.ChartSettingsDlg.textInnerBottom": "Part inferior interior", - "SSE.Views.ChartSettingsDlg.textInnerTop": "Part superior interior", - "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERROR! Interval de celdes no vàlid", - "SSE.Views.ChartSettingsDlg.textLabelDist": "Eix a la Distància de l'Etiqueta", - "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval entre Etiquetes", - "SSE.Views.ChartSettingsDlg.textLabelOptions": "Opcions Etiqueta", - "SSE.Views.ChartSettingsDlg.textLabelPos": "Posició Etiqueta", - "SSE.Views.ChartSettingsDlg.textLayout": "Maquetació", + "SSE.Views.ChartSettingsDlg.textInnerBottom": "Part inferior interna", + "SSE.Views.ChartSettingsDlg.textInnerTop": "Part superior interna", + "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", + "SSE.Views.ChartSettingsDlg.textLabelDist": "Distància de l’etiqueta de l’eix", + "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval entre etiquetes", + "SSE.Views.ChartSettingsDlg.textLabelOptions": "Opcions de l'etiqueta", + "SSE.Views.ChartSettingsDlg.textLabelPos": "Posició de l'etiqueta", + "SSE.Views.ChartSettingsDlg.textLayout": "Disposició", "SSE.Views.ChartSettingsDlg.textLeft": "Esquerra", - "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Superposició Esquerra", - "SSE.Views.ChartSettingsDlg.textLegendBottom": "Inferior", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Superposició esquerra", + "SSE.Views.ChartSettingsDlg.textLegendBottom": "Part inferior", "SSE.Views.ChartSettingsDlg.textLegendLeft": "Esquerra", "SSE.Views.ChartSettingsDlg.textLegendPos": "Llegenda", "SSE.Views.ChartSettingsDlg.textLegendRight": "Dreta", "SSE.Views.ChartSettingsDlg.textLegendTop": "Superior", "SSE.Views.ChartSettingsDlg.textLines": "Línies", - "SSE.Views.ChartSettingsDlg.textLocationRange": "Rang d'Ubicació", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Interval d'ubicació", "SSE.Views.ChartSettingsDlg.textLow": "Baix", "SSE.Views.ChartSettingsDlg.textMajor": "Principal", - "SSE.Views.ChartSettingsDlg.textMajorMinor": "Principals i Secundaris", - "SSE.Views.ChartSettingsDlg.textMajorType": "Tipus Principal", - "SSE.Views.ChartSettingsDlg.textManual": "Manualment", + "SSE.Views.ChartSettingsDlg.textMajorMinor": "Principal i secundari", + "SSE.Views.ChartSettingsDlg.textMajorType": "Tipus principal", + "SSE.Views.ChartSettingsDlg.textManual": "Manual", "SSE.Views.ChartSettingsDlg.textMarkers": "Marcadors", "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval entre marques", - "SSE.Views.ChartSettingsDlg.textMaxValue": "Valor Màxim", + "SSE.Views.ChartSettingsDlg.textMaxValue": "Valor màxim", "SSE.Views.ChartSettingsDlg.textMillions": "Milions", - "SSE.Views.ChartSettingsDlg.textMinor": "Menor", - "SSE.Views.ChartSettingsDlg.textMinorType": "Tipus Menor", - "SSE.Views.ChartSettingsDlg.textMinValue": "Valor Mínim", - "SSE.Views.ChartSettingsDlg.textNextToAxis": "Al costat del eix", + "SSE.Views.ChartSettingsDlg.textMinor": "Secundari", + "SSE.Views.ChartSettingsDlg.textMinorType": "Tipus Secundari", + "SSE.Views.ChartSettingsDlg.textMinValue": "Valor mínim", + "SSE.Views.ChartSettingsDlg.textNextToAxis": "Al costat de l'eix", "SSE.Views.ChartSettingsDlg.textNone": "Cap", - "SSE.Views.ChartSettingsDlg.textNoOverlay": "Sense Superposició", - "SSE.Views.ChartSettingsDlg.textOneCell": "Moure, però no mida de les cel·les", - "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Marques de Graduació", + "SSE.Views.ChartSettingsDlg.textNoOverlay": "Sense superposició", + "SSE.Views.ChartSettingsDlg.textOneCell": "Desplaça, però no canviïs la mida amb les cel·les", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "Opció activada només per a les marques de graduació", "SSE.Views.ChartSettingsDlg.textOut": "Fora", - "SSE.Views.ChartSettingsDlg.textOuterTop": "Fora Superior", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Part superior externa", "SSE.Views.ChartSettingsDlg.textOverlay": "Superposició", "SSE.Views.ChartSettingsDlg.textReverse": "Valors en ordre invers", - "SSE.Views.ChartSettingsDlg.textReverseOrder": "Ordre invers", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Inverteix l'ordre", "SSE.Views.ChartSettingsDlg.textRight": "Dreta", - "SSE.Views.ChartSettingsDlg.textRightOverlay": "Superposició Dreta", - "SSE.Views.ChartSettingsDlg.textRotated": "Rotació", - "SSE.Views.ChartSettingsDlg.textSameAll": "Igual per a Tots", - "SSE.Views.ChartSettingsDlg.textSelectData": "Seleccionar Dades", - "SSE.Views.ChartSettingsDlg.textSeparator": "Separador d'Etiquetes de Dades", - "SSE.Views.ChartSettingsDlg.textSeriesName": "Nom de la Sèrie", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "Superposició dreta", + "SSE.Views.ChartSettingsDlg.textRotated": "Girat", + "SSE.Views.ChartSettingsDlg.textSameAll": "El mateix per a tots", + "SSE.Views.ChartSettingsDlg.textSelectData": "Selecciona dades", + "SSE.Views.ChartSettingsDlg.textSeparator": "Separador d'etiquetes de dades", + "SSE.Views.ChartSettingsDlg.textSeriesName": "Nom de la sèrie", "SSE.Views.ChartSettingsDlg.textShow": "Mostra", "SSE.Views.ChartSettingsDlg.textShowBorders": "Mostra les vores del gràfic", - "SSE.Views.ChartSettingsDlg.textShowData": "Mostrar les dades a les files i columnes ocultes", + "SSE.Views.ChartSettingsDlg.textShowData": "Mostra les dades a les files i columnes ocultes", "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Mostra les cel·les buides com", - "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Mostrar Eixos", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Mostra els eixos", "SSE.Views.ChartSettingsDlg.textShowValues": "Mostra els valors del gràfic", - "SSE.Views.ChartSettingsDlg.textSingle": "Sparkline Únic", + "SSE.Views.ChartSettingsDlg.textSingle": "Sparkline únic", "SSE.Views.ChartSettingsDlg.textSmooth": "Suau", "SSE.Views.ChartSettingsDlg.textSnap": "Captura de cel·la", - "SSE.Views.ChartSettingsDlg.textSparkRanges": "Rangs Sparkline", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "Intervals de l'Sparkline", "SSE.Views.ChartSettingsDlg.textStraight": "Recte", "SSE.Views.ChartSettingsDlg.textStyle": "Estil", - "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", - "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", + "SSE.Views.ChartSettingsDlg.textTenMillions": "10.000.000", + "SSE.Views.ChartSettingsDlg.textTenThousands": "10.000", "SSE.Views.ChartSettingsDlg.textThousands": "Milers", "SSE.Views.ChartSettingsDlg.textTickOptions": "Opcions de marques de graduació", - "SSE.Views.ChartSettingsDlg.textTitle": "Gràfic-Configuració Avançada", - "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Configuració Avançada", + "SSE.Views.ChartSettingsDlg.textTitle": "Gràfic - Configuració avançada", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Configuració avançada", "SSE.Views.ChartSettingsDlg.textTop": "Superior", - "SSE.Views.ChartSettingsDlg.textTrillions": "Trilions", - "SSE.Views.ChartSettingsDlg.textTwoCell": "Moure i mida de les cel·les", + "SSE.Views.ChartSettingsDlg.textTrillions": "Bilions", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Desplaça i canvia la mida amb les cel·les", "SSE.Views.ChartSettingsDlg.textType": "Tipus", - "SSE.Views.ChartSettingsDlg.textTypeData": "Tipo y Datos", - "SSE.Views.ChartSettingsDlg.textUnits": "Unitats de Visualització", + "SSE.Views.ChartSettingsDlg.textTypeData": "Tipus i dades", + "SSE.Views.ChartSettingsDlg.textUnits": "Unitats de visualització", "SSE.Views.ChartSettingsDlg.textValue": "Valor", - "SSE.Views.ChartSettingsDlg.textVertAxis": "Eix Vertical", - "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Eix Vertical Secundari", - "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Títol Eix X", - "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Títol Eix Y", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Eix vertical", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Eix vertical Secundari", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "Títol eix X", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Títol eix Y", "SSE.Views.ChartSettingsDlg.textZero": "Zero", - "SSE.Views.ChartSettingsDlg.txtEmpty": "Aquest camp és obligatori", - "SSE.Views.ChartTypeDialog.errorComboSeries": "Per crear un diagrama combinat, seleccioneu almenys dues sèries de dades.", - "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "El tipus de diagrama seleccionat requereix l'eix secundari que utilitza un diagrama existent. Seleccioneu un altre tipus de diagrama.", + "SSE.Views.ChartSettingsDlg.txtEmpty": "Aquest camp és necessari", + "SSE.Views.ChartTypeDialog.errorComboSeries": "Per crear un diagrama combinat, seleccioneu com a mínim dues sèries de dades.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "El tipus de gràfic seleccionat requereix l'eix secundari que utilitza un gràfic existent. Seleccioneu un altre tipus de gràfic.", "SSE.Views.ChartTypeDialog.textSecondary": "Eix secundari", - "SSE.Views.ChartTypeDialog.textSeries": "Serie", + "SSE.Views.ChartTypeDialog.textSeries": "Series", "SSE.Views.ChartTypeDialog.textStyle": "Estil", - "SSE.Views.ChartTypeDialog.textTitle": "Tipus de diagrama", + "SSE.Views.ChartTypeDialog.textTitle": "Tipus de gràfic", "SSE.Views.ChartTypeDialog.textType": "Tipus", "SSE.Views.CreatePivotDialog.textDataRange": "Interval de dades d'origen", - "SSE.Views.CreatePivotDialog.textDestination": "Trieu on col·locar la taula", - "SSE.Views.CreatePivotDialog.textExist": "Full de treball existent", - "SSE.Views.CreatePivotDialog.textInvalidRange": "Interval de cel·les no vàlid", - "SSE.Views.CreatePivotDialog.textNew": "Nova fitxa de treball", - "SSE.Views.CreatePivotDialog.textSelectData": "Seleccionar dades", - "SSE.Views.CreatePivotDialog.textTitle": "Crear Taula Dinàmica", - "SSE.Views.CreatePivotDialog.txtEmpty": "Aquest camp és obligatori", + "SSE.Views.CreatePivotDialog.textDestination": "Tria on col·locar la taula", + "SSE.Views.CreatePivotDialog.textExist": "Full de càlcul existent", + "SSE.Views.CreatePivotDialog.textInvalidRange": "L'interval de cel·les no és vàlid", + "SSE.Views.CreatePivotDialog.textNew": "Llibre de càlcul nou", + "SSE.Views.CreatePivotDialog.textSelectData": "Selecciona dades", + "SSE.Views.CreatePivotDialog.textTitle": "Crea una taula dinàmica", + "SSE.Views.CreatePivotDialog.txtEmpty": "Aquest camp és necessari", "SSE.Views.CreateSparklineDialog.textDataRange": "Interval de dades d'origen", - "SSE.Views.CreateSparklineDialog.textDestination": "Trieu, on s'han de situar les sparklines", - "SSE.Views.CreateSparklineDialog.textInvalidRange": "Interval de cel·les no vàlid", - "SSE.Views.CreateSparklineDialog.textSelectData": "Seleccionar dades", - "SSE.Views.CreateSparklineDialog.textTitle": "Crear Sparklines", + "SSE.Views.CreateSparklineDialog.textDestination": "Tria, on s'han de situar les sparklines", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "L'interval de cel·les no és vàlid", + "SSE.Views.CreateSparklineDialog.textSelectData": "Selecciona dades", + "SSE.Views.CreateSparklineDialog.textTitle": "Crea Sparklines", "SSE.Views.CreateSparklineDialog.txtEmpty": "Aquest camp és obligatori", - "SSE.Views.DataTab.capBtnGroup": "Agrupar", - "SSE.Views.DataTab.capBtnTextCustomSort": "Classificació Personalitzada", + "SSE.Views.DataTab.capBtnGroup": "Agrupa", + "SSE.Views.DataTab.capBtnTextCustomSort": "Ordenació personalitzada", "SSE.Views.DataTab.capBtnTextDataValidation": "Validació de dades", - "SSE.Views.DataTab.capBtnTextRemDuplicates": "Eliminar els Duplicats", - "SSE.Views.DataTab.capBtnTextToCol": "Text en Columnes", - "SSE.Views.DataTab.capBtnUngroup": "Des agrupar", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Suprimeix els duplicats", + "SSE.Views.DataTab.capBtnTextToCol": "Text en columnes", + "SSE.Views.DataTab.capBtnUngroup": "Desagrupa", "SSE.Views.DataTab.capDataFromText": "Des de text/CSV", - "SSE.Views.DataTab.mniFromFile": "Obtenir Dades des de Fitxer", - "SSE.Views.DataTab.mniFromUrl": "Obtenir dades des de l'URL", - "SSE.Views.DataTab.textBelow": "Sumar les files a sota del detall", - "SSE.Views.DataTab.textClear": "Esborrar esquema", - "SSE.Views.DataTab.textColumns": "Des agrupar columnes", + "SSE.Views.DataTab.mniFromFile": "Obtén dades des del fitxer", + "SSE.Views.DataTab.mniFromUrl": "Obtén dades des de l'URL", + "SSE.Views.DataTab.textBelow": "Files de resum a sota del detall", + "SSE.Views.DataTab.textClear": "Esborra l'esquema", + "SSE.Views.DataTab.textColumns": "Desagrupa les columnes", "SSE.Views.DataTab.textGroupColumns": "Agrupa columnes", - "SSE.Views.DataTab.textGroupRows": "Agrupar files", - "SSE.Views.DataTab.textRightOf": "Sumar les columnes a la dreta de detall", - "SSE.Views.DataTab.textRows": "Des agrupar files", - "SSE.Views.DataTab.tipCustomSort": "Classificació Personalitzada", - "SSE.Views.DataTab.tipDataFromText": "Obtenir dades des de fitxer Text/CSV", + "SSE.Views.DataTab.textGroupRows": "Agrupa files", + "SSE.Views.DataTab.textRightOf": "Columnes de resum a la dreta del detall", + "SSE.Views.DataTab.textRows": "Desagrupa les files", + "SSE.Views.DataTab.tipCustomSort": "Ordenació personalitzada", + "SSE.Views.DataTab.tipDataFromText": "Obtén dades des del fitxer Text/CSV", "SSE.Views.DataTab.tipDataValidation": "Validació de dades", - "SSE.Views.DataTab.tipGroup": "Agrupar rang de cel·les", - "SSE.Views.DataTab.tipRemDuplicates": "Eliminar les files duplicades d'un full", + "SSE.Views.DataTab.tipGroup": "Agrupa interval de cel·les", + "SSE.Views.DataTab.tipRemDuplicates": "Suprimeix les files duplicades d'un full", "SSE.Views.DataTab.tipToColumns": "Separa el text de la cel·la en columnes", - "SSE.Views.DataTab.tipUngroup": "Des agrupar rang de cel·les", - "SSE.Views.DataValidationDialog.errorFormula": "El valor actualment s’avalua com a error. Vols continuar?", + "SSE.Views.DataTab.tipUngroup": "Desagrupa l'interval de cel·les", + "SSE.Views.DataValidationDialog.errorFormula": "El valor actualment es valora com a error. Vols continuar?", "SSE.Views.DataValidationDialog.errorInvalid": "El valor que heu introduït per al camp \"{0}\" no és vàlid.", "SSE.Views.DataValidationDialog.errorInvalidDate": "La data que heu introduït per al camp \"{0}\" no és vàlida.", "SSE.Views.DataValidationDialog.errorInvalidList": "L'origen de la llista ha de ser una llista delimitada, o una referència a una sola fila o columna.", @@ -1715,35 +1718,35 @@ "SSE.Views.DataValidationDialog.errorMinGreaterMax": "El camp \"{1}\" ha de ser més gran o igual que el camp \"{0}\".", "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "Heu d'introduir un valor tant al camp \"{0}\" com al camp \"{1}\".", "SSE.Views.DataValidationDialog.errorMustEnterValue": "Heu d'introduir un valor al camp \"{0}\".", - "SSE.Views.DataValidationDialog.errorNamedRange": "No es pot trobar l'interval amb nom que heu especificat.", + "SSE.Views.DataValidationDialog.errorNamedRange": "No es pot trobar l'interval amb el nom que heu especificat.", "SSE.Views.DataValidationDialog.errorNegativeTextLength": "Els valors negatius no es poden utilitzar en les condicions \"{0}\".", "SSE.Views.DataValidationDialog.errorNotNumeric": "El camp \"{0}\" ha de ser un valor numèric, una expressió numèrica, o referir-se a una cel·la que contingui un valor numèric.", - "SSE.Views.DataValidationDialog.strError": "Avís d'error", + "SSE.Views.DataValidationDialog.strError": "Missatge d'error", "SSE.Views.DataValidationDialog.strInput": "Missatge d'entrada", "SSE.Views.DataValidationDialog.strSettings": "Configuració", "SSE.Views.DataValidationDialog.textAlert": "Alerta", - "SSE.Views.DataValidationDialog.textAllow": "Permetre", + "SSE.Views.DataValidationDialog.textAllow": "Permet", "SSE.Views.DataValidationDialog.textApply": "Aplica aquests canvis a totes les altres cel·les amb la mateixa configuració", - "SSE.Views.DataValidationDialog.textCellSelected": "Quan la cel·la estigui seleccionada, mostra aquest missatge d'entrada", - "SSE.Views.DataValidationDialog.textCompare": "Comparar amb", + "SSE.Views.DataValidationDialog.textCellSelected": "Quan es selecciona la cel·la, mostra aquest missatge d'entrada", + "SSE.Views.DataValidationDialog.textCompare": "Compara amb", "SSE.Views.DataValidationDialog.textData": "Dades", "SSE.Views.DataValidationDialog.textEndDate": "Data final", "SSE.Views.DataValidationDialog.textEndTime": "Hora final", "SSE.Views.DataValidationDialog.textError": "Missatge d'error", "SSE.Views.DataValidationDialog.textFormula": "Fórmula", - "SSE.Views.DataValidationDialog.textIgnore": "Ignora en blanc", + "SSE.Views.DataValidationDialog.textIgnore": "Ignora les cel·les en blanc", "SSE.Views.DataValidationDialog.textInput": "Missatge d'entrada", "SSE.Views.DataValidationDialog.textMax": "Màxim", "SSE.Views.DataValidationDialog.textMessage": "Missatge", "SSE.Views.DataValidationDialog.textMin": "Mínim", - "SSE.Views.DataValidationDialog.textSelectData": "Seleccionar dades", - "SSE.Views.DataValidationDialog.textShowDropDown": "Mostrar la llista desplegable a la cel·la", + "SSE.Views.DataValidationDialog.textSelectData": "Selecciona dades", + "SSE.Views.DataValidationDialog.textShowDropDown": "Mostra la llista desplegable a la cel·la", "SSE.Views.DataValidationDialog.textShowError": "Mostra l'alerta d'error després d'introduir dades no vàlides", "SSE.Views.DataValidationDialog.textShowInput": "Mostra el missatge d'entrada quan se seleccioni la cel·la", "SSE.Views.DataValidationDialog.textSource": "Font", "SSE.Views.DataValidationDialog.textStartDate": "Data d'inici", "SSE.Views.DataValidationDialog.textStartTime": "Hora d'inici", - "SSE.Views.DataValidationDialog.textStop": "Aturar", + "SSE.Views.DataValidationDialog.textStop": "Atura", "SSE.Views.DataValidationDialog.textStyle": "Estil", "SSE.Views.DataValidationDialog.textTitle": "Títol", "SSE.Views.DataValidationDialog.textUserEnters": "Quan l'usuari introdueix dades no vàlides, mostra aquesta alerta d'error", @@ -1752,284 +1755,284 @@ "SSE.Views.DataValidationDialog.txtDate": "Data", "SSE.Views.DataValidationDialog.txtDecimal": "Decimal", "SSE.Views.DataValidationDialog.txtElTime": "Temps transcorregut", - "SSE.Views.DataValidationDialog.txtEndDate": "Data Límit", + "SSE.Views.DataValidationDialog.txtEndDate": "Data final", "SSE.Views.DataValidationDialog.txtEndTime": "Hora final", - "SSE.Views.DataValidationDialog.txtEqual": "Igual", + "SSE.Views.DataValidationDialog.txtEqual": "és igual a", "SSE.Views.DataValidationDialog.txtGreaterThan": "més gran que", "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "més gran o igual a", "SSE.Views.DataValidationDialog.txtLength": "Longitud", "SSE.Views.DataValidationDialog.txtLessThan": "menor que", - "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "menor o igual a", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "menor o igual que", "SSE.Views.DataValidationDialog.txtList": "Llista", "SSE.Views.DataValidationDialog.txtNotBetween": "no entre", - "SSE.Views.DataValidationDialog.txtNotEqual": "No igual a", + "SSE.Views.DataValidationDialog.txtNotEqual": "no és igual a", "SSE.Views.DataValidationDialog.txtOther": "Altre", "SSE.Views.DataValidationDialog.txtStartDate": "Data d'inici", "SSE.Views.DataValidationDialog.txtStartTime": "Hora d'inici", "SSE.Views.DataValidationDialog.txtTextLength": "Longitud del text", "SSE.Views.DataValidationDialog.txtTime": "Hora", - "SSE.Views.DataValidationDialog.txtWhole": "Nombre sencer", + "SSE.Views.DataValidationDialog.txtWhole": "Nombre complet", "SSE.Views.DigitalFilterDialog.capAnd": "I", - "SSE.Views.DigitalFilterDialog.capCondition1": "és igual", + "SSE.Views.DigitalFilterDialog.capCondition1": "és igual a", "SSE.Views.DigitalFilterDialog.capCondition10": "no acaba amb", "SSE.Views.DigitalFilterDialog.capCondition11": "conté", "SSE.Views.DigitalFilterDialog.capCondition12": "no conté", - "SSE.Views.DigitalFilterDialog.capCondition2": "no igual a", + "SSE.Views.DigitalFilterDialog.capCondition2": "no és igual a", "SSE.Views.DigitalFilterDialog.capCondition3": "és més gran que", - "SSE.Views.DigitalFilterDialog.capCondition4": "és més gran o igual a", + "SSE.Views.DigitalFilterDialog.capCondition4": "és més gran o igual que", "SSE.Views.DigitalFilterDialog.capCondition5": "és menor que", - "SSE.Views.DigitalFilterDialog.capCondition6": "és menor o igual a", + "SSE.Views.DigitalFilterDialog.capCondition6": "és menor o igual que", "SSE.Views.DigitalFilterDialog.capCondition7": "comença amb", - "SSE.Views.DigitalFilterDialog.capCondition8": "no comença", + "SSE.Views.DigitalFilterDialog.capCondition8": "no comença per", "SSE.Views.DigitalFilterDialog.capCondition9": "acaba amb", "SSE.Views.DigitalFilterDialog.capOr": "O", "SSE.Views.DigitalFilterDialog.textNoFilter": "sense filtre", - "SSE.Views.DigitalFilterDialog.textShowRows": "Mostrar files a on", - "SSE.Views.DigitalFilterDialog.textUse1": "Utilitzeu ? per presentar qualsevol caràcter", - "SSE.Views.DigitalFilterDialog.textUse2": "Utilitzeu * per presentar qualsevol sèrie de caràcters", - "SSE.Views.DigitalFilterDialog.txtTitle": "Filtre Personalitzat", - "SSE.Views.DocumentHolder.advancedImgText": "Imatge Configuració Avançada", - "SSE.Views.DocumentHolder.advancedShapeText": "Forma Configuració Avançada", - "SSE.Views.DocumentHolder.advancedSlicerText": "Slicer Configuració Avançada", - "SSE.Views.DocumentHolder.bottomCellText": "Alineació Inferior", - "SSE.Views.DocumentHolder.bulletsText": "Vinyetes i Numeració", - "SSE.Views.DocumentHolder.centerCellText": "Alineació al Mig", - "SSE.Views.DocumentHolder.chartText": "Configuració Avançada del Gràfic", + "SSE.Views.DigitalFilterDialog.textShowRows": "Mostra les files on", + "SSE.Views.DigitalFilterDialog.textUse1": "Utilitza ? per presentar qualsevol caràcter", + "SSE.Views.DigitalFilterDialog.textUse2": "Utilitza * per presentar qualsevol sèrie de caràcters", + "SSE.Views.DigitalFilterDialog.txtTitle": "Filtre personalitzat", + "SSE.Views.DocumentHolder.advancedImgText": "Configuració avançada de la imatge", + "SSE.Views.DocumentHolder.advancedShapeText": "Configuració avançada de la forma", + "SSE.Views.DocumentHolder.advancedSlicerText": "Configuració avançada de l'afinador", + "SSE.Views.DocumentHolder.bottomCellText": "Alinea a baix", + "SSE.Views.DocumentHolder.bulletsText": "Pics i numeració", + "SSE.Views.DocumentHolder.centerCellText": "Alinea al mig", + "SSE.Views.DocumentHolder.chartText": "Configuració avançada del gràfic", "SSE.Views.DocumentHolder.deleteColumnText": "Columna", "SSE.Views.DocumentHolder.deleteRowText": "Fila", "SSE.Views.DocumentHolder.deleteTableText": "Taula", - "SSE.Views.DocumentHolder.direct270Text": "Girar Text cap a munt", - "SSE.Views.DocumentHolder.direct90Text": "Girar Text cap a baix", + "SSE.Views.DocumentHolder.direct270Text": "Gira el text cap amunt", + "SSE.Views.DocumentHolder.direct90Text": "Gira el text cap avall", "SSE.Views.DocumentHolder.directHText": "Horitzontal", - "SSE.Views.DocumentHolder.directionText": "Direcció Text", - "SSE.Views.DocumentHolder.editChartText": "Editar Dades", - "SSE.Views.DocumentHolder.editHyperlinkText": "Editar Hiperenllaç", - "SSE.Views.DocumentHolder.insertColumnLeftText": "Columna Esquerra", - "SSE.Views.DocumentHolder.insertColumnRightText": "Columna Dreta", - "SSE.Views.DocumentHolder.insertRowAboveText": "Fila de Dalt", - "SSE.Views.DocumentHolder.insertRowBelowText": "Fila de Baix", - "SSE.Views.DocumentHolder.originalSizeText": "Mida Actual", - "SSE.Views.DocumentHolder.removeHyperlinkText": "Esborrar hiperenllaç", - "SSE.Views.DocumentHolder.selectColumnText": "Columna sencera", - "SSE.Views.DocumentHolder.selectDataText": "Dades de Columna", + "SSE.Views.DocumentHolder.directionText": "Direcció del text", + "SSE.Views.DocumentHolder.editChartText": "Edita les dades", + "SSE.Views.DocumentHolder.editHyperlinkText": "Edita l'enllaç", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Columna a l'esquerra", + "SSE.Views.DocumentHolder.insertColumnRightText": "Columna a la dreta", + "SSE.Views.DocumentHolder.insertRowAboveText": "Fila a dalt", + "SSE.Views.DocumentHolder.insertRowBelowText": "Fila a baix", + "SSE.Views.DocumentHolder.originalSizeText": "Mida real", + "SSE.Views.DocumentHolder.removeHyperlinkText": "Suprimeix l'enllaç", + "SSE.Views.DocumentHolder.selectColumnText": "Tota la columna", + "SSE.Views.DocumentHolder.selectDataText": "Dades de la columna", "SSE.Views.DocumentHolder.selectRowText": "Fila", "SSE.Views.DocumentHolder.selectTableText": "Taula", - "SSE.Views.DocumentHolder.strDelete": "Esborrar la firma", - "SSE.Views.DocumentHolder.strDetails": "Detalls de la Firma", - "SSE.Views.DocumentHolder.strSetup": "Configuració de la Firma", - "SSE.Views.DocumentHolder.strSign": "Firmar", - "SSE.Views.DocumentHolder.textAlign": "Alinear", - "SSE.Views.DocumentHolder.textArrange": "Arreglar", - "SSE.Views.DocumentHolder.textArrangeBack": "Enviar a un segon pla", - "SSE.Views.DocumentHolder.textArrangeBackward": "Envia Endarrere", - "SSE.Views.DocumentHolder.textArrangeForward": "Portar Endavant", - "SSE.Views.DocumentHolder.textArrangeFront": "Porta a Primer pla", + "SSE.Views.DocumentHolder.strDelete": "Suprimeix la signatura", + "SSE.Views.DocumentHolder.strDetails": "Detalls de la signatura", + "SSE.Views.DocumentHolder.strSetup": "Configuració de la signatura", + "SSE.Views.DocumentHolder.strSign": "Signa", + "SSE.Views.DocumentHolder.textAlign": "Alineació", + "SSE.Views.DocumentHolder.textArrange": "Organitza", + "SSE.Views.DocumentHolder.textArrangeBack": "Envia al fons", + "SSE.Views.DocumentHolder.textArrangeBackward": "Envia cap enrere", + "SSE.Views.DocumentHolder.textArrangeForward": "Porta endavant", + "SSE.Views.DocumentHolder.textArrangeFront": "Porta al primer pla", "SSE.Views.DocumentHolder.textAverage": "Mitjana", - "SSE.Views.DocumentHolder.textBullets": "Vinyetes", - "SSE.Views.DocumentHolder.textCount": "Contar", - "SSE.Views.DocumentHolder.textCrop": "Retallar", - "SSE.Views.DocumentHolder.textCropFill": "Omplir", + "SSE.Views.DocumentHolder.textBullets": "Pics", + "SSE.Views.DocumentHolder.textCount": "Recompte", + "SSE.Views.DocumentHolder.textCrop": "Retalla", + "SSE.Views.DocumentHolder.textCropFill": "Emplena", "SSE.Views.DocumentHolder.textCropFit": "Ajusta", - "SSE.Views.DocumentHolder.textEntriesList": "Seleccionar una llista desplegable", - "SSE.Views.DocumentHolder.textFlipH": "Voltejar Horitzontalment", - "SSE.Views.DocumentHolder.textFlipV": "Voltejar Verticalment", - "SSE.Views.DocumentHolder.textFreezePanes": "Congela Panells", + "SSE.Views.DocumentHolder.textEntriesList": "Selecciona des d'una llista desplegable", + "SSE.Views.DocumentHolder.textFlipH": "Capgira horitzontalment", + "SSE.Views.DocumentHolder.textFlipV": "Capgira verticalment", + "SSE.Views.DocumentHolder.textFreezePanes": "Immobilitza les subfinestres", "SSE.Views.DocumentHolder.textFromFile": "Des d'un fitxer", - "SSE.Views.DocumentHolder.textFromStorage": "Des d'Emmagatzematge", - "SSE.Views.DocumentHolder.textFromUrl": "Des d'un Enllaç", + "SSE.Views.DocumentHolder.textFromStorage": "Des de l’emmagatzematge", + "SSE.Views.DocumentHolder.textFromUrl": "Des de l'URL", "SSE.Views.DocumentHolder.textListSettings": "Configuració de la Llista", - "SSE.Views.DocumentHolder.textMacro": "Assignar Macro", - "SSE.Views.DocumentHolder.textMax": "Max", - "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMacro": "Assigna una Macro", + "SSE.Views.DocumentHolder.textMax": "Màx", + "SSE.Views.DocumentHolder.textMin": "Mín", "SSE.Views.DocumentHolder.textMore": "Més funcions", - "SSE.Views.DocumentHolder.textMoreFormats": "Altres formats", + "SSE.Views.DocumentHolder.textMoreFormats": "Més formats", "SSE.Views.DocumentHolder.textNone": "Cap", "SSE.Views.DocumentHolder.textNumbering": "Numeració", - "SSE.Views.DocumentHolder.textReplace": "Canviar imatge", - "SSE.Views.DocumentHolder.textRotate": "Girar", - "SSE.Views.DocumentHolder.textRotate270": "Girar 90° a l'esquerra", - "SSE.Views.DocumentHolder.textRotate90": "Girar 90° a la dreta", - "SSE.Views.DocumentHolder.textShapeAlignBottom": "Alineació Inferior", - "SSE.Views.DocumentHolder.textShapeAlignCenter": "Centrar", - "SSE.Views.DocumentHolder.textShapeAlignLeft": "Alineació Esquerra", - "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Alineació al Mig", - "SSE.Views.DocumentHolder.textShapeAlignRight": "Alineació Dreta", - "SSE.Views.DocumentHolder.textShapeAlignTop": "Alineació Superior", - "SSE.Views.DocumentHolder.textStdDev": "StdDev", + "SSE.Views.DocumentHolder.textReplace": "Substitueix la imatge", + "SSE.Views.DocumentHolder.textRotate": "Gira", + "SSE.Views.DocumentHolder.textRotate270": "Gira 90° a l'esquerra", + "SSE.Views.DocumentHolder.textRotate90": "Gira 90° a la dreta", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Alinea a baix", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Alinea al centre", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Alinea a l'esquerra", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Alinea al mig", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Alinea a la dreta", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Alinea a dalt", + "SSE.Views.DocumentHolder.textStdDev": "DesvEst", "SSE.Views.DocumentHolder.textSum": "Suma", - "SSE.Views.DocumentHolder.textUndo": "Desfer", - "SSE.Views.DocumentHolder.textUnFreezePanes": "Descongelar Panells", + "SSE.Views.DocumentHolder.textUndo": "Desfés", + "SSE.Views.DocumentHolder.textUnFreezePanes": "Mobilitza subfinestres", "SSE.Views.DocumentHolder.textVar": "Var", - "SSE.Views.DocumentHolder.topCellText": "Alineació Superior", + "SSE.Views.DocumentHolder.topCellText": "Alinea a dalt", "SSE.Views.DocumentHolder.txtAccounting": "Comptabilitat", - "SSE.Views.DocumentHolder.txtAddComment": "Afegir Comentari", - "SSE.Views.DocumentHolder.txtAddNamedRange": "Definiu el Nom", - "SSE.Views.DocumentHolder.txtArrange": "Arreglar", + "SSE.Views.DocumentHolder.txtAddComment": "Afegeix un comentari", + "SSE.Views.DocumentHolder.txtAddNamedRange": "Defineix el nom", + "SSE.Views.DocumentHolder.txtArrange": "Organitza", "SSE.Views.DocumentHolder.txtAscending": "Ascendent", - "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Ajust Automàtic d'Ample de Columna", - "SSE.Views.DocumentHolder.txtAutoRowHeight": "Ajust Automàtic d'Alçada de Fila", - "SSE.Views.DocumentHolder.txtClear": "Esborrar", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Ajusta automàticament l'amplada de la columna", + "SSE.Views.DocumentHolder.txtAutoRowHeight": "Ajusta automàticament l'alçada de la fila", + "SSE.Views.DocumentHolder.txtClear": "Suprimeix", "SSE.Views.DocumentHolder.txtClearAll": "Tot", "SSE.Views.DocumentHolder.txtClearComments": "Comentaris", "SSE.Views.DocumentHolder.txtClearFormat": "Format", - "SSE.Views.DocumentHolder.txtClearHyper": "Hiperenllaços", - "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Esborrar els grups seleccionats del Sparkline", - "SSE.Views.DocumentHolder.txtClearSparklines": "Esborrar els Sparklines Seleccionats", + "SSE.Views.DocumentHolder.txtClearHyper": "Enllaços", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Esborra els grups seleccionats del Sparkline", + "SSE.Views.DocumentHolder.txtClearSparklines": "Esborra els Sparklines seleccionats", "SSE.Views.DocumentHolder.txtClearText": "Text", - "SSE.Views.DocumentHolder.txtColumn": "Columna sencera", - "SSE.Views.DocumentHolder.txtColumnWidth": "Ajustar l'Amplada de la Columna", - "SSE.Views.DocumentHolder.txtCondFormat": "Format Condicional", - "SSE.Views.DocumentHolder.txtCopy": "Copiar", + "SSE.Views.DocumentHolder.txtColumn": "Tota la columna", + "SSE.Views.DocumentHolder.txtColumnWidth": "Estableix l'amplada de la columna", + "SSE.Views.DocumentHolder.txtCondFormat": "Format condicional", + "SSE.Views.DocumentHolder.txtCopy": "Copia", "SSE.Views.DocumentHolder.txtCurrency": "Moneda", - "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Amplada de Columna Personalitzada", - "SSE.Views.DocumentHolder.txtCustomRowHeight": "Alçada de Fila Personalitzada", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Amplada de columna personalitzada", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "Alçada de fila personalitzada", "SSE.Views.DocumentHolder.txtCustomSort": "Ordenació personalitzada", - "SSE.Views.DocumentHolder.txtCut": "Tallar", + "SSE.Views.DocumentHolder.txtCut": "Talla", "SSE.Views.DocumentHolder.txtDate": "Data", - "SSE.Views.DocumentHolder.txtDelete": "Esborra", + "SSE.Views.DocumentHolder.txtDelete": "Suprimeix", "SSE.Views.DocumentHolder.txtDescending": "Descendent", - "SSE.Views.DocumentHolder.txtDistribHor": "Distribuïu Horitzontalment", - "SSE.Views.DocumentHolder.txtDistribVert": "Distribuïu Verticalment", - "SSE.Views.DocumentHolder.txtEditComment": "Editar Comentari", + "SSE.Views.DocumentHolder.txtDistribHor": "Distribueix horitzontalment", + "SSE.Views.DocumentHolder.txtDistribVert": "Distribueix verticalment", + "SSE.Views.DocumentHolder.txtEditComment": "Edita el comentari", "SSE.Views.DocumentHolder.txtFilter": "Filtre", "SSE.Views.DocumentHolder.txtFilterCellColor": "Filtra per color de la cel·la", "SSE.Views.DocumentHolder.txtFilterFontColor": "Filtra per color de la lletra", "SSE.Views.DocumentHolder.txtFilterValue": "Filtra per valor de la cel·la seleccionada", - "SSE.Views.DocumentHolder.txtFormula": "Inserir funció", + "SSE.Views.DocumentHolder.txtFormula": "Insereix una funció", "SSE.Views.DocumentHolder.txtFraction": "Fracció", "SSE.Views.DocumentHolder.txtGeneral": "General", - "SSE.Views.DocumentHolder.txtGroup": "Agrupar", - "SSE.Views.DocumentHolder.txtHide": "Amagar", - "SSE.Views.DocumentHolder.txtInsert": "Insertar", - "SSE.Views.DocumentHolder.txtInsHyperlink": "Hiperenllaç", - "SSE.Views.DocumentHolder.txtNumber": "Nombre", - "SSE.Views.DocumentHolder.txtNumFormat": "Format de Número", - "SSE.Views.DocumentHolder.txtPaste": "Pegar", + "SSE.Views.DocumentHolder.txtGroup": "Agrupa", + "SSE.Views.DocumentHolder.txtHide": "Amaga", + "SSE.Views.DocumentHolder.txtInsert": "Insereix", + "SSE.Views.DocumentHolder.txtInsHyperlink": "Enllaç", + "SSE.Views.DocumentHolder.txtNumber": "Número", + "SSE.Views.DocumentHolder.txtNumFormat": "Format de número", + "SSE.Views.DocumentHolder.txtPaste": "Enganxar", "SSE.Views.DocumentHolder.txtPercentage": "Percentatge", - "SSE.Views.DocumentHolder.txtReapply": "Reaplicar", + "SSE.Views.DocumentHolder.txtReapply": "Torna-ho a aplicar", "SSE.Views.DocumentHolder.txtRow": "Tota la fila", - "SSE.Views.DocumentHolder.txtRowHeight": "Estableix l'Alçada de Fila", + "SSE.Views.DocumentHolder.txtRowHeight": "Defineix l'alçada de la fila", "SSE.Views.DocumentHolder.txtScientific": "Científic", - "SSE.Views.DocumentHolder.txtSelect": "Seleccionar", - "SSE.Views.DocumentHolder.txtShiftDown": "Desplaçar les cel·les cap avall", - "SSE.Views.DocumentHolder.txtShiftLeft": "Desplaçar les cel·les cap a l'esquerra", - "SSE.Views.DocumentHolder.txtShiftRight": "Desplaçar cel·les a la dreta", - "SSE.Views.DocumentHolder.txtShiftUp": "Desplaçar cel·les amunt", + "SSE.Views.DocumentHolder.txtSelect": "Selecciona", + "SSE.Views.DocumentHolder.txtShiftDown": "Desplaça les cel·les cap avall", + "SSE.Views.DocumentHolder.txtShiftLeft": "Desplaça les cel·les cap a l'esquerra", + "SSE.Views.DocumentHolder.txtShiftRight": "Desplaça cel·les cap a la dreta", + "SSE.Views.DocumentHolder.txtShiftUp": "Desplaça les cel·les cap amunt", "SSE.Views.DocumentHolder.txtShow": "Mostra", - "SSE.Views.DocumentHolder.txtShowComment": "Mostrar Comentari", - "SSE.Views.DocumentHolder.txtSort": "Ordenar", + "SSE.Views.DocumentHolder.txtShowComment": "Mostra el comentari", + "SSE.Views.DocumentHolder.txtSort": "Ordena", "SSE.Views.DocumentHolder.txtSortCellColor": "Color de la cel·la seleccionat a la part superior", - "SSE.Views.DocumentHolder.txtSortFontColor": "Color de la Font Seleccionada a la part superior", + "SSE.Views.DocumentHolder.txtSortFontColor": "Color del tipus de lletra seleccionat a la part superior", "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", "SSE.Views.DocumentHolder.txtText": "Text", - "SSE.Views.DocumentHolder.txtTextAdvanced": "Configuració Avançada del Paràgraf", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Configuració avançada del paràgraf", "SSE.Views.DocumentHolder.txtTime": "Hora", - "SSE.Views.DocumentHolder.txtUngroup": "Des agrupar", + "SSE.Views.DocumentHolder.txtUngroup": "Desagrupa", "SSE.Views.DocumentHolder.txtWidth": "Amplada", - "SSE.Views.DocumentHolder.vertAlignText": "Alineació Vertical", - "SSE.Views.FieldSettingsDialog.strLayout": "Maquetació", + "SSE.Views.DocumentHolder.vertAlignText": "Alineació vertical", + "SSE.Views.FieldSettingsDialog.strLayout": "Disposició", "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", - "SSE.Views.FieldSettingsDialog.textReport": "Formulari d’Informe", - "SSE.Views.FieldSettingsDialog.textTitle": "Configuració de Camp", + "SSE.Views.FieldSettingsDialog.textReport": "Formulari d'informe", + "SSE.Views.FieldSettingsDialog.textTitle": "Configuració del camp", "SSE.Views.FieldSettingsDialog.txtAverage": "Mitjana", - "SSE.Views.FieldSettingsDialog.txtBlank": "Inserir fileres en blanc després de cada element", - "SSE.Views.FieldSettingsDialog.txtBottom": "Mostrar a la part inferior del grup", + "SSE.Views.FieldSettingsDialog.txtBlank": "Insereix fileres en blanc després de cada element", + "SSE.Views.FieldSettingsDialog.txtBottom": "Mostra la part inferior del grup", "SSE.Views.FieldSettingsDialog.txtCompact": "Compacte", - "SSE.Views.FieldSettingsDialog.txtCount": "Contar", - "SSE.Views.FieldSettingsDialog.txtCountNums": "Nombre de Comptes", + "SSE.Views.FieldSettingsDialog.txtCount": "Recompte", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Compta nombres", "SSE.Views.FieldSettingsDialog.txtCustomName": "Nom personalitzat", - "SSE.Views.FieldSettingsDialog.txtEmpty": "Mostrar els elements sense dades", - "SSE.Views.FieldSettingsDialog.txtMax": "Max", - "SSE.Views.FieldSettingsDialog.txtMin": "Min", - "SSE.Views.FieldSettingsDialog.txtOutline": "Esquema", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Mostra els elements sense dades", + "SSE.Views.FieldSettingsDialog.txtMax": "Màx", + "SSE.Views.FieldSettingsDialog.txtMin": "Mín", + "SSE.Views.FieldSettingsDialog.txtOutline": "Contorn", "SSE.Views.FieldSettingsDialog.txtProduct": "Producte", - "SSE.Views.FieldSettingsDialog.txtRepeat": "Repetir les etiquetes d’elements a cada fila", - "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Mostrar subtotals", - "SSE.Views.FieldSettingsDialog.txtSourceName": "Nom de la font:", - "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", - "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Repeteix les etiquetes d’elements a cada fila", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Mostra els subtotals", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Nom d'origen:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "DesvEst", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "DesvEstPobl", "SSE.Views.FieldSettingsDialog.txtSum": "Suma", - "SSE.Views.FieldSettingsDialog.txtSummarize": "Funcions per a Subtotals", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Funcions per als subtotals", "SSE.Views.FieldSettingsDialog.txtTabular": "Tabular", - "SSE.Views.FieldSettingsDialog.txtTop": "Mostrar a la part superior del grup", + "SSE.Views.FieldSettingsDialog.txtTop": "Mostra la part superior del grup", "SSE.Views.FieldSettingsDialog.txtVar": "Var", - "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", - "SSE.Views.FileMenu.btnBackCaption": "Obrir ubicació del arxiu", - "SSE.Views.FileMenu.btnCloseMenuCaption": "Tancar Menú", - "SSE.Views.FileMenu.btnCreateNewCaption": "Crear Nou", - "SSE.Views.FileMenu.btnDownloadCaption": "Descarregar a...", + "SSE.Views.FieldSettingsDialog.txtVarp": "VarPobl", + "SSE.Views.FileMenu.btnBackCaption": "Obre la ubicació del fitxer", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Tanca el menú", + "SSE.Views.FileMenu.btnCreateNewCaption": "Crea'n un de nou", + "SSE.Views.FileMenu.btnDownloadCaption": "Baixa-ho com a...", "SSE.Views.FileMenu.btnHelpCaption": "Ajuda...", "SSE.Views.FileMenu.btnInfoCaption": "Informació del full de càlcul...", - "SSE.Views.FileMenu.btnPrintCaption": "Imprimir", - "SSE.Views.FileMenu.btnProtectCaption": "Protegir", - "SSE.Views.FileMenu.btnRecentFilesCaption": "Obrir recent...", + "SSE.Views.FileMenu.btnPrintCaption": "Imprimeix", + "SSE.Views.FileMenu.btnProtectCaption": "Protegeix", + "SSE.Views.FileMenu.btnRecentFilesCaption": "Obre recent...", "SSE.Views.FileMenu.btnRenameCaption": "Canvia el nom ...", - "SSE.Views.FileMenu.btnReturnCaption": "Tornar al full de càlcul", - "SSE.Views.FileMenu.btnRightsCaption": "Drets d'Accés ...", + "SSE.Views.FileMenu.btnReturnCaption": "Torna al full de càlcul", + "SSE.Views.FileMenu.btnRightsCaption": "Drets d'accés ...", "SSE.Views.FileMenu.btnSaveAsCaption": "Desar com", - "SSE.Views.FileMenu.btnSaveCaption": "Desar", - "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Guardar Copia com a...", - "SSE.Views.FileMenu.btnSettingsCaption": "Configuració Avançada...", - "SSE.Views.FileMenu.btnToEditCaption": "Editar el Full de Càlcul", - "SSE.Views.FileMenuPanels.CreateNew.fromBlankText": "Des de buit", - "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Des d'una Plantilla", - "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Creeu un nou full de càlcul en blanc que podreu dissenyar i formatar un cop s'hagi creat durant l'edició. O bé trieu una de les plantilles per iniciar un full de càlcul d’un determinat tipus o propòsit on ja s’han pre-aplicat alguns estils.", - "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Nou Full de Càlcul", - "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegir Autor", - "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegir Text", + "SSE.Views.FileMenu.btnSaveCaption": "Desa", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Desa còpia com a...", + "SSE.Views.FileMenu.btnSettingsCaption": "Configuració avançada...", + "SSE.Views.FileMenu.btnToEditCaption": "Edita el full de càlcul", + "SSE.Views.FileMenuPanels.CreateNew.fromBlankText": "Des de zero", + "SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "Des d'una plantilla", + "SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Creeu un nou full de càlcul en blanc que podreu dissenyar i formatar després de crear-lo durant l'edició. O bé escolliu una de les plantilles per iniciar un full de càlcul d'un determinat tipus o propòsit en què ja s'hagin aplicat prèviament alguns estils.", + "SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "Full de càlcul nou", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Aplica", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Afegeix l'autor", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Afegeix text", "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Aplicació", "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Autor", - "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canviar els drets d’accés", + "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Canvia els drets d’accés", "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comentari", - "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creada", - "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Última Modificació Per", - "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Última Modificació", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Creat", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Darrera modificació feta per", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Darrera modificació", "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Propietari", "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Ubicació", - "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persones que tinguin drets", + "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persones que tenen drets", "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Assumpte", "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Títol", - "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Penjat", - "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canviar els drets d’accés", - "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tinguin drets", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Activar la auto recuperació", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Activar l'arxivament automàtic", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Mode de Coedició", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Altres usuaris veuran els canvis alhora", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Haureu d’acceptar canvis abans de poder-los veure", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador Decimal", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "S'ha carregat", + "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Canvia els drets d’accés", + "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persones que tenen drets", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Aplica", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Activa la recuperació automàtica", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Activa el desament automàtic", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Mode de coedició", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Els altres usuaris veuran els vostres canvis immediatament", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "Haureu d’acceptar els canvis abans de poder-los veure", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Separador de decimals", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Ràpid", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Font Suggerida", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Deseu sempre al servidor (en cas contrari, deseu-lo al servidor quan el tanqueu)", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Llenguatge de Formula", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Tipus de lletra suggerides", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Afegeix la versió a l'emmagatzematge després de clicar a Desa o Ctrl + S", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Llenguatge de la fórmula", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Exemple: SUM; MIN; MAX; COUNT", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Activa la visualització dels comentaris", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Configuració de Macros", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Tallar, copiar i enganxar", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Configuració de les macros", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Talla copia i enganxa", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Mostra el botó d'opcions d’enganxar quan s’enganxa contingut", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activar estil R1C1", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Configuració Regional", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Activa l'estil R1C1", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Configuració regional", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Exemple:", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Activa la visualització dels comentaris resolts", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separador", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Estricte", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Tema de la interfície", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Separador de milers", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unitat de Mesura", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Utilitzeu separadors en funció de la configuració regional", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Valor de Zoom Predeterminat", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unitat de mesura.", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Utilitza els separadors en funció de la configuració regional", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Valor de zoom predeterminat", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Cada 10 minuts", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Cada 30 minuts", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Cada 5 minuts", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Cada Hora", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Auto recuperació", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Guardar Automàticament", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Desactivat", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Desant versions intermèdies", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Cada Minut", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Estil de Referència", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Cada hora", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Recuperació automàtica", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Desament automàtic", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Inhabilitat", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "S'estan desant versions intermèdies", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Cada minut", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Estil de referència", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Bielorús", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Búlgar", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Català", @@ -2049,153 +2052,153 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italià", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japonès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Coreà", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Visualització de Comentaris", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Visualització dels comentaris", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Laosià", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Letó", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "a OS X", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "com a OS X", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Natiu", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Noruec", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Holandès", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Neerlandès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polonès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Punt", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Rus", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Activa Tot", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Habiliteu totes les macros sense una notificació", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Habilita-ho tot", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Habilita totes les macros sense una notificació", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Eslovac", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Eslovè", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Inhabilita tot", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Desactiveu totes les macros sense una notificació", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Inhabilita-ho tot", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Inhabilitar totes les macros sense una notificació", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Suec", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turc", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ucraïnès", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamita", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Mostra la Notificació", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Desactiveu totes les macros amb una notificació", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "a Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Mostra la notificació", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Inhabilita totes les macros amb una notificació", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "com a Windows", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Xinès", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplicar", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Diccionari Idioma", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignorar les paraules a UPPERCASE", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignorar les paraules amb números", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opcions de Correcció Automàtica ...", - "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Prova", - "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Avis", - "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb Contrasenya", - "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegir Full de Càlcul", - "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb Firma", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Editar el full de càlcul", - "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures del full de càlcul.
Esteu segur que voleu continuar?", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Aplica", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Idioma del diccionari", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignora les paraules en MAJÚSCULA", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignora les paraules amb números", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "Opcions de correcció automàtica ...", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Correcció", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Advertiment", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "Amb contrasenya", + "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protegeix el full de càlcul", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "Amb signatura", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edita el full de càlcul", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "L’edició eliminarà les signatures del full de càlcul.
Segur que voleu continuar?", "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "Aquest full de càlcul ha estat protegit per contrasenya", "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "Cal signar aquest full de càlcul.", - "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'ha afegit signatures vàlides al full de càlcul. El full de càlcul està protegit de l’edició.", - "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals del full de càlcul no són vàlides o no es van poder verificar. El full de càlcul està protegit de l’edició.", - "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Veure signatures", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "S'han afegit signatures vàlides al full de càlcul. El full de càlcul està protegit contra l’edició.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Algunes de les signatures digitals del full de càlcul no són vàlides o no es van poder verificar. El full de càlcul està protegit contra l’edició.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "Mostra les signatures", "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.FileMenuPanels.Settings.txtPageSettings": "Configuració de la pàgina", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Revisió ortogràfica", "SSE.Views.FormatRulesEditDlg.fillColor": "Color d'emplenament", - "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Avís", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Advertiment", "SSE.Views.FormatRulesEditDlg.text2Scales": "Escala de 2 colors", "SSE.Views.FormatRulesEditDlg.text3Scales": "Escala de 3 colors", - "SSE.Views.FormatRulesEditDlg.textAllBorders": "Totes les Vores", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "Totes les vores", "SSE.Views.FormatRulesEditDlg.textAppearance": "Aparença de la barra", - "SSE.Views.FormatRulesEditDlg.textApply": "Aplicar a l'interval", + "SSE.Views.FormatRulesEditDlg.textApply": "Aplica-ho a l'interval", "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automàtic", "SSE.Views.FormatRulesEditDlg.textAxis": "Eix", "SSE.Views.FormatRulesEditDlg.textBarDirection": "Direcció de la barra", "SSE.Views.FormatRulesEditDlg.textBold": "Negreta", "SSE.Views.FormatRulesEditDlg.textBorder": "Vora", "SSE.Views.FormatRulesEditDlg.textBordersColor": "Color de les vores", - "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Estil de Vora", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Estil de la vora", "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Vores inferiors", "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "No es pot afegir el format condicional.", - "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Punt mitjà de cel·la", - "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Vores Verticals Internes", - "SSE.Views.FormatRulesEditDlg.textClear": "Netejar", - "SSE.Views.FormatRulesEditDlg.textColor": "Color de text", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Punt mig de cel·la", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Vores interiors verticals", + "SSE.Views.FormatRulesEditDlg.textClear": "Suprimeix", + "SSE.Views.FormatRulesEditDlg.textColor": "Color del text", "SSE.Views.FormatRulesEditDlg.textContext": "Context", "SSE.Views.FormatRulesEditDlg.textCustom": "Personalitzat", - "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Vora Diagonal Descendent", - "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Vora Diagonal Ascendent", - "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Introduïu una fórmula vàlida.", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Vora diagonal inferior", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Vora diagonal superior", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Introdueix una fórmula vàlida.", "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "La fórmula que heu introduït no avalua un número, data, hora o cadena.", - "SSE.Views.FormatRulesEditDlg.textEmptyText": "Introduïu un valor.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Introdueix un valor.", "SSE.Views.FormatRulesEditDlg.textEmptyValue": "El valor que heu introduït no és un número, data, hora o cadena vàlids.", "SSE.Views.FormatRulesEditDlg.textErrorGreater": "El valor per al {0} ha de ser més gran que el valor per al {1}.", "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Introduïu un número entre {0} i {1}.", - "SSE.Views.FormatRulesEditDlg.textFill": "Omplir", + "SSE.Views.FormatRulesEditDlg.textFill": "Emplena", "SSE.Views.FormatRulesEditDlg.textFormat": "Format", "SSE.Views.FormatRulesEditDlg.textFormula": "Fórmula", "SSE.Views.FormatRulesEditDlg.textGradient": "Degradat", "SSE.Views.FormatRulesEditDlg.textIconLabel": "quan {0} {1} i", "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "quan {0} {1}", "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "quan el valor és", - "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Un o més intervals de dades d'icones se solapen.
Ajusteu els valors de l'interval de dades de les icones de manera que no se superposin.", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "Un o més intervals de dades d'icones es solapen.
Ajusteu els valors de l'interval de dades de les icones de manera que no es superposin.", "SSE.Views.FormatRulesEditDlg.textIconStyle": "Estil de la icona", - "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Vores Internes", - "SSE.Views.FormatRulesEditDlg.textInvalid": "Interval de dades no vàlid.", - "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ERROR! Interval de cel·les no vàlid", - "SSE.Views.FormatRulesEditDlg.textItalic": "Itàlica", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Vores interiors", + "SSE.Views.FormatRulesEditDlg.textInvalid": "L'interval de dades no és vàlid.", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", + "SSE.Views.FormatRulesEditDlg.textItalic": "Cursiva", "SSE.Views.FormatRulesEditDlg.textItem": "Element", "SSE.Views.FormatRulesEditDlg.textLeft2Right": "D'esquerra a dreta", "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Vores esquerra", "SSE.Views.FormatRulesEditDlg.textLongBar": "barra més llarga", "SSE.Views.FormatRulesEditDlg.textMaximum": "Màxim", "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Punt màxim", - "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Vores Horitzontals Internes", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Vores interiors horitzontals", "SSE.Views.FormatRulesEditDlg.textMidpoint": "Punt mitjà", "SSE.Views.FormatRulesEditDlg.textMinimum": "Mínim", "SSE.Views.FormatRulesEditDlg.textMinpoint": "Punt mínim", "SSE.Views.FormatRulesEditDlg.textNegative": "Negatiu", - "SSE.Views.FormatRulesEditDlg.textNewColor": "Afegir Nou Color Personalitzat", - "SSE.Views.FormatRulesEditDlg.textNoBorders": "Sense Vores", - "SSE.Views.FormatRulesEditDlg.textNone": "cap", - "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Un o més dels valors especificats no és un percentatge vàlid.", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Afegeix un color personalitzat nou ", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "Sense vores", + "SSE.Views.FormatRulesEditDlg.textNone": "Cap", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "Un o més dels valors especificats no són un percentatge vàlid.", "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "El valor {0} especificat no és un percentatge vàlid.", - "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Un o més dels valors especificats no és un percentil vàlid.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "Un o més dels valors especificats no són un percentil vàlid.", "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "El valor {0} especificat no és un percentil vàlid.", - "SSE.Views.FormatRulesEditDlg.textOutBorders": "Vores Exteriors", - "SSE.Views.FormatRulesEditDlg.textPercent": "Percentatge", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Vores exteriors", + "SSE.Views.FormatRulesEditDlg.textPercent": "Per cent", "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentil", "SSE.Views.FormatRulesEditDlg.textPosition": "Posició", "SSE.Views.FormatRulesEditDlg.textPositive": "Positiu", "SSE.Views.FormatRulesEditDlg.textPresets": "Preestablerts", - "SSE.Views.FormatRulesEditDlg.textPreview": "Vista prèvia", + "SSE.Views.FormatRulesEditDlg.textPreview": "Visualització prèvia", "SSE.Views.FormatRulesEditDlg.textRelativeRef": "No podeu utilitzar referències relatives en criteris de format condicional per a escales de color, barres de dades i conjunts d'icones", - "SSE.Views.FormatRulesEditDlg.textReverse": "Ordre invers d'icones", + "SSE.Views.FormatRulesEditDlg.textReverse": "Inverteix l'ordre de les icones", "SSE.Views.FormatRulesEditDlg.textRight2Left": "De dreta a esquerra", "SSE.Views.FormatRulesEditDlg.textRightBorders": "Vores de la dreta", "SSE.Views.FormatRulesEditDlg.textRule": "Regla", "SSE.Views.FormatRulesEditDlg.textSameAs": "Igual que positiu", - "SSE.Views.FormatRulesEditDlg.textSelectData": "Seleccionar Dades", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Selecciona dades", "SSE.Views.FormatRulesEditDlg.textShortBar": "barra més curta", "SSE.Views.FormatRulesEditDlg.textShowBar": "Mostra només la barra", "SSE.Views.FormatRulesEditDlg.textShowIcon": "Mostra només la icona", "SSE.Views.FormatRulesEditDlg.textSingleRef": "Aquest tipus de referència no es pot utilitzar en una fórmula de format condicional.
Canvia la referència a una única cel·la, o utilitza la referència amb una funció de full de càlcul, com ara =SUMA(A1:B5).", - "SSE.Views.FormatRulesEditDlg.textSolid": "Solid", - "SSE.Views.FormatRulesEditDlg.textStrikeout": "Ratllar", + "SSE.Views.FormatRulesEditDlg.textSolid": "Sòlid", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Ratlla", "SSE.Views.FormatRulesEditDlg.textSubscript": "Subíndex", "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superíndex", "SSE.Views.FormatRulesEditDlg.textTopBorders": "Vores Superiors", - "SSE.Views.FormatRulesEditDlg.textUnderline": "Subratllar", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Subratllat", "SSE.Views.FormatRulesEditDlg.tipBorders": "Vores", "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Format de Número", "SSE.Views.FormatRulesEditDlg.txtAccounting": "Comptabilitat", "SSE.Views.FormatRulesEditDlg.txtCurrency": "Moneda", "SSE.Views.FormatRulesEditDlg.txtDate": "Data", - "SSE.Views.FormatRulesEditDlg.txtEmpty": "Aquest camp és obligatori", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "Aquest camp és necessari", "SSE.Views.FormatRulesEditDlg.txtFraction": "Fracció", "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", - "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sense Icona", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "Sense icona", "SSE.Views.FormatRulesEditDlg.txtNumber": "Número", "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentatge", "SSE.Views.FormatRulesEditDlg.txtScientific": "Científic", "SSE.Views.FormatRulesEditDlg.txtText": "Text", "SSE.Views.FormatRulesEditDlg.txtTime": "Hora", - "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Editar regla de format", - "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Nova regla de format", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edita la regla de format", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "Crea una norma de format", "SSE.Views.FormatRulesManagerDlg.guestText": "Convidat", "SSE.Views.FormatRulesManagerDlg.text1Above": "1 per sobre la mitjana de des. est.", "SSE.Views.FormatRulesManagerDlg.text1Below": "1 per sota la mitjana de des. est.", @@ -2204,7 +2207,7 @@ "SSE.Views.FormatRulesManagerDlg.text3Above": "3 per sobre la mitjana de des. est.", "SSE.Views.FormatRulesManagerDlg.text3Below": "3 per sota la mitjana de des. est.", "SSE.Views.FormatRulesManagerDlg.textAbove": "Per sobre de la mitja", - "SSE.Views.FormatRulesManagerDlg.textApply": "Aplicar a", + "SSE.Views.FormatRulesManagerDlg.textApply": "Aplica-ho a", "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "El valor de la cel·la comença amb", "SSE.Views.FormatRulesManagerDlg.textBelow": "Per sota de la mitja", "SSE.Views.FormatRulesManagerDlg.textBetween": "està entre {0} i {1}", @@ -2213,10 +2216,10 @@ "SSE.Views.FormatRulesManagerDlg.textContains": "El valor de la cel·la conté", "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "La cel·la conté un valor en blanc", "SSE.Views.FormatRulesManagerDlg.textContainsError": "La cel·la conté un error", - "SSE.Views.FormatRulesManagerDlg.textDelete": "Suprimir", - "SSE.Views.FormatRulesManagerDlg.textDown": "Moure la regla avall", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Suprimeix", + "SSE.Views.FormatRulesManagerDlg.textDown": "Desplaça la regla cap avall", "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Valors duplicats", - "SSE.Views.FormatRulesManagerDlg.textEdit": "Editar", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Edita", "SSE.Views.FormatRulesManagerDlg.textEnds": "El valor de la cel·la acaba amb", "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Igual o superior a la mitjana", "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Igual o inferior a la mitjana", @@ -2229,37 +2232,37 @@ "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "La cel·la no conté cap error", "SSE.Views.FormatRulesManagerDlg.textRules": "Regles", "SSE.Views.FormatRulesManagerDlg.textScope": "Mostra les regles de format per a", - "SSE.Views.FormatRulesManagerDlg.textSelectData": "Seleccionar dades", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Selecciona dades", "SSE.Views.FormatRulesManagerDlg.textSelection": "Selecció actual", - "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Aquesta taula pivot", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "Aquesta taula dinàmica", "SSE.Views.FormatRulesManagerDlg.textThisSheet": "Aquest full de càlcul", "SSE.Views.FormatRulesManagerDlg.textThisTable": "Aquesta taula", "SSE.Views.FormatRulesManagerDlg.textUnique": "Valors únics", - "SSE.Views.FormatRulesManagerDlg.textUp": "Moure la regla amunt", + "SSE.Views.FormatRulesManagerDlg.textUp": "Desplaça la regla cap amunt", "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "Un altre usuari està editant aquest element.", "SSE.Views.FormatRulesManagerDlg.txtTitle": "Format condicional", "SSE.Views.FormatSettingsDialog.textCategory": "Categoria", "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", "SSE.Views.FormatSettingsDialog.textFormat": "Format", - "SSE.Views.FormatSettingsDialog.textLinked": "Enllaçat al codi font", - "SSE.Views.FormatSettingsDialog.textSeparator": "Utilitzeu separador de millars", + "SSE.Views.FormatSettingsDialog.textLinked": "Origen enllaçat", + "SSE.Views.FormatSettingsDialog.textSeparator": "Fes servir el separador de milers (.)\n\t", "SSE.Views.FormatSettingsDialog.textSymbols": "Símbols", - "SSE.Views.FormatSettingsDialog.textTitle": "Format de Número", + "SSE.Views.FormatSettingsDialog.textTitle": "Format de número", "SSE.Views.FormatSettingsDialog.txtAccounting": "Comptabilitat", - "SSE.Views.FormatSettingsDialog.txtAs10": "Dècimes (5/10)", - "SSE.Views.FormatSettingsDialog.txtAs100": "Centèsimes (50/100)", - "SSE.Views.FormatSettingsDialog.txtAs16": "Setzens (16/08)", - "SSE.Views.FormatSettingsDialog.txtAs2": "Mitats (1/2)", - "SSE.Views.FormatSettingsDialog.txtAs4": "Quarts (2/4)", - "SSE.Views.FormatSettingsDialog.txtAs8": "Octaus (4/8)", + "SSE.Views.FormatSettingsDialog.txtAs10": "Com dècimes (5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "Com a centèsimes (50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "Com a setzens (16/08)", + "SSE.Views.FormatSettingsDialog.txtAs2": "Com a mitjos (1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "Com a quarts (2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "Com a vuitens (4/8)", "SSE.Views.FormatSettingsDialog.txtCurrency": "Moneda", "SSE.Views.FormatSettingsDialog.txtCustom": "Personalitzat", - "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Introduïu el format numèric personalitzat amb cura. L'editor de fulls de càlcul no comprova els formats personalitzats per als errors que poden afectar el fitxer xlsx.", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Introduïu amb cura el format de número personalitzat. L’Editor de fulls de càlcul no comprova si els formats personalitzats presenten errors que puguin afectar el fitxer xlsx.", "SSE.Views.FormatSettingsDialog.txtDate": "Data", "SSE.Views.FormatSettingsDialog.txtFraction": "Fracció", "SSE.Views.FormatSettingsDialog.txtGeneral": "General", "SSE.Views.FormatSettingsDialog.txtNone": "Cap", - "SSE.Views.FormatSettingsDialog.txtNumber": "Nombre", + "SSE.Views.FormatSettingsDialog.txtNumber": "Número", "SSE.Views.FormatSettingsDialog.txtPercentage": "Percentatge", "SSE.Views.FormatSettingsDialog.txtSample": "Exemple:", "SSE.Views.FormatSettingsDialog.txtScientific": "Científic", @@ -2269,285 +2272,285 @@ "SSE.Views.FormatSettingsDialog.txtUpto2": "Fins a dos dígits (25/12/25)", "SSE.Views.FormatSettingsDialog.txtUpto3": "Fins a tres dígits (131/135)", "SSE.Views.FormulaDialog.sDescription": "Descripció", - "SSE.Views.FormulaDialog.textGroupDescription": "Seleccionar Grup de Funcions", - "SSE.Views.FormulaDialog.textListDescription": "Seleccionar Funció", + "SSE.Views.FormulaDialog.textGroupDescription": "Selecciona un grup de funcions", + "SSE.Views.FormulaDialog.textListDescription": "Selecciona una funció", "SSE.Views.FormulaDialog.txtRecommended": "Recomanat", "SSE.Views.FormulaDialog.txtSearch": "Cerca", - "SSE.Views.FormulaDialog.txtTitle": "Inserir funció", + "SSE.Views.FormulaDialog.txtTitle": "Insereix una funció", "SSE.Views.FormulaTab.textAutomatic": "Automàtic", - "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calcular el full actual", - "SSE.Views.FormulaTab.textCalculateWorkbook": "Calcular llibre de treball", - "SSE.Views.FormulaTab.textManual": "Manualment", - "SSE.Views.FormulaTab.tipCalculate": "Calcular", - "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calcular tot el llibre de treball", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calcula el full actual", + "SSE.Views.FormulaTab.textCalculateWorkbook": "Calcula el llibre de treball", + "SSE.Views.FormulaTab.textManual": "Manual", + "SSE.Views.FormulaTab.tipCalculate": "Calcula", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calcula tot el llibre de treball", "SSE.Views.FormulaTab.txtAdditional": "Addicional", - "SSE.Views.FormulaTab.txtAutosum": "Auto Suma", - "SSE.Views.FormulaTab.txtAutosumTip": "Suma", + "SSE.Views.FormulaTab.txtAutosum": "Suma automàtica", + "SSE.Views.FormulaTab.txtAutosumTip": "Sumatori", "SSE.Views.FormulaTab.txtCalculation": "Càlcul", "SSE.Views.FormulaTab.txtFormula": "Funció", - "SSE.Views.FormulaTab.txtFormulaTip": "Inserir funció", + "SSE.Views.FormulaTab.txtFormulaTip": "Insereix una funció", "SSE.Views.FormulaTab.txtMore": "Més funcions", "SSE.Views.FormulaTab.txtRecent": "S'ha utilitzat recentment", "SSE.Views.FormulaWizard.textAny": "qualsevol", "SSE.Views.FormulaWizard.textArgument": "Argument", "SSE.Views.FormulaWizard.textFunction": "Funció", - "SSE.Views.FormulaWizard.textFunctionRes": "Funció resultat", - "SSE.Views.FormulaWizard.textHelp": "Ajuda en aquesta funció", + "SSE.Views.FormulaWizard.textFunctionRes": "Resultat de la funció", + "SSE.Views.FormulaWizard.textHelp": "Ajuda quant a aquesta funció", "SSE.Views.FormulaWizard.textLogical": "lògic", "SSE.Views.FormulaWizard.textNoArgs": "Aquesta funció no té arguments", "SSE.Views.FormulaWizard.textNumber": "número", "SSE.Views.FormulaWizard.textRef": "referència", "SSE.Views.FormulaWizard.textText": "text", - "SSE.Views.FormulaWizard.textTitle": "Funció Arguments", - "SSE.Views.FormulaWizard.textValue": "Resultat Fórmula", - "SSE.Views.HeaderFooterDialog.textAlign": "Alinear amb els marges de la pàgina", + "SSE.Views.FormulaWizard.textTitle": "Arguments de funció", + "SSE.Views.FormulaWizard.textValue": "Resultat de la fórmula", + "SSE.Views.HeaderFooterDialog.textAlign": "Alinea amb els marges de la pàgina", "SSE.Views.HeaderFooterDialog.textAll": "Totes les pàgines", "SSE.Views.HeaderFooterDialog.textBold": "Negreta", - "SSE.Views.HeaderFooterDialog.textCenter": "Centre", - "SSE.Views.HeaderFooterDialog.textColor": "Color Text", + "SSE.Views.HeaderFooterDialog.textCenter": "Centra", + "SSE.Views.HeaderFooterDialog.textColor": "Color del text", "SSE.Views.HeaderFooterDialog.textDate": "Data", "SSE.Views.HeaderFooterDialog.textDiffFirst": "Primera pàgina diferent", - "SSE.Views.HeaderFooterDialog.textDiffOdd": "Pàgines imparells i parells diferents", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Pàgines senars i parells diferents", "SSE.Views.HeaderFooterDialog.textEven": "Pàgina parell", - "SSE.Views.HeaderFooterDialog.textFileName": "Nom Fitxer", - "SSE.Views.HeaderFooterDialog.textFirst": "Primera Pàgina", + "SSE.Views.HeaderFooterDialog.textFileName": "Nom del fitxer", + "SSE.Views.HeaderFooterDialog.textFirst": "Primera pàgina", "SSE.Views.HeaderFooterDialog.textFooter": "Peu de pàgina", "SSE.Views.HeaderFooterDialog.textHeader": "Capçalera", - "SSE.Views.HeaderFooterDialog.textInsert": "Insertar", - "SSE.Views.HeaderFooterDialog.textItalic": "Itàlica", + "SSE.Views.HeaderFooterDialog.textInsert": "Insereix", + "SSE.Views.HeaderFooterDialog.textItalic": "Cursiva", "SSE.Views.HeaderFooterDialog.textLeft": "Esquerra", - "SSE.Views.HeaderFooterDialog.textMaxError": "La cadena de text que heu introduït és massa llarga. Reduir el nombre de caràcters utilitzats.", - "SSE.Views.HeaderFooterDialog.textNewColor": "Afegir un Nou Color Personalitzat", - "SSE.Views.HeaderFooterDialog.textOdd": "Pàgina imparell", - "SSE.Views.HeaderFooterDialog.textPageCount": "Nombre de Pàgines", - "SSE.Views.HeaderFooterDialog.textPageNum": "Número Pàgina", + "SSE.Views.HeaderFooterDialog.textMaxError": "La cadena de text que heu introduït és massa llarga. Reduiu el nombre de caràcters utilitzats.", + "SSE.Views.HeaderFooterDialog.textNewColor": "Afegeix un color personalitzat nou ", + "SSE.Views.HeaderFooterDialog.textOdd": "Pàgina senar", + "SSE.Views.HeaderFooterDialog.textPageCount": "Recompte de pàgines", + "SSE.Views.HeaderFooterDialog.textPageNum": "Número de pàgina", "SSE.Views.HeaderFooterDialog.textPresets": "Preestablerts", "SSE.Views.HeaderFooterDialog.textRight": "Dreta", - "SSE.Views.HeaderFooterDialog.textScale": "Escala amb document", - "SSE.Views.HeaderFooterDialog.textSheet": "Nom full", - "SSE.Views.HeaderFooterDialog.textStrikeout": "Ratllar", + "SSE.Views.HeaderFooterDialog.textScale": "Ajusta-ho amb el document", + "SSE.Views.HeaderFooterDialog.textSheet": "Nom del full", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Ratllat", "SSE.Views.HeaderFooterDialog.textSubscript": "Subíndex", "SSE.Views.HeaderFooterDialog.textSuperscript": "Superíndex", "SSE.Views.HeaderFooterDialog.textTime": "Hora", - "SSE.Views.HeaderFooterDialog.textTitle": "Configuració de capçalera / peu de pàgina", - "SSE.Views.HeaderFooterDialog.textUnderline": "Subratllar", - "SSE.Views.HeaderFooterDialog.tipFontName": "Font", - "SSE.Views.HeaderFooterDialog.tipFontSize": "Mida de Font", - "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Mostrar", + "SSE.Views.HeaderFooterDialog.textTitle": "Configuració de capçalera/peu de pàgina", + "SSE.Views.HeaderFooterDialog.textUnderline": "Subratllat", + "SSE.Views.HeaderFooterDialog.tipFontName": "Tipus de lletra", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Mida del tipus de lletra", + "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Visualització", "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Enllaç a", - "SSE.Views.HyperlinkSettingsDialog.strRange": "Rang", + "SSE.Views.HyperlinkSettingsDialog.strRange": "Interval", "SSE.Views.HyperlinkSettingsDialog.strSheet": "Full", - "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copiar", - "SSE.Views.HyperlinkSettingsDialog.textDefault": "Interval Seleccionat", - "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Introduïu el títol aquí", - "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Introduïu l'enllaç aquí", - "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Introduïu informació de eines aquí", - "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Enllaç Extern", - "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Obtenir l'Enllaç", - "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Rang de Dades Intern", - "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERROR! Interval de celdes no vàlid", - "SSE.Views.HyperlinkSettingsDialog.textNames": "Noms Definits", - "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Seleccionar dades", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copia", + "SSE.Views.HyperlinkSettingsDialog.textDefault": "Interval seleccionat", + "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Introdueix el títol aquí", + "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Introdueix l'enllaç aquí", + "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Introdueix la informació sobre l'eina aquí", + "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "Enllaç extern", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Obtén l'enllaç", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Interval de dades intern", + "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Noms definits", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Selecciona dades", "SSE.Views.HyperlinkSettingsDialog.textSheets": "Fulls", - "SSE.Views.HyperlinkSettingsDialog.textTipText": "Informació en Pantalla", - "SSE.Views.HyperlinkSettingsDialog.textTitle": "Característiques de hipervincle", - "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és obligatori", - "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.example.com\"", + "SSE.Views.HyperlinkSettingsDialog.textTipText": "Informació en pantalla", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "Configuració de l’enllaç", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "Aquest camp és necessari", + "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.example.com\"", "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "Aquest camp està limitat a 2083 caràcters", "SSE.Views.ImageSettings.textAdvanced": "Mostra la configuració avançada", - "SSE.Views.ImageSettings.textCrop": "Retallar", - "SSE.Views.ImageSettings.textCropFill": "Omplir", + "SSE.Views.ImageSettings.textCrop": "Retalla", + "SSE.Views.ImageSettings.textCropFill": "Emplena", "SSE.Views.ImageSettings.textCropFit": "Ajusta", - "SSE.Views.ImageSettings.textEdit": "Editar", - "SSE.Views.ImageSettings.textEditObject": "Editar l'Objecte", - "SSE.Views.ImageSettings.textFlip": "Voltejar", + "SSE.Views.ImageSettings.textEdit": "Edita", + "SSE.Views.ImageSettings.textEditObject": "Edita l'objecte", + "SSE.Views.ImageSettings.textFlip": "Capgira", "SSE.Views.ImageSettings.textFromFile": "Des d'un fitxer", - "SSE.Views.ImageSettings.textFromStorage": "Des d'Emmagatzematge", - "SSE.Views.ImageSettings.textFromUrl": "Des d'un Enllaç", + "SSE.Views.ImageSettings.textFromStorage": "Des de l’emmagatzematge", + "SSE.Views.ImageSettings.textFromUrl": "Des de l'URL", "SSE.Views.ImageSettings.textHeight": "Alçada", - "SSE.Views.ImageSettings.textHint270": "Girar 90° a l'esquerra", - "SSE.Views.ImageSettings.textHint90": "Girar 90° a la dreta", - "SSE.Views.ImageSettings.textHintFlipH": "Voltejar Horitzontalment", - "SSE.Views.ImageSettings.textHintFlipV": "Voltejar Verticalment", - "SSE.Views.ImageSettings.textInsert": "Canviar imatge", - "SSE.Views.ImageSettings.textKeepRatio": "Proporcions Constants", - "SSE.Views.ImageSettings.textOriginalSize": "Mida Actual", - "SSE.Views.ImageSettings.textRotate90": "Girar 90°", + "SSE.Views.ImageSettings.textHint270": "Gira 90° a l'esquerra", + "SSE.Views.ImageSettings.textHint90": "Gira 90° a la dreta", + "SSE.Views.ImageSettings.textHintFlipH": "Capgira horitzontalment", + "SSE.Views.ImageSettings.textHintFlipV": "Capgira verticalment", + "SSE.Views.ImageSettings.textInsert": "Substitueix la imatge", + "SSE.Views.ImageSettings.textKeepRatio": "Proporcions constants", + "SSE.Views.ImageSettings.textOriginalSize": "Mida real", + "SSE.Views.ImageSettings.textRotate90": "Gira 90°", "SSE.Views.ImageSettings.textRotation": "Rotació", "SSE.Views.ImageSettings.textSize": "Mida", "SSE.Views.ImageSettings.textWidth": "Amplada", - "SSE.Views.ImageSettingsAdvanced.textAbsolute": "No moure o canviar mida les cel·les", - "SSE.Views.ImageSettingsAdvanced.textAlt": "Text Alternatiu", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "No moguis o canviïs la mida les cel·les", + "SSE.Views.ImageSettingsAdvanced.textAlt": "Text alternatiu", "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Descripció", - "SSE.Views.ImageSettingsAdvanced.textAltTip": "La representació alternativa basada en text de la informació d’objectes visuals, que es llegirà a les persones amb deficiències de visió o cognitives per ajudar-les a comprendre millor quina informació hi ha a la imatge, autoforma, gràfic o taula.", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.", "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Títol", "SSE.Views.ImageSettingsAdvanced.textAngle": "Angle", - "SSE.Views.ImageSettingsAdvanced.textFlipped": "Voltejat", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Capgirat", "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horitzontalment", - "SSE.Views.ImageSettingsAdvanced.textOneCell": "Moure, però no mida de les cel·les", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Desplaça, però no canviïs la mida amb les cel·les", "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotació", "SSE.Views.ImageSettingsAdvanced.textSnap": "Captura de cel·la", - "SSE.Views.ImageSettingsAdvanced.textTitle": "Imatge - Configuració Avançada", - "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Moure i mida de les cel·les", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Imatge - Configuració avançada", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Desplaça i canvia la mida amb les cel·les", "SSE.Views.ImageSettingsAdvanced.textVertically": "Verticalment", "SSE.Views.LeftMenu.tipAbout": "Quant a...", - "SSE.Views.LeftMenu.tipChat": "Chat", + "SSE.Views.LeftMenu.tipChat": "Xat", "SSE.Views.LeftMenu.tipComments": "Comentaris", "SSE.Views.LeftMenu.tipFile": "Fitxer", - "SSE.Views.LeftMenu.tipPlugins": "Connectors", + "SSE.Views.LeftMenu.tipPlugins": "Complements", "SSE.Views.LeftMenu.tipSearch": "Cerca", - "SSE.Views.LeftMenu.tipSpellcheck": "Comprovació Ortogràfica", - "SSE.Views.LeftMenu.tipSupport": "Opinió & Suport", - "SSE.Views.LeftMenu.txtDeveloper": "MODALITAT DE DESENVOLUPADOR", - "SSE.Views.LeftMenu.txtLimit": "Limitar l'accés", - "SSE.Views.LeftMenu.txtTrial": "ESTAT DE PROVA", - "SSE.Views.LeftMenu.txtTrialDev": "Mode de desenvolupador de prova", - "SSE.Views.MacroDialog.textMacro": "Nom de macro", - "SSE.Views.MacroDialog.textTitle": "Assignar Macro", - "SSE.Views.MainSettingsPrint.okButtonText": "Desar", - "SSE.Views.MainSettingsPrint.strBottom": "Inferior", - "SSE.Views.MainSettingsPrint.strLandscape": "Horitzontal", + "SSE.Views.LeftMenu.tipSpellcheck": "Revisió ortogràfica", + "SSE.Views.LeftMenu.tipSupport": "Comentaris i servei d'atenció al client", + "SSE.Views.LeftMenu.txtDeveloper": "MODE PER A DESENVOLUPADORS", + "SSE.Views.LeftMenu.txtLimit": "Limita l'accés", + "SSE.Views.LeftMenu.txtTrial": "MODE DE PROVA", + "SSE.Views.LeftMenu.txtTrialDev": "Mode de desenvolupament de prova", + "SSE.Views.MacroDialog.textMacro": "Nom de la macro", + "SSE.Views.MacroDialog.textTitle": "Assigna una Macro", + "SSE.Views.MainSettingsPrint.okButtonText": "Desa", + "SSE.Views.MainSettingsPrint.strBottom": "Part inferior", + "SSE.Views.MainSettingsPrint.strLandscape": "Orientació horitzontal", "SSE.Views.MainSettingsPrint.strLeft": "Esquerra", "SSE.Views.MainSettingsPrint.strMargins": "Marges", - "SSE.Views.MainSettingsPrint.strPortrait": "Vertical", - "SSE.Views.MainSettingsPrint.strPrint": "Imprimir", - "SSE.Views.MainSettingsPrint.strPrintTitles": "Imprimir Títols", + "SSE.Views.MainSettingsPrint.strPortrait": "Orientació vertical", + "SSE.Views.MainSettingsPrint.strPrint": "Imprimeix", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Imprimeix els títols", "SSE.Views.MainSettingsPrint.strRight": "Dreta", "SSE.Views.MainSettingsPrint.strTop": "Superior", - "SSE.Views.MainSettingsPrint.textActualSize": "Mida Actual", + "SSE.Views.MainSettingsPrint.textActualSize": "Mida real", "SSE.Views.MainSettingsPrint.textCustom": "Personalitzat", - "SSE.Views.MainSettingsPrint.textCustomOptions": "Opcions Personalitzades", - "SSE.Views.MainSettingsPrint.textFitCols": "Encaixa totes les columnes en una pàgina", - "SSE.Views.MainSettingsPrint.textFitPage": "Ajustar en una pàgina", - "SSE.Views.MainSettingsPrint.textFitRows": "Ajustar totes les files en una pàgina", - "SSE.Views.MainSettingsPrint.textPageOrientation": "Orientació de Pàgina", + "SSE.Views.MainSettingsPrint.textCustomOptions": "Opcions personalitzades", + "SSE.Views.MainSettingsPrint.textFitCols": "Ajusta totes les columnes en una pàgina", + "SSE.Views.MainSettingsPrint.textFitPage": "Ajusta en una pàgina", + "SSE.Views.MainSettingsPrint.textFitRows": "Ajusta totes les files en una pàgina", + "SSE.Views.MainSettingsPrint.textPageOrientation": "Orientació de la pàgina", "SSE.Views.MainSettingsPrint.textPageScaling": "Escala", - "SSE.Views.MainSettingsPrint.textPageSize": "Mida de Pàgina", - "SSE.Views.MainSettingsPrint.textPrintGrid": "Imprimir Quadrícules", - "SSE.Views.MainSettingsPrint.textPrintHeadings": "Imprimir títols de files i columnes", - "SSE.Views.MainSettingsPrint.textRepeat": "Repetir...", - "SSE.Views.MainSettingsPrint.textRepeatLeft": "Repetir les columnes a l'esquerra", - "SSE.Views.MainSettingsPrint.textRepeatTop": "Repetir les files a la part superior", + "SSE.Views.MainSettingsPrint.textPageSize": "Mida de la pàgina", + "SSE.Views.MainSettingsPrint.textPrintGrid": "Imprimeix les línies de la quadrícula", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "Imprimeix títols de files i columnes", + "SSE.Views.MainSettingsPrint.textRepeat": "Repeteix...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Repeteix les columnes a l'esquerra", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Repeteix les files a la part superior", "SSE.Views.MainSettingsPrint.textSettings": "Configuració de", - "SSE.Views.NamedRangeEditDlg.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.Views.NamedRangeEditDlg.namePlaceholder": "Nom Definit", - "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Avis", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "No es poden editar els intervals de nom existents i no s'en poden crear de nous
en aquest moment perquè algú els ha obert.", + "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Nom definit", + "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Advertiment", "SSE.Views.NamedRangeEditDlg.strWorkbook": "Llibre de treball", - "SSE.Views.NamedRangeEditDlg.textDataRange": "Interval de Dades", - "SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! El rang amb un nom així ja existeix", + "SSE.Views.NamedRangeEditDlg.textDataRange": "Interval de dades", + "SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Ja existeix un interval amb aquest nom", "SSE.Views.NamedRangeEditDlg.textInvalidName": "El nom ha de començar amb una lletra o un guió baix i no ha de contenir caràcters no vàlids.", - "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! Interval de cel·les no vàlid", + "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", "SSE.Views.NamedRangeEditDlg.textIsLocked": "ERROR! Un altre usuari està editant aquest element.", "SSE.Views.NamedRangeEditDlg.textName": "Nom", - "SSE.Views.NamedRangeEditDlg.textReservedName": "El nom que intenteu utilitzar ja es fa referència a les fórmules de cel·la. Si us plau, utilitzeu algun altre nom.", - "SSE.Views.NamedRangeEditDlg.textScope": "Àmbit d’abast", - "SSE.Views.NamedRangeEditDlg.textSelectData": "Seleccionar Dades", - "SSE.Views.NamedRangeEditDlg.txtEmpty": "Aquest camp és obligatori", - "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Editar Nom", - "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Nom Nou", - "SSE.Views.NamedRangePasteDlg.textNames": "Nom de Rangs", - "SSE.Views.NamedRangePasteDlg.txtTitle": "Pegar Nom", - "SSE.Views.NameManagerDlg.closeButtonText": "Tancar", + "SSE.Views.NamedRangeEditDlg.textReservedName": "El nom que intenteu utilitzar es troba a les fórmules de cel·la.Utilitzeu un altre nom.", + "SSE.Views.NamedRangeEditDlg.textScope": "Àmbit", + "SSE.Views.NamedRangeEditDlg.textSelectData": "Selecciona dades", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "Aquest camp és necessari", + "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edita el nom", + "SSE.Views.NamedRangeEditDlg.txtTitleNew": "Nom nou", + "SSE.Views.NamedRangePasteDlg.textNames": "Intervals amb nom", + "SSE.Views.NamedRangePasteDlg.txtTitle": "Enganxa el nom", + "SSE.Views.NameManagerDlg.closeButtonText": "Tanca", "SSE.Views.NameManagerDlg.guestText": "Convidat", - "SSE.Views.NameManagerDlg.textDataRange": "Interval de Dades", - "SSE.Views.NameManagerDlg.textDelete": "Esborra", - "SSE.Views.NameManagerDlg.textEdit": "Editar", - "SSE.Views.NameManagerDlg.textEmpty": "Encara no s'ha creat cap rang amb nom.
Creeu almenys un interval anomenat i apareixerà en aquest camp.", + "SSE.Views.NameManagerDlg.textDataRange": "Interval de dades", + "SSE.Views.NameManagerDlg.textDelete": "Suprimeix", + "SSE.Views.NameManagerDlg.textEdit": "Edita", + "SSE.Views.NameManagerDlg.textEmpty": "Encara no s'han creat intervals amb nom.
Creeu com a mínim un interval amb nom i apareixerà en aquest camp.", "SSE.Views.NameManagerDlg.textFilter": "Filtre", "SSE.Views.NameManagerDlg.textFilterAll": "Tot", - "SSE.Views.NameManagerDlg.textFilterDefNames": "Noms Definits", - "SSE.Views.NameManagerDlg.textFilterSheet": "Noms Objecte al Full", - "SSE.Views.NameManagerDlg.textFilterTableNames": "Noms de les Taules", - "SSE.Views.NameManagerDlg.textFilterWorkbook": "Noms objecte al quadern de treball", + "SSE.Views.NameManagerDlg.textFilterDefNames": "Noms definits", + "SSE.Views.NameManagerDlg.textFilterSheet": "Noms amb abast al full", + "SSE.Views.NameManagerDlg.textFilterTableNames": "Noms de les taules", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "Noms amb abast al full de càlcul", "SSE.Views.NameManagerDlg.textNew": "Nou", - "SSE.Views.NameManagerDlg.textnoNames": "No s'ha trobat cap interval indicat que coincideixi amb el vostre filtre.", - "SSE.Views.NameManagerDlg.textRanges": "Nom de Rangs", - "SSE.Views.NameManagerDlg.textScope": "Àmbit d’abast", + "SSE.Views.NameManagerDlg.textnoNames": "No s'ha trobat cap interval de noms que coincideixi amb el vostre filtre.", + "SSE.Views.NameManagerDlg.textRanges": "Intervals amb nom", + "SSE.Views.NameManagerDlg.textScope": "Àmbit", "SSE.Views.NameManagerDlg.textWorkbook": "Llibre de treball", "SSE.Views.NameManagerDlg.tipIsLocked": "Un altre usuari està editant aquest element.", - "SSE.Views.NameManagerDlg.txtTitle": "Gestor de Noms", - "SSE.Views.NameManagerDlg.warnDelete": "Segur que voleu suprimir el nom {0}?", - "SSE.Views.PageMarginsDialog.textBottom": "Inferior", + "SSE.Views.NameManagerDlg.txtTitle": "Administrador de noms", + "SSE.Views.NameManagerDlg.warnDelete": "Segur que vols suprimir el nom {0}?", + "SSE.Views.PageMarginsDialog.textBottom": "Part inferior", "SSE.Views.PageMarginsDialog.textLeft": "Esquerra", "SSE.Views.PageMarginsDialog.textRight": "Dreta", "SSE.Views.PageMarginsDialog.textTitle": "Marges", "SSE.Views.PageMarginsDialog.textTop": "Superior", - "SSE.Views.ParagraphSettings.strLineHeight": "Espai entre Línies", - "SSE.Views.ParagraphSettings.strParagraphSpacing": "Espaiat de Paràgraf", + "SSE.Views.ParagraphSettings.strLineHeight": "Interlineat", + "SSE.Views.ParagraphSettings.strParagraphSpacing": "Espaiat del paràgraf", "SSE.Views.ParagraphSettings.strSpacingAfter": "Després", "SSE.Views.ParagraphSettings.strSpacingBefore": "Abans", "SSE.Views.ParagraphSettings.textAdvanced": "Mostra la configuració avançada", - "SSE.Views.ParagraphSettings.textAt": "En", - "SSE.Views.ParagraphSettings.textAtLeast": "Al menys", + "SSE.Views.ParagraphSettings.textAt": "A", + "SSE.Views.ParagraphSettings.textAtLeast": "Pel cap baix", "SSE.Views.ParagraphSettings.textAuto": "Múltiple", "SSE.Views.ParagraphSettings.textExact": "Exacte", - "SSE.Views.ParagraphSettings.txtAutoText": "Auto", - "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Les pestanyes especificades apareixeran en aquest camp", - "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Majúscules ", - "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Doble ratllat", - "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Retirades", + "SSE.Views.ParagraphSettings.txtAutoText": "Automàtic", + "SSE.Views.ParagraphSettingsAdvanced.noTabs": "Els tabuladors especificats apareixeran en aquest camp", + "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "Tot en majúscules", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Ratllat doble", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Sagnies", "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Esquerra", - "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Espai entre Línies", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Interlineat", "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Dreta", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "Després", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Abans", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Especial", "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "Per", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", - "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnat i Espaiat", - "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Majúscules petites", - "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Espai", - "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Ratllar", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Tipus de lletra", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Sagnia i espaiat", + "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Versaletes", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Espaiat", + "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Ratllat", "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subíndex", "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superíndex", - "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Pestanyes", + "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabuladors", "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alineació", "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Múltiple", - "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Caràcter Espai", - "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Pestanya predeterminada", + "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Espaiat entre caràcters", + "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Tabulació predeterminada", "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Efectes", "SSE.Views.ParagraphSettingsAdvanced.textExact": "Exacte", "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "Primera línia", - "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Penjat", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Sagnia francesa", "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Justificat", "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(cap)", - "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Esborrar", - "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Esborrar tot", - "SSE.Views.ParagraphSettingsAdvanced.textSet": "Especificar", - "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centre", + "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Suprimeix", + "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Suprimeix-ho tot", + "SSE.Views.ParagraphSettingsAdvanced.textSet": "Especifica", + "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Centra", "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Esquerra", - "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posició de Pestanya", + "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Posició del tabulador", "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Dreta", - "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paràgraf - Configuració Avançada", - "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", - "SSE.Views.PivotDigitalFilterDialog.capCondition1": "és igual", + "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paràgraf - Configuració avançada", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Automàtic", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "és igual a", "SSE.Views.PivotDigitalFilterDialog.capCondition10": "no acaba amb", "SSE.Views.PivotDigitalFilterDialog.capCondition11": "conté", "SSE.Views.PivotDigitalFilterDialog.capCondition12": "no conté", "SSE.Views.PivotDigitalFilterDialog.capCondition13": "entre", "SSE.Views.PivotDigitalFilterDialog.capCondition14": "no entre", - "SSE.Views.PivotDigitalFilterDialog.capCondition2": "no igual a", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "no és igual a", "SSE.Views.PivotDigitalFilterDialog.capCondition3": "és més gran que", - "SSE.Views.PivotDigitalFilterDialog.capCondition4": "és més gran o igual a", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "és més gran o igual que", "SSE.Views.PivotDigitalFilterDialog.capCondition5": "és menor que", - "SSE.Views.PivotDigitalFilterDialog.capCondition6": "és menor o igual a", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "és menor o igual que", "SSE.Views.PivotDigitalFilterDialog.capCondition7": "comença amb", - "SSE.Views.PivotDigitalFilterDialog.capCondition8": "no comença", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "no comença per", "SSE.Views.PivotDigitalFilterDialog.capCondition9": "acaba amb", - "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Mostrar els elements pels quals l’etiqueta:", - "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Mostrar els elements per als quals:", - "SSE.Views.PivotDigitalFilterDialog.textUse1": "Utilitzeu ? per presentar qualsevol caràcter", - "SSE.Views.PivotDigitalFilterDialog.textUse2": "Utilitzeu * per presentar qualsevol sèrie de caràcters", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Mostra els elements per als quals l'etiqueta:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Mostra els elements per als quals:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Utilitza ? per presentar qualsevol caràcter", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Utilitza * per presentar qualsevol sèrie de caràcters", "SSE.Views.PivotDigitalFilterDialog.txtAnd": "i", - "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtre Etiqueta", - "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Valor del Filtre", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Filtre per etiqueta", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Filtre per valor", "SSE.Views.PivotGroupDialog.textAuto": "Automàtic", "SSE.Views.PivotGroupDialog.textBy": "Per", "SSE.Views.PivotGroupDialog.textDays": "Dies", - "SSE.Views.PivotGroupDialog.textEnd": "Acabant a", + "SSE.Views.PivotGroupDialog.textEnd": "Acaba a", "SSE.Views.PivotGroupDialog.textError": "Aquest camp ha de ser un valor numèric", "SSE.Views.PivotGroupDialog.textGreaterError": "El número final ha de ser més gran que el número inicial.", - "SSE.Views.PivotGroupDialog.textHour": "hores", + "SSE.Views.PivotGroupDialog.textHour": "Hores", "SSE.Views.PivotGroupDialog.textMin": "Minuts", "SSE.Views.PivotGroupDialog.textMonth": "Mesos", "SSE.Views.PivotGroupDialog.textNumDays": "Nombre de dies", @@ -2558,280 +2561,280 @@ "SSE.Views.PivotGroupDialog.txtTitle": "Agrupació", "SSE.Views.PivotSettings.textAdvanced": "Mostra la configuració avançada", "SSE.Views.PivotSettings.textColumns": "Columnes", - "SSE.Views.PivotSettings.textFields": "Seleccionar Camps", + "SSE.Views.PivotSettings.textFields": "Selecciona els camps", "SSE.Views.PivotSettings.textFilters": "Filtres", "SSE.Views.PivotSettings.textRows": "Files", "SSE.Views.PivotSettings.textValues": "Valors", - "SSE.Views.PivotSettings.txtAddColumn": "Afegeix a Columnes", - "SSE.Views.PivotSettings.txtAddFilter": "Afegeix a Filtres", - "SSE.Views.PivotSettings.txtAddRow": "Afegir a Files", - "SSE.Views.PivotSettings.txtAddValues": "Afegir a Valors", - "SSE.Views.PivotSettings.txtFieldSettings": "Configuració de Camp", - "SSE.Views.PivotSettings.txtMoveBegin": "Moure al principi", - "SSE.Views.PivotSettings.txtMoveColumn": "Moure a la columna", - "SSE.Views.PivotSettings.txtMoveDown": "Moure cap Avall", - "SSE.Views.PivotSettings.txtMoveEnd": "Moure al Final", - "SSE.Views.PivotSettings.txtMoveFilter": "Moure a Filtres", - "SSE.Views.PivotSettings.txtMoveRow": "Moure a Files", - "SSE.Views.PivotSettings.txtMoveUp": "Moure Amunt", - "SSE.Views.PivotSettings.txtMoveValues": "Moure a Valors", - "SSE.Views.PivotSettings.txtRemove": "Eliminar el Camp", - "SSE.Views.PivotSettingsAdvanced.strLayout": "Nom i Maquetació", - "SSE.Views.PivotSettingsAdvanced.textAlt": "Text Alternatiu", + "SSE.Views.PivotSettings.txtAddColumn": "Afegeix a columnes", + "SSE.Views.PivotSettings.txtAddFilter": "Afegeix a filtres", + "SSE.Views.PivotSettings.txtAddRow": "Afegeix a files", + "SSE.Views.PivotSettings.txtAddValues": "Afegeix a valors", + "SSE.Views.PivotSettings.txtFieldSettings": "Configuració del camp", + "SSE.Views.PivotSettings.txtMoveBegin": "Ves al començament", + "SSE.Views.PivotSettings.txtMoveColumn": "Ves a les columnes", + "SSE.Views.PivotSettings.txtMoveDown": "Baixa", + "SSE.Views.PivotSettings.txtMoveEnd": "Ves al final", + "SSE.Views.PivotSettings.txtMoveFilter": "Ves al filtres", + "SSE.Views.PivotSettings.txtMoveRow": "Ves a les files", + "SSE.Views.PivotSettings.txtMoveUp": "Puja", + "SSE.Views.PivotSettings.txtMoveValues": "Ves als valors", + "SSE.Views.PivotSettings.txtRemove": "Suprimeix el camp", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Nom i disposició", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Text alternatiu", "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Descripció", "SSE.Views.PivotSettingsAdvanced.textAltTip": "La representació alternativa basada en text de la informació d’objectes visuals, que es llegirà a les persones amb deficiències de visió o cognitives per ajudar-les a comprendre millor quina informació hi ha a la imatge, autoforma, gràfic o taula.", "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Títol", - "SSE.Views.PivotSettingsAdvanced.textDataRange": "Interval de Dades", - "SSE.Views.PivotSettingsAdvanced.textDataSource": "Font de Dades", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Interval de dades", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Font de dades", "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Mostra els camps a l’àrea de filtre d’informes", "SSE.Views.PivotSettingsAdvanced.textDown": "A baix, després a sobre", - "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Totals", - "SSE.Views.PivotSettingsAdvanced.textHeaders": "Capçaleres de Camp", - "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERROR! Interval de celdes no vàlid", - "SSE.Views.PivotSettingsAdvanced.textOver": "Acabat, després cap avall", - "SSE.Views.PivotSettingsAdvanced.textSelectData": "Seleccionar dades", - "SSE.Views.PivotSettingsAdvanced.textShowCols": "Mostrar per les columnes", - "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Mostrar les capçaleres de camp per a files i columnes", - "SSE.Views.PivotSettingsAdvanced.textShowRows": "Mostrar per les files", - "SSE.Views.PivotSettingsAdvanced.textTitle": "Taula Clau - Configuració Avançada", - "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Informar dels camps de filtre per columna", - "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Informar els camps de filtre per fila", - "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Aquest camp és obligatori", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Totals generals", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Capçaleres dels camps", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", + "SSE.Views.PivotSettingsAdvanced.textOver": "A la dreta, després avall", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Selecciona dades", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Mostra per les columnes", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Mostra les capçaleres de camp per a files i columnes", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Mostra per les files", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Taula dinàmica - Configuració avançada", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Camps del filtre d'informe per columna", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Camps del filtre d'informe per fila", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "Aquest camp és necessari", "SSE.Views.PivotSettingsAdvanced.txtName": "Nom", "SSE.Views.PivotTable.capBlankRows": "Files en Blanc", - "SSE.Views.PivotTable.capGrandTotals": "Totals", - "SSE.Views.PivotTable.capLayout": "Maquetació de l'Informe", + "SSE.Views.PivotTable.capGrandTotals": "Totals generals", + "SSE.Views.PivotTable.capLayout": "Disposició de l'informe", "SSE.Views.PivotTable.capSubtotals": "Subtotals", - "SSE.Views.PivotTable.mniBottomSubtotals": "Mostra tots els Subtotals a la part Inferior del Grup", - "SSE.Views.PivotTable.mniInsertBlankLine": "Inserir una línia en blanc després de cada element", - "SSE.Views.PivotTable.mniLayoutCompact": "Mostrar de Forma Compacta", - "SSE.Views.PivotTable.mniLayoutNoRepeat": "No Repetir totes les Etiquetes d’Element", - "SSE.Views.PivotTable.mniLayoutOutline": "Mostrar en Forma d'Esquema", - "SSE.Views.PivotTable.mniLayoutRepeat": "Repetir Totes les Etiquetes de l'Element", - "SSE.Views.PivotTable.mniLayoutTabular": "Mostrar en Forma Tabular", - "SSE.Views.PivotTable.mniNoSubtotals": "No Mostreu Subtotals", - "SSE.Views.PivotTable.mniOffTotals": "Desactivat per Files i Columnes", - "SSE.Views.PivotTable.mniOnColumnsTotals": "Activat Només per Columnes", - "SSE.Views.PivotTable.mniOnRowsTotals": "Activat sols per Files", - "SSE.Views.PivotTable.mniOnTotals": "Activat per Files i Columnes", - "SSE.Views.PivotTable.mniRemoveBlankLine": "Eliminar la línia en blanc després de cada element", - "SSE.Views.PivotTable.mniTopSubtotals": "Mostra tots els Subtotals a la part Superior del Grup", - "SSE.Views.PivotTable.textColBanded": "Columnes amb bandes", - "SSE.Views.PivotTable.textColHeader": "Títols de Columnes", - "SSE.Views.PivotTable.textRowBanded": "Files amb bandes", - "SSE.Views.PivotTable.textRowHeader": "Títols de Fila", - "SSE.Views.PivotTable.tipCreatePivot": "Inseriu la Taula Dinàmica", - "SSE.Views.PivotTable.tipGrandTotals": "Mostrar o amagar totals", - "SSE.Views.PivotTable.tipRefresh": "Actualitzar la informació de l’origen de dades", - "SSE.Views.PivotTable.tipSelect": "Seleccionar la taula de pivot sencera", - "SSE.Views.PivotTable.tipSubtotals": "Mostrar o amagar subtotals", - "SSE.Views.PivotTable.txtCreate": "Inserir Taula", - "SSE.Views.PivotTable.txtPivotTable": "Taula Dinàmica", - "SSE.Views.PivotTable.txtRefresh": "Actualitzar", - "SSE.Views.PivotTable.txtSelect": "Seleccionar", - "SSE.Views.PrintSettings.btnDownload": "Desar i Descarregar", - "SSE.Views.PrintSettings.btnPrint": "Desar e Imprimir", - "SSE.Views.PrintSettings.strBottom": "Inferior", - "SSE.Views.PrintSettings.strLandscape": "Horitzontal", + "SSE.Views.PivotTable.mniBottomSubtotals": "Mostra tots els subtotals al final del grup", + "SSE.Views.PivotTable.mniInsertBlankLine": "Insereix una línia en blanc després de cada element", + "SSE.Views.PivotTable.mniLayoutCompact": "Mostra en format compacte", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "No repeteixis totes les etiquetes dels elements", + "SSE.Views.PivotTable.mniLayoutOutline": "Mostra en format d'esquema", + "SSE.Views.PivotTable.mniLayoutRepeat": "Repeteix totes les etiquetes d'elements", + "SSE.Views.PivotTable.mniLayoutTabular": "Mostra en format tabular", + "SSE.Views.PivotTable.mniNoSubtotals": "No mostris els subtotals", + "SSE.Views.PivotTable.mniOffTotals": "Opció desactivada per a les files i les columnes", + "SSE.Views.PivotTable.mniOnColumnsTotals": "Opció activada només per a les columnes", + "SSE.Views.PivotTable.mniOnRowsTotals": "Opció activada només per a les files", + "SSE.Views.PivotTable.mniOnTotals": "Opció activada només per a les files i les columnes", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Suprimeix una línia en blanc després de cada element.", + "SSE.Views.PivotTable.mniTopSubtotals": "Mostra tots els subtotals al començament del grup", + "SSE.Views.PivotTable.textColBanded": "Columnes en bandes", + "SSE.Views.PivotTable.textColHeader": "Capçaleres de columnes", + "SSE.Views.PivotTable.textRowBanded": "Files en banda", + "SSE.Views.PivotTable.textRowHeader": "Capçaleres de files", + "SSE.Views.PivotTable.tipCreatePivot": "Insereix una taula dinàmica", + "SSE.Views.PivotTable.tipGrandTotals": "Mostra o amaga els totals generals", + "SSE.Views.PivotTable.tipRefresh": "Actualitza la informació de l’origen de dades", + "SSE.Views.PivotTable.tipSelect": "Selecciona la taula dinàmica sencera", + "SSE.Views.PivotTable.tipSubtotals": "Mostra o amaga els subtotals", + "SSE.Views.PivotTable.txtCreate": "Insereix una taula", + "SSE.Views.PivotTable.txtPivotTable": "Taula dinàmica", + "SSE.Views.PivotTable.txtRefresh": "Actualitza", + "SSE.Views.PivotTable.txtSelect": "Selecciona", + "SSE.Views.PrintSettings.btnDownload": "Desa i Descarrega", + "SSE.Views.PrintSettings.btnPrint": "Desa i imprimeix", + "SSE.Views.PrintSettings.strBottom": "Part inferior", + "SSE.Views.PrintSettings.strLandscape": "Orientació horitzontal", "SSE.Views.PrintSettings.strLeft": "Esquerra", "SSE.Views.PrintSettings.strMargins": "Marges", - "SSE.Views.PrintSettings.strPortrait": "Vertical", - "SSE.Views.PrintSettings.strPrint": "Imprimir", - "SSE.Views.PrintSettings.strPrintTitles": "Imprimir Títols", + "SSE.Views.PrintSettings.strPortrait": "Orientació vertical", + "SSE.Views.PrintSettings.strPrint": "Imprimeix", + "SSE.Views.PrintSettings.strPrintTitles": "Imprimeix els títols", "SSE.Views.PrintSettings.strRight": "Dreta", "SSE.Views.PrintSettings.strShow": "Mostra", "SSE.Views.PrintSettings.strTop": "Superior", - "SSE.Views.PrintSettings.textActualSize": "Mida Actual", - "SSE.Views.PrintSettings.textAllSheets": "Totes les Fulles", - "SSE.Views.PrintSettings.textCurrentSheet": "Full Actual", + "SSE.Views.PrintSettings.textActualSize": "Mida real", + "SSE.Views.PrintSettings.textAllSheets": "Tots els fulls", + "SSE.Views.PrintSettings.textCurrentSheet": "Full actual", "SSE.Views.PrintSettings.textCustom": "Personalitzat", - "SSE.Views.PrintSettings.textCustomOptions": "Opcions Personalitzades", - "SSE.Views.PrintSettings.textFitCols": "Encaixa totes les columnes en una pàgina", - "SSE.Views.PrintSettings.textFitPage": "Ajustar en una pàgina", - "SSE.Views.PrintSettings.textFitRows": "Ajustar totes les files en una pàgina", - "SSE.Views.PrintSettings.textHideDetails": "Amagar Detalls", - "SSE.Views.PrintSettings.textIgnore": "Ignorar l'Àrea d'Impressió", - "SSE.Views.PrintSettings.textLayout": "Maquetació", - "SSE.Views.PrintSettings.textPageOrientation": "Orientació de Pàgina", + "SSE.Views.PrintSettings.textCustomOptions": "Opcions personalitzades", + "SSE.Views.PrintSettings.textFitCols": "Ajusta totes les columnes en una pàgina", + "SSE.Views.PrintSettings.textFitPage": "Ajusta en una pàgina", + "SSE.Views.PrintSettings.textFitRows": "Ajusta totes les files en una pàgina", + "SSE.Views.PrintSettings.textHideDetails": "Amaga els detalls", + "SSE.Views.PrintSettings.textIgnore": "Ignora l'àrea d'impressió", + "SSE.Views.PrintSettings.textLayout": "Disposició", + "SSE.Views.PrintSettings.textPageOrientation": "Orientació de la pàgina", "SSE.Views.PrintSettings.textPageScaling": "Escala", - "SSE.Views.PrintSettings.textPageSize": "Mida de Pàgina", - "SSE.Views.PrintSettings.textPrintGrid": "Imprimir Quadrícules", - "SSE.Views.PrintSettings.textPrintHeadings": "Imprimir títols de files i columnes", - "SSE.Views.PrintSettings.textPrintRange": "Àrea d'Impressió", - "SSE.Views.PrintSettings.textRange": "Rang", - "SSE.Views.PrintSettings.textRepeat": "Repetir...", - "SSE.Views.PrintSettings.textRepeatLeft": "Repetir les columnes a l'esquerra", - "SSE.Views.PrintSettings.textRepeatTop": "Repetir les files a la part superior", + "SSE.Views.PrintSettings.textPageSize": "Mida de la pàgina", + "SSE.Views.PrintSettings.textPrintGrid": "Imprimeix les línies de la quadrícula", + "SSE.Views.PrintSettings.textPrintHeadings": "Imprimeix títols de files i columnes", + "SSE.Views.PrintSettings.textPrintRange": "Interval d'impressió", + "SSE.Views.PrintSettings.textRange": "Interval", + "SSE.Views.PrintSettings.textRepeat": "Repeteix...", + "SSE.Views.PrintSettings.textRepeatLeft": "Repeteix les columnes a l'esquerra", + "SSE.Views.PrintSettings.textRepeatTop": "Repeteix les files a la part superior", "SSE.Views.PrintSettings.textSelection": "Selecció", - "SSE.Views.PrintSettings.textSettings": "Configuració de Fulls", - "SSE.Views.PrintSettings.textShowDetails": "Mostrar Detalls", - "SSE.Views.PrintSettings.textShowGrid": "Mostrar línies de Quadricula", - "SSE.Views.PrintSettings.textShowHeadings": "Mostrar Títols de Files i Columnes", - "SSE.Views.PrintSettings.textTitle": "Opcions d'Impressió", + "SSE.Views.PrintSettings.textSettings": "Configuració del full", + "SSE.Views.PrintSettings.textShowDetails": "Mostra els detalls", + "SSE.Views.PrintSettings.textShowGrid": "Mostra les línies de la quadricula", + "SSE.Views.PrintSettings.textShowHeadings": "Mostra els títols de files i columnes", + "SSE.Views.PrintSettings.textTitle": "Configuració d'impressió", "SSE.Views.PrintSettings.textTitlePDF": "Configuració de PDF", - "SSE.Views.PrintTitlesDialog.textFirstCol": "Primera Columna", + "SSE.Views.PrintTitlesDialog.textFirstCol": "Primera columna", "SSE.Views.PrintTitlesDialog.textFirstRow": "Primera fila", - "SSE.Views.PrintTitlesDialog.textFrozenCols": "Congelar columnes", - "SSE.Views.PrintTitlesDialog.textFrozenRows": "Congelar Línies", - "SSE.Views.PrintTitlesDialog.textInvalidRange": "ERROR! Interval de celdes no vàlid", - "SSE.Views.PrintTitlesDialog.textLeft": "Repetir les columnes a l'esquerra", - "SSE.Views.PrintTitlesDialog.textNoRepeat": "No repetir", - "SSE.Views.PrintTitlesDialog.textRepeat": "Repetir...", - "SSE.Views.PrintTitlesDialog.textSelectRange": "Seleccionar l’interval", - "SSE.Views.PrintTitlesDialog.textTitle": "Imprimir Títols", - "SSE.Views.PrintTitlesDialog.textTop": "Repetir les files a la part superior", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Immobilitza columnes", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Immobilitza línies", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", + "SSE.Views.PrintTitlesDialog.textLeft": "Repeteix les columnes a l'esquerra", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "No repeteixis", + "SSE.Views.PrintTitlesDialog.textRepeat": "Repeteix...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Selecciona un interval", + "SSE.Views.PrintTitlesDialog.textTitle": "Imprimeix els títols", + "SSE.Views.PrintTitlesDialog.textTop": "Repeteix les files a la part superior", "SSE.Views.RemoveDuplicatesDialog.textColumns": "Columnes", "SSE.Views.RemoveDuplicatesDialog.textDescription": "Per suprimir els valors duplicats, seleccioneu una o més columnes que continguin duplicats.", "SSE.Views.RemoveDuplicatesDialog.textHeaders": "Les meves dades tenen capçaleres", "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Selecciona-ho tot ", - "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Eliminar els Duplicats", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Suprimeix els duplicats", "SSE.Views.RightMenu.txtCellSettings": "Configuració de la cel·la", - "SSE.Views.RightMenu.txtChartSettings": "Gràfic Configuració", - "SSE.Views.RightMenu.txtImageSettings": "Configuració Imatge", - "SSE.Views.RightMenu.txtParagraphSettings": "Configuració de paràgraf", - "SSE.Views.RightMenu.txtPivotSettings": "Configuració de la taula activada", - "SSE.Views.RightMenu.txtSettings": "Configuració Comuna", - "SSE.Views.RightMenu.txtShapeSettings": "Configuració de la Forma", - "SSE.Views.RightMenu.txtSignatureSettings": "Configuració de la Firma", - "SSE.Views.RightMenu.txtSlicerSettings": "Configuració de Slicer", - "SSE.Views.RightMenu.txtSparklineSettings": "Configuració del Sparkline", - "SSE.Views.RightMenu.txtTableSettings": "Configuració de la Taula", - "SSE.Views.RightMenu.txtTextArtSettings": "Configuració de l'Art de Text", - "SSE.Views.ScaleDialog.textAuto": "Auto", - "SSE.Views.ScaleDialog.textError": "El valor introduït és incorrecte.", + "SSE.Views.RightMenu.txtChartSettings": "Configuració del gràfic", + "SSE.Views.RightMenu.txtImageSettings": "Configuració de la imatge", + "SSE.Views.RightMenu.txtParagraphSettings": "Configuració del paràgraf", + "SSE.Views.RightMenu.txtPivotSettings": "Configuració de la taula dinàmica", + "SSE.Views.RightMenu.txtSettings": "Configuració comuna", + "SSE.Views.RightMenu.txtShapeSettings": "Configuració de la forma", + "SSE.Views.RightMenu.txtSignatureSettings": "Configuració de la signatura", + "SSE.Views.RightMenu.txtSlicerSettings": "Configuració de l'afinador", + "SSE.Views.RightMenu.txtSparklineSettings": "Configuració de l'Sparkline", + "SSE.Views.RightMenu.txtTableSettings": "Configuració de la taula", + "SSE.Views.RightMenu.txtTextArtSettings": "Configuració de la galeria de text", + "SSE.Views.ScaleDialog.textAuto": "Automàtic", + "SSE.Views.ScaleDialog.textError": "El valor introduït no és correcte.", "SSE.Views.ScaleDialog.textFewPages": "pàgines", - "SSE.Views.ScaleDialog.textFitTo": "Ajustat A", + "SSE.Views.ScaleDialog.textFitTo": "Ajustat a", "SSE.Views.ScaleDialog.textHeight": "Alçada", "SSE.Views.ScaleDialog.textManyPages": "pàgines", "SSE.Views.ScaleDialog.textOnePage": "pàgina", - "SSE.Views.ScaleDialog.textScaleTo": "Escala A", - "SSE.Views.ScaleDialog.textTitle": "Configuració d’Escala", + "SSE.Views.ScaleDialog.textScaleTo": "Ajusta a", + "SSE.Views.ScaleDialog.textTitle": "Configuració d'ajustament", "SSE.Views.ScaleDialog.textWidth": "Amplada", "SSE.Views.SetValueDialog.txtMaxText": "El valor màxim per a aquest camp és {0}", "SSE.Views.SetValueDialog.txtMinText": "El valor mínim d’aquest camp és {0}", - "SSE.Views.ShapeSettings.strBackground": "Color de Fons", - "SSE.Views.ShapeSettings.strChange": "Canviar la Forma Automàtica", + "SSE.Views.ShapeSettings.strBackground": "Color de fons", + "SSE.Views.ShapeSettings.strChange": "Canvia la forma automàtica", "SSE.Views.ShapeSettings.strColor": "Color", - "SSE.Views.ShapeSettings.strFill": "Omplir", - "SSE.Views.ShapeSettings.strForeground": "Color de Primer Pla", + "SSE.Views.ShapeSettings.strFill": "Emplena", + "SSE.Views.ShapeSettings.strForeground": "Color de primer pla", "SSE.Views.ShapeSettings.strPattern": "Patró", - "SSE.Views.ShapeSettings.strShadow": "Mostra ombra", + "SSE.Views.ShapeSettings.strShadow": "Mostra l'ombra", "SSE.Views.ShapeSettings.strSize": "Mida", "SSE.Views.ShapeSettings.strStroke": "Línia", "SSE.Views.ShapeSettings.strTransparency": "Opacitat", "SSE.Views.ShapeSettings.strType": "Tipus", "SSE.Views.ShapeSettings.textAdvanced": "Mostra la configuració avançada", "SSE.Views.ShapeSettings.textAngle": "Angle", - "SSE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït és incorrecte.
Introduïu un valor entre 0 pt i 1584 pt.", - "SSE.Views.ShapeSettings.textColor": "Omplir de Color", + "SSE.Views.ShapeSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", + "SSE.Views.ShapeSettings.textColor": "Color d'emplenament", "SSE.Views.ShapeSettings.textDirection": "Direcció", - "SSE.Views.ShapeSettings.textEmptyPattern": "Sense Patró", - "SSE.Views.ShapeSettings.textFlip": "Voltejar", + "SSE.Views.ShapeSettings.textEmptyPattern": "Sense patró", + "SSE.Views.ShapeSettings.textFlip": "Capgira", "SSE.Views.ShapeSettings.textFromFile": "Des d'un fitxer", - "SSE.Views.ShapeSettings.textFromStorage": "Des d'Emmagatzematge", - "SSE.Views.ShapeSettings.textFromUrl": "Des d'un Enllaç", - "SSE.Views.ShapeSettings.textGradient": "Punts de Degradat", - "SSE.Views.ShapeSettings.textGradientFill": "Omplir Degradat", - "SSE.Views.ShapeSettings.textHint270": "Girar 90° a l'esquerra", - "SSE.Views.ShapeSettings.textHint90": "Girar 90° a la dreta", - "SSE.Views.ShapeSettings.textHintFlipH": "Voltejar Horitzontalment", - "SSE.Views.ShapeSettings.textHintFlipV": "Voltejar Verticalment", - "SSE.Views.ShapeSettings.textImageTexture": "Imatge o Textura", + "SSE.Views.ShapeSettings.textFromStorage": "Des de l’emmagatzematge", + "SSE.Views.ShapeSettings.textFromUrl": "Des de l'URL", + "SSE.Views.ShapeSettings.textGradient": "Degradat", + "SSE.Views.ShapeSettings.textGradientFill": "Emplenament de gradient", + "SSE.Views.ShapeSettings.textHint270": "Gira 90° a l'esquerra", + "SSE.Views.ShapeSettings.textHint90": "Gira 90° a la dreta", + "SSE.Views.ShapeSettings.textHintFlipH": "Capgira horitzontalment", + "SSE.Views.ShapeSettings.textHintFlipV": "Capgira verticalment", + "SSE.Views.ShapeSettings.textImageTexture": "Imatge o textura", "SSE.Views.ShapeSettings.textLinear": "Lineal", - "SSE.Views.ShapeSettings.textNoFill": "Sense Omplir", - "SSE.Views.ShapeSettings.textOriginalSize": "Mida Original", + "SSE.Views.ShapeSettings.textNoFill": "Sense emplenament", + "SSE.Views.ShapeSettings.textOriginalSize": "Mida original", "SSE.Views.ShapeSettings.textPatternFill": "Patró", "SSE.Views.ShapeSettings.textPosition": "Posició", "SSE.Views.ShapeSettings.textRadial": "Radial", - "SSE.Views.ShapeSettings.textRotate90": "Girar 90°", + "SSE.Views.ShapeSettings.textRotate90": "Gira 90°", "SSE.Views.ShapeSettings.textRotation": "Rotació", - "SSE.Views.ShapeSettings.textSelectImage": "Seleccionar Imatge", - "SSE.Views.ShapeSettings.textSelectTexture": "Seleccionar", - "SSE.Views.ShapeSettings.textStretch": "Estirar", + "SSE.Views.ShapeSettings.textSelectImage": "Selecciona una imatge", + "SSE.Views.ShapeSettings.textSelectTexture": "Selecciona", + "SSE.Views.ShapeSettings.textStretch": "Estira", "SSE.Views.ShapeSettings.textStyle": "Estil", - "SSE.Views.ShapeSettings.textTexture": "Des d'un Tex", + "SSE.Views.ShapeSettings.textTexture": "Des de la textura", "SSE.Views.ShapeSettings.textTile": "Mosaic", - "SSE.Views.ShapeSettings.tipAddGradientPoint": "Afegir punt de degradat", - "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "SSE.Views.ShapeSettings.txtBrownPaper": "Paper Marró", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Afegeix un punt de degradat", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Suprimeix el punt de degradat", + "SSE.Views.ShapeSettings.txtBrownPaper": "Paper marró", "SSE.Views.ShapeSettings.txtCanvas": "Llenç", "SSE.Views.ShapeSettings.txtCarton": "Cartró", - "SSE.Views.ShapeSettings.txtDarkFabric": "Fosc Fabric", + "SSE.Views.ShapeSettings.txtDarkFabric": "Teixit fosc", "SSE.Views.ShapeSettings.txtGrain": "Gra", "SSE.Views.ShapeSettings.txtGranite": "Granit", - "SSE.Views.ShapeSettings.txtGreyPaper": "Paper Gris", + "SSE.Views.ShapeSettings.txtGreyPaper": "Paper gris", "SSE.Views.ShapeSettings.txtKnit": "Teixit", "SSE.Views.ShapeSettings.txtLeather": "Pell", - "SSE.Views.ShapeSettings.txtNoBorders": "Sense Línia", - "SSE.Views.ShapeSettings.txtPapyrus": "Papiro", + "SSE.Views.ShapeSettings.txtNoBorders": "Sense línia", + "SSE.Views.ShapeSettings.txtPapyrus": "Papir", "SSE.Views.ShapeSettings.txtWood": "Fusta", "SSE.Views.ShapeSettingsAdvanced.strColumns": "Columnes", - "SSE.Views.ShapeSettingsAdvanced.strMargins": "Marges Interiors", - "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "No moure o canviar mida les cel·les", - "SSE.Views.ShapeSettingsAdvanced.textAlt": "Text Alternatiu", + "SSE.Views.ShapeSettingsAdvanced.strMargins": "Espaiat del text", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "No moguis o canviïs la mida les cel·les", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "Text alternatiu", "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Descripció", - "SSE.Views.ShapeSettingsAdvanced.textAltTip": "La representació alternativa basada en text de la informació d’objectes visuals, que es llegirà a les persones amb deficiències de visió o cognitives per ajudar-les a comprendre millor quina informació hi ha a la imatge, autoforma, gràfic o taula.", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "La representació de la informació dels objectes visuals que es basa en text alternatiu, es llegirà en veu alta per ajudar les persones amb dificultats de visió o cognició perquè puguin comprendre millor la informació que hi ha a la imatge, autoforma, gràfic o taula.", "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Títol", "SSE.Views.ShapeSettingsAdvanced.textAngle": "Angle", "SSE.Views.ShapeSettingsAdvanced.textArrows": "Fletxes", - "SSE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit", - "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Mida Inicial", - "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estil d’Inici", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "Ajusta automàticament", + "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Mida inicial", + "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Estil inicial", "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bisell", - "SSE.Views.ShapeSettingsAdvanced.textBottom": "Inferior", - "SSE.Views.ShapeSettingsAdvanced.textCapType": "Tipus de Cap", + "SSE.Views.ShapeSettingsAdvanced.textBottom": "Part inferior", + "SSE.Views.ShapeSettingsAdvanced.textCapType": "Tipus de majúscules", "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Número de columnes", "SSE.Views.ShapeSettingsAdvanced.textEndSize": "Mida final", - "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Estil Final", - "SSE.Views.ShapeSettingsAdvanced.textFlat": "Pla", - "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Voltejat", + "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "Estil final", + "SSE.Views.ShapeSettingsAdvanced.textFlat": "Sense format", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Capgirat", "SSE.Views.ShapeSettingsAdvanced.textHeight": "Alçada", "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horitzontalment", - "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Tipus d'Unió", - "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporcions Constants", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Tipus d'unió", + "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Proporcions constants", "SSE.Views.ShapeSettingsAdvanced.textLeft": "Esquerra", - "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Estil de Línia", - "SSE.Views.ShapeSettingsAdvanced.textMiter": "Angle", - "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Moure, però no mida de les cel·les", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Estil de línia", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "Delimitador", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Desplaça, però no canviïs la mida amb les cel·les", "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Permet que el text desbordi la forma", - "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Redimensiona la forma per adaptar-se al text", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Canvia la mida de la forma per ajustar-la al text", "SSE.Views.ShapeSettingsAdvanced.textRight": "Dreta", "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotació", - "SSE.Views.ShapeSettingsAdvanced.textRound": "Arrodonint", + "SSE.Views.ShapeSettingsAdvanced.textRound": "Rodó", "SSE.Views.ShapeSettingsAdvanced.textSize": "Mida", "SSE.Views.ShapeSettingsAdvanced.textSnap": "Captura de cel·la", - "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Espai entre columnes", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Espaiat entre columnes", "SSE.Views.ShapeSettingsAdvanced.textSquare": "Quadrat", - "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Quadre de Text", - "SSE.Views.ShapeSettingsAdvanced.textTitle": "Forma - Configuració Avançada", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Quadre de text", + "SSE.Views.ShapeSettingsAdvanced.textTitle": "Forma - configuració avançada", "SSE.Views.ShapeSettingsAdvanced.textTop": "Superior", - "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Moure i mida de les cel·les", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Desplaça i canvia la mida amb les cel·les", "SSE.Views.ShapeSettingsAdvanced.textVertically": "Verticalment", - "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Gruix i Fletxes", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Pesos i fletxes", "SSE.Views.ShapeSettingsAdvanced.textWidth": "Amplada", - "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Avis", - "SSE.Views.SignatureSettings.strDelete": "Esborrar la firma", - "SSE.Views.SignatureSettings.strDetails": "Detalls de la Firma", - "SSE.Views.SignatureSettings.strInvalid": "Firmes invalides", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Advertiment", + "SSE.Views.SignatureSettings.strDelete": "Suprimeix la signatura", + "SSE.Views.SignatureSettings.strDetails": "Detalls de la signatura", + "SSE.Views.SignatureSettings.strInvalid": "Les signatures no són vàlides", "SSE.Views.SignatureSettings.strRequested": "Signatures sol·licitades", - "SSE.Views.SignatureSettings.strSetup": "Configuració de la Firma", - "SSE.Views.SignatureSettings.strSign": "Firmar", - "SSE.Views.SignatureSettings.strSignature": "Firma", - "SSE.Views.SignatureSettings.strSigner": "Firmant", + "SSE.Views.SignatureSettings.strSetup": "Configuració de la signatura", + "SSE.Views.SignatureSettings.strSign": "Signa", + "SSE.Views.SignatureSettings.strSignature": "Signatura", + "SSE.Views.SignatureSettings.strSigner": "Signant", "SSE.Views.SignatureSettings.strValid": "Signatures vàlides", - "SSE.Views.SignatureSettings.txtContinueEditing": "Editar de totes maneres", - "SSE.Views.SignatureSettings.txtEditWarning": "L’edició eliminarà les signatures del full de càlcul.
Esteu segur que voleu continuar?", - "SSE.Views.SignatureSettings.txtRemoveWarning": "Voleu eliminar aquesta signatura?
Això no es podrà desfer.", + "SSE.Views.SignatureSettings.txtContinueEditing": "Edita de totes maneres", + "SSE.Views.SignatureSettings.txtEditWarning": "L’edició eliminarà les signatures del full de càlcul.
Segur que voleu continuar?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "Voleu eliminar aquesta signatura?
No es podrà desfer.", "SSE.Views.SignatureSettings.txtRequestedSignatures": "Cal signar aquest full de càlcul.", - "SSE.Views.SignatureSettings.txtSigned": "S'ha afegit signatures vàlides al full de càlcul. El full de càlcul està protegit de l’edició.", - "SSE.Views.SignatureSettings.txtSignedInvalid": "Algunes de les signatures digitals del full de càlcul no són vàlides o no es van poder verificar. El full de càlcul està protegit de l’edició.", + "SSE.Views.SignatureSettings.txtSigned": "S'han afegit signatures vàlides al full de càlcul. El full de càlcul està protegit contra l’edició.", + "SSE.Views.SignatureSettings.txtSignedInvalid": "Algunes de les signatures digitals del full de càlcul no són vàlides o no es van poder verificar. El full de càlcul està protegit contra l’edició.", "SSE.Views.SlicerAddDialog.textColumns": "Columnes", - "SSE.Views.SlicerAddDialog.txtTitle": "Inserir Desplegables", - "SSE.Views.SlicerSettings.strHideNoData": "Amagar els elements sense dades", - "SSE.Views.SlicerSettings.strIndNoData": "Indiqueu visualment articles sense dades", - "SSE.Views.SlicerSettings.strShowDel": "Mostrar els elements suprimits de l’origen de dades", - "SSE.Views.SlicerSettings.strShowNoData": "Mostrar els elements sense cap data", - "SSE.Views.SlicerSettings.strSorting": "Ordenar per filtratge", + "SSE.Views.SlicerAddDialog.txtTitle": "Insereix afinadors", + "SSE.Views.SlicerSettings.strHideNoData": "Amaga els elements sense dades", + "SSE.Views.SlicerSettings.strIndNoData": "Indica visualment els elements sense dades", + "SSE.Views.SlicerSettings.strShowDel": "Mostra els elements suprimits de l’origen de dades", + "SSE.Views.SlicerSettings.strShowNoData": "Mostra els elements sense dades finals", + "SSE.Views.SlicerSettings.strSorting": "Ordenació i filtratge", "SSE.Views.SlicerSettings.textAdvanced": "Mostra la configuració avançada", "SSE.Views.SlicerSettings.textAsc": "Ascendent", "SSE.Views.SlicerSettings.textAZ": "De A a Z", @@ -2840,14 +2843,14 @@ "SSE.Views.SlicerSettings.textDesc": "Descendent", "SSE.Views.SlicerSettings.textHeight": "Alçada", "SSE.Views.SlicerSettings.textHor": "Horitzontal", - "SSE.Views.SlicerSettings.textKeepRatio": "Proporcions Constants", - "SSE.Views.SlicerSettings.textLargeSmall": "més gran a més petit", - "SSE.Views.SlicerSettings.textLock": "Desactiva el canvi de mida o el moviment", - "SSE.Views.SlicerSettings.textNewOld": "més nou al més antic", - "SSE.Views.SlicerSettings.textOldNew": "més antic a més nou", + "SSE.Views.SlicerSettings.textKeepRatio": "Proporcions constants", + "SSE.Views.SlicerSettings.textLargeSmall": "de més gran a més petit", + "SSE.Views.SlicerSettings.textLock": "Desactiva el canvi de mida o el desplaçament", + "SSE.Views.SlicerSettings.textNewOld": "del més nou al més antic", + "SSE.Views.SlicerSettings.textOldNew": "del més antic al més nou", "SSE.Views.SlicerSettings.textPosition": "Posició", "SSE.Views.SlicerSettings.textSize": "Mida", - "SSE.Views.SlicerSettings.textSmallLarge": "més petit a més gran", + "SSE.Views.SlicerSettings.textSmallLarge": "del més petit al més gran", "SSE.Views.SlicerSettings.textStyle": "Estil", "SSE.Views.SlicerSettings.textVert": "Vertical", "SSE.Views.SlicerSettings.textWidth": "Amplada", @@ -2855,185 +2858,185 @@ "SSE.Views.SlicerSettingsAdvanced.strButtons": "Botons", "SSE.Views.SlicerSettingsAdvanced.strColumns": "Columnes", "SSE.Views.SlicerSettingsAdvanced.strHeight": "Alçada", - "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Amagar els elements sense dades", - "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Indiqueu visualment articles sense dades", - "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referencies", - "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Mostrar els elements suprimits de l’origen de dades", - "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Capçalera de pantalla", - "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Mostrar els elements sense cap data", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Amaga els elements sense dades", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Indica visualment els elements sense dades", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "Referències", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Mostra els elements suprimits de l’origen de dades", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Visualitza la capçalera", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Mostra els elements sense dades finals", "SSE.Views.SlicerSettingsAdvanced.strSize": "Mida", - "SSE.Views.SlicerSettingsAdvanced.strSorting": "Ordenar i Filtrar", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Ordenació i filtratge", "SSE.Views.SlicerSettingsAdvanced.strStyle": "Estil", "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Estil i Mida", "SSE.Views.SlicerSettingsAdvanced.strWidth": "Amplada", - "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "No moure o canviar mida les cel·les", - "SSE.Views.SlicerSettingsAdvanced.textAlt": "Text Alternatiu", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "No moguis o canviïs la mida les cel·les", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Text alternatiu", "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Descripció", "SSE.Views.SlicerSettingsAdvanced.textAltTip": "La representació alternativa basada en text de la informació d’objectes visuals, que es llegirà a les persones amb deficiències de visió o cognitives per ajudar-les a comprendre millor quina informació hi ha a la imatge, autoforma, gràfic o taula.", "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Títol", "SSE.Views.SlicerSettingsAdvanced.textAsc": "Ascendent", "SSE.Views.SlicerSettingsAdvanced.textAZ": "De A a Z", "SSE.Views.SlicerSettingsAdvanced.textDesc": "Descendent", - "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Nom que cal utilitzar en les fórmules", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Nom que cal utilitzar a les fórmules", "SSE.Views.SlicerSettingsAdvanced.textHeader": "Capçalera", - "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Proporcions Constants", - "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "més gran a més petit", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Proporcions constants", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "de més gran a més petit", "SSE.Views.SlicerSettingsAdvanced.textName": "Nom", - "SSE.Views.SlicerSettingsAdvanced.textNewOld": "més nou al més antic", - "SSE.Views.SlicerSettingsAdvanced.textOldNew": "més antic a més nou", - "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Moure, però no mida de les cel·les", - "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "més petit a més gran", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "del més nou al més antic", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "del més antic al més nou", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Desplaça, però no canviïs la mida amb les cel·les", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "del més petit al més gran", "SSE.Views.SlicerSettingsAdvanced.textSnap": "Captura de cel·la", - "SSE.Views.SlicerSettingsAdvanced.textSort": "Ordenar", - "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Nom de la font", - "SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer - Configuració Avançada", - "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Moure i mida de les cel·les", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Ordena", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Nom d'origen", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Afinador - Configuració avançada", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Desplaça i canvia la mida amb les cel·les", "SSE.Views.SlicerSettingsAdvanced.textZA": "De Z a A", - "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Aquest camp és obligatori", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "Aquest camp és necessari", "SSE.Views.SortDialog.errorEmpty": "Tots els criteris d’ordenació han de tenir una columna o fila especificada.", "SSE.Views.SortDialog.errorMoreOneCol": "S'ha seleccionat més d'una columna", "SSE.Views.SortDialog.errorMoreOneRow": "S'ha seleccionat més d'una fila.", - "SSE.Views.SortDialog.errorNotOriginalCol": "La columna que heu seleccionat no es troba dins de l’interval seleccionat original.", - "SSE.Views.SortDialog.errorNotOriginalRow": "La fila que heu seleccionat no està dins de l’interval seleccionat original.", - "SSE.Views.SortDialog.errorSameColumnColor": "%1 s'està ordenant del mateix color més d'una vegada.
Eliminar els criteris d'ordenació duplicats i intentar-ho de nou.", - "SSE.Views.SortDialog.errorSameColumnValue": "%1 s’està ordenant per valors més d’una vegada.
Eliminar els criteris d’ordenació duplicats i intentar-ho de nou.", - "SSE.Views.SortDialog.textAdd": "Afegir nivell", + "SSE.Views.SortDialog.errorNotOriginalCol": "La columna que heu seleccionat no es troba a l'interval seleccionat originalment.", + "SSE.Views.SortDialog.errorNotOriginalRow": "La fila que heu seleccionat no es troba a l'interval original seleccionat.", + "SSE.Views.SortDialog.errorSameColumnColor": "%1 s'està ordenant pel mateix color més d'una vegada.
Elimineu els criteris d'ordenació duplicats i intenteu-ho una altra vegada.", + "SSE.Views.SortDialog.errorSameColumnValue": "%1 s’està ordenant per valors més d’una vegada.
Elimineu els criteris d’ordenació duplicats i intenteu-ho una altra vegada.", + "SSE.Views.SortDialog.textAdd": "Afegeix un nivell", "SSE.Views.SortDialog.textAsc": "Ascendent", "SSE.Views.SortDialog.textAuto": "Automàtic", "SSE.Views.SortDialog.textAZ": "De A a Z", - "SSE.Views.SortDialog.textBelow": "Abaix", + "SSE.Views.SortDialog.textBelow": "A sota", "SSE.Views.SortDialog.textCellColor": "Color de la cel·la", "SSE.Views.SortDialog.textColumn": "Columna", - "SSE.Views.SortDialog.textCopy": "Nivell de Copia", - "SSE.Views.SortDialog.textDelete": "Esborrar Nivell", + "SSE.Views.SortDialog.textCopy": "Nivell de còpia", + "SSE.Views.SortDialog.textDelete": "Suprimeix el nivell", "SSE.Views.SortDialog.textDesc": "Descendent", - "SSE.Views.SortDialog.textDown": "Moure el nivell cap avall", - "SSE.Views.SortDialog.textFontColor": "Color de Font", + "SSE.Views.SortDialog.textDown": "Baixa de nivell", + "SSE.Views.SortDialog.textFontColor": "Color del tipus de lletra", "SSE.Views.SortDialog.textLeft": "Esquerra", "SSE.Views.SortDialog.textMoreCols": "(Més columnes...)", "SSE.Views.SortDialog.textMoreRows": "(Mes files...)", "SSE.Views.SortDialog.textNone": "Cap", "SSE.Views.SortDialog.textOptions": "Opcions", - "SSE.Views.SortDialog.textOrder": "Ordenar", + "SSE.Views.SortDialog.textOrder": "Orde", "SSE.Views.SortDialog.textRight": "Dreta", "SSE.Views.SortDialog.textRow": "Fila", "SSE.Views.SortDialog.textSort": "Ordena per", - "SSE.Views.SortDialog.textSortBy": "Ordenar per", - "SSE.Views.SortDialog.textThenBy": "A continuació", + "SSE.Views.SortDialog.textSortBy": "Ordena per", + "SSE.Views.SortDialog.textThenBy": "Després per", "SSE.Views.SortDialog.textTop": "Superior", - "SSE.Views.SortDialog.textUp": "Moure el nivell cap a munt", + "SSE.Views.SortDialog.textUp": "Puja de nivell", "SSE.Views.SortDialog.textValues": "Valors", "SSE.Views.SortDialog.textZA": "De Z a A", - "SSE.Views.SortDialog.txtInvalidRange": "Interval de cel·les no vàlid.", - "SSE.Views.SortDialog.txtTitle": "Ordenar", + "SSE.Views.SortDialog.txtInvalidRange": "L'interval de cel·les no és vàlid.", + "SSE.Views.SortDialog.txtTitle": "Ordena", "SSE.Views.SortFilterDialog.textAsc": "Ascendent (A a Z)per", "SSE.Views.SortFilterDialog.textDesc": "Descendent (Z a A) per", - "SSE.Views.SortFilterDialog.txtTitle": "Ordenar", + "SSE.Views.SortFilterDialog.txtTitle": "Ordena", "SSE.Views.SortOptionsDialog.textCase": "Sensible a majúscules i minúscules", "SSE.Views.SortOptionsDialog.textHeaders": "Les meves dades tenen capçaleres", - "SSE.Views.SortOptionsDialog.textLeftRight": "Ordenar d’esquerra a dreta", + "SSE.Views.SortOptionsDialog.textLeftRight": "Ordena d’esquerra a dreta", "SSE.Views.SortOptionsDialog.textOrientation": "Orientació", - "SSE.Views.SortOptionsDialog.textTitle": "Opcions d’Ordenació", + "SSE.Views.SortOptionsDialog.textTitle": "Opcions d’ordenació", "SSE.Views.SortOptionsDialog.textTopBottom": "Ordenar de dalt a baix", - "SSE.Views.SpecialPasteDialog.textAdd": "Afegir", + "SSE.Views.SpecialPasteDialog.textAdd": "Afegeix", "SSE.Views.SpecialPasteDialog.textAll": "Tot", - "SSE.Views.SpecialPasteDialog.textBlanks": "Evitar els buits", - "SSE.Views.SpecialPasteDialog.textColWidth": "Amplada de Columnes", + "SSE.Views.SpecialPasteDialog.textBlanks": "Omet els blancs\n\t", + "SSE.Views.SpecialPasteDialog.textColWidth": "Amplada de les columnes", "SSE.Views.SpecialPasteDialog.textComments": "Comentaris", "SSE.Views.SpecialPasteDialog.textDiv": "Divideix", "SSE.Views.SpecialPasteDialog.textFFormat": "Fórmules i format", "SSE.Views.SpecialPasteDialog.textFNFormat": "Fórmules i formats de número", "SSE.Views.SpecialPasteDialog.textFormats": "Formats", - "SSE.Views.SpecialPasteDialog.textFormulas": "Formules", + "SSE.Views.SpecialPasteDialog.textFormulas": "Fórmules", "SSE.Views.SpecialPasteDialog.textFWidth": "Fórmules i amplades de columna", - "SSE.Views.SpecialPasteDialog.textMult": "Multiplicar", + "SSE.Views.SpecialPasteDialog.textMult": "Multiplica", "SSE.Views.SpecialPasteDialog.textNone": "Cap", "SSE.Views.SpecialPasteDialog.textOperation": "Operació", - "SSE.Views.SpecialPasteDialog.textPaste": "Pegar", - "SSE.Views.SpecialPasteDialog.textSub": "Sostreure", - "SSE.Views.SpecialPasteDialog.textTitle": "Pegar Especial", + "SSE.Views.SpecialPasteDialog.textPaste": "Enganxar", + "SSE.Views.SpecialPasteDialog.textSub": "Resta", + "SSE.Views.SpecialPasteDialog.textTitle": "Enganxada amb opcions", "SSE.Views.SpecialPasteDialog.textTranspose": "Transposa", "SSE.Views.SpecialPasteDialog.textValues": "Valors", - "SSE.Views.SpecialPasteDialog.textVFormat": "Valors i Format", - "SSE.Views.SpecialPasteDialog.textVNFormat": "Valors i formats de nombre", + "SSE.Views.SpecialPasteDialog.textVFormat": "Valors i format", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Valors i formats numèrics", "SSE.Views.SpecialPasteDialog.textWBorders": "Tot excepte les vores", "SSE.Views.Spellcheck.noSuggestions": "No hi ha suggeriments d’ortografia", - "SSE.Views.Spellcheck.textChange": "Canviar", - "SSE.Views.Spellcheck.textChangeAll": "Canviar Tot", - "SSE.Views.Spellcheck.textIgnore": "Ignorar", - "SSE.Views.Spellcheck.textIgnoreAll": "Ignorar Tot", - "SSE.Views.Spellcheck.txtAddToDictionary": "Afegir al Diccionari", - "SSE.Views.Spellcheck.txtComplete": "La comprovació ortogràfica s'acabat", - "SSE.Views.Spellcheck.txtDictionaryLanguage": "Diccionari Idioma", - "SSE.Views.Spellcheck.txtNextTip": "Vés a la següent paraula", + "SSE.Views.Spellcheck.textChange": "Canvia", + "SSE.Views.Spellcheck.textChangeAll": "Canvia-ho tot", + "SSE.Views.Spellcheck.textIgnore": "Ignora", + "SSE.Views.Spellcheck.textIgnoreAll": "Ignora-ho tot", + "SSE.Views.Spellcheck.txtAddToDictionary": "Afegeix al diccionari", + "SSE.Views.Spellcheck.txtComplete": "S'ha completat la revisió ortogràfica", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Idioma del diccionari", + "SSE.Views.Spellcheck.txtNextTip": "Vés a la paraula següent", "SSE.Views.Spellcheck.txtSpelling": "Ortografia", - "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copiar al final)", - "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Moure al final)", - "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Copiar abans de full", - "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Desplaçar abans del full", - "SSE.Views.Statusbar.filteredRecordsText": "Registres filtrats {0} de {1}", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copia al final)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Ves al final)", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Enganxa abans del full", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Desplaça abans del full", + "SSE.Views.Statusbar.filteredRecordsText": "S'ha registrat {0} filtres de {1}", "SSE.Views.Statusbar.filteredText": "Mode de filtre", "SSE.Views.Statusbar.itemAverage": "Mitjana", - "SSE.Views.Statusbar.itemCopy": "Copiar", - "SSE.Views.Statusbar.itemCount": "Contar", - "SSE.Views.Statusbar.itemDelete": "Esborra", + "SSE.Views.Statusbar.itemCopy": "Copia", + "SSE.Views.Statusbar.itemCount": "Recompte", + "SSE.Views.Statusbar.itemDelete": "Suprimeix", "SSE.Views.Statusbar.itemHidden": "Amagat", - "SSE.Views.Statusbar.itemHide": "Amagar", - "SSE.Views.Statusbar.itemInsert": "Insertar", + "SSE.Views.Statusbar.itemHide": "Amaga", + "SSE.Views.Statusbar.itemInsert": "Insereix", "SSE.Views.Statusbar.itemMaximum": "Màxim", "SSE.Views.Statusbar.itemMinimum": "Mínim", - "SSE.Views.Statusbar.itemMove": "Moure", - "SSE.Views.Statusbar.itemRename": "Renombrar", + "SSE.Views.Statusbar.itemMove": "Desplaça't", + "SSE.Views.Statusbar.itemRename": "Canvia el nom", "SSE.Views.Statusbar.itemSum": "Suma", - "SSE.Views.Statusbar.itemTabColor": "Color de la Pestanya", - "SSE.Views.Statusbar.RenameDialog.errNameExists": "El full de treball amb aquest nom ja existeix.", + "SSE.Views.Statusbar.itemTabColor": "Color de la pestanya", + "SSE.Views.Statusbar.RenameDialog.errNameExists": "Ja existeix un llibre de treball amb aquest nom.", "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "Un nom de full no pot contenir els caràcters següents: \\ / *? []:", - "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nom Full", - "SSE.Views.Statusbar.selectAllSheets": "Seleccionar Tots els Fulls", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Nom del full", + "SSE.Views.Statusbar.selectAllSheets": "Selecciona tots els fulls", "SSE.Views.Statusbar.textAverage": "Mitjana", - "SSE.Views.Statusbar.textCount": "Contar", - "SSE.Views.Statusbar.textMax": "Max", - "SSE.Views.Statusbar.textMin": "Min", - "SSE.Views.Statusbar.textNewColor": "Afegir un Nou Color Personalitzat", - "SSE.Views.Statusbar.textNoColor": "Sense Color", + "SSE.Views.Statusbar.textCount": "Recompte", + "SSE.Views.Statusbar.textMax": "Màx", + "SSE.Views.Statusbar.textMin": "Mín", + "SSE.Views.Statusbar.textNewColor": "Afegeix un color personalitzat nou ", + "SSE.Views.Statusbar.textNoColor": "Sense color", "SSE.Views.Statusbar.textSum": "Suma", - "SSE.Views.Statusbar.tipAddTab": "Afegir full de càlcul", - "SSE.Views.Statusbar.tipFirst": "Desplaçar al primer full", - "SSE.Views.Statusbar.tipLast": "Desplaçar fins a l'últim full", - "SSE.Views.Statusbar.tipNext": "Desplaçar la llista de fulls a l’esquerra", - "SSE.Views.Statusbar.tipPrev": "Desplaçar la llista de fulls a l’esquerra", + "SSE.Views.Statusbar.tipAddTab": "Afegeix un full de càlcul", + "SSE.Views.Statusbar.tipFirst": "Desplaça al primer full", + "SSE.Views.Statusbar.tipLast": "Desplaça fins a l'últim full", + "SSE.Views.Statusbar.tipNext": "Desplaça la llista de fulls a l’esquerra", + "SSE.Views.Statusbar.tipPrev": "Desplaça la llista de fulls a l’esquerra", "SSE.Views.Statusbar.tipZoomFactor": "Zoom", - "SSE.Views.Statusbar.tipZoomIn": "Ampliar", - "SSE.Views.Statusbar.tipZoomOut": "Reduir", - "SSE.Views.Statusbar.ungroupSheets": "Des agrupar Fulls", + "SSE.Views.Statusbar.tipZoomIn": "Amplia", + "SSE.Views.Statusbar.tipZoomOut": "Redueix", + "SSE.Views.Statusbar.ungroupSheets": "Desagrupa els fulls", "SSE.Views.Statusbar.zoomText": "Zoom {0}%", "SSE.Views.TableOptionsDialog.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.Views.TableOptionsDialog.errorFTChangeTableRangeError": "No es pot completar l'operació per a l'interval de cel·les seleccionat.
Seleccioneu un interval de manera que la primera fila de taula estigués a la mateixa fila
i la taula resultant es superposés a l'actual.", - "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "No es pot completar l'operació per al rang de cel·les seleccionat.
Seleccioneu un rang que no inclogui altres taules.", - "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Les fórmules de matrius multicel·lulars no estan permeses a les taules.", - "SSE.Views.TableOptionsDialog.txtEmpty": "Aquest camp és obligatori", - "SSE.Views.TableOptionsDialog.txtFormat": "Crear Taula", - "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Interval de celdes no vàlid", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "No es pot completar l'operació per a l'interval de cel·les seleccionat.
Seleccioneu un interval de manera que la primera fila de taula estigui a la mateixa fila
i la taula resultant es superposi a l'actual.", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "No es pot completar l'operació per a l'interval de cel·les seleccionat.
Seleccioneu un interval que no inclogui altres taules.", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "No es permeten fórmules de matriu de múltiples cel·les a les taules.", + "SSE.Views.TableOptionsDialog.txtEmpty": "Aquest camp és necessari", + "SSE.Views.TableOptionsDialog.txtFormat": "Crear una taula", + "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! L'interval de cel·les no és vàlid", "SSE.Views.TableOptionsDialog.txtNote": "Les capçaleres han de romandre a la mateixa fila i l’interval de taula resultant s’ha de superposar a l’interval de la taula original.", "SSE.Views.TableOptionsDialog.txtTitle": "Títol", - "SSE.Views.TableSettings.deleteColumnText": "Suprimeix la Columna", - "SSE.Views.TableSettings.deleteRowText": "Suprimeix fila", - "SSE.Views.TableSettings.deleteTableText": "Esborrar Taula", - "SSE.Views.TableSettings.insertColumnLeftText": "Inseriu Columna a la Esquerra", - "SSE.Views.TableSettings.insertColumnRightText": "Inseriu Columna a la Dreta", - "SSE.Views.TableSettings.insertRowAboveText": "Inserir Fila A dalt", - "SSE.Views.TableSettings.insertRowBelowText": "Inserir Fila A baix", - "SSE.Views.TableSettings.notcriticalErrorTitle": "Avis", - "SSE.Views.TableSettings.selectColumnText": "Seleccionar Columna Sencera", - "SSE.Views.TableSettings.selectDataText": "Seleccionar Dades de Columna", - "SSE.Views.TableSettings.selectRowText": "Seleccionar Fila", - "SSE.Views.TableSettings.selectTableText": "Seleccionar Taula", - "SSE.Views.TableSettings.textActions": "Accions de la Taula", + "SSE.Views.TableSettings.deleteColumnText": "Suprimeix la columna", + "SSE.Views.TableSettings.deleteRowText": "Suprimeix la fila", + "SSE.Views.TableSettings.deleteTableText": "Suprimeix la taula", + "SSE.Views.TableSettings.insertColumnLeftText": "Insereix una columna a l'esquerra", + "SSE.Views.TableSettings.insertColumnRightText": "Insereix una columna a la dreta", + "SSE.Views.TableSettings.insertRowAboveText": "Insereix una fila a dalt", + "SSE.Views.TableSettings.insertRowBelowText": "Insereix una fila a baix", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Advertiment", + "SSE.Views.TableSettings.selectColumnText": "Selecciona la columna sencera", + "SSE.Views.TableSettings.selectDataText": "Selecciona les dades de la columna", + "SSE.Views.TableSettings.selectRowText": "Selecciona una fila", + "SSE.Views.TableSettings.selectTableText": "Selecciona una taula", + "SSE.Views.TableSettings.textActions": "Accions de la taula", "SSE.Views.TableSettings.textAdvanced": "Mostra la configuració avançada", - "SSE.Views.TableSettings.textBanded": "Bandat", + "SSE.Views.TableSettings.textBanded": "En bandes", "SSE.Views.TableSettings.textColumns": "Columnes", - "SSE.Views.TableSettings.textConvertRange": "Convertir al interval", - "SSE.Views.TableSettings.textEdit": "Files i Columnes", + "SSE.Views.TableSettings.textConvertRange": "Converteix-ho interval", + "SSE.Views.TableSettings.textEdit": "Files i columnes", "SSE.Views.TableSettings.textEmptyTemplate": "Sense plantilles", "SSE.Views.TableSettings.textExistName": "ERROR! Ja existeix un interval amb aquest nom", "SSE.Views.TableSettings.textFilter": "Botó de filtre", @@ -3042,162 +3045,162 @@ "SSE.Views.TableSettings.textInvalidName": "ERROR! El nom de la taula no és vàlid", "SSE.Views.TableSettings.textIsLocked": "Un altre usuari està editant aquest element.", "SSE.Views.TableSettings.textLast": "Últim", - "SSE.Views.TableSettings.textLongOperation": "Operació Llarga", - "SSE.Views.TableSettings.textPivot": "Inseriu la taula dinàmica", - "SSE.Views.TableSettings.textRemDuplicates": "Eliminar els duplicats", - "SSE.Views.TableSettings.textReservedName": "El nom que intenteu utilitzar ja es fa referència a les fórmules de cel·la. Si us plau, utilitzeu algun altre nom.", - "SSE.Views.TableSettings.textResize": "Mida de la taula", + "SSE.Views.TableSettings.textLongOperation": "Operació llarga", + "SSE.Views.TableSettings.textPivot": "Insereix una taula dinàmica", + "SSE.Views.TableSettings.textRemDuplicates": "Suprimeix els duplicats", + "SSE.Views.TableSettings.textReservedName": "El nom que intenteu utilitzar es troba a les fórmules de cel·la.Utilitzeu un altre nom.", + "SSE.Views.TableSettings.textResize": "Canvia la mida de la taula", "SSE.Views.TableSettings.textRows": "Files", - "SSE.Views.TableSettings.textSelectData": "Seleccionar Dades", - "SSE.Views.TableSettings.textSlicer": "Inserir desplegable", - "SSE.Views.TableSettings.textTableName": "Nom de la Taula", - "SSE.Views.TableSettings.textTemplate": "Seleccionar de Plantilla", + "SSE.Views.TableSettings.textSelectData": "Selecciona dades", + "SSE.Views.TableSettings.textSlicer": "Insereix un afinador", + "SSE.Views.TableSettings.textTableName": "Nom de la taula", + "SSE.Views.TableSettings.textTemplate": "Selecciona de plantilla", "SSE.Views.TableSettings.textTotal": "Total", - "SSE.Views.TableSettings.warnLongOperation": "L’operació que esteu a punt de realitzar pot trigar molt temps a completar-se.
Esteu segur que voleu continuar?", - "SSE.Views.TableSettingsAdvanced.textAlt": "Text Alternatiu", + "SSE.Views.TableSettings.warnLongOperation": "L’operació que esteu a punt de realitzar pot trigar molt temps a completar-se.
Segur que voleu continuar?", + "SSE.Views.TableSettingsAdvanced.textAlt": "Text alternatiu", "SSE.Views.TableSettingsAdvanced.textAltDescription": "Descripció", "SSE.Views.TableSettingsAdvanced.textAltTip": "La representació alternativa basada en text de la informació d’objectes visuals, que es llegirà a les persones amb deficiències de visió o cognitives per ajudar-les a comprendre millor quina informació hi ha a la imatge, autoforma, gràfic o taula.", "SSE.Views.TableSettingsAdvanced.textAltTitle": "Títol", - "SSE.Views.TableSettingsAdvanced.textTitle": "Taula - Configuració Avançada", - "SSE.Views.TextArtSettings.strBackground": "Color de Fons", + "SSE.Views.TableSettingsAdvanced.textTitle": "Taula - configuració avançada", + "SSE.Views.TextArtSettings.strBackground": "Color de fons", "SSE.Views.TextArtSettings.strColor": "Color", - "SSE.Views.TextArtSettings.strFill": "Omplir", - "SSE.Views.TextArtSettings.strForeground": "Color de Primer Pla", + "SSE.Views.TextArtSettings.strFill": "Emplena", + "SSE.Views.TextArtSettings.strForeground": "Color de primer pla", "SSE.Views.TextArtSettings.strPattern": "Patró", "SSE.Views.TextArtSettings.strSize": "Mida", "SSE.Views.TextArtSettings.strStroke": "Línia", "SSE.Views.TextArtSettings.strTransparency": "Opacitat", "SSE.Views.TextArtSettings.strType": "Tipus", "SSE.Views.TextArtSettings.textAngle": "Angle", - "SSE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït és incorrecte.
Introduïu un valor entre 0 pt i 1584 pt.", - "SSE.Views.TextArtSettings.textColor": "Omplir de Color", + "SSE.Views.TextArtSettings.textBorderSizeErr": "El valor introduït no és correcte.
Introduïu un valor entre 0 pt i 1584 pt.", + "SSE.Views.TextArtSettings.textColor": "Color d'emplenament", "SSE.Views.TextArtSettings.textDirection": "Direcció", - "SSE.Views.TextArtSettings.textEmptyPattern": "Sense Patró", + "SSE.Views.TextArtSettings.textEmptyPattern": "Sense patró", "SSE.Views.TextArtSettings.textFromFile": "Des d'un fitxer", - "SSE.Views.TextArtSettings.textFromUrl": "Des d'un Enllaç", - "SSE.Views.TextArtSettings.textGradient": "Punts de Degradat", - "SSE.Views.TextArtSettings.textGradientFill": "Omplir Degradat", - "SSE.Views.TextArtSettings.textImageTexture": "Imatge o Textura", + "SSE.Views.TextArtSettings.textFromUrl": "Des de l'URL", + "SSE.Views.TextArtSettings.textGradient": "Degradat", + "SSE.Views.TextArtSettings.textGradientFill": "Emplenament de gradient", + "SSE.Views.TextArtSettings.textImageTexture": "Imatge o textura", "SSE.Views.TextArtSettings.textLinear": "Lineal", - "SSE.Views.TextArtSettings.textNoFill": "Sense Omplir", + "SSE.Views.TextArtSettings.textNoFill": "Sense emplenament", "SSE.Views.TextArtSettings.textPatternFill": "Patró", "SSE.Views.TextArtSettings.textPosition": "Posició", "SSE.Views.TextArtSettings.textRadial": "Radial", - "SSE.Views.TextArtSettings.textSelectTexture": "Seleccionar", - "SSE.Views.TextArtSettings.textStretch": "Estirar", + "SSE.Views.TextArtSettings.textSelectTexture": "Selecciona", + "SSE.Views.TextArtSettings.textStretch": "Estira", "SSE.Views.TextArtSettings.textStyle": "Estil", "SSE.Views.TextArtSettings.textTemplate": "Plantilla", - "SSE.Views.TextArtSettings.textTexture": "Des d'un Tex", + "SSE.Views.TextArtSettings.textTexture": "Des de la textura", "SSE.Views.TextArtSettings.textTile": "Mosaic", - "SSE.Views.TextArtSettings.textTransform": "Transformar", - "SSE.Views.TextArtSettings.tipAddGradientPoint": "Afegir punt de degradat", - "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Elimina el punt de degradat", - "SSE.Views.TextArtSettings.txtBrownPaper": "Paper Marró", + "SSE.Views.TextArtSettings.textTransform": "Transforma", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Afegeix un punt de degradat", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Suprimeix el punt de degradat", + "SSE.Views.TextArtSettings.txtBrownPaper": "Paper marró", "SSE.Views.TextArtSettings.txtCanvas": "Llenç", "SSE.Views.TextArtSettings.txtCarton": "Cartró", - "SSE.Views.TextArtSettings.txtDarkFabric": "Fosc Fabric", + "SSE.Views.TextArtSettings.txtDarkFabric": "Teixit fosc", "SSE.Views.TextArtSettings.txtGrain": "Gra", "SSE.Views.TextArtSettings.txtGranite": "Granit", - "SSE.Views.TextArtSettings.txtGreyPaper": "Paper Gris", + "SSE.Views.TextArtSettings.txtGreyPaper": "Paper gris", "SSE.Views.TextArtSettings.txtKnit": "Teixit", "SSE.Views.TextArtSettings.txtLeather": "Pell", - "SSE.Views.TextArtSettings.txtNoBorders": "Sense Línia", - "SSE.Views.TextArtSettings.txtPapyrus": "Papiro", + "SSE.Views.TextArtSettings.txtNoBorders": "Sense línia", + "SSE.Views.TextArtSettings.txtPapyrus": "Papir", "SSE.Views.TextArtSettings.txtWood": "Fusta", - "SSE.Views.Toolbar.capBtnAddComment": "Afegir Comentari", + "SSE.Views.Toolbar.capBtnAddComment": "Afegeix un comentari", "SSE.Views.Toolbar.capBtnColorSchemas": "Esquema de color", "SSE.Views.Toolbar.capBtnComment": "Comentari", "SSE.Views.Toolbar.capBtnInsHeader": "Capçalera/Peu de Pàgina", - "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", + "SSE.Views.Toolbar.capBtnInsSlicer": "Afinador", "SSE.Views.Toolbar.capBtnInsSymbol": "Símbol", "SSE.Views.Toolbar.capBtnMargins": "Marges", "SSE.Views.Toolbar.capBtnPageOrient": "Orientació", "SSE.Views.Toolbar.capBtnPageSize": "Mida", - "SSE.Views.Toolbar.capBtnPrintArea": "Àrea d’Impressió", - "SSE.Views.Toolbar.capBtnPrintTitles": "Imprimir Títols", - "SSE.Views.Toolbar.capBtnScale": "Escala per Adaptar-se", - "SSE.Views.Toolbar.capImgAlign": "Alinear", - "SSE.Views.Toolbar.capImgBackward": "Envia Endarrere", - "SSE.Views.Toolbar.capImgForward": "Portar Endavant", - "SSE.Views.Toolbar.capImgGroup": "Agrupar", + "SSE.Views.Toolbar.capBtnPrintArea": "Àrea d’impressió", + "SSE.Views.Toolbar.capBtnPrintTitles": "Imprimeix els títols", + "SSE.Views.Toolbar.capBtnScale": "Ajusta-ho a la mida", + "SSE.Views.Toolbar.capImgAlign": "Alineació", + "SSE.Views.Toolbar.capImgBackward": "Envia cap enrere", + "SSE.Views.Toolbar.capImgForward": "Porta endavant", + "SSE.Views.Toolbar.capImgGroup": "Agrupa", "SSE.Views.Toolbar.capInsertChart": "Gràfic", "SSE.Views.Toolbar.capInsertEquation": "Equació", - "SSE.Views.Toolbar.capInsertHyperlink": "Hiperenllaç", + "SSE.Views.Toolbar.capInsertHyperlink": "Enllaç", "SSE.Views.Toolbar.capInsertImage": "Imatge", "SSE.Views.Toolbar.capInsertShape": "Forma", "SSE.Views.Toolbar.capInsertSpark": "Sparkline", "SSE.Views.Toolbar.capInsertTable": "Taula", - "SSE.Views.Toolbar.capInsertText": "Quadre de Text", - "SSE.Views.Toolbar.mniImageFromFile": "Imatge d'un Fitxer", - "SSE.Views.Toolbar.mniImageFromStorage": "Imatge d'un Magatzem", - "SSE.Views.Toolbar.mniImageFromUrl": "Imatge d'un Enllaç", - "SSE.Views.Toolbar.textAddPrintArea": "Afegir al Àrea d'Impressió", - "SSE.Views.Toolbar.textAlignBottom": "Alineació Inferior", - "SSE.Views.Toolbar.textAlignCenter": "Centrar", + "SSE.Views.Toolbar.capInsertText": "Quadre de text", + "SSE.Views.Toolbar.mniImageFromFile": "Imatge del fitxer", + "SSE.Views.Toolbar.mniImageFromStorage": "Imatge de l'emmagatzematge", + "SSE.Views.Toolbar.mniImageFromUrl": "Imatge d'URL", + "SSE.Views.Toolbar.textAddPrintArea": "Afegeix l'àrea d'impressió", + "SSE.Views.Toolbar.textAlignBottom": "Alinea a baix", + "SSE.Views.Toolbar.textAlignCenter": "Alinea al centre", "SSE.Views.Toolbar.textAlignJust": "Justificat", - "SSE.Views.Toolbar.textAlignLeft": "Alineació Esquerra", - "SSE.Views.Toolbar.textAlignMiddle": "Alineació al Mig", - "SSE.Views.Toolbar.textAlignRight": "Alineació Dreta", - "SSE.Views.Toolbar.textAlignTop": "Alineació Superior", - "SSE.Views.Toolbar.textAllBorders": "Totes les Vores", - "SSE.Views.Toolbar.textAuto": "Auto", + "SSE.Views.Toolbar.textAlignLeft": "Alinea a l'esquerra", + "SSE.Views.Toolbar.textAlignMiddle": "Alinea al mig", + "SSE.Views.Toolbar.textAlignRight": "Alinea a la dreta", + "SSE.Views.Toolbar.textAlignTop": "Alinea a dalt", + "SSE.Views.Toolbar.textAllBorders": "Totes les vores", + "SSE.Views.Toolbar.textAuto": "Automàtic", "SSE.Views.Toolbar.textAutoColor": "Automàtic", "SSE.Views.Toolbar.textBold": "Negreta", - "SSE.Views.Toolbar.textBordersColor": "Color Vora", - "SSE.Views.Toolbar.textBordersStyle": "Estil de Vora", - "SSE.Views.Toolbar.textBottom": "Inferior:", + "SSE.Views.Toolbar.textBordersColor": "Color de la vora", + "SSE.Views.Toolbar.textBordersStyle": "Estil de la vora", + "SSE.Views.Toolbar.textBottom": "Part inferior:", "SSE.Views.Toolbar.textBottomBorders": "Vores inferiors", - "SSE.Views.Toolbar.textCenterBorders": "Vores Verticals Internes", - "SSE.Views.Toolbar.textClearPrintArea": "Esborrar l'Àrea d'Impressió", - "SSE.Views.Toolbar.textClearRule": "Netejar les regles", + "SSE.Views.Toolbar.textCenterBorders": "Vores interiors verticals", + "SSE.Views.Toolbar.textClearPrintArea": "Esborra l'àrea d'impressió", + "SSE.Views.Toolbar.textClearRule": "Esborra les normes", "SSE.Views.Toolbar.textClockwise": "Angle en sentit horari", - "SSE.Views.Toolbar.textColorScales": "Escala de color", + "SSE.Views.Toolbar.textColorScales": "Escales de color", "SSE.Views.Toolbar.textCounterCw": "Angle en sentit antihorari", - "SSE.Views.Toolbar.textDataBars": "Barra de Dades", - "SSE.Views.Toolbar.textDelLeft": "Desplaçar les cel·les cap a l'esquerra", - "SSE.Views.Toolbar.textDelUp": "Desplaçar Cel·les Amunt", - "SSE.Views.Toolbar.textDiagDownBorder": "Vora Diagonal Descendent", - "SSE.Views.Toolbar.textDiagUpBorder": "Vora Diagonal Ascendent", - "SSE.Views.Toolbar.textEntireCol": "Columna sencera", - "SSE.Views.Toolbar.textEntireRow": "Tota la Fila", + "SSE.Views.Toolbar.textDataBars": "Barra de dades", + "SSE.Views.Toolbar.textDelLeft": "Desplaça les cel·les cap a l'esquerra", + "SSE.Views.Toolbar.textDelUp": "Desplaça les cel·les cap amunt", + "SSE.Views.Toolbar.textDiagDownBorder": "Vora diagonal inferior", + "SSE.Views.Toolbar.textDiagUpBorder": "Vora diagonal superior", + "SSE.Views.Toolbar.textEntireCol": "Tota la columna", + "SSE.Views.Toolbar.textEntireRow": "Tota la fila", "SSE.Views.Toolbar.textFewPages": "pàgines", "SSE.Views.Toolbar.textHeight": "Alçada", - "SSE.Views.Toolbar.textHorizontal": "Text Horitzontal", - "SSE.Views.Toolbar.textInsDown": "Desplaçar les Cel·les cap Avall", - "SSE.Views.Toolbar.textInsideBorders": "Vores Internes", - "SSE.Views.Toolbar.textInsRight": "Desplaçar Cel·les a la Dreta", - "SSE.Views.Toolbar.textItalic": "Itàlica", + "SSE.Views.Toolbar.textHorizontal": "Text horitzontal", + "SSE.Views.Toolbar.textInsDown": "Desplaça les cel·les cap avall", + "SSE.Views.Toolbar.textInsideBorders": "Vores interiors", + "SSE.Views.Toolbar.textInsRight": "Desplaça cel·les cap a la dreta", + "SSE.Views.Toolbar.textItalic": "Cursiva", "SSE.Views.Toolbar.textItems": "Elements", - "SSE.Views.Toolbar.textLandscape": "Horitzontal", + "SSE.Views.Toolbar.textLandscape": "Orientació horitzontal", "SSE.Views.Toolbar.textLeft": "Esquerra:", - "SSE.Views.Toolbar.textLeftBorders": "Vores Esquerres", - "SSE.Views.Toolbar.textManageRule": "Gestionar Regles", + "SSE.Views.Toolbar.textLeftBorders": "Vores esquerra", + "SSE.Views.Toolbar.textManageRule": "Administra les regles", "SSE.Views.Toolbar.textManyPages": "pàgines", - "SSE.Views.Toolbar.textMarginsLast": "Últim Personalitzat", + "SSE.Views.Toolbar.textMarginsLast": "Darrera personalització", "SSE.Views.Toolbar.textMarginsNarrow": "Estret", "SSE.Views.Toolbar.textMarginsNormal": "Normal", - "SSE.Views.Toolbar.textMarginsWide": "Ampli", - "SSE.Views.Toolbar.textMiddleBorders": "Vores Horitzontals Interns", - "SSE.Views.Toolbar.textMoreFormats": "Altres formats", + "SSE.Views.Toolbar.textMarginsWide": "Ample", + "SSE.Views.Toolbar.textMiddleBorders": "Vores interiors horitzontals", + "SSE.Views.Toolbar.textMoreFormats": "Més formats", "SSE.Views.Toolbar.textMorePages": "Més pàgines", - "SSE.Views.Toolbar.textNewColor": "Afegir un Nou Color Personalitzat", - "SSE.Views.Toolbar.textNewRule": "Nova regla", - "SSE.Views.Toolbar.textNoBorders": "Sense Vores", + "SSE.Views.Toolbar.textNewColor": "Afegeix un color personalitzat nou ", + "SSE.Views.Toolbar.textNewRule": "Crea una regla", + "SSE.Views.Toolbar.textNoBorders": "Sense vores", "SSE.Views.Toolbar.textOnePage": "pàgina", - "SSE.Views.Toolbar.textOutBorders": "Vores Exteriors", - "SSE.Views.Toolbar.textPageMarginsCustom": "Personalitzar Marges", - "SSE.Views.Toolbar.textPortrait": "Vertical", - "SSE.Views.Toolbar.textPrint": "Imprimir", - "SSE.Views.Toolbar.textPrintOptions": "Opcions d'Impressió", + "SSE.Views.Toolbar.textOutBorders": "Vores exteriors", + "SSE.Views.Toolbar.textPageMarginsCustom": "Marges personalitzats", + "SSE.Views.Toolbar.textPortrait": "Orientació vertical", + "SSE.Views.Toolbar.textPrint": "Imprimeix", + "SSE.Views.Toolbar.textPrintOptions": "Configuració d'impressió", "SSE.Views.Toolbar.textRight": "Dreta:", "SSE.Views.Toolbar.textRightBorders": "Vores de la dreta", - "SSE.Views.Toolbar.textRotateDown": "Girar Text cap a baix", - "SSE.Views.Toolbar.textRotateUp": "Girar Text cap a munt", - "SSE.Views.Toolbar.textScale": "Escala", + "SSE.Views.Toolbar.textRotateDown": "Gira el text cap avall", + "SSE.Views.Toolbar.textRotateUp": "Gira el text cap amunt", + "SSE.Views.Toolbar.textScale": "Ajusta", "SSE.Views.Toolbar.textScaleCustom": "Personalitzat", "SSE.Views.Toolbar.textSelection": "Des de la selecció actual", - "SSE.Views.Toolbar.textSetPrintArea": "Definir l'Àrea d'Impressió", - "SSE.Views.Toolbar.textStrikeout": "Ratllar", + "SSE.Views.Toolbar.textSetPrintArea": "Defineix l'àrea d'impressió", + "SSE.Views.Toolbar.textStrikeout": "Ratllat", "SSE.Views.Toolbar.textSubscript": "Subíndex", "SSE.Views.Toolbar.textSubSuperscript": "Subíndex/Superíndex", "SSE.Views.Toolbar.textSuperscript": "Superíndex", @@ -3206,125 +3209,125 @@ "SSE.Views.Toolbar.textTabFile": "Fitxer", "SSE.Views.Toolbar.textTabFormula": "Formula", "SSE.Views.Toolbar.textTabHome": "Inici", - "SSE.Views.Toolbar.textTabInsert": "Insertar", - "SSE.Views.Toolbar.textTabLayout": "Maquetació", + "SSE.Views.Toolbar.textTabInsert": "Insereix", + "SSE.Views.Toolbar.textTabLayout": "Disposició", "SSE.Views.Toolbar.textTabProtect": "Protecció", - "SSE.Views.Toolbar.textTabView": "Vista", - "SSE.Views.Toolbar.textThisPivot": "Des d'aquesta taula pivot", - "SSE.Views.Toolbar.textThisSheet": "Des d'aquest full de treball", + "SSE.Views.Toolbar.textTabView": "Visualització", + "SSE.Views.Toolbar.textThisPivot": "Des d'aquest document principal", + "SSE.Views.Toolbar.textThisSheet": "Des d'aquest full de càlcul", "SSE.Views.Toolbar.textThisTable": "Des d'aquesta taula", "SSE.Views.Toolbar.textTop": "Superior:", - "SSE.Views.Toolbar.textTopBorders": "Vores Superiors", - "SSE.Views.Toolbar.textUnderline": "Subratllar", - "SSE.Views.Toolbar.textVertical": "Text Vertical", + "SSE.Views.Toolbar.textTopBorders": "Vores superiors", + "SSE.Views.Toolbar.textUnderline": "Subratllat", + "SSE.Views.Toolbar.textVertical": "Text vertical", "SSE.Views.Toolbar.textWidth": "Amplada", "SSE.Views.Toolbar.textZoom": "Zoom", - "SSE.Views.Toolbar.tipAlignBottom": "Alineació inferior", - "SSE.Views.Toolbar.tipAlignCenter": "Centrar", + "SSE.Views.Toolbar.tipAlignBottom": "Alinea a baix", + "SSE.Views.Toolbar.tipAlignCenter": "Alinea al centre", "SSE.Views.Toolbar.tipAlignJust": "Justificat", - "SSE.Views.Toolbar.tipAlignLeft": "Alineació esquerra", - "SSE.Views.Toolbar.tipAlignMiddle": "Alineació al Mig", - "SSE.Views.Toolbar.tipAlignRight": "Alineació Dreta", - "SSE.Views.Toolbar.tipAlignTop": "Alineació superior", - "SSE.Views.Toolbar.tipAutofilter": "Ordenar i Filtrar", + "SSE.Views.Toolbar.tipAlignLeft": "Alinea a l'esquerra", + "SSE.Views.Toolbar.tipAlignMiddle": "Alinea al mig", + "SSE.Views.Toolbar.tipAlignRight": "Alinea a la dreta", + "SSE.Views.Toolbar.tipAlignTop": "Alinea a dalt", + "SSE.Views.Toolbar.tipAutofilter": "Ordena i Filtra", "SSE.Views.Toolbar.tipBack": "Enrere", "SSE.Views.Toolbar.tipBorders": "Vores", "SSE.Views.Toolbar.tipCellStyle": "Estil de cel·la", - "SSE.Views.Toolbar.tipChangeChart": "Canviar el tipus de gràfic", - "SSE.Views.Toolbar.tipClearStyle": "Esborrar", - "SSE.Views.Toolbar.tipColorSchemas": "Canviar el esquema de color", + "SSE.Views.Toolbar.tipChangeChart": "Canvia el tipus de gràfic", + "SSE.Views.Toolbar.tipClearStyle": "Suprimeix", + "SSE.Views.Toolbar.tipColorSchemas": "Canvia l'esquema de color", "SSE.Views.Toolbar.tipCondFormat": "Format condicional", - "SSE.Views.Toolbar.tipCopy": "Copiar", - "SSE.Views.Toolbar.tipCopyStyle": "Copiar estil", - "SSE.Views.Toolbar.tipDecDecimal": "Disminuir el decimal", - "SSE.Views.Toolbar.tipDecFont": "Disminució de la mida del tipus de lletra", - "SSE.Views.Toolbar.tipDeleteOpt": "Suprimeix celdes", - "SSE.Views.Toolbar.tipDigStyleAccounting": "Estil de Comptabilitat", - "SSE.Views.Toolbar.tipDigStyleCurrency": "Estil de Moneda", - "SSE.Views.Toolbar.tipDigStylePercent": "Estil Percentual", - "SSE.Views.Toolbar.tipEditChart": "Editar Gràfic", - "SSE.Views.Toolbar.tipEditChartData": "Seleccionar Dades", - "SSE.Views.Toolbar.tipEditChartType": "Canviar el tipus de gràfic", + "SSE.Views.Toolbar.tipCopy": "Copia", + "SSE.Views.Toolbar.tipCopyStyle": "Copia l'estil", + "SSE.Views.Toolbar.tipDecDecimal": "Disminueix els decimals", + "SSE.Views.Toolbar.tipDecFont": "Redueix la mida del tipus de lletra", + "SSE.Views.Toolbar.tipDeleteOpt": "Suprimeix cel·les", + "SSE.Views.Toolbar.tipDigStyleAccounting": "Estil de comptabilitat", + "SSE.Views.Toolbar.tipDigStyleCurrency": "Estil de moneda", + "SSE.Views.Toolbar.tipDigStylePercent": "Estil percentual", + "SSE.Views.Toolbar.tipEditChart": "Edita el gràfic", + "SSE.Views.Toolbar.tipEditChartData": "Selecciona dades", + "SSE.Views.Toolbar.tipEditChartType": "Canvia el tipus de gràfic", "SSE.Views.Toolbar.tipEditHeader": "Edita la capçalera o el peu de pàgina", - "SSE.Views.Toolbar.tipFontColor": "Color de Font", - "SSE.Views.Toolbar.tipFontName": "Font", - "SSE.Views.Toolbar.tipFontSize": "Mida de Font", - "SSE.Views.Toolbar.tipImgAlign": "Alinear objectes", - "SSE.Views.Toolbar.tipImgGroup": "Agrupa Objectes", - "SSE.Views.Toolbar.tipIncDecimal": "Augmentar decimals", - "SSE.Views.Toolbar.tipIncFont": "Increment de la mida del tipus de lletra", - "SSE.Views.Toolbar.tipInsertChart": "Inseriu gràfic", - "SSE.Views.Toolbar.tipInsertChartSpark": "Inseriu gràfic", - "SSE.Views.Toolbar.tipInsertEquation": "Inserir equació", - "SSE.Views.Toolbar.tipInsertHyperlink": "Afegir enllaç", - "SSE.Views.Toolbar.tipInsertImage": "Insertar Imatge", - "SSE.Views.Toolbar.tipInsertOpt": "Inserir cel·les", - "SSE.Views.Toolbar.tipInsertShape": "Inseriu autoforma", - "SSE.Views.Toolbar.tipInsertSlicer": "Inserir desplegable", - "SSE.Views.Toolbar.tipInsertSpark": "Inserir sparkline", - "SSE.Views.Toolbar.tipInsertSymbol": "Inserir símbol", - "SSE.Views.Toolbar.tipInsertTable": "Inserir taula", - "SSE.Views.Toolbar.tipInsertText": "Inserir quadre de text", - "SSE.Views.Toolbar.tipInsertTextart": "Inserir Text Art", - "SSE.Views.Toolbar.tipMerge": "Combinar i centrar", - "SSE.Views.Toolbar.tipNumFormat": "Format de Número", - "SSE.Views.Toolbar.tipPageMargins": "Marges de Pàgina", - "SSE.Views.Toolbar.tipPageOrient": "Orientació de Pàgina", - "SSE.Views.Toolbar.tipPageSize": "Mida de Pàgina", - "SSE.Views.Toolbar.tipPaste": "Pegar", + "SSE.Views.Toolbar.tipFontColor": "Color del tipus de lletra", + "SSE.Views.Toolbar.tipFontName": "Tipus de lletra", + "SSE.Views.Toolbar.tipFontSize": "Mida del tipus de lletra", + "SSE.Views.Toolbar.tipImgAlign": "Alinea objectes", + "SSE.Views.Toolbar.tipImgGroup": "Agrupa objectes", + "SSE.Views.Toolbar.tipIncDecimal": "Augmenta els decimals", + "SSE.Views.Toolbar.tipIncFont": "Augmenta la mida del tipus de lletra", + "SSE.Views.Toolbar.tipInsertChart": "Insereix un gràfic", + "SSE.Views.Toolbar.tipInsertChartSpark": "Insereix un gràfic", + "SSE.Views.Toolbar.tipInsertEquation": "Insereix una equació", + "SSE.Views.Toolbar.tipInsertHyperlink": "Afegeix un enllaç", + "SSE.Views.Toolbar.tipInsertImage": "Insereix una imatge", + "SSE.Views.Toolbar.tipInsertOpt": "Insereix cel·les", + "SSE.Views.Toolbar.tipInsertShape": "Insereix una forma automàtica", + "SSE.Views.Toolbar.tipInsertSlicer": "Insereix un afinador", + "SSE.Views.Toolbar.tipInsertSpark": "Insereix un sparkline", + "SSE.Views.Toolbar.tipInsertSymbol": "Insereix un símbol", + "SSE.Views.Toolbar.tipInsertTable": "Insereix una taula", + "SSE.Views.Toolbar.tipInsertText": "Insereix un quadre de text", + "SSE.Views.Toolbar.tipInsertTextart": "Insereix art ASCII", + "SSE.Views.Toolbar.tipMerge": "Combina i centra", + "SSE.Views.Toolbar.tipNumFormat": "Format de número", + "SSE.Views.Toolbar.tipPageMargins": "Marges de la pàgina", + "SSE.Views.Toolbar.tipPageOrient": "Orientació de la pàgina", + "SSE.Views.Toolbar.tipPageSize": "Mida de la pàgina", + "SSE.Views.Toolbar.tipPaste": "Enganxar", "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", - "SSE.Views.Toolbar.tipRedo": "Refer", - "SSE.Views.Toolbar.tipSave": "Desar", - "SSE.Views.Toolbar.tipSaveCoauth": "Desar els canvis per a que altres usuaris els puguin veure.", - "SSE.Views.Toolbar.tipScale": "Escala per Adaptar-se", - "SSE.Views.Toolbar.tipSendBackward": "Envia Endarrere", - "SSE.Views.Toolbar.tipSendForward": "Portar Endavant", - "SSE.Views.Toolbar.tipSynchronize": "Un altre usuari ha canviat el document. Feu clic per desar els canvis i carregar les actualitzacions.", + "SSE.Views.Toolbar.tipPrint": "Imprimeix", + "SSE.Views.Toolbar.tipPrintArea": "Àrea d’impressió", + "SSE.Views.Toolbar.tipPrintTitles": "Imprimeix els títols", + "SSE.Views.Toolbar.tipRedo": "Refés", + "SSE.Views.Toolbar.tipSave": "Desa", + "SSE.Views.Toolbar.tipSaveCoauth": "Desa els canvis perquè altres usuaris els puguin veure.", + "SSE.Views.Toolbar.tipScale": "Ajusta-ho a la mida", + "SSE.Views.Toolbar.tipSendBackward": "Envia cap enrere", + "SSE.Views.Toolbar.tipSendForward": "Porta endavant", + "SSE.Views.Toolbar.tipSynchronize": "Un altre usuari ha canviat el document. Cliqueu per desar els canvis i carregar les actualitzacions.", "SSE.Views.Toolbar.tipTextOrientation": "Orientació", - "SSE.Views.Toolbar.tipUndo": "Desfer", - "SSE.Views.Toolbar.tipWrap": "Ajustar el text", + "SSE.Views.Toolbar.tipUndo": "Desfés", + "SSE.Views.Toolbar.tipWrap": "Ajusta el text", "SSE.Views.Toolbar.txtAccounting": "Comptabilitat", "SSE.Views.Toolbar.txtAdditional": "Addicional", "SSE.Views.Toolbar.txtAscending": "Ascendent", - "SSE.Views.Toolbar.txtAutosumTip": "Suma", + "SSE.Views.Toolbar.txtAutosumTip": "Sumatori", "SSE.Views.Toolbar.txtClearAll": "Tot", "SSE.Views.Toolbar.txtClearComments": "Comentaris", - "SSE.Views.Toolbar.txtClearFilter": "Esborrar Filtre", + "SSE.Views.Toolbar.txtClearFilter": "Suprimeix el filtre", "SSE.Views.Toolbar.txtClearFormat": "Format", "SSE.Views.Toolbar.txtClearFormula": "Funció", - "SSE.Views.Toolbar.txtClearHyper": "Hiperenllaços", + "SSE.Views.Toolbar.txtClearHyper": "Enllaços", "SSE.Views.Toolbar.txtClearText": "Text", "SSE.Views.Toolbar.txtCurrency": "Moneda", "SSE.Views.Toolbar.txtCustom": "Personalitzat", "SSE.Views.Toolbar.txtDate": "Data", - "SSE.Views.Toolbar.txtDateTime": "Data & Hora", + "SSE.Views.Toolbar.txtDateTime": "Hora i data", "SSE.Views.Toolbar.txtDescending": "Descendent", "SSE.Views.Toolbar.txtDollar": "$ Dòlar", "SSE.Views.Toolbar.txtEuro": "€ Euro", "SSE.Views.Toolbar.txtExp": "Exponencial", "SSE.Views.Toolbar.txtFilter": "Filtre", - "SSE.Views.Toolbar.txtFormula": "Inserir funció", + "SSE.Views.Toolbar.txtFormula": "Insereix una funció", "SSE.Views.Toolbar.txtFraction": "Fracció", - "SSE.Views.Toolbar.txtFranc": "CHF Franc Suís", + "SSE.Views.Toolbar.txtFranc": "CHF franc suís", "SSE.Views.Toolbar.txtGeneral": "General", "SSE.Views.Toolbar.txtInteger": "Enter", - "SSE.Views.Toolbar.txtManageRange": "Gestor de Noms", - "SSE.Views.Toolbar.txtMergeAcross": "Combinar", - "SSE.Views.Toolbar.txtMergeCells": "Unir Cel·les", - "SSE.Views.Toolbar.txtMergeCenter": "Unir i Centrar", - "SSE.Views.Toolbar.txtNamedRange": "Nom de rangs", - "SSE.Views.Toolbar.txtNewRange": "Definiu el Nom", + "SSE.Views.Toolbar.txtManageRange": "Administrador de noms", + "SSE.Views.Toolbar.txtMergeAcross": "Combina horitzontalment", + "SSE.Views.Toolbar.txtMergeCells": "Combina les cel·les", + "SSE.Views.Toolbar.txtMergeCenter": "Combina i centra", + "SSE.Views.Toolbar.txtNamedRange": "Intervals amb nom", + "SSE.Views.Toolbar.txtNewRange": "Defineix el nom", "SSE.Views.Toolbar.txtNoBorders": "Sense vores", - "SSE.Views.Toolbar.txtNumber": "Nombre", - "SSE.Views.Toolbar.txtPasteRange": "Pegar Nom", + "SSE.Views.Toolbar.txtNumber": "Número", + "SSE.Views.Toolbar.txtPasteRange": "Enganxa el nom", "SSE.Views.Toolbar.txtPercentage": "Percentatge", "SSE.Views.Toolbar.txtPound": "£ Lliura", "SSE.Views.Toolbar.txtRouble": "₽ Ruble", - "SSE.Views.Toolbar.txtScheme1": "Oficina", - "SSE.Views.Toolbar.txtScheme10": "Intermitg", + "SSE.Views.Toolbar.txtScheme1": "Office", + "SSE.Views.Toolbar.txtScheme10": "Mediana", "SSE.Views.Toolbar.txtScheme11": "Metro", "SSE.Views.Toolbar.txtScheme12": "Mòdul", "SSE.Views.Toolbar.txtScheme13": "Opulent", @@ -3333,97 +3336,97 @@ "SSE.Views.Toolbar.txtScheme16": "Paper", "SSE.Views.Toolbar.txtScheme17": "Solstici", "SSE.Views.Toolbar.txtScheme18": "Tècnic", - "SSE.Views.Toolbar.txtScheme19": "Viatges", - "SSE.Views.Toolbar.txtScheme2": "Escala de Gris", + "SSE.Views.Toolbar.txtScheme19": "Excursió", + "SSE.Views.Toolbar.txtScheme2": "Escala de grisos", "SSE.Views.Toolbar.txtScheme20": "Urbà", - "SSE.Views.Toolbar.txtScheme21": "Empenta", - "SSE.Views.Toolbar.txtScheme22": "Nova Oficina", - "SSE.Views.Toolbar.txtScheme3": "Àpex", + "SSE.Views.Toolbar.txtScheme21": "Inspiració", + "SSE.Views.Toolbar.txtScheme22": "Office", + "SSE.Views.Toolbar.txtScheme3": "Vèrtex", "SSE.Views.Toolbar.txtScheme4": "Aspecte", "SSE.Views.Toolbar.txtScheme5": "Cívic", - "SSE.Views.Toolbar.txtScheme6": "Concurrència", + "SSE.Views.Toolbar.txtScheme6": "Esplanada", "SSE.Views.Toolbar.txtScheme7": "Equitat", "SSE.Views.Toolbar.txtScheme8": "Flux", - "SSE.Views.Toolbar.txtScheme9": "Fosa", + "SSE.Views.Toolbar.txtScheme9": "Foneria", "SSE.Views.Toolbar.txtScientific": "Científic", "SSE.Views.Toolbar.txtSearch": "Cerca", - "SSE.Views.Toolbar.txtSort": "Ordenar", - "SSE.Views.Toolbar.txtSortAZ": "Ordenar ascendentment", - "SSE.Views.Toolbar.txtSortZA": "Ordenar per ordre descendent", + "SSE.Views.Toolbar.txtSort": "Ordena", + "SSE.Views.Toolbar.txtSortAZ": "Ordre ascendent", + "SSE.Views.Toolbar.txtSortZA": "Ordena per ordre descendent", "SSE.Views.Toolbar.txtSpecial": "Especial", "SSE.Views.Toolbar.txtTableTemplate": "Format com a plantilla de taula", "SSE.Views.Toolbar.txtText": "Text", "SSE.Views.Toolbar.txtTime": "Hora", - "SSE.Views.Toolbar.txtUnmerge": "Separar cel·les", + "SSE.Views.Toolbar.txtUnmerge": "Separa les cel·les", "SSE.Views.Toolbar.txtYen": "¥ Ien", "SSE.Views.Top10FilterDialog.textType": "Mostra", - "SSE.Views.Top10FilterDialog.txtBottom": "Inferior", + "SSE.Views.Top10FilterDialog.txtBottom": "Part inferior", "SSE.Views.Top10FilterDialog.txtBy": "per", - "SSE.Views.Top10FilterDialog.txtItems": "Article", - "SSE.Views.Top10FilterDialog.txtPercent": "Percentatge", + "SSE.Views.Top10FilterDialog.txtItems": "Element", + "SSE.Views.Top10FilterDialog.txtPercent": "Per cent", "SSE.Views.Top10FilterDialog.txtSum": "Suma", - "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 de Autofiltre", + "SSE.Views.Top10FilterDialog.txtTitle": "Filtre automàtic dels 10 millors", "SSE.Views.Top10FilterDialog.txtTop": "Superior", - "SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 Filtrats", - "SSE.Views.ValueFieldSettingsDialog.textTitle": "Configuració del Camp de Valor", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Filtre pels 10 primers", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Configuració del camp de valors", "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Mitjana", - "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Sota el camp", - "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Sota el article", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Camp de base", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Element de base", "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 de %2", - "SSE.Views.ValueFieldSettingsDialog.txtCount": "Contar", - "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Nombre de Comptes", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Recompte", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Compta nombres", "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Nom personalitzat", - "SSE.Views.ValueFieldSettingsDialog.txtDifference": "La diferència De", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "La diferència de", "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Índex", - "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", - "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", - "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Sense Càlcul", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Màx", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Mín", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "Cap càlcul", "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percentatge de", - "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Diferència del Percentatge De", - "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percentatge de Columna", - "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percentatge del Total", - "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percentatge de Fila", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percentatge de diferència respecte a", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percentatge de columna", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percentatge del total", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percentatge de fila", "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Producte", - "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Execució Total A", - "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Mostrar els valors com a", - "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Nom de la font:", - "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", - "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Total acumulable a", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Mostra els valors com a", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Nom d'origen:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "DesvEst", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "DesvEstPobl", "SSE.Views.ValueFieldSettingsDialog.txtSum": "Suma", - "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Sumar el camp de valor per", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Resumeix el camp de valor per", "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", - "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", - "SSE.Views.ViewManagerDlg.closeButtonText": "Tancar", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "VarPobl", + "SSE.Views.ViewManagerDlg.closeButtonText": "Tanca", "SSE.Views.ViewManagerDlg.guestText": "Convidat", - "SSE.Views.ViewManagerDlg.textDelete": "Esborrar", - "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicar", + "SSE.Views.ViewManagerDlg.textDelete": "Suprimeix", + "SSE.Views.ViewManagerDlg.textDuplicate": "Duplica", "SSE.Views.ViewManagerDlg.textEmpty": "Encara no s'ha creat cap visualització.", - "SSE.Views.ViewManagerDlg.textGoTo": "Anar a vista", - "SSE.Views.ViewManagerDlg.textLongName": "Introduïu un nom de menys de 128 caràcters.", + "SSE.Views.ViewManagerDlg.textGoTo": "Anar a veure", + "SSE.Views.ViewManagerDlg.textLongName": "Escriviu un nom que tingui menys de 128 caràcters.", "SSE.Views.ViewManagerDlg.textNew": "Nou", - "SSE.Views.ViewManagerDlg.textRename": "Canviar el nom", - "SSE.Views.ViewManagerDlg.textRenameError": "El nom de la vista no pot estar buit.", - "SSE.Views.ViewManagerDlg.textRenameLabel": "Canviar el nom de la visualització", - "SSE.Views.ViewManagerDlg.textViews": "Vistes de full", + "SSE.Views.ViewManagerDlg.textRename": "Canvia el nom", + "SSE.Views.ViewManagerDlg.textRenameError": "El nom de la vista no pot estar en blanc.", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Canvia el nom de la visualització", + "SSE.Views.ViewManagerDlg.textViews": "Visualitzacions de full", "SSE.Views.ViewManagerDlg.tipIsLocked": "Un altre usuari està editant aquest element.", "SSE.Views.ViewManagerDlg.txtTitle": "Gestor de visualització de full", "SSE.Views.ViewManagerDlg.warnDeleteView": "Esteu intentant suprimir la visualització '%1' actualment activada.
Voleu tancar aquesta vista i suprimir-la?", - "SSE.Views.ViewTab.capBtnFreeze": "Congela Panells", - "SSE.Views.ViewTab.capBtnSheetView": "Vista de full", - "SSE.Views.ViewTab.textClose": "Tancar", + "SSE.Views.ViewTab.capBtnFreeze": "Immobilitza les subfinestres", + "SSE.Views.ViewTab.capBtnSheetView": "Visualització del full", + "SSE.Views.ViewTab.textClose": "Tanca", "SSE.Views.ViewTab.textCreate": "Nou", "SSE.Views.ViewTab.textDefault": "Per defecte", - "SSE.Views.ViewTab.textFormula": "Barra de Fórmules", - "SSE.Views.ViewTab.textFreezeCol": "Fixar Primera Columna", - "SSE.Views.ViewTab.textFreezeRow": "Fixar Fila Superior", - "SSE.Views.ViewTab.textGridlines": "Línies de Quadrícules", - "SSE.Views.ViewTab.textHeadings": "Encapçalaments", - "SSE.Views.ViewTab.textManager": "Administrador de vista", - "SSE.Views.ViewTab.textUnFreeze": "Moure Panells", - "SSE.Views.ViewTab.textZeros": "Mostrar zeros", + "SSE.Views.ViewTab.textFormula": "Barra de fórmules", + "SSE.Views.ViewTab.textFreezeCol": "Immobilitza la primera columna", + "SSE.Views.ViewTab.textFreezeRow": "Immobilitza la fila superior", + "SSE.Views.ViewTab.textGridlines": "Línies de la quadrícula", + "SSE.Views.ViewTab.textHeadings": "Capçaleres", + "SSE.Views.ViewTab.textManager": "Administrador de la visualització", + "SSE.Views.ViewTab.textUnFreeze": "Mobilitza subfinestres", + "SSE.Views.ViewTab.textZeros": "Mostra zeros", "SSE.Views.ViewTab.textZoom": "Zoom", - "SSE.Views.ViewTab.tipClose": "Tanca la visualització de fulls", - "SSE.Views.ViewTab.tipCreate": "Crea visualització de full", - "SSE.Views.ViewTab.tipFreeze": "Congela panells", - "SSE.Views.ViewTab.tipSheetView": "Vista de full" + "SSE.Views.ViewTab.tipClose": "Tanca la visualització dels fulls", + "SSE.Views.ViewTab.tipCreate": "Crea una visualització de fulls", + "SSE.Views.ViewTab.tipFreeze": "Immobilitza les subfinestres", + "SSE.Views.ViewTab.tipSheetView": "Visualització del full" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/de.json b/apps/spreadsheeteditor/main/locale/de.json index e1f3163b4..f92acf7e0 100644 --- a/apps/spreadsheeteditor/main/locale/de.json +++ b/apps/spreadsheeteditor/main/locale/de.json @@ -549,6 +549,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Grenzwert entfernen", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Akzentzeichen entfernen", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Leiste entfernen", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Möchten Sie diese Signatur wirklich entfernen?
Dies kann nicht rückgängig gemacht werden.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Skripts entfernen", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Tiefstellung entfernen", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Hochstellung entfernen", @@ -652,6 +653,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "SSE.Controllers.Main.errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", "SSE.Controllers.Main.errorLabledColumnsPivot": "Um eine Pivot-Tabelle zu erstellen, verwenden Sie Daten, die in einer Liste mit Spaltenüberschriften organisiert sind.", + "SSE.Controllers.Main.errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "Die Referenz für den Standort oder den Datenbereich ist nicht gültig.", "SSE.Controllers.Main.errorLockedAll": "Die Operation kann nicht durchgeführt werden, weil das Blatt von einem anderen Benutzer gesperrt ist.", "SSE.Controllers.Main.errorLockedCellPivot": "Die Daten innerhalb einer Pivot-Tabelle können nicht geändert werden.", @@ -986,6 +988,9 @@ "SSE.Controllers.Main.txtYears": "Jahre", "SSE.Controllers.Main.unknownErrorText": "Unbekannter Fehler.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ihr Webbrowser wird nicht unterstützt.", + "SSE.Controllers.Main.uploadDocExtMessage": "Unbekanntes Dokumentformat.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Keine Dokumente hochgeladen.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Maximale Dokumentgröße ist überschritten.", "SSE.Controllers.Main.uploadImageExtMessage": "Unbekanntes Bildformat.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Kein Bild hochgeladen.", "SSE.Controllers.Main.uploadImageSizeMessage": "Die maximal zulässige Bildgröße von 25 MB ist überschritten.", diff --git a/apps/spreadsheeteditor/main/locale/en.json b/apps/spreadsheeteditor/main/locale/en.json index 4b005a3d8..abd46c0dd 100644 --- a/apps/spreadsheeteditor/main/locale/en.json +++ b/apps/spreadsheeteditor/main/locale/en.json @@ -1,3460 +1,3541 @@ -{ - "cancelButtonText": "Cancel", - "Common.Controllers.Chat.notcriticalErrorTitle": "Warning", - "Common.Controllers.Chat.textEnterMessage": "Enter your message here", - "Common.Controllers.History.notcriticalErrorTitle": "Warning", - "Common.define.chartData.textArea": "Area", - "Common.define.chartData.textAreaStacked": "Stacked area", - "Common.define.chartData.textAreaStackedPer": "100% Stacked area", - "Common.define.chartData.textBar": "Bar", - "Common.define.chartData.textBarNormal": "Clustered column", - "Common.define.chartData.textBarNormal3d": "3-D Clustered column", - "Common.define.chartData.textBarNormal3dPerspective": "3-D column", - "Common.define.chartData.textBarStacked": "Stacked column", - "Common.define.chartData.textBarStacked3d": "3-D Stacked column", - "Common.define.chartData.textBarStackedPer": "100% Stacked column", - "Common.define.chartData.textBarStackedPer3d": "3-D 100% Stacked column", - "Common.define.chartData.textCharts": "Charts", - "Common.define.chartData.textColumn": "Column", - "Common.define.chartData.textColumnSpark": "Column", - "Common.define.chartData.textCombo": "Combo", - "Common.define.chartData.textComboAreaBar": "Stacked area - clustered column", - "Common.define.chartData.textComboBarLine": "Clustered column - line", - "Common.define.chartData.textComboBarLineSecondary": "Clustered column - line on secondary axis", - "Common.define.chartData.textComboCustom": "Custom combination", - "Common.define.chartData.textDoughnut": "Doughnut", - "Common.define.chartData.textHBarNormal": "Clustered bar", - "Common.define.chartData.textHBarNormal3d": "3-D Clustered bar", - "Common.define.chartData.textHBarStacked": "Stacked bar", - "Common.define.chartData.textHBarStacked3d": "3-D Stacked bar", - "Common.define.chartData.textHBarStackedPer": "100% Stacked bar", - "Common.define.chartData.textHBarStackedPer3d": "3-D 100% Stacked bar", - "Common.define.chartData.textLine": "Line", - "Common.define.chartData.textLine3d": "3-D line", - "Common.define.chartData.textLineMarker": "Line with markers", - "Common.define.chartData.textLineSpark": "Line", - "Common.define.chartData.textLineStacked": "Stacked line", - "Common.define.chartData.textLineStackedMarker": "Stacked line with markers", - "Common.define.chartData.textLineStackedPer": "100% Stacked line", - "Common.define.chartData.textLineStackedPerMarker": "100% Stacked line with markers", - "Common.define.chartData.textPie": "Pie", - "Common.define.chartData.textPie3d": "3-D pie", - "Common.define.chartData.textPoint": "XY (Scatter)", - "Common.define.chartData.textScatter": "Scatter", - "Common.define.chartData.textScatterLine": "Scatter with straight lines", - "Common.define.chartData.textScatterLineMarker": "Scatter with straight lines and markers", - "Common.define.chartData.textScatterSmooth": "Scatter with smooth lines", - "Common.define.chartData.textScatterSmoothMarker": "Scatter with smooth lines and markers", - "Common.define.chartData.textSparks": "Sparklines", - "Common.define.chartData.textStock": "Stock", - "Common.define.chartData.textSurface": "Surface", - "Common.define.chartData.textWinLossSpark": "Win/Loss", - "Common.define.conditionalData.exampleText": "AaBbCcYyZz", - "Common.define.conditionalData.noFormatText": "No format set", - "Common.define.conditionalData.text1Above": "1 std dev above", - "Common.define.conditionalData.text1Below": "1 std dev below", - "Common.define.conditionalData.text2Above": "2 std dev above", - "Common.define.conditionalData.text2Below": "2 std dev below", - "Common.define.conditionalData.text3Above": "3 std dev above", - "Common.define.conditionalData.text3Below": "3 std dev below", - "Common.define.conditionalData.textAbove": "Above", - "Common.define.conditionalData.textAverage": "Average", - "Common.define.conditionalData.textBegins": "Begins with", - "Common.define.conditionalData.textBelow": "Below", - "Common.define.conditionalData.textBetween": "Between", - "Common.define.conditionalData.textBlank": "Blank", - "Common.define.conditionalData.textBlanks": "Contains blanks", - "Common.define.conditionalData.textBottom": "Bottom", - "Common.define.conditionalData.textContains": "Contains", - "Common.define.conditionalData.textDataBar": "Data bar", - "Common.define.conditionalData.textDate": "Date", - "Common.define.conditionalData.textDuplicate": "Duplicate", - "Common.define.conditionalData.textEnds": "Ends with", - "Common.define.conditionalData.textEqAbove": "Equal to or above", - "Common.define.conditionalData.textEqBelow": "Equal to or below", - "Common.define.conditionalData.textEqual": "Equal to", - "Common.define.conditionalData.textError": "Error", - "Common.define.conditionalData.textErrors": "Contains errors", - "Common.define.conditionalData.textFormula": "Formula", - "Common.define.conditionalData.textGreater": "Greater than", - "Common.define.conditionalData.textGreaterEq": "Greater than or equal to", - "Common.define.conditionalData.textIconSets": "Icon sets", - "Common.define.conditionalData.textLast7days": "In the last 7 days", - "Common.define.conditionalData.textLastMonth": "Last month", - "Common.define.conditionalData.textLastWeek": "Last week", - "Common.define.conditionalData.textLess": "Less than", - "Common.define.conditionalData.textLessEq": "Less than or equal to", - "Common.define.conditionalData.textNextMonth": "Next month", - "Common.define.conditionalData.textNextWeek": "Next week", - "Common.define.conditionalData.textNotBetween": "Not between", - "Common.define.conditionalData.textNotBlanks": "Does not contain blanks", - "Common.define.conditionalData.textNotContains": "Does not contain", - "Common.define.conditionalData.textNotEqual": "Not equal to", - "Common.define.conditionalData.textNotErrors": "Does not contain errors", - "Common.define.conditionalData.textText": "Text", - "Common.define.conditionalData.textThisMonth": "This month", - "Common.define.conditionalData.textThisWeek": "This week", - "Common.define.conditionalData.textToday": "Today", - "Common.define.conditionalData.textTomorrow": "Tomorrow", - "Common.define.conditionalData.textTop": "Top", - "Common.define.conditionalData.textUnique": "Unique", - "Common.define.conditionalData.textValue": "Value is", - "Common.define.conditionalData.textYesterday": "Yesterday", - "Common.Translation.warnFileLocked": "The file is being edited in another app. You can continue editing and save it as a copy.", - "Common.Translation.warnFileLockedBtnEdit": "Create a copy", - "Common.Translation.warnFileLockedBtnView": "Open for viewing", - "Common.UI.ButtonColored.textAutoColor": "Automatic", - "Common.UI.ButtonColored.textNewColor": "Add New Custom Color", - "del_Common.UI.ColorButton.textAutoColor": "Automatic", - "del_Common.UI.ColorButton.textNewColor": "Add New Custom Color", - "Common.UI.ComboBorderSize.txtNoBorders": "No borders", - "Common.UI.ComboBorderSizeEditable.txtNoBorders": "No borders", - "Common.UI.ComboDataView.emptyComboText": "No styles", - "Common.UI.ExtendedColorDialog.addButtonText": "Add", - "Common.UI.ExtendedColorDialog.textCurrent": "Current", - "Common.UI.ExtendedColorDialog.textHexErr": "The entered value is incorrect.
Please enter a value between 000000 and FFFFFF.", - "Common.UI.ExtendedColorDialog.textNew": "New", - "Common.UI.ExtendedColorDialog.textRGBErr": "The entered value is incorrect.
Please enter a numeric value between 0 and 255.", - "Common.UI.HSBColorPicker.textNoColor": "No Color", - "Common.UI.SearchDialog.textHighlight": "Highlight results", - "Common.UI.SearchDialog.textMatchCase": "Case sensitive", - "Common.UI.SearchDialog.textReplaceDef": "Enter the replacement text", - "Common.UI.SearchDialog.textSearchStart": "Enter your text here", - "Common.UI.SearchDialog.textTitle": "Find and Replace", - "Common.UI.SearchDialog.textTitle2": "Find", - "Common.UI.SearchDialog.textWholeWords": "Whole words only", - "Common.UI.SearchDialog.txtBtnHideReplace": "Hide Replace", - "Common.UI.SearchDialog.txtBtnReplace": "Replace", - "Common.UI.SearchDialog.txtBtnReplaceAll": "Replace All", - "Common.UI.SynchronizeTip.textDontShow": "Don't show this message again", - "Common.UI.SynchronizeTip.textSynchronize": "The document has been changed by another user.
Please click to save your changes and reload the updates.", - "Common.UI.ThemeColorPalette.textStandartColors": "Standard Colors", - "Common.UI.ThemeColorPalette.textThemeColors": "Theme Colors", - "Common.UI.Themes.txtThemeClassicLight": "Classic Light", - "Common.UI.Themes.txtThemeDark": "Dark", - "Common.UI.Themes.txtThemeLight": "Light", - "Common.UI.Window.cancelButtonText": "Cancel", - "Common.UI.Window.closeButtonText": "Close", - "Common.UI.Window.noButtonText": "No", - "Common.UI.Window.okButtonText": "OK", - "Common.UI.Window.textConfirmation": "Confirmation", - "Common.UI.Window.textDontShow": "Don't show this message again", - "Common.UI.Window.textError": "Error", - "Common.UI.Window.textInformation": "Information", - "Common.UI.Window.textWarning": "Warning", - "Common.UI.Window.yesButtonText": "Yes", - "Common.Utils.Metric.txtCm": "cm", - "Common.Utils.Metric.txtPt": "pt", - "Common.Views.About.txtAddress": "address: ", - "Common.Views.About.txtLicensee": "LICENSEE", - "Common.Views.About.txtLicensor": "LICENSOR", - "Common.Views.About.txtMail": "email: ", - "Common.Views.About.txtPoweredBy": "Powered by", - "Common.Views.About.txtTel": "tel.: ", - "Common.Views.About.txtVersion": "Version ", - "Common.Views.AutoCorrectDialog.textAdd": "Add", - "Common.Views.AutoCorrectDialog.textApplyAsWork": "Apply as you work", - "Common.Views.AutoCorrectDialog.textAutoCorrect": "AutoCorrect", - "Common.Views.AutoCorrectDialog.textAutoFormat": "AutoFormat As You Type", - "Common.Views.AutoCorrectDialog.textBy": "By", - "Common.Views.AutoCorrectDialog.textDelete": "Delete", - "Common.Views.AutoCorrectDialog.textHyperlink": "Internet and network paths with hyperlinks", - "Common.Views.AutoCorrectDialog.textMathCorrect": "Math AutoCorrect", - "Common.Views.AutoCorrectDialog.textNewRowCol": "Include new rows and columns in table", - "Common.Views.AutoCorrectDialog.textRecognized": "Recognized Functions", - "Common.Views.AutoCorrectDialog.textRecognizedDesc": "The following expressions are recognized math expressions. They will not be automatically italicized.", - "Common.Views.AutoCorrectDialog.textReplace": "Replace", - "Common.Views.AutoCorrectDialog.textReplaceText": "Replace As You Type", - "Common.Views.AutoCorrectDialog.textReplaceType": "Replace text as you type", - "Common.Views.AutoCorrectDialog.textReset": "Reset", - "Common.Views.AutoCorrectDialog.textResetAll": "Reset to default", - "Common.Views.AutoCorrectDialog.textRestore": "Restore", - "Common.Views.AutoCorrectDialog.textTitle": "AutoCorrect", - "Common.Views.AutoCorrectDialog.textWarnAddRec": "Recognized functions must contain only the letters A through Z, uppercase or lowercase.", - "Common.Views.AutoCorrectDialog.textWarnResetRec": "Any expression you added will be removed and the removed ones will be restored. Do you want to continue?", - "Common.Views.AutoCorrectDialog.warnReplace": "The autocorrect entry for %1 already exists. Do you want to replace it?", - "Common.Views.AutoCorrectDialog.warnReset": "Any autocorrect you added will be removed and the changed ones will be restored to their original values. Do you want to continue?", - "Common.Views.AutoCorrectDialog.warnRestore": "The autocorrect entry for %1 will be reset to its original value. Do you want to continue?", - "Common.Views.Chat.textSend": "Send", - "Common.Views.Comments.mniAuthorAsc": "Author A to Z", - "Common.Views.Comments.mniAuthorDesc": "Author Z to A", - "Common.Views.Comments.mniDateAsc": "Oldest", - "Common.Views.Comments.mniDateDesc": "Newest", - "Common.Views.Comments.mniPositionAsc": "From top", - "Common.Views.Comments.mniPositionDesc": "From bottom", - "Common.Views.Comments.textAdd": "Add", - "Common.Views.Comments.textAddComment": "Add Comment", - "Common.Views.Comments.textAddCommentToDoc": "Add Comment to Document", - "Common.Views.Comments.textAddReply": "Add Reply", - "Common.Views.Comments.textAnonym": "Guest", - "Common.Views.Comments.textCancel": "Cancel", - "Common.Views.Comments.textClose": "Close", - "Common.Views.Comments.textClosePanel": "Close comments", - "Common.Views.Comments.textComments": "Comments", - "Common.Views.Comments.textEdit": "OK", - "Common.Views.Comments.textEnterCommentHint": "Enter your comment here", - "Common.Views.Comments.textHintAddComment": "Add comment", - "Common.Views.Comments.textOpenAgain": "Open Again", - "Common.Views.Comments.textReply": "Reply", - "Common.Views.Comments.textResolve": "Resolve", - "Common.Views.Comments.textResolved": "Resolved", - "Common.Views.Comments.textSort": "Sort comments", - "Common.Views.CopyWarningDialog.textDontShow": "Don't show this message again", - "Common.Views.CopyWarningDialog.textMsg": "Copy, cut and paste actions using the editor toolbar buttons and context menu actions will be performed within this editor tab only.

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

To copy or paste to or from applications outside the editor tab use the following keyboard combinations:", + "Common.Views.CopyWarningDialog.textTitle": "Copy, Cut and Paste Actions", + "Common.Views.CopyWarningDialog.textToCopy": "for Copy", + "Common.Views.CopyWarningDialog.textToCut": "for Cut", + "Common.Views.CopyWarningDialog.textToPaste": "for Paste", + "Common.Views.DocumentAccessDialog.textLoading": "Loading...", + "Common.Views.DocumentAccessDialog.textTitle": "Sharing Settings", + "Common.Views.EditNameDialog.textLabel": "Label:", + "Common.Views.EditNameDialog.textLabelError": "Label must not be empty.", + "Common.Views.Header.labelCoUsersDescr": "Users who are editing the file:", + "Common.Views.Header.textAddFavorite": "Mark as favorite", + "Common.Views.Header.textAdvSettings": "Advanced settings", + "Common.Views.Header.textBack": "Open file location", + "Common.Views.Header.textCompactView": "Hide Toolbar", + "Common.Views.Header.textHideLines": "Hide Rulers", + "Common.Views.Header.textHideStatusBar": "Combine sheet and status bars", + "Common.Views.Header.textRemoveFavorite": "Remove from Favorites", + "Common.Views.Header.textSaveBegin": "Saving...", + "Common.Views.Header.textSaveChanged": "Modified", + "Common.Views.Header.textSaveEnd": "All changes saved", + "Common.Views.Header.textSaveExpander": "All changes saved", + "Common.Views.Header.textZoom": "Zoom", + "Common.Views.Header.tipAccessRights": "Manage document access rights", + "Common.Views.Header.tipDownload": "Download file", + "Common.Views.Header.tipGoEdit": "Edit current file", + "Common.Views.Header.tipPrint": "Print file", + "Common.Views.Header.tipRedo": "Redo", + "Common.Views.Header.tipSave": "Save", + "Common.Views.Header.tipUndo": "Undo", + "Common.Views.Header.tipUndock": "Undock into separate window", + "Common.Views.Header.tipViewSettings": "View settings", + "Common.Views.Header.tipViewUsers": "View users and manage document access rights", + "Common.Views.Header.txtAccessRights": "Change access rights", + "Common.Views.Header.txtRename": "Rename", + "Common.Views.History.textCloseHistory": "Close History", + "Common.Views.History.textHide": "Collapse", + "Common.Views.History.textHideAll": "Hide detailed changes", + "Common.Views.History.textRestore": "Restore", + "Common.Views.History.textShow": "Expand", + "Common.Views.History.textShowAll": "Show detailed changes", + "Common.Views.History.textVer": "ver.", + "Common.Views.ImageFromUrlDialog.textUrl": "Paste an image URL:", + "Common.Views.ImageFromUrlDialog.txtEmpty": "This field is required", + "Common.Views.ImageFromUrlDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "Common.Views.ListSettingsDialog.textBulleted": "Bulleted", + "Common.Views.ListSettingsDialog.textNumbering": "Numbered", + "Common.Views.ListSettingsDialog.tipChange": "Change bullet", + "Common.Views.ListSettingsDialog.txtBullet": "Bullet", + "Common.Views.ListSettingsDialog.txtColor": "Color", + "Common.Views.ListSettingsDialog.txtNewBullet": "New bullet", + "Common.Views.ListSettingsDialog.txtNone": "None", + "Common.Views.ListSettingsDialog.txtOfText": "% of text", + "Common.Views.ListSettingsDialog.txtSize": "Size", + "Common.Views.ListSettingsDialog.txtStart": "Start at", + "Common.Views.ListSettingsDialog.txtSymbol": "Symbol", + "Common.Views.ListSettingsDialog.txtTitle": "List Settings", + "Common.Views.ListSettingsDialog.txtType": "Type", + "Common.Views.OpenDialog.closeButtonText": "Close File", + "Common.Views.OpenDialog.textInvalidRange": "Invalid cells range", + "Common.Views.OpenDialog.textSelectData": "Select data", + "Common.Views.OpenDialog.txtAdvanced": "Advanced", + "Common.Views.OpenDialog.txtColon": "Colon", + "Common.Views.OpenDialog.txtComma": "Comma", + "Common.Views.OpenDialog.txtDelimiter": "Delimiter", + "Common.Views.OpenDialog.txtDestData": "Choose where to put the data", + "Common.Views.OpenDialog.txtEmpty": "This field is required", + "Common.Views.OpenDialog.txtEncoding": "Encoding ", + "Common.Views.OpenDialog.txtIncorrectPwd": "Password is incorrect.", + "Common.Views.OpenDialog.txtOpenFile": "Enter a password to open the file", + "Common.Views.OpenDialog.txtOther": "Other", + "Common.Views.OpenDialog.txtPassword": "Password", + "Common.Views.OpenDialog.txtPreview": "Preview", + "Common.Views.OpenDialog.txtProtected": "Once you enter the password and open the file, the current password to the file will be reset.", + "Common.Views.OpenDialog.txtSemicolon": "Semicolon", + "Common.Views.OpenDialog.txtSpace": "Space", + "Common.Views.OpenDialog.txtTab": "Tab", + "Common.Views.OpenDialog.txtTitle": "Choose %1 options", + "Common.Views.OpenDialog.txtTitleProtected": "Protected File", + "Common.Views.PasswordDialog.txtDescription": "Set a password to protect this document", + "Common.Views.PasswordDialog.txtIncorrectPwd": "Confirmation password is not identical", + "Common.Views.PasswordDialog.txtPassword": "Password", + "Common.Views.PasswordDialog.txtRepeat": "Repeat password", + "Common.Views.PasswordDialog.txtTitle": "Set Password", + "Common.Views.PasswordDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", + "Common.Views.PluginDlg.textLoading": "Loading", + "Common.Views.Plugins.groupCaption": "Plugins", + "Common.Views.Plugins.strPlugins": "Plugins", + "Common.Views.Plugins.textLoading": "Loading", + "Common.Views.Plugins.textStart": "Start", + "Common.Views.Plugins.textStop": "Stop", + "Common.Views.Protection.hintAddPwd": "Encrypt with password", + "Common.Views.Protection.hintPwd": "Change or delete password", + "Common.Views.Protection.hintSignature": "Add digital signature or signature line", + "Common.Views.Protection.txtAddPwd": "Add password", + "Common.Views.Protection.txtChangePwd": "Change password", + "Common.Views.Protection.txtDeletePwd": "Delete password", + "Common.Views.Protection.txtEncrypt": "Encrypt", + "Common.Views.Protection.txtInvisibleSignature": "Add digital signature", + "Common.Views.Protection.txtSignature": "Signature", + "Common.Views.Protection.txtSignatureLine": "Add signature line", + "Common.Views.RenameDialog.textName": "File name", + "Common.Views.RenameDialog.txtInvalidName": "The file name cannot contain any of the following characters: ", + "Common.Views.ReviewChanges.hintNext": "To next change", + "Common.Views.ReviewChanges.hintPrev": "To previous change", + "Common.Views.ReviewChanges.strFast": "Fast", + "Common.Views.ReviewChanges.strFastDesc": "Real-time co-editing. All changes are saved automatically.", + "Common.Views.ReviewChanges.strStrict": "Strict", + "Common.Views.ReviewChanges.strStrictDesc": "Use the 'Save' button to sync the changes you and others make.", + "Common.Views.ReviewChanges.tipAcceptCurrent": "Accept current change", + "Common.Views.ReviewChanges.tipCoAuthMode": "Set co-editing mode", + "Common.Views.ReviewChanges.tipCommentRem": "Remove comments", + "Common.Views.ReviewChanges.tipCommentRemCurrent": "Remove current comments", + "Common.Views.ReviewChanges.tipCommentResolve": "Resolve comments", + "Common.Views.ReviewChanges.tipCommentResolveCurrent": "Resolve current comments", + "Common.Views.ReviewChanges.tipHistory": "Show version history", + "Common.Views.ReviewChanges.tipRejectCurrent": "Reject current change", + "Common.Views.ReviewChanges.tipReview": "Track changes", + "Common.Views.ReviewChanges.tipReviewView": "Select the mode you want the changes to be displayed", + "Common.Views.ReviewChanges.tipSetDocLang": "Set document language", + "Common.Views.ReviewChanges.tipSetSpelling": "Spell checking", + "Common.Views.ReviewChanges.tipSharing": "Manage document access rights", + "Common.Views.ReviewChanges.txtAccept": "Accept", + "Common.Views.ReviewChanges.txtAcceptAll": "Accept All Changes", + "Common.Views.ReviewChanges.txtAcceptChanges": "Accept changes", + "Common.Views.ReviewChanges.txtAcceptCurrent": "Accept Current Change", + "Common.Views.ReviewChanges.txtChat": "Chat", + "Common.Views.ReviewChanges.txtClose": "Close", + "Common.Views.ReviewChanges.txtCoAuthMode": "Co-editing Mode", + "Common.Views.ReviewChanges.txtCommentRemAll": "Remove All Comments", + "Common.Views.ReviewChanges.txtCommentRemCurrent": "Remove Current Comments", + "Common.Views.ReviewChanges.txtCommentRemMy": "Remove My Comments", + "Common.Views.ReviewChanges.txtCommentRemMyCurrent": "Remove My Current Comments", + "Common.Views.ReviewChanges.txtCommentRemove": "Remove", + "Common.Views.ReviewChanges.txtCommentResolve": "Resolve", + "Common.Views.ReviewChanges.txtCommentResolveAll": "Resolve All Comments", + "Common.Views.ReviewChanges.txtCommentResolveCurrent": "Resolve Current Comments", + "Common.Views.ReviewChanges.txtCommentResolveMy": "Resolve My Comments", + "Common.Views.ReviewChanges.txtCommentResolveMyCurrent": "Resolve My Current Comments", + "Common.Views.ReviewChanges.txtDocLang": "Language", + "Common.Views.ReviewChanges.txtFinal": "All changes accepted (Preview)", + "Common.Views.ReviewChanges.txtFinalCap": "Final", + "Common.Views.ReviewChanges.txtHistory": "Version History", + "Common.Views.ReviewChanges.txtMarkup": "All changes (Editing)", + "Common.Views.ReviewChanges.txtMarkupCap": "Markup", + "Common.Views.ReviewChanges.txtNext": "Next", + "Common.Views.ReviewChanges.txtOriginal": "All changes rejected (Preview)", + "Common.Views.ReviewChanges.txtOriginalCap": "Original", + "Common.Views.ReviewChanges.txtPrev": "Previous", + "Common.Views.ReviewChanges.txtReject": "Reject", + "Common.Views.ReviewChanges.txtRejectAll": "Reject All Changes", + "Common.Views.ReviewChanges.txtRejectChanges": "Reject changes", + "Common.Views.ReviewChanges.txtRejectCurrent": "Reject Current Change", + "Common.Views.ReviewChanges.txtSharing": "Sharing", + "Common.Views.ReviewChanges.txtSpelling": "Spell Checking", + "Common.Views.ReviewChanges.txtTurnon": "Track Changes", + "Common.Views.ReviewChanges.txtView": "Display Mode", + "Common.Views.ReviewPopover.textAdd": "Add", + "Common.Views.ReviewPopover.textAddReply": "Add Reply", + "Common.Views.ReviewPopover.textCancel": "Cancel", + "Common.Views.ReviewPopover.textClose": "Close", + "Common.Views.ReviewPopover.textEdit": "OK", + "Common.Views.ReviewPopover.textMention": "+mention will provide access to the document and send an email", + "Common.Views.ReviewPopover.textMentionNotify": "+mention will notify the user via email", + "Common.Views.ReviewPopover.textOpenAgain": "Open Again", + "Common.Views.ReviewPopover.textReply": "Reply", + "Common.Views.ReviewPopover.textResolve": "Resolve", + "Common.Views.SaveAsDlg.textLoading": "Loading", + "Common.Views.SaveAsDlg.textTitle": "Folder for save", + "Common.Views.SelectFileDlg.textLoading": "Loading", + "Common.Views.SelectFileDlg.textTitle": "Select Data Source", + "Common.Views.SignDialog.textBold": "Bold", + "Common.Views.SignDialog.textCertificate": "Certificate", + "Common.Views.SignDialog.textChange": "Change", + "Common.Views.SignDialog.textInputName": "Input signer name", + "Common.Views.SignDialog.textItalic": "Italic", + "Common.Views.SignDialog.textNameError": "Signer name must not be empty.", + "Common.Views.SignDialog.textPurpose": "Purpose for signing this document", + "Common.Views.SignDialog.textSelect": "Select", + "Common.Views.SignDialog.textSelectImage": "Select Image", + "Common.Views.SignDialog.textSignature": "Signature looks as", + "Common.Views.SignDialog.textTitle": "Sign Document", + "Common.Views.SignDialog.textUseImage": "or click 'Select Image' to use a picture as signature", + "Common.Views.SignDialog.textValid": "Valid from %1 to %2", + "Common.Views.SignDialog.tipFontName": "Font Name", + "Common.Views.SignDialog.tipFontSize": "Font Size", + "Common.Views.SignSettingsDialog.textAllowComment": "Allow signer to add comment in the signature dialog", + "Common.Views.SignSettingsDialog.textInfo": "Signer Info", + "Common.Views.SignSettingsDialog.textInfoEmail": "E-mail", + "Common.Views.SignSettingsDialog.textInfoName": "Name", + "Common.Views.SignSettingsDialog.textInfoTitle": "Signer Title", + "Common.Views.SignSettingsDialog.textInstructions": "Instructions for Signer", + "Common.Views.SignSettingsDialog.textShowDate": "Show sign date in signature line", + "Common.Views.SignSettingsDialog.textTitle": "Signature Setup", + "Common.Views.SignSettingsDialog.txtEmpty": "This field is required", + "Common.Views.SymbolTableDialog.textCharacter": "Character", + "Common.Views.SymbolTableDialog.textCode": "Unicode HEX value", + "Common.Views.SymbolTableDialog.textCopyright": "Copyright Sign", + "Common.Views.SymbolTableDialog.textDCQuote": "Closing Double Quote", + "Common.Views.SymbolTableDialog.textDOQuote": "Opening Double Quote", + "Common.Views.SymbolTableDialog.textEllipsis": "Horizontal Ellipsis", + "Common.Views.SymbolTableDialog.textEmDash": "Em Dash", + "Common.Views.SymbolTableDialog.textEmSpace": "Em Space", + "Common.Views.SymbolTableDialog.textEnDash": "En Dash", + "Common.Views.SymbolTableDialog.textEnSpace": "En Space", + "Common.Views.SymbolTableDialog.textFont": "Font", + "Common.Views.SymbolTableDialog.textNBHyphen": "Non-breaking Hyphen", + "Common.Views.SymbolTableDialog.textNBSpace": "No-break Space", + "Common.Views.SymbolTableDialog.textPilcrow": "Pilcrow Sign", + "Common.Views.SymbolTableDialog.textQEmSpace": "1/4 Em Space", + "Common.Views.SymbolTableDialog.textRange": "Range", + "Common.Views.SymbolTableDialog.textRecent": "Recently used symbols", + "Common.Views.SymbolTableDialog.textRegistered": "Registered Sign", + "Common.Views.SymbolTableDialog.textSCQuote": "Closing Single Quote", + "Common.Views.SymbolTableDialog.textSection": "Section Sign", + "Common.Views.SymbolTableDialog.textShortcut": "Shortcut key", + "Common.Views.SymbolTableDialog.textSHyphen": "Soft Hyphen", + "Common.Views.SymbolTableDialog.textSOQuote": "Opening Single Quote", + "Common.Views.SymbolTableDialog.textSpecial": "Special characters", + "Common.Views.SymbolTableDialog.textSymbols": "Symbols", + "Common.Views.SymbolTableDialog.textTitle": "Symbol", + "Common.Views.SymbolTableDialog.textTradeMark": "Trademark Symbol", + "Common.Views.UserNameDialog.textDontShow": "Don't ask me again", + "Common.Views.UserNameDialog.textLabel": "Label:", + "Common.Views.UserNameDialog.textLabelError": "Label must not be empty.", + "SSE.Controllers.DataTab.textColumns": "Columns", + "SSE.Controllers.DataTab.textEmptyUrl": "You need to specify URL.", + "SSE.Controllers.DataTab.textRows": "Rows", + "SSE.Controllers.DataTab.textWizard": "Text to Columns", + "SSE.Controllers.DataTab.txtDataValidation": "Data Validation", + "SSE.Controllers.DataTab.txtExpand": "Expand", + "SSE.Controllers.DataTab.txtExpandRemDuplicates": "The data next to the selection will not be removed. Do you want to expand the selection to include the adjacent data or continue with the currently selected cells only?", + "SSE.Controllers.DataTab.txtExtendDataValidation": "The selection contains some cells without Data Validation settings.
Do you want to extend Data Validation to these cells?", + "SSE.Controllers.DataTab.txtImportWizard": "Text Import Wizard", + "SSE.Controllers.DataTab.txtRemDuplicates": "Remove Duplicates", + "SSE.Controllers.DataTab.txtRemoveDataValidation": "The selection contains more than one type of validation.
Erase current settings and continue?", + "SSE.Controllers.DataTab.txtRemSelected": "Remove in selected", + "SSE.Controllers.DataTab.txtUrlTitle": "Paste a data URL", + "SSE.Controllers.DocumentHolder.alignmentText": "Alignment", + "SSE.Controllers.DocumentHolder.centerText": "Center", + "SSE.Controllers.DocumentHolder.deleteColumnText": "Delete Column", + "SSE.Controllers.DocumentHolder.deleteRowText": "Delete Row", + "SSE.Controllers.DocumentHolder.deleteText": "Delete", + "SSE.Controllers.DocumentHolder.errorInvalidLink": "The link reference does not exist. Please correct the link or delete it.", + "SSE.Controllers.DocumentHolder.guestText": "Guest", + "SSE.Controllers.DocumentHolder.insertColumnLeftText": "Column Left", + "SSE.Controllers.DocumentHolder.insertColumnRightText": "Column Right", + "SSE.Controllers.DocumentHolder.insertRowAboveText": "Row Above", + "SSE.Controllers.DocumentHolder.insertRowBelowText": "Row Below", + "SSE.Controllers.DocumentHolder.insertText": "Insert", + "SSE.Controllers.DocumentHolder.leftText": "Left", + "SSE.Controllers.DocumentHolder.notcriticalErrorTitle": "Warning", + "SSE.Controllers.DocumentHolder.rightText": "Right", + "SSE.Controllers.DocumentHolder.textAutoCorrectSettings": "AutoCorrect options", + "SSE.Controllers.DocumentHolder.textChangeColumnWidth": "Column Width {0} symbols ({1} pixels)", + "SSE.Controllers.DocumentHolder.textChangeRowHeight": "Row Height {0} points ({1} pixels)", + "SSE.Controllers.DocumentHolder.textCtrlClick": "Click the link to open it or click and hold the mouse button to select the cell.", + "SSE.Controllers.DocumentHolder.textInsertLeft": "Insert Left", + "SSE.Controllers.DocumentHolder.textInsertTop": "Insert Top", + "SSE.Controllers.DocumentHolder.textPasteSpecial": "Paste special", + "SSE.Controllers.DocumentHolder.textStopExpand": "Stop automatically expanding tables", + "SSE.Controllers.DocumentHolder.textSym": "sym", + "SSE.Controllers.DocumentHolder.tipIsLocked": "This element is being edited by another user.", + "SSE.Controllers.DocumentHolder.txtAboveAve": "Above average", + "SSE.Controllers.DocumentHolder.txtAddBottom": "Add bottom border", + "SSE.Controllers.DocumentHolder.txtAddFractionBar": "Add fraction bar", + "SSE.Controllers.DocumentHolder.txtAddHor": "Add horizontal line", + "SSE.Controllers.DocumentHolder.txtAddLB": "Add left bottom line", + "SSE.Controllers.DocumentHolder.txtAddLeft": "Add left border", + "SSE.Controllers.DocumentHolder.txtAddLT": "Add left top line", + "SSE.Controllers.DocumentHolder.txtAddRight": "Add right border", + "SSE.Controllers.DocumentHolder.txtAddTop": "Add top border", + "SSE.Controllers.DocumentHolder.txtAddVer": "Add vertical line", + "SSE.Controllers.DocumentHolder.txtAlignToChar": "Align to character", + "SSE.Controllers.DocumentHolder.txtAll": "(All)", + "SSE.Controllers.DocumentHolder.txtAnd": "and", + "SSE.Controllers.DocumentHolder.txtBegins": "Begins with", + "SSE.Controllers.DocumentHolder.txtBelowAve": "Below average", + "SSE.Controllers.DocumentHolder.txtBlanks": "(Blanks)", + "SSE.Controllers.DocumentHolder.txtBorderProps": "Border properties", + "SSE.Controllers.DocumentHolder.txtBottom": "Bottom", + "SSE.Controllers.DocumentHolder.txtColumn": "Column", + "SSE.Controllers.DocumentHolder.txtColumnAlign": "Column alignment", + "SSE.Controllers.DocumentHolder.txtContains": "Contains", + "SSE.Controllers.DocumentHolder.txtDecreaseArg": "Decrease argument size", + "SSE.Controllers.DocumentHolder.txtDeleteArg": "Delete argument", + "SSE.Controllers.DocumentHolder.txtDeleteBreak": "Delete manual break", + "SSE.Controllers.DocumentHolder.txtDeleteChars": "Delete enclosing characters", + "SSE.Controllers.DocumentHolder.txtDeleteCharsAndSeparators": "Delete enclosing characters and separators", + "SSE.Controllers.DocumentHolder.txtDeleteEq": "Delete equation", + "SSE.Controllers.DocumentHolder.txtDeleteGroupChar": "Delete char", + "SSE.Controllers.DocumentHolder.txtDeleteRadical": "Delete radical", + "SSE.Controllers.DocumentHolder.txtEnds": "Ends with", + "SSE.Controllers.DocumentHolder.txtEquals": "Equals", + "SSE.Controllers.DocumentHolder.txtEqualsToCellColor": "Equal to cell color", + "SSE.Controllers.DocumentHolder.txtEqualsToFontColor": "Equal to font color", + "SSE.Controllers.DocumentHolder.txtExpand": "Expand and sort", + "SSE.Controllers.DocumentHolder.txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "SSE.Controllers.DocumentHolder.txtFilterBottom": "Bottom", + "SSE.Controllers.DocumentHolder.txtFilterTop": "Top", + "SSE.Controllers.DocumentHolder.txtFractionLinear": "Change to linear fraction", + "SSE.Controllers.DocumentHolder.txtFractionSkewed": "Change to skewed fraction", + "SSE.Controllers.DocumentHolder.txtFractionStacked": "Change to stacked fraction", + "SSE.Controllers.DocumentHolder.txtGreater": "Greater than", + "SSE.Controllers.DocumentHolder.txtGreaterEquals": "Greater than or equal to", + "SSE.Controllers.DocumentHolder.txtGroupCharOver": "Char over text", + "SSE.Controllers.DocumentHolder.txtGroupCharUnder": "Char under text", + "SSE.Controllers.DocumentHolder.txtHeight": "Height", + "SSE.Controllers.DocumentHolder.txtHideBottom": "Hide bottom border", + "SSE.Controllers.DocumentHolder.txtHideBottomLimit": "Hide bottom limit", + "SSE.Controllers.DocumentHolder.txtHideCloseBracket": "Hide closing bracket", + "SSE.Controllers.DocumentHolder.txtHideDegree": "Hide degree", + "SSE.Controllers.DocumentHolder.txtHideHor": "Hide horizontal line", + "SSE.Controllers.DocumentHolder.txtHideLB": "Hide left bottom line", + "SSE.Controllers.DocumentHolder.txtHideLeft": "Hide left border", + "SSE.Controllers.DocumentHolder.txtHideLT": "Hide left top line", + "SSE.Controllers.DocumentHolder.txtHideOpenBracket": "Hide opening bracket", + "SSE.Controllers.DocumentHolder.txtHidePlaceholder": "Hide placeholder", + "SSE.Controllers.DocumentHolder.txtHideRight": "Hide right border", + "SSE.Controllers.DocumentHolder.txtHideTop": "Hide top border", + "SSE.Controllers.DocumentHolder.txtHideTopLimit": "Hide top limit", + "SSE.Controllers.DocumentHolder.txtHideVer": "Hide vertical line", + "SSE.Controllers.DocumentHolder.txtImportWizard": "Text Import Wizard", + "SSE.Controllers.DocumentHolder.txtIncreaseArg": "Increase argument size", + "SSE.Controllers.DocumentHolder.txtInsertArgAfter": "Insert argument after", + "SSE.Controllers.DocumentHolder.txtInsertArgBefore": "Insert argument before", + "SSE.Controllers.DocumentHolder.txtInsertBreak": "Insert manual break", + "SSE.Controllers.DocumentHolder.txtInsertEqAfter": "Insert equation after", + "SSE.Controllers.DocumentHolder.txtInsertEqBefore": "Insert equation before", + "SSE.Controllers.DocumentHolder.txtItems": "items", + "SSE.Controllers.DocumentHolder.txtKeepTextOnly": "Keep text only", + "SSE.Controllers.DocumentHolder.txtLess": "Less than", + "SSE.Controllers.DocumentHolder.txtLessEquals": "Less than or equal to", + "SSE.Controllers.DocumentHolder.txtLimitChange": "Change limits location", + "SSE.Controllers.DocumentHolder.txtLimitOver": "Limit over text", + "SSE.Controllers.DocumentHolder.txtLimitUnder": "Limit under text", + "SSE.Controllers.DocumentHolder.txtMatchBrackets": "Match brackets to argument height", + "SSE.Controllers.DocumentHolder.txtMatrixAlign": "Matrix alignment", + "SSE.Controllers.DocumentHolder.txtNoChoices": "There are no choices for filling the cell.
Only text values from the column can be selected for replacement.", + "SSE.Controllers.DocumentHolder.txtNotBegins": "Does not begin with", + "SSE.Controllers.DocumentHolder.txtNotContains": "Does not contain", + "SSE.Controllers.DocumentHolder.txtNotEnds": "Does not end with", + "SSE.Controllers.DocumentHolder.txtNotEquals": "Does not equal", + "SSE.Controllers.DocumentHolder.txtOr": "or", + "SSE.Controllers.DocumentHolder.txtOverbar": "Bar over text", + "SSE.Controllers.DocumentHolder.txtPaste": "Paste", + "SSE.Controllers.DocumentHolder.txtPasteBorders": "Formula without borders", + "SSE.Controllers.DocumentHolder.txtPasteColWidths": "Formula + column width", + "SSE.Controllers.DocumentHolder.txtPasteDestFormat": "Destination formatting", + "SSE.Controllers.DocumentHolder.txtPasteFormat": "Paste only formatting", + "SSE.Controllers.DocumentHolder.txtPasteFormulaNumFormat": "Formula + number format", + "SSE.Controllers.DocumentHolder.txtPasteFormulas": "Paste only formula", + "SSE.Controllers.DocumentHolder.txtPasteKeepSourceFormat": "Formula + all formatting", + "SSE.Controllers.DocumentHolder.txtPasteLink": "Paste link", + "SSE.Controllers.DocumentHolder.txtPasteLinkPicture": "Linked picture", + "SSE.Controllers.DocumentHolder.txtPasteMerge": "Merge conditional formatting", + "SSE.Controllers.DocumentHolder.txtPastePicture": "Picture", + "SSE.Controllers.DocumentHolder.txtPasteSourceFormat": "Source formatting", + "SSE.Controllers.DocumentHolder.txtPasteTranspose": "Transpose", + "SSE.Controllers.DocumentHolder.txtPasteValFormat": "Value + all formatting", + "SSE.Controllers.DocumentHolder.txtPasteValNumFormat": "Value + number format", + "SSE.Controllers.DocumentHolder.txtPasteValues": "Paste only value", + "SSE.Controllers.DocumentHolder.txtPercent": "percent", + "SSE.Controllers.DocumentHolder.txtRedoExpansion": "Redo table autoexpansion", + "SSE.Controllers.DocumentHolder.txtRemFractionBar": "Remove fraction bar", + "SSE.Controllers.DocumentHolder.txtRemLimit": "Remove limit", + "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Remove accent character", + "SSE.Controllers.DocumentHolder.txtRemoveBar": "Remove bar", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Do you want to remove this signature?
It can't be undone.", + "SSE.Controllers.DocumentHolder.txtRemScripts": "Remove scripts", + "SSE.Controllers.DocumentHolder.txtRemSubscript": "Remove subscript", + "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Remove superscript", + "SSE.Controllers.DocumentHolder.txtRowHeight": "Row Height", + "SSE.Controllers.DocumentHolder.txtScriptsAfter": "Scripts after text", + "SSE.Controllers.DocumentHolder.txtScriptsBefore": "Scripts before text", + "SSE.Controllers.DocumentHolder.txtShowBottomLimit": "Show bottom limit", + "SSE.Controllers.DocumentHolder.txtShowCloseBracket": "Show closing bracket", + "SSE.Controllers.DocumentHolder.txtShowDegree": "Show degree", + "SSE.Controllers.DocumentHolder.txtShowOpenBracket": "Show opening bracket", + "SSE.Controllers.DocumentHolder.txtShowPlaceholder": "Show placeholder", + "SSE.Controllers.DocumentHolder.txtShowTopLimit": "Show top limit", + "SSE.Controllers.DocumentHolder.txtSorting": "Sorting", + "SSE.Controllers.DocumentHolder.txtSortSelected": "Sort selected", + "SSE.Controllers.DocumentHolder.txtStretchBrackets": "Stretch brackets", + "SSE.Controllers.DocumentHolder.txtTop": "Top", + "SSE.Controllers.DocumentHolder.txtUnderbar": "Bar under text", + "SSE.Controllers.DocumentHolder.txtUndoExpansion": "Undo table autoexpansion", + "SSE.Controllers.DocumentHolder.txtUseTextImport": "Use text import wizard", + "SSE.Controllers.DocumentHolder.txtWidth": "Width", + "SSE.Controllers.DocumentHolder.txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", + "SSE.Controllers.FormulaDialog.sCategoryAll": "All", + "SSE.Controllers.FormulaDialog.sCategoryCube": "Cube", + "SSE.Controllers.FormulaDialog.sCategoryDatabase": "Database", + "SSE.Controllers.FormulaDialog.sCategoryDateAndTime": "Date and time", + "SSE.Controllers.FormulaDialog.sCategoryEngineering": "Engineering", + "SSE.Controllers.FormulaDialog.sCategoryFinancial": "Financial", + "SSE.Controllers.FormulaDialog.sCategoryInformation": "Information", + "SSE.Controllers.FormulaDialog.sCategoryLast10": "10 last used", + "SSE.Controllers.FormulaDialog.sCategoryLogical": "Logical", + "SSE.Controllers.FormulaDialog.sCategoryLookupAndReference": "Lookup and reference", + "SSE.Controllers.FormulaDialog.sCategoryMathematic": "Math and trigonometry", + "SSE.Controllers.FormulaDialog.sCategoryStatistical": "Statistical", + "SSE.Controllers.FormulaDialog.sCategoryTextAndData": "Text and data", + "SSE.Controllers.LeftMenu.newDocumentTitle": "Unnamed spreadsheet", + "SSE.Controllers.LeftMenu.textByColumns": "By columns", + "SSE.Controllers.LeftMenu.textByRows": "By rows", + "SSE.Controllers.LeftMenu.textFormulas": "Formulas", + "SSE.Controllers.LeftMenu.textItemEntireCell": "Entire cell contents", + "SSE.Controllers.LeftMenu.textLookin": "Look in", + "SSE.Controllers.LeftMenu.textNoTextFound": "The data you have been searching for could not be found. Please adjust your search options.", + "SSE.Controllers.LeftMenu.textReplaceSkipped": "The replacement has been made. {0} occurrences were skipped.", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "The search has been done. Occurrences replaced: {0}", + "SSE.Controllers.LeftMenu.textSearch": "Search", + "SSE.Controllers.LeftMenu.textSheet": "Sheet", + "SSE.Controllers.LeftMenu.textValues": "Values", + "SSE.Controllers.LeftMenu.textWarning": "Warning", + "SSE.Controllers.LeftMenu.textWithin": "Within", + "SSE.Controllers.LeftMenu.textWorkbook": "Workbook", + "SSE.Controllers.LeftMenu.txtUntitled": "Untitled", + "SSE.Controllers.LeftMenu.warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "SSE.Controllers.LeftMenu.textLoadHistory": "Loading version history...", + "SSE.Controllers.Main.confirmMoveCellRange": "The destination cell range can contain data. Continue the operation?", + "SSE.Controllers.Main.confirmPutMergeRange": "The source data contained merged cells.
They had been unmerged before they were pasted into the table.", + "SSE.Controllers.Main.confirmReplaceFormulaInTable": "Formulas in the header row will be removed and converted to static text.
Do you want to continue?", + "SSE.Controllers.Main.convertationTimeoutText": "Conversion timeout exceeded.", + "SSE.Controllers.Main.criticalErrorExtText": "Press \"OK\" to return to document list.", + "SSE.Controllers.Main.criticalErrorTitle": "Error", + "SSE.Controllers.Main.downloadErrorText": "Download failed.", + "SSE.Controllers.Main.downloadTextText": "Downloading spreadsheet...", + "SSE.Controllers.Main.downloadTitleText": "Downloading Spreadsheet", + "SSE.Controllers.Main.errNoDuplicates": "No duplicate values found.", + "SSE.Controllers.Main.errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please contact your Document Server administrator.", + "SSE.Controllers.Main.errorArgsRange": "An error in the entered formula.
Incorrect argument range is used.", + "SSE.Controllers.Main.errorAutoFilterChange": "The operation is not allowed, as it is attempting to shift cells in a table on your worksheet.", + "SSE.Controllers.Main.errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of the table.
Select another data range so that the whole table was shifted and try again.", + "SSE.Controllers.Main.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range different from the existing one and try again.", + "SSE.Controllers.Main.errorAutoFilterHiddenRange": "The operation cannot be performed because the area contains filtered cells.
Please unhide the filtered elements and try again.", + "SSE.Controllers.Main.errorBadImageUrl": "Image URL is incorrect", + "SSE.Controllers.Main.errorCannotUngroup": "Cannot ungroup. To start an outline, select the detail rows or columns and group them.", + "SSE.Controllers.Main.errorChangeArray": "You cannot change part of an array.", + "SSE.Controllers.Main.errorChangeFilteredRange": "This will change a filtered range on your worksheet.
To complete this task, please remove AutoFilters.", + "SSE.Controllers.Main.errorCoAuthoringDisconnect": "Server connection lost. The document cannot be edited right now.", + "SSE.Controllers.Main.errorConnectToServer": "The document could not be saved. Please check connection settings or contact your administrator.
When you click the 'OK' button, you will be prompted to download the document.", + "SSE.Controllers.Main.errorCopyMultiselectArea": "This command cannot be used with multiple selections.
Select a single range and try again.", + "SSE.Controllers.Main.errorCountArg": "An error in the entered formula.
Incorrect number of arguments is used.", + "SSE.Controllers.Main.errorCountArgExceed": "An error in the entered formula.
Number of arguments is exceeded.", + "SSE.Controllers.Main.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
at the moment as some of them are being edited.", + "SSE.Controllers.Main.errorDatabaseConnection": "External error.
Database connection error. Please contact support in case the error persists.", + "SSE.Controllers.Main.errorDataEncrypted": "Encrypted changes have been received, they cannot be deciphered.", + "SSE.Controllers.Main.errorDataRange": "Incorrect data range.", + "SSE.Controllers.Main.errorDataValidate": "The value you entered is not valid.
A user has restricted values that can be entered into this cell.", + "SSE.Controllers.Main.errorDefaultMessage": "Error code: %1", + "SSE.Controllers.Main.errorEditingDownloadas": "An error occurred during the work with the document.
Use the 'Download as...' option to save the file backup copy to your computer hard drive.", + "SSE.Controllers.Main.errorEditingSaveas": "An error occurred during the work with the document.
Use the 'Save as...' option to save the file backup copy to your computer hard drive.", + "SSE.Controllers.Main.errorEditView": "The existing sheet view cannot be edited and the new ones cannot be created at the moment as some of them are being edited.", + "SSE.Controllers.Main.errorEmailClient": "No email client could be found.", + "SSE.Controllers.Main.errorFilePassProtect": "The file is password protected and cannot be opened.", + "SSE.Controllers.Main.errorFileRequest": "External error.
File request error. Please contact support in case the error persists.", + "SSE.Controllers.Main.errorFileSizeExceed": "The file size exceeds the limitation set for your server.
Please contact your Document Server administrator for details.", + "SSE.Controllers.Main.errorFileVKey": "External error.
Incorrect security key. Please contact support in case the error persists.", + "SSE.Controllers.Main.errorFillRange": "Could not fill the selected range of cells.
All the merged cells need to be the same size.", + "SSE.Controllers.Main.errorForceSave": "An error occurred while saving the file. Please use the 'Download as' option to save the file to your computer hard drive or try again later.", + "SSE.Controllers.Main.errorFormulaName": "An error in the entered formula.
Incorrect formula name is used.", + "SSE.Controllers.Main.errorFormulaParsing": "Internal error while parsing the formula.", + "SSE.Controllers.Main.errorFrmlMaxLength": "The length of your formula exceeds the limit of 8192 characters.
Please edit it and try again.", + "SSE.Controllers.Main.errorFrmlMaxReference": "You cannot enter this formula because it has too many values,
cell references, and/or names.", + "SSE.Controllers.Main.errorFrmlMaxTextLength": "Text values in formulas are limited to 255 characters.
Use the CONCATENATE function or concatenation operator (&).", + "SSE.Controllers.Main.errorFrmlWrongReferences": "The function refers to a sheet that does not exist.
Please check the data and try again.", + "SSE.Controllers.Main.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.
Select a range so that the first table row was on the same row
and the resulting table overlapped the current one.", + "SSE.Controllers.Main.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.
Select a range which does not include other tables.", + "SSE.Controllers.Main.errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", + "SSE.Controllers.Main.errorKeyEncrypt": "Unknown key descriptor", + "SSE.Controllers.Main.errorKeyExpire": "Key descriptor expired", + "SSE.Controllers.Main.errorLabledColumnsPivot": "To create a pivot table, use data that is organized as a list with labeled columns.", + "SSE.Controllers.Main.errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", + "SSE.Controllers.Main.errorLocationOrDataRangeError": "The reference for the location or data range is not valid.", + "SSE.Controllers.Main.errorLockedAll": "The operation could not be done as the sheet has been locked by another user.", + "SSE.Controllers.Main.errorLockedCellPivot": "You cannot change data inside a pivot table.", + "SSE.Controllers.Main.errorLockedWorksheetRename": "The sheet cannot be renamed at the moment as it is being renamed by another user", + "SSE.Controllers.Main.errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "SSE.Controllers.Main.errorMoveRange": "Cannot change part of a merged cell", + "SSE.Controllers.Main.errorMoveSlicerError": "Table slicers cannot be copied from one workbook to another.
Try again by selecting the entire table and the slicers.", + "SSE.Controllers.Main.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "SSE.Controllers.Main.errorNoDataToParse": "No data was selected to parse.", + "SSE.Controllers.Main.errorOpenWarning": "One of the file formulas exceeds the limit of 8192 characters.
The formula was removed.", + "SSE.Controllers.Main.errorOperandExpected": "The entered function syntax is not correct. Please check if you are missing one of the parentheses - '(' or ')'.", + "SSE.Controllers.Main.errorPasteMaxRange": "The copy and paste area do not match.
Please select an area with the same size or click the first cell in a row to paste the copied cells.", + "SSE.Controllers.Main.errorPasteMultiSelect": "This action cannot be done on a multiple range selection.
Select a single range and try again.", + "SSE.Controllers.Main.errorPasteSlicerError": "Table slicers cannot be copied from one workbook to another.", + "SSE.Controllers.Main.errorPivotGroup": "Cannot group that selection.", + "SSE.Controllers.Main.errorPivotOverlap": "A pivot table report cannot overlap a table.", + "SSE.Controllers.Main.errorPivotWithoutUnderlying": "The Pivot Table report was saved without the underlying data.
Use the 'Refresh' button to update the report.", + "SSE.Controllers.Main.errorPrintMaxPagesCount": "Unfortunately, it is not possible to print more than 1500 pages at once in the current program version.
This restriction will be removed in the upcoming releases.", + "SSE.Controllers.Main.errorProcessSaveResult": "Saving failed", + "SSE.Controllers.Main.errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", + "SSE.Controllers.Main.errorSessionAbsolute": "The document editing session has expired. Please reload the page.", + "SSE.Controllers.Main.errorSessionIdle": "The document has not been edited for quite a long time. Please reload the page.", + "SSE.Controllers.Main.errorSessionToken": "The connection to the server has been interrupted. Please reload the page.", + "SSE.Controllers.Main.errorSetPassword": "Password could not be set.", + "SSE.Controllers.Main.errorSingleColumnOrRowError": "Location reference is not valid because the cells are not all in the same column or row.
Select cells that are all in a single column or row.", + "SSE.Controllers.Main.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", + "SSE.Controllers.Main.errorToken": "The document security token is not correctly formed.
Please contact your Document Server administrator.", + "SSE.Controllers.Main.errorTokenExpire": "The document security token has expired.
Please contact your Document Server administrator.", + "SSE.Controllers.Main.errorUnexpectedGuid": "External error.
Unexpected GUID. Please contact support in case the error persists.", + "SSE.Controllers.Main.errorUpdateVersion": "The file version has been changed. The page will be reloaded.", + "SSE.Controllers.Main.errorUpdateVersionOnDisconnect": "Internet connection has been restored, and the file version has been changed.
Before you can continue working, you need to download the file or copy its content to make sure nothing is lost, and then reload this page.", + "SSE.Controllers.Main.errorUserDrop": "The file cannot be accessed right now.", + "SSE.Controllers.Main.errorUsersExceed": "The number of users allowed by the pricing plan was exceeded", + "SSE.Controllers.Main.errorViewerDisconnect": "Connection is lost. You can still view the document,
but will not be able to download or print it until the connection is restored and page is reloaded.", + "SSE.Controllers.Main.errorWrongBracketsCount": "An error in the entered formula.
Wrong number of brackets is used.", + "SSE.Controllers.Main.errorWrongOperator": "An error in the entered formula. Wrong operator is used.
Please correct the error.", + "SSE.Controllers.Main.errorPasswordIsNotCorrect": "The password you supplied is not correct.
Verify that the CAPS LOCK key is off and be sure to use the correct capitalization.", + "SSE.Controllers.Main.errorDeleteColumnContainsLockedCell": "You are trying to delete a column that contains a locked cell. Locked cells cannot be deleted while the worksheet is protected.
To delete a locked cell, unprotect the sheet. You might be requested to enter a password.", + "SSE.Controllers.Main.errorDeleteRowContainsLockedCell": "You are trying to delete a row that contains a locked cell. Locked cells cannot be deleted while the worksheet is protected.
To delete a locked cell, unprotect the sheet. You might be requested to enter a password.", + "SSE.Controllers.Main.errRemDuplicates": "Duplicate values found and deleted: {0}, unique values left: {1}.", + "SSE.Controllers.Main.leavePageText": "You have unsaved changes in this spreadsheet. Click 'Stay on this Page' then 'Save' to save them. Click 'Leave this Page' to discard all the unsaved changes.", + "SSE.Controllers.Main.leavePageTextOnClose": "All unsaved changes in this spreadsheet will be lost.
Click \"Cancel\" then \"Save\" to save them. Click \"OK\" to discard all the unsaved changes.", + "SSE.Controllers.Main.loadFontsTextText": "Loading data...", + "SSE.Controllers.Main.loadFontsTitleText": "Loading Data", + "SSE.Controllers.Main.loadFontTextText": "Loading data...", + "SSE.Controllers.Main.loadFontTitleText": "Loading Data", + "SSE.Controllers.Main.loadImagesTextText": "Loading images...", + "SSE.Controllers.Main.loadImagesTitleText": "Loading Images", + "SSE.Controllers.Main.loadImageTextText": "Loading image...", + "SSE.Controllers.Main.loadImageTitleText": "Loading Image", + "SSE.Controllers.Main.loadingDocumentTitleText": "Loading spreadsheet", + "SSE.Controllers.Main.notcriticalErrorTitle": "Warning", + "SSE.Controllers.Main.openErrorText": "An error has occurred while opening the file.", + "SSE.Controllers.Main.openTextText": "Opening spreadsheet...", + "SSE.Controllers.Main.openTitleText": "Opening Spreadsheet", + "SSE.Controllers.Main.pastInMergeAreaError": "Cannot change part of a merged cell", + "SSE.Controllers.Main.printTextText": "Printing spreadsheet...", + "SSE.Controllers.Main.printTitleText": "Printing Spreadsheet", + "SSE.Controllers.Main.reloadButtonText": "Reload Page", + "SSE.Controllers.Main.requestEditFailedMessageText": "Someone is editing this document right now. Please try again later.", + "SSE.Controllers.Main.requestEditFailedTitleText": "Access denied", + "SSE.Controllers.Main.saveErrorText": "An error has occurred while saving the file.", + "SSE.Controllers.Main.saveErrorTextDesktop": "This file cannot be saved or created.
Possible reasons are:
1. The file is read-only.
2. The file is being edited by other users.
3. The disk is full or corrupted.", + "SSE.Controllers.Main.savePreparingText": "Preparing to save", + "SSE.Controllers.Main.savePreparingTitle": "Preparing to save. Please wait...", + "SSE.Controllers.Main.saveTextText": "Saving spreadsheet...", + "SSE.Controllers.Main.saveTitleText": "Saving Spreadsheet", + "SSE.Controllers.Main.scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please reload the page.", + "SSE.Controllers.Main.textAnonymous": "Anonymous", + "SSE.Controllers.Main.textBuyNow": "Visit website", + "SSE.Controllers.Main.textClose": "Close", + "SSE.Controllers.Main.textCloseTip": "Click to close the tip", + "SSE.Controllers.Main.textConfirm": "Confirmation", + "SSE.Controllers.Main.textContactUs": "Contact sales", + "SSE.Controllers.Main.textCustomLoader": "Please note that according to the terms of the license you are not entitled to change the loader.
Please contact our Sales Department to get a quote.", + "SSE.Controllers.Main.textDisconnect": "Connection is lost", + "SSE.Controllers.Main.textGuest": "Guest", + "SSE.Controllers.Main.textHasMacros": "The file contains automatic macros.
Do you want to run macros?", + "SSE.Controllers.Main.textLoadingDocument": "Loading spreadsheet", + "SSE.Controllers.Main.textLongName": "Enter a name that is less than 128 characters.", + "SSE.Controllers.Main.textNo": "No", + "SSE.Controllers.Main.textNoLicenseTitle": "License limit reached", + "SSE.Controllers.Main.textPaidFeature": "Paid feature", + "SSE.Controllers.Main.textPleaseWait": "The operation might take more time than expected. Please wait...", + "SSE.Controllers.Main.textRecalcFormulas": "Calculating formulas...", + "SSE.Controllers.Main.textRemember": "Remember my choice for all files", + "SSE.Controllers.Main.textRenameError": "User name must not be empty.", + "SSE.Controllers.Main.textRenameLabel": "Enter a name to be used for collaboration", + "SSE.Controllers.Main.textShape": "Shape", + "SSE.Controllers.Main.textStrict": "Strict mode", + "SSE.Controllers.Main.textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.
Click the 'Strict mode' button to switch to the Strict co-editing mode to edit the file without other users interference and send your changes only after you save them. You can switch between the co-editing modes using the editor Advanced settings.", + "SSE.Controllers.Main.textTryUndoRedoWarn": "The Undo/Redo functions are disabled for the Fast co-editing mode.", + "SSE.Controllers.Main.textYes": "Yes", + "SSE.Controllers.Main.titleLicenseExp": "License expired", + "SSE.Controllers.Main.titleRecalcFormulas": "Calculating...", + "SSE.Controllers.Main.titleServerVersion": "Editor updated", + "SSE.Controllers.Main.txtAccent": "Accent", + "SSE.Controllers.Main.txtAll": "(All)", + "SSE.Controllers.Main.txtArt": "Your text here", + "SSE.Controllers.Main.txtBasicShapes": "Basic Shapes", + "SSE.Controllers.Main.txtBlank": "(blank)", + "SSE.Controllers.Main.txtButtons": "Buttons", + "SSE.Controllers.Main.txtByField": "%1 of %2", + "SSE.Controllers.Main.txtCallouts": "Callouts", + "SSE.Controllers.Main.txtCharts": "Charts", + "SSE.Controllers.Main.txtClearFilter": "Clear Filter (Alt+C)", + "SSE.Controllers.Main.txtColLbls": "Column Labels", + "SSE.Controllers.Main.txtColumn": "Column", + "SSE.Controllers.Main.txtConfidential": "Confidential", + "SSE.Controllers.Main.txtDate": "Date", + "SSE.Controllers.Main.txtDays": "Days", + "SSE.Controllers.Main.txtDiagramTitle": "Chart Title", + "SSE.Controllers.Main.txtEditingMode": "Set editing mode...", + "SSE.Controllers.Main.txtFiguredArrows": "Figured Arrows", + "SSE.Controllers.Main.txtFile": "File", + "SSE.Controllers.Main.txtGrandTotal": "Grand Total", + "SSE.Controllers.Main.txtGroup": "Group", + "SSE.Controllers.Main.txtHours": "Hours", + "SSE.Controllers.Main.txtLines": "Lines", + "SSE.Controllers.Main.txtMath": "Math", + "SSE.Controllers.Main.txtMinutes": "Minutes", + "SSE.Controllers.Main.txtMonths": "Months", + "SSE.Controllers.Main.txtMultiSelect": "Multi-Select (Alt+S)", + "SSE.Controllers.Main.txtOr": "%1 or %2", + "SSE.Controllers.Main.txtPage": "Page", + "SSE.Controllers.Main.txtPageOf": "Page %1 of %2", + "SSE.Controllers.Main.txtPages": "Pages", + "SSE.Controllers.Main.txtPreparedBy": "Prepared by", + "SSE.Controllers.Main.txtPrintArea": "Print_Area", + "SSE.Controllers.Main.txtQuarter": "Qtr", + "SSE.Controllers.Main.txtQuarters": "Quarters", + "SSE.Controllers.Main.txtRectangles": "Rectangles", + "SSE.Controllers.Main.txtRow": "Row", + "SSE.Controllers.Main.txtRowLbls": "Row Labels", + "SSE.Controllers.Main.txtSeconds": "Seconds", + "SSE.Controllers.Main.txtSeries": "Series", + "SSE.Controllers.Main.txtShape_accentBorderCallout1": "Line Callout 1 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentBorderCallout2": "Line Callout 2 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentBorderCallout3": "Line Callout 3 (Border and Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout1": "Line Callout 1 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout2": "Line Callout 2 (Accent Bar)", + "SSE.Controllers.Main.txtShape_accentCallout3": "Line Callout 3 (Accent Bar)", + "SSE.Controllers.Main.txtShape_actionButtonBackPrevious": "Back or Previous Button", + "SSE.Controllers.Main.txtShape_actionButtonBeginning": "Beginning Button", + "SSE.Controllers.Main.txtShape_actionButtonBlank": "Blank Button", + "SSE.Controllers.Main.txtShape_actionButtonDocument": "Document Button", + "SSE.Controllers.Main.txtShape_actionButtonEnd": "End Button", + "SSE.Controllers.Main.txtShape_actionButtonForwardNext": "Forward or Next Button", + "SSE.Controllers.Main.txtShape_actionButtonHelp": "Help Button", + "SSE.Controllers.Main.txtShape_actionButtonHome": "Home Button", + "SSE.Controllers.Main.txtShape_actionButtonInformation": "Information Button", + "SSE.Controllers.Main.txtShape_actionButtonMovie": "Movie Button", + "SSE.Controllers.Main.txtShape_actionButtonReturn": "Return Button", + "SSE.Controllers.Main.txtShape_actionButtonSound": "Sound Button", + "SSE.Controllers.Main.txtShape_arc": "Arc", + "SSE.Controllers.Main.txtShape_bentArrow": "Bent Arrow", + "SSE.Controllers.Main.txtShape_bentConnector5": "Elbow Connector", + "SSE.Controllers.Main.txtShape_bentConnector5WithArrow": "Elbow Arrow Connector", + "SSE.Controllers.Main.txtShape_bentConnector5WithTwoArrows": "Elbow Double-Arrow Connector", + "SSE.Controllers.Main.txtShape_bentUpArrow": "Bent Up Arrow", + "SSE.Controllers.Main.txtShape_bevel": "Bevel", + "SSE.Controllers.Main.txtShape_blockArc": "Block Arc", + "SSE.Controllers.Main.txtShape_borderCallout1": "Line Callout 1", + "SSE.Controllers.Main.txtShape_borderCallout2": "Line Callout 2", + "SSE.Controllers.Main.txtShape_borderCallout3": "Line Callout 3", + "SSE.Controllers.Main.txtShape_bracePair": "Double Brace", + "SSE.Controllers.Main.txtShape_callout1": "Line Callout 1 (No Border)", + "SSE.Controllers.Main.txtShape_callout2": "Line Callout 2 (No Border)", + "SSE.Controllers.Main.txtShape_callout3": "Line Callout 3 (No Border)", + "SSE.Controllers.Main.txtShape_can": "Can", + "SSE.Controllers.Main.txtShape_chevron": "Chevron", + "SSE.Controllers.Main.txtShape_chord": "Chord", + "SSE.Controllers.Main.txtShape_circularArrow": "Circular Arrow", + "SSE.Controllers.Main.txtShape_cloud": "Cloud", + "SSE.Controllers.Main.txtShape_cloudCallout": "Cloud Callout", + "SSE.Controllers.Main.txtShape_corner": "Corner", + "SSE.Controllers.Main.txtShape_cube": "Cube", + "SSE.Controllers.Main.txtShape_curvedConnector3": "Curved Connector", + "SSE.Controllers.Main.txtShape_curvedConnector3WithArrow": "Curved Arrow Connector", + "SSE.Controllers.Main.txtShape_curvedConnector3WithTwoArrows": "Curved Double-Arrow Connector", + "SSE.Controllers.Main.txtShape_curvedDownArrow": "Curved Down Arrow", + "SSE.Controllers.Main.txtShape_curvedLeftArrow": "Curved Left Arrow", + "SSE.Controllers.Main.txtShape_curvedRightArrow": "Curved Right Arrow", + "SSE.Controllers.Main.txtShape_curvedUpArrow": "Curved Up Arrow", + "SSE.Controllers.Main.txtShape_decagon": "Decagon", + "SSE.Controllers.Main.txtShape_diagStripe": "Diagonal Stripe", + "SSE.Controllers.Main.txtShape_diamond": "Diamond", + "SSE.Controllers.Main.txtShape_dodecagon": "Dodecagon", + "SSE.Controllers.Main.txtShape_donut": "Donut", + "SSE.Controllers.Main.txtShape_doubleWave": "Double Wave", + "SSE.Controllers.Main.txtShape_downArrow": "Down Arrow", + "SSE.Controllers.Main.txtShape_downArrowCallout": "Down Arrow Callout", + "SSE.Controllers.Main.txtShape_ellipse": "Ellipse", + "SSE.Controllers.Main.txtShape_ellipseRibbon": "Curved Down Ribbon", + "SSE.Controllers.Main.txtShape_ellipseRibbon2": "Curved Up Ribbon", + "SSE.Controllers.Main.txtShape_flowChartAlternateProcess": "Flowchart: Alternate Process", + "SSE.Controllers.Main.txtShape_flowChartCollate": "Flowchart: Collate", + "SSE.Controllers.Main.txtShape_flowChartConnector": "Flowchart: Connector", + "SSE.Controllers.Main.txtShape_flowChartDecision": "Flowchart: Decision", + "SSE.Controllers.Main.txtShape_flowChartDelay": "Flowchart: Delay", + "SSE.Controllers.Main.txtShape_flowChartDisplay": "Flowchart: Display", + "SSE.Controllers.Main.txtShape_flowChartDocument": "Flowchart: Document", + "SSE.Controllers.Main.txtShape_flowChartExtract": "Flowchart: Extract", + "SSE.Controllers.Main.txtShape_flowChartInputOutput": "Flowchart: Data", + "SSE.Controllers.Main.txtShape_flowChartInternalStorage": "Flowchart: Internal Storage", + "SSE.Controllers.Main.txtShape_flowChartMagneticDisk": "Flowchart: Magnetic Disk", + "SSE.Controllers.Main.txtShape_flowChartMagneticDrum": "Flowchart: Direct Access Storage", + "SSE.Controllers.Main.txtShape_flowChartMagneticTape": "Flowchart: Sequential Access Storage", + "SSE.Controllers.Main.txtShape_flowChartManualInput": "Flowchart: Manual Input", + "SSE.Controllers.Main.txtShape_flowChartManualOperation": "Flowchart: Manual Operation", + "SSE.Controllers.Main.txtShape_flowChartMerge": "Flowchart: Merge", + "SSE.Controllers.Main.txtShape_flowChartMultidocument": "Flowchart: Multidocument ", + "SSE.Controllers.Main.txtShape_flowChartOffpageConnector": "Flowchart: Off-page Connector", + "SSE.Controllers.Main.txtShape_flowChartOnlineStorage": "Flowchart: Stored Data", + "SSE.Controllers.Main.txtShape_flowChartOr": "Flowchart: Or", + "SSE.Controllers.Main.txtShape_flowChartPredefinedProcess": "Flowchart: Predefined Process", + "SSE.Controllers.Main.txtShape_flowChartPreparation": "Flowchart: Preparation", + "SSE.Controllers.Main.txtShape_flowChartProcess": "Flowchart: Process", + "SSE.Controllers.Main.txtShape_flowChartPunchedCard": "Flowchart: Card", + "SSE.Controllers.Main.txtShape_flowChartPunchedTape": "Flowchart: Punched Tape", + "SSE.Controllers.Main.txtShape_flowChartSort": "Flowchart: Sort", + "SSE.Controllers.Main.txtShape_flowChartSummingJunction": "Flowchart: Summing Junction", + "SSE.Controllers.Main.txtShape_flowChartTerminator": "Flowchart: Terminator", + "SSE.Controllers.Main.txtShape_foldedCorner": "Folded Corner", + "SSE.Controllers.Main.txtShape_frame": "Frame", + "SSE.Controllers.Main.txtShape_halfFrame": "Half Frame", + "SSE.Controllers.Main.txtShape_heart": "Heart", + "SSE.Controllers.Main.txtShape_heptagon": "Heptagon", + "SSE.Controllers.Main.txtShape_hexagon": "Hexagon", + "SSE.Controllers.Main.txtShape_homePlate": "Pentagon", + "SSE.Controllers.Main.txtShape_horizontalScroll": "Horizontal Scroll", + "SSE.Controllers.Main.txtShape_irregularSeal1": "Explosion 1", + "SSE.Controllers.Main.txtShape_irregularSeal2": "Explosion 2", + "SSE.Controllers.Main.txtShape_leftArrow": "Left Arrow", + "SSE.Controllers.Main.txtShape_leftArrowCallout": "Left Arrow Callout", + "SSE.Controllers.Main.txtShape_leftBrace": "Left Brace", + "SSE.Controllers.Main.txtShape_leftBracket": "Left Bracket", + "SSE.Controllers.Main.txtShape_leftRightArrow": "Left Right Arrow", + "SSE.Controllers.Main.txtShape_leftRightArrowCallout": "Left Right Arrow Callout", + "SSE.Controllers.Main.txtShape_leftRightUpArrow": "Left Right Up Arrow", + "SSE.Controllers.Main.txtShape_leftUpArrow": "Left Up Arrow", + "SSE.Controllers.Main.txtShape_lightningBolt": "Lightning Bolt", + "SSE.Controllers.Main.txtShape_line": "Line", + "SSE.Controllers.Main.txtShape_lineWithArrow": "Arrow", + "SSE.Controllers.Main.txtShape_lineWithTwoArrows": "Double Arrow", + "SSE.Controllers.Main.txtShape_mathDivide": "Division", + "SSE.Controllers.Main.txtShape_mathEqual": "Equal", + "SSE.Controllers.Main.txtShape_mathMinus": "Minus", + "SSE.Controllers.Main.txtShape_mathMultiply": "Multiply", + "SSE.Controllers.Main.txtShape_mathNotEqual": "Not Equal", + "SSE.Controllers.Main.txtShape_mathPlus": "Plus", + "SSE.Controllers.Main.txtShape_moon": "Moon", + "SSE.Controllers.Main.txtShape_noSmoking": "\"No\" Symbol", + "SSE.Controllers.Main.txtShape_notchedRightArrow": "Notched Right Arrow", + "SSE.Controllers.Main.txtShape_octagon": "Octagon", + "SSE.Controllers.Main.txtShape_parallelogram": "Parallelogram", + "SSE.Controllers.Main.txtShape_pentagon": "Pentagon", + "SSE.Controllers.Main.txtShape_pie": "Pie", + "SSE.Controllers.Main.txtShape_plaque": "Sign", + "SSE.Controllers.Main.txtShape_plus": "Plus", + "SSE.Controllers.Main.txtShape_polyline1": "Scribble", + "SSE.Controllers.Main.txtShape_polyline2": "Freeform", + "SSE.Controllers.Main.txtShape_quadArrow": "Quad Arrow", + "SSE.Controllers.Main.txtShape_quadArrowCallout": "Quad Arrow Callout", + "SSE.Controllers.Main.txtShape_rect": "Rectangle", + "SSE.Controllers.Main.txtShape_ribbon": "Down Ribbon", + "SSE.Controllers.Main.txtShape_ribbon2": "Up Ribbon", + "SSE.Controllers.Main.txtShape_rightArrow": "Right Arrow", + "SSE.Controllers.Main.txtShape_rightArrowCallout": "Right Arrow Callout", + "SSE.Controllers.Main.txtShape_rightBrace": "Right Brace", + "SSE.Controllers.Main.txtShape_rightBracket": "Right Bracket", + "SSE.Controllers.Main.txtShape_round1Rect": "Round Single Corner Rectangle", + "SSE.Controllers.Main.txtShape_round2DiagRect": "Round Diagonal Corner Rectangle", + "SSE.Controllers.Main.txtShape_round2SameRect": "Round Same Side Corner Rectangle", + "SSE.Controllers.Main.txtShape_roundRect": "Round Corner Rectangle", + "SSE.Controllers.Main.txtShape_rtTriangle": "Right Triangle", + "SSE.Controllers.Main.txtShape_smileyFace": "Smiley Face", + "SSE.Controllers.Main.txtShape_snip1Rect": "Snip Single Corner Rectangle", + "SSE.Controllers.Main.txtShape_snip2DiagRect": "Snip Diagonal Corner Rectangle", + "SSE.Controllers.Main.txtShape_snip2SameRect": "Snip Same Side Corner Rectangle", + "SSE.Controllers.Main.txtShape_snipRoundRect": "Snip and Round Single Corner Rectangle", + "SSE.Controllers.Main.txtShape_spline": "Curve", + "SSE.Controllers.Main.txtShape_star10": "10-Point Star", + "SSE.Controllers.Main.txtShape_star12": "12-Point Star", + "SSE.Controllers.Main.txtShape_star16": "16-Point Star", + "SSE.Controllers.Main.txtShape_star24": "24-Point Star", + "SSE.Controllers.Main.txtShape_star32": "32-Point Star", + "SSE.Controllers.Main.txtShape_star4": "4-Point Star", + "SSE.Controllers.Main.txtShape_star5": "5-Point Star", + "SSE.Controllers.Main.txtShape_star6": "6-Point Star", + "SSE.Controllers.Main.txtShape_star7": "7-Point Star", + "SSE.Controllers.Main.txtShape_star8": "8-Point Star", + "SSE.Controllers.Main.txtShape_stripedRightArrow": "Striped Right Arrow", + "SSE.Controllers.Main.txtShape_sun": "Sun", + "SSE.Controllers.Main.txtShape_teardrop": "Teardrop", + "SSE.Controllers.Main.txtShape_textRect": "Text Box", + "SSE.Controllers.Main.txtShape_trapezoid": "Trapezoid", + "SSE.Controllers.Main.txtShape_triangle": "Triangle", + "SSE.Controllers.Main.txtShape_upArrow": "Up Arrow", + "SSE.Controllers.Main.txtShape_upArrowCallout": "Up Arrow Callout", + "SSE.Controllers.Main.txtShape_upDownArrow": "Up Down Arrow", + "SSE.Controllers.Main.txtShape_uturnArrow": "U-Turn Arrow", + "SSE.Controllers.Main.txtShape_verticalScroll": "Vertical Scroll", + "SSE.Controllers.Main.txtShape_wave": "Wave", + "SSE.Controllers.Main.txtShape_wedgeEllipseCallout": "Oval Callout", + "SSE.Controllers.Main.txtShape_wedgeRectCallout": "Rectangular Callout", + "SSE.Controllers.Main.txtShape_wedgeRoundRectCallout": "Rounded Rectangular Callout", + "SSE.Controllers.Main.txtStarsRibbons": "Stars & Ribbons", + "SSE.Controllers.Main.txtStyle_Bad": "Bad", + "SSE.Controllers.Main.txtStyle_Calculation": "Calculation", + "SSE.Controllers.Main.txtStyle_Check_Cell": "Check Cell", + "SSE.Controllers.Main.txtStyle_Comma": "Comma", + "SSE.Controllers.Main.txtStyle_Currency": "Currency", + "SSE.Controllers.Main.txtStyle_Explanatory_Text": "Explanatory Text", + "SSE.Controllers.Main.txtStyle_Good": "Good", + "SSE.Controllers.Main.txtStyle_Heading_1": "Heading 1", + "SSE.Controllers.Main.txtStyle_Heading_2": "Heading 2", + "SSE.Controllers.Main.txtStyle_Heading_3": "Heading 3", + "SSE.Controllers.Main.txtStyle_Heading_4": "Heading 4", + "SSE.Controllers.Main.txtStyle_Input": "Input", + "SSE.Controllers.Main.txtStyle_Linked_Cell": "Linked Cell", + "SSE.Controllers.Main.txtStyle_Neutral": "Neutral", + "SSE.Controllers.Main.txtStyle_Normal": "Normal", + "SSE.Controllers.Main.txtStyle_Note": "Note", + "SSE.Controllers.Main.txtStyle_Output": "Output", + "SSE.Controllers.Main.txtStyle_Percent": "Percent", + "SSE.Controllers.Main.txtStyle_Title": "Title", + "SSE.Controllers.Main.txtStyle_Total": "Total", + "SSE.Controllers.Main.txtStyle_Warning_Text": "Warning Text", + "SSE.Controllers.Main.txtTab": "Tab", + "SSE.Controllers.Main.txtTable": "Table", + "SSE.Controllers.Main.txtTime": "Time", + "SSE.Controllers.Main.txtValues": "Values", + "SSE.Controllers.Main.txtXAxis": "X Axis", + "SSE.Controllers.Main.txtYAxis": "Y Axis", + "SSE.Controllers.Main.txtYears": "Years", + "SSE.Controllers.Main.unknownErrorText": "Unknown error.", + "SSE.Controllers.Main.unsupportedBrowserErrorText": "Your browser is not supported.", + "SSE.Controllers.Main.uploadDocExtMessage": "Unknown document format.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "No documents uploaded.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Maximum document size limit exceeded.", + "SSE.Controllers.Main.uploadImageExtMessage": "Unknown image format.", + "SSE.Controllers.Main.uploadImageFileCountMessage": "No images uploaded.", + "SSE.Controllers.Main.uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "SSE.Controllers.Main.uploadImageTextText": "Uploading image...", + "SSE.Controllers.Main.uploadImageTitleText": "Uploading Image", + "SSE.Controllers.Main.waitText": "Please, wait...", + "SSE.Controllers.Main.warnBrowserIE9": "The application has low capabilities on IE9. Use IE10 or higher", + "SSE.Controllers.Main.warnBrowserZoom": "Your browser current zoom setting is not fully supported. Please reset to the default zoom by pressing Ctrl+0.", + "SSE.Controllers.Main.warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact your administrator to learn more.", + "SSE.Controllers.Main.warnLicenseExp": "Your license has expired.
Please update your license and refresh the page.", + "SSE.Controllers.Main.warnLicenseLimitedNoAccess": "License expired.
You have no access to document editing functionality.
Please contact your administrator.", + "SSE.Controllers.Main.warnLicenseLimitedRenewed": "License needs to be renewed.
You have a limited access to document editing functionality.
Please contact your administrator to get full access", + "SSE.Controllers.Main.warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", + "SSE.Controllers.Main.warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only.
Contact %1 sales team for personal upgrade terms.", + "SSE.Controllers.Main.warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", + "SSE.Controllers.Main.warnProcessRightsChange": "You have been denied the right to edit the file.", + "SSE.Controllers.Main.textNeedSynchronize": "You have an updates", + "SSE.Controllers.Main.textChangesSaved": "All changes saved", + "SSE.Controllers.Main.textConvertEquation": "This equation was created with an old version of the equation editor which is no longer supported. To edit it, convert the equation to the Office Math ML format.
Convert now?", + "SSE.Controllers.Main.textLearnMore": "Learn More", + "SSE.Controllers.Main.textApplyAll": "Apply to all equations", + "SSE.Controllers.Main.txtErrorLoadHistory": "History loading failed", + "SSE.Controllers.Main.errorChangeOnProtectedSheet": "The cell or chart you are trying to change is on a protected sheet.
To make a change, unprotect the sheet. You might be requested to enter a password.", + "SSE.Controllers.Main.txtUnlockRange": "Unlock Range", + "SSE.Controllers.Main.txtUnlockRangeWarning": "A range you are trying to change is password protected.", + "SSE.Controllers.Main.txtUnlockRangeDescription": "Enter the password to change this range:", + "SSE.Controllers.Main.txtUnlock": "Unlock", + "SSE.Controllers.Main.errorWrongPassword": "The password you supplied is not correct.", + "SSE.Controllers.Print.strAllSheets": "All Sheets", + "SSE.Controllers.Print.textFirstCol": "First column", + "SSE.Controllers.Print.textFirstRow": "First row", + "SSE.Controllers.Print.textFrozenCols": "Frozen columns", + "SSE.Controllers.Print.textFrozenRows": "Frozen rows", + "SSE.Controllers.Print.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Controllers.Print.textNoRepeat": "Don't repeat", + "SSE.Controllers.Print.textRepeat": "Repeat...", + "SSE.Controllers.Print.textSelectRange": "Select range", + "SSE.Controllers.Print.textWarning": "Warning", + "SSE.Controllers.Print.txtCustom": "Custom", + "SSE.Controllers.Print.warnCheckMargings": "Margins are incorrect", + "SSE.Controllers.Statusbar.errorLastSheet": "Workbook must have at least one visible worksheet.", + "SSE.Controllers.Statusbar.errorRemoveSheet": "Cannot delete the worksheet.", + "SSE.Controllers.Statusbar.strSheet": "Sheet", + "SSE.Controllers.Statusbar.textSheetViewTip": "You are in Sheet View mode. Filters and sorting are visible only to you and those who are still in this view.", + "SSE.Controllers.Statusbar.textSheetViewTipFilters": "You are in Sheet View mode. Filters are visible only to you and those who are still in this view.", + "SSE.Controllers.Statusbar.warnDeleteSheet": "The selected worksheets might contain data. Are you sure you want to proceed?", + "SSE.Controllers.Statusbar.zoomText": "Zoom {0}%", + "SSE.Controllers.Toolbar.confirmAddFontName": "The font you are going to save is not available on the current device.
The text style will be displayed using one of the system fonts, the saved font will be used when it is available.
Do you want to continue?", + "SSE.Controllers.Toolbar.errorComboSeries": "To create a combination chart, select at least two series of data.", + "SSE.Controllers.Toolbar.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Controllers.Toolbar.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", + "SSE.Controllers.Toolbar.textAccent": "Accents", + "SSE.Controllers.Toolbar.textBracket": "Brackets", + "SSE.Controllers.Toolbar.textDirectional": "Directional", + "SSE.Controllers.Toolbar.textFontSizeErr": "The entered value is incorrect.
Please enter a numeric value between 1 and 409", + "SSE.Controllers.Toolbar.textFraction": "Fractions", + "SSE.Controllers.Toolbar.textFunction": "Functions", + "SSE.Controllers.Toolbar.textIndicator": "Indicators", + "SSE.Controllers.Toolbar.textInsert": "Insert", + "SSE.Controllers.Toolbar.textIntegral": "Integrals", + "SSE.Controllers.Toolbar.textLargeOperator": "Large Operators", + "SSE.Controllers.Toolbar.textLimitAndLog": "Limits And Logarithms", + "SSE.Controllers.Toolbar.textLongOperation": "Long operation", + "SSE.Controllers.Toolbar.textMatrix": "Matrices", + "SSE.Controllers.Toolbar.textOperator": "Operators", + "SSE.Controllers.Toolbar.textPivot": "Pivot Table", + "SSE.Controllers.Toolbar.textRadical": "Radicals", + "SSE.Controllers.Toolbar.textRating": "Ratings", + "SSE.Controllers.Toolbar.textScript": "Scripts", + "SSE.Controllers.Toolbar.textShapes": "Shapes", + "SSE.Controllers.Toolbar.textSymbols": "Symbols", + "SSE.Controllers.Toolbar.textWarning": "Warning", + "SSE.Controllers.Toolbar.txtAccent_Accent": "Acute", + "SSE.Controllers.Toolbar.txtAccent_ArrowD": "Right-left arrow above", + "SSE.Controllers.Toolbar.txtAccent_ArrowL": "Leftwards arrow above", + "SSE.Controllers.Toolbar.txtAccent_ArrowR": "Rightwards arrow above", + "SSE.Controllers.Toolbar.txtAccent_Bar": "Bar", + "SSE.Controllers.Toolbar.txtAccent_BarBot": "Underbar", + "SSE.Controllers.Toolbar.txtAccent_BarTop": "Overbar", + "SSE.Controllers.Toolbar.txtAccent_BorderBox": "Boxed formula (with placeholder)", + "SSE.Controllers.Toolbar.txtAccent_BorderBoxCustom": "Boxed formula (example)", + "SSE.Controllers.Toolbar.txtAccent_Check": "Check", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketBot": "Underbrace", + "SSE.Controllers.Toolbar.txtAccent_CurveBracketTop": "Overbrace", + "SSE.Controllers.Toolbar.txtAccent_Custom_1": "Vector A", + "SSE.Controllers.Toolbar.txtAccent_Custom_2": "ABC with overbar", + "SSE.Controllers.Toolbar.txtAccent_Custom_3": "x XOR y with overbar", + "SSE.Controllers.Toolbar.txtAccent_DDDot": "Triple dot", + "SSE.Controllers.Toolbar.txtAccent_DDot": "Double dot", + "SSE.Controllers.Toolbar.txtAccent_Dot": "Dot", + "SSE.Controllers.Toolbar.txtAccent_DoubleBar": "Double overbar", + "SSE.Controllers.Toolbar.txtAccent_Grave": "Grave", + "SSE.Controllers.Toolbar.txtAccent_GroupBot": "Grouping character below", + "SSE.Controllers.Toolbar.txtAccent_GroupTop": "Grouping character above", + "SSE.Controllers.Toolbar.txtAccent_HarpoonL": "Leftwards harpoon above", + "SSE.Controllers.Toolbar.txtAccent_HarpoonR": "Rightwards harpoon above", + "SSE.Controllers.Toolbar.txtAccent_Hat": "Hat", + "SSE.Controllers.Toolbar.txtAccent_Smile": "Breve", + "SSE.Controllers.Toolbar.txtAccent_Tilde": "Tilde", + "SSE.Controllers.Toolbar.txtBracket_Angle": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_2": "Brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Angle_Delimiter_3": "Brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Angle_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Angle_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Curve": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Curve_Delimiter_2": "Brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Curve_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Curve_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Custom_1": "Cases (two conditions)", + "SSE.Controllers.Toolbar.txtBracket_Custom_2": "Cases (three conditions)", + "SSE.Controllers.Toolbar.txtBracket_Custom_3": "Stack object", + "SSE.Controllers.Toolbar.txtBracket_Custom_4": "Stack object", + "SSE.Controllers.Toolbar.txtBracket_Custom_5": "Cases example", + "SSE.Controllers.Toolbar.txtBracket_Custom_6": "Binomial coefficient", + "SSE.Controllers.Toolbar.txtBracket_Custom_7": "Binomial coefficient", + "SSE.Controllers.Toolbar.txtBracket_Line": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Line_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Line_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_LineDouble": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_LineDouble_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_LowLim": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_LowLim_NoneNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_LowLim_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Round": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Round_Delimiter_2": "Brackets with separators", + "SSE.Controllers.Toolbar.txtBracket_Round_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Round_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Square": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseClose": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_CloseOpen": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_Square_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_Square_OpenOpen": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_SquareDouble_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_UppLim": "Brackets", + "SSE.Controllers.Toolbar.txtBracket_UppLim_NoneOpen": "Single bracket", + "SSE.Controllers.Toolbar.txtBracket_UppLim_OpenNone": "Single bracket", + "SSE.Controllers.Toolbar.txtDeleteCells": "Delete Cells", + "SSE.Controllers.Toolbar.txtExpand": "Expand and sort", + "SSE.Controllers.Toolbar.txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", + "SSE.Controllers.Toolbar.txtFractionDiagonal": "Skewed fraction", + "SSE.Controllers.Toolbar.txtFractionDifferential_1": "Differential", + "SSE.Controllers.Toolbar.txtFractionDifferential_2": "Differential", + "SSE.Controllers.Toolbar.txtFractionDifferential_3": "Differential", + "SSE.Controllers.Toolbar.txtFractionDifferential_4": "Differential", + "SSE.Controllers.Toolbar.txtFractionHorizontal": "Linear fraction", + "SSE.Controllers.Toolbar.txtFractionPi_2": "Pi over 2", + "SSE.Controllers.Toolbar.txtFractionSmall": "Small fraction", + "SSE.Controllers.Toolbar.txtFractionVertical": "Stacked fraction", + "SSE.Controllers.Toolbar.txtFunction_1_Cos": "Inverse cosine function", + "SSE.Controllers.Toolbar.txtFunction_1_Cosh": "Hyperbolic inverse cosine function", + "SSE.Controllers.Toolbar.txtFunction_1_Cot": "Inverse cotangent function", + "SSE.Controllers.Toolbar.txtFunction_1_Coth": "Hyperbolic inverse cotangent function", + "SSE.Controllers.Toolbar.txtFunction_1_Csc": "Inverse cosecant function", + "SSE.Controllers.Toolbar.txtFunction_1_Csch": "Hyperbolic inverse cosecant function", + "SSE.Controllers.Toolbar.txtFunction_1_Sec": "Inverse secant function", + "SSE.Controllers.Toolbar.txtFunction_1_Sech": "Hyperbolic inverse secant function", + "SSE.Controllers.Toolbar.txtFunction_1_Sin": "Inverse sine function", + "SSE.Controllers.Toolbar.txtFunction_1_Sinh": "Hyperbolic inverse sine function", + "SSE.Controllers.Toolbar.txtFunction_1_Tan": "Inverse tangent function", + "SSE.Controllers.Toolbar.txtFunction_1_Tanh": "Hyperbolic inverse tangent function", + "SSE.Controllers.Toolbar.txtFunction_Cos": "Cosine function", + "SSE.Controllers.Toolbar.txtFunction_Cosh": "Hyperbolic cosine function", + "SSE.Controllers.Toolbar.txtFunction_Cot": "Cotangent function", + "SSE.Controllers.Toolbar.txtFunction_Coth": "Hyperbolic cotangent function", + "SSE.Controllers.Toolbar.txtFunction_Csc": "Cosecant function", + "SSE.Controllers.Toolbar.txtFunction_Csch": "Hyperbolic cosecant function", + "SSE.Controllers.Toolbar.txtFunction_Custom_1": "Sine theta", + "SSE.Controllers.Toolbar.txtFunction_Custom_2": "Cos 2x", + "SSE.Controllers.Toolbar.txtFunction_Custom_3": "Tangent formula", + "SSE.Controllers.Toolbar.txtFunction_Sec": "Secant function", + "SSE.Controllers.Toolbar.txtFunction_Sech": "Hyperbolic secant function", + "SSE.Controllers.Toolbar.txtFunction_Sin": "Sine function", + "SSE.Controllers.Toolbar.txtFunction_Sinh": "Hyperbolic sine function", + "SSE.Controllers.Toolbar.txtFunction_Tan": "Tangent function", + "SSE.Controllers.Toolbar.txtFunction_Tanh": "Hyperbolic tangent function", + "SSE.Controllers.Toolbar.txtInsertCells": "Insert Cells", + "SSE.Controllers.Toolbar.txtIntegral": "Integral", + "SSE.Controllers.Toolbar.txtIntegral_dtheta": "Differential theta", + "SSE.Controllers.Toolbar.txtIntegral_dx": "Differential x", + "SSE.Controllers.Toolbar.txtIntegral_dy": "Differential y", + "SSE.Controllers.Toolbar.txtIntegralCenterSubSup": "Integral", + "SSE.Controllers.Toolbar.txtIntegralDouble": "Double integral", + "SSE.Controllers.Toolbar.txtIntegralDoubleCenterSubSup": "Double integral", + "SSE.Controllers.Toolbar.txtIntegralDoubleSubSup": "Double integral", + "SSE.Controllers.Toolbar.txtIntegralOriented": "Contour integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedCenterSubSup": "Contour integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDouble": "Surface integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleCenterSubSup": "Surface integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedDoubleSubSup": "Surface integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedSubSup": "Contour integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTriple": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleCenterSubSup": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralOrientedTripleSubSup": "Volume integral", + "SSE.Controllers.Toolbar.txtIntegralSubSup": "Integral", + "SSE.Controllers.Toolbar.txtIntegralTriple": "Triple integral", + "SSE.Controllers.Toolbar.txtIntegralTripleCenterSubSup": "Triple integral", + "SSE.Controllers.Toolbar.txtIntegralTripleSubSup": "Triple integral", + "SSE.Controllers.Toolbar.txtInvalidRange": "ERROR! Invalid cell range", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSub": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_CenterSubSup": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_Sub": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_Conjunction_SubSup": "Wedge", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSub": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_CenterSubSup": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_Sub": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_CoProd_SubSup": "Co-product", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_1": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_2": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_3": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_4": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Custom_5": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_CenterSubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_Sub": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Disjunction_SubSup": "Vee", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSub": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_CenterSubSup": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_Sub": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Intersection_SubSup": "Intersection", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSub": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_CenterSubSup": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_Sub": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Prod_SubSup": "Product", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSub": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_CenterSubSup": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_Sub": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Sum_SubSup": "Summation", + "SSE.Controllers.Toolbar.txtLargeOperator_Union": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSub": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_CenterSubSup": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_Sub": "Union", + "SSE.Controllers.Toolbar.txtLargeOperator_Union_SubSup": "Union", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_1": "Limit example", + "SSE.Controllers.Toolbar.txtLimitLog_Custom_2": "Maximum example", + "SSE.Controllers.Toolbar.txtLimitLog_Lim": "Limit", + "SSE.Controllers.Toolbar.txtLimitLog_Ln": "Natural logarithm", + "SSE.Controllers.Toolbar.txtLimitLog_Log": "Logarithm", + "SSE.Controllers.Toolbar.txtLimitLog_LogBase": "Logarithm", + "SSE.Controllers.Toolbar.txtLimitLog_Max": "Maximum", + "SSE.Controllers.Toolbar.txtLimitLog_Min": "Minimum", + "SSE.Controllers.Toolbar.txtMatrix_1_2": "1x2 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_1_3": "1x3 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_2_1": "2x1 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_2_2": "2x2 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_2_2_DLineBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_2_LineBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_2_RoundBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_2_SquareBracket": "Empty matrix with brackets", + "SSE.Controllers.Toolbar.txtMatrix_2_3": "2x3 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_3_1": "3x1 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_3_2": "3x2 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_3_3": "3x3 empty matrix", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Baseline": "Baseline dots", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Center": "Midline dots", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Diagonal": "Diagonal dots", + "SSE.Controllers.Toolbar.txtMatrix_Dots_Vertical": "Vertical dots", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Round": "Sparse matrix", + "SSE.Controllers.Toolbar.txtMatrix_Flat_Square": "Sparse matrix", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2": "2x2 identity matrix", + "SSE.Controllers.Toolbar.txtMatrix_Identity_2_NoZeros": "3x3 identity matrix", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3": "3x3 identity matrix", + "SSE.Controllers.Toolbar.txtMatrix_Identity_3_NoZeros": "3x3 identity matrix", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Bot": "Right-left arrow below", + "SSE.Controllers.Toolbar.txtOperator_ArrowD_Top": "Right-left arrow above", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Bot": "Leftwards arrow below", + "SSE.Controllers.Toolbar.txtOperator_ArrowL_Top": "Leftwards arrow above", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Bot": "Rightwards arrow below", + "SSE.Controllers.Toolbar.txtOperator_ArrowR_Top": "Rightwards arrow above", + "SSE.Controllers.Toolbar.txtOperator_ColonEquals": "Colon equal", + "SSE.Controllers.Toolbar.txtOperator_Custom_1": "Yields", + "SSE.Controllers.Toolbar.txtOperator_Custom_2": "Delta yields", + "SSE.Controllers.Toolbar.txtOperator_Definition": "Equal to by definition", + "SSE.Controllers.Toolbar.txtOperator_DeltaEquals": "Delta equal to", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Bot": "Right-left arrow below", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowD_Top": "Right-left arrow above", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Bot": "Leftwards arrow below", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowL_Top": "Leftwards arrow above", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Bot": "Rightwards arrow below", + "SSE.Controllers.Toolbar.txtOperator_DoubleArrowR_Top": "Rightwards arrow above", + "SSE.Controllers.Toolbar.txtOperator_EqualsEquals": "Equal equal", + "SSE.Controllers.Toolbar.txtOperator_MinusEquals": "Minus equal", + "SSE.Controllers.Toolbar.txtOperator_PlusEquals": "Plus equal", + "SSE.Controllers.Toolbar.txtOperator_UnitOfMeasure": "Measured by", + "SSE.Controllers.Toolbar.txtRadicalCustom_1": "Radical", + "SSE.Controllers.Toolbar.txtRadicalCustom_2": "Radical", + "SSE.Controllers.Toolbar.txtRadicalRoot_2": "Square root with degree", + "SSE.Controllers.Toolbar.txtRadicalRoot_3": "Cubic root", + "SSE.Controllers.Toolbar.txtRadicalRoot_n": "Radical with degree", + "SSE.Controllers.Toolbar.txtRadicalSqrt": "Square root", + "SSE.Controllers.Toolbar.txtScriptCustom_1": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_2": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_3": "Script", + "SSE.Controllers.Toolbar.txtScriptCustom_4": "Script", + "SSE.Controllers.Toolbar.txtScriptSub": "Subscript", + "SSE.Controllers.Toolbar.txtScriptSubSup": "Subscript-superscript", + "SSE.Controllers.Toolbar.txtScriptSubSupLeft": "Left subscript-superscript", + "SSE.Controllers.Toolbar.txtScriptSup": "Superscript", + "SSE.Controllers.Toolbar.txtSorting": "Sorting", + "SSE.Controllers.Toolbar.txtSortSelected": "Sort selected", + "SSE.Controllers.Toolbar.txtSymbol_about": "Approximately", + "SSE.Controllers.Toolbar.txtSymbol_additional": "Complement", + "SSE.Controllers.Toolbar.txtSymbol_aleph": "Alef", + "SSE.Controllers.Toolbar.txtSymbol_alpha": "Alpha", + "SSE.Controllers.Toolbar.txtSymbol_approx": "Almost equal to", + "SSE.Controllers.Toolbar.txtSymbol_ast": "Asterisk operator", + "SSE.Controllers.Toolbar.txtSymbol_beta": "Beta", + "SSE.Controllers.Toolbar.txtSymbol_beth": "Bet", + "SSE.Controllers.Toolbar.txtSymbol_bullet": "Bullet operator", + "SSE.Controllers.Toolbar.txtSymbol_cap": "Intersection", + "SSE.Controllers.Toolbar.txtSymbol_cbrt": "Cube root", + "SSE.Controllers.Toolbar.txtSymbol_cdots": "Midline horizontal ellipsis", + "SSE.Controllers.Toolbar.txtSymbol_celsius": "Degrees Celsius", + "SSE.Controllers.Toolbar.txtSymbol_chi": "Chi", + "SSE.Controllers.Toolbar.txtSymbol_cong": "Approximately equal to", + "SSE.Controllers.Toolbar.txtSymbol_cup": "Union", + "SSE.Controllers.Toolbar.txtSymbol_ddots": "Down right diagonal ellipsis", + "SSE.Controllers.Toolbar.txtSymbol_degree": "Degrees", + "SSE.Controllers.Toolbar.txtSymbol_delta": "Delta", + "SSE.Controllers.Toolbar.txtSymbol_div": "Division sign", + "SSE.Controllers.Toolbar.txtSymbol_downarrow": "Down arrow", + "SSE.Controllers.Toolbar.txtSymbol_emptyset": "Empty set", + "SSE.Controllers.Toolbar.txtSymbol_epsilon": "Epsilon", + "SSE.Controllers.Toolbar.txtSymbol_equals": "Equal", + "SSE.Controllers.Toolbar.txtSymbol_equiv": "Identical to", + "SSE.Controllers.Toolbar.txtSymbol_eta": "Eta", + "SSE.Controllers.Toolbar.txtSymbol_exists": "There exist", + "SSE.Controllers.Toolbar.txtSymbol_factorial": "Factorial", + "SSE.Controllers.Toolbar.txtSymbol_fahrenheit": "Degrees Fahrenheit", + "SSE.Controllers.Toolbar.txtSymbol_forall": "For all", + "SSE.Controllers.Toolbar.txtSymbol_gamma": "Gamma", + "SSE.Controllers.Toolbar.txtSymbol_geq": "Greater than or equal to", + "SSE.Controllers.Toolbar.txtSymbol_gg": "Much greater than", + "SSE.Controllers.Toolbar.txtSymbol_greater": "Greater than", + "SSE.Controllers.Toolbar.txtSymbol_in": "Element of", + "SSE.Controllers.Toolbar.txtSymbol_inc": "Increment", + "SSE.Controllers.Toolbar.txtSymbol_infinity": "Infinity", + "SSE.Controllers.Toolbar.txtSymbol_iota": "Iota", + "SSE.Controllers.Toolbar.txtSymbol_kappa": "Kappa", + "SSE.Controllers.Toolbar.txtSymbol_lambda": "Lambda", + "SSE.Controllers.Toolbar.txtSymbol_leftarrow": "Left arrow", + "SSE.Controllers.Toolbar.txtSymbol_leftrightarrow": "Left-right arrow", + "SSE.Controllers.Toolbar.txtSymbol_leq": "Less than or equal to", + "SSE.Controllers.Toolbar.txtSymbol_less": "Less than", + "SSE.Controllers.Toolbar.txtSymbol_ll": "Much less than", + "SSE.Controllers.Toolbar.txtSymbol_minus": "Minus", + "SSE.Controllers.Toolbar.txtSymbol_mp": "Minus plus", + "SSE.Controllers.Toolbar.txtSymbol_mu": "Mu", + "SSE.Controllers.Toolbar.txtSymbol_nabla": "Nabla", + "SSE.Controllers.Toolbar.txtSymbol_neq": "Not equal to", + "SSE.Controllers.Toolbar.txtSymbol_ni": "Contains as member", + "SSE.Controllers.Toolbar.txtSymbol_not": "Not sign", + "SSE.Controllers.Toolbar.txtSymbol_notexists": "There does not exist", + "SSE.Controllers.Toolbar.txtSymbol_nu": "Nu", + "SSE.Controllers.Toolbar.txtSymbol_o": "Omicron", + "SSE.Controllers.Toolbar.txtSymbol_omega": "Omega", + "SSE.Controllers.Toolbar.txtSymbol_partial": "Partial differential", + "SSE.Controllers.Toolbar.txtSymbol_percent": "Percentage", + "SSE.Controllers.Toolbar.txtSymbol_phi": "Phi", + "SSE.Controllers.Toolbar.txtSymbol_pi": "Pi", + "SSE.Controllers.Toolbar.txtSymbol_plus": "Plus", + "SSE.Controllers.Toolbar.txtSymbol_pm": "Plus minus", + "SSE.Controllers.Toolbar.txtSymbol_propto": "Proportional to", + "SSE.Controllers.Toolbar.txtSymbol_psi": "Psi", + "SSE.Controllers.Toolbar.txtSymbol_qdrt": "Fourth root", + "SSE.Controllers.Toolbar.txtSymbol_qed": "End of proof", + "SSE.Controllers.Toolbar.txtSymbol_rddots": "Up right diagonal ellipsis", + "SSE.Controllers.Toolbar.txtSymbol_rho": "Rho", + "SSE.Controllers.Toolbar.txtSymbol_rightarrow": "Right arrow", + "SSE.Controllers.Toolbar.txtSymbol_sigma": "Sigma", + "SSE.Controllers.Toolbar.txtSymbol_sqrt": "Radical sign", + "SSE.Controllers.Toolbar.txtSymbol_tau": "Tau", + "SSE.Controllers.Toolbar.txtSymbol_therefore": "Therefore", + "SSE.Controllers.Toolbar.txtSymbol_theta": "Theta", + "SSE.Controllers.Toolbar.txtSymbol_times": "Multiplication sign", + "SSE.Controllers.Toolbar.txtSymbol_uparrow": "Up arrow", + "SSE.Controllers.Toolbar.txtSymbol_upsilon": "Upsilon", + "SSE.Controllers.Toolbar.txtSymbol_varepsilon": "Epsilon variant", + "SSE.Controllers.Toolbar.txtSymbol_varphi": "Phi variant", + "SSE.Controllers.Toolbar.txtSymbol_varpi": "Pi variant", + "SSE.Controllers.Toolbar.txtSymbol_varrho": "Rho variant", + "SSE.Controllers.Toolbar.txtSymbol_varsigma": "Sigma variant", + "SSE.Controllers.Toolbar.txtSymbol_vartheta": "Theta variant", + "SSE.Controllers.Toolbar.txtSymbol_vdots": "Vertical ellipsis", + "SSE.Controllers.Toolbar.txtSymbol_xsi": "Xi", + "SSE.Controllers.Toolbar.txtSymbol_zeta": "Zeta", + "SSE.Controllers.Toolbar.txtTable_TableStyleDark": "Table Style Dark", + "SSE.Controllers.Toolbar.txtTable_TableStyleLight": "Table Style Light", + "SSE.Controllers.Toolbar.txtTable_TableStyleMedium": "Table Style Medium", + "SSE.Controllers.Toolbar.warnLongOperation": "The operation you are about to perform might take rather much time to complete.
Are you sure you want to continue?", + "SSE.Controllers.Toolbar.warnMergeLostData": "Only the data from the upper-left cell will remain in the merged cell.
Are you sure you want to continue?", + "SSE.Controllers.Toolbar.txtLockSort": "Data is found next to your selection, but you do not have sufficient permissions to change those cells.
Do you wish to continue with the current selection?", + "SSE.Controllers.Viewport.textFreezePanes": "Freeze Panes", + "SSE.Controllers.Viewport.textFreezePanesShadow": "Show Frozen Panes Shadow", + "SSE.Controllers.Viewport.textHideFBar": "Hide Formula Bar", + "SSE.Controllers.Viewport.textHideGridlines": "Hide Gridlines", + "SSE.Controllers.Viewport.textHideHeadings": "Hide Headings", + "SSE.Views.AdvancedSeparatorDialog.strDecimalSeparator": "Decimal separator", + "SSE.Views.AdvancedSeparatorDialog.strThousandsSeparator": "Thousands separator", + "SSE.Views.AdvancedSeparatorDialog.textLabel": "Settings used to recognize numeric data", + "SSE.Views.AdvancedSeparatorDialog.textTitle": "Advanced Settings", + "SSE.Views.AutoFilterDialog.btnCustomFilter": "Custom Filter", + "SSE.Views.AutoFilterDialog.textAddSelection": "Add current selection to filter", + "SSE.Views.AutoFilterDialog.textEmptyItem": "{Blanks}", + "SSE.Views.AutoFilterDialog.textSelectAll": "Select All", + "SSE.Views.AutoFilterDialog.textSelectAllResults": "Select All Search Results", + "SSE.Views.AutoFilterDialog.textWarning": "Warning", + "SSE.Views.AutoFilterDialog.txtAboveAve": "Above average", + "SSE.Views.AutoFilterDialog.txtBegins": "Begins with...", + "SSE.Views.AutoFilterDialog.txtBelowAve": "Below average", + "SSE.Views.AutoFilterDialog.txtBetween": "Between...", + "SSE.Views.AutoFilterDialog.txtClear": "Clear", + "SSE.Views.AutoFilterDialog.txtContains": "Contains...", + "SSE.Views.AutoFilterDialog.txtEmpty": "Enter cell filter", + "SSE.Views.AutoFilterDialog.txtEnds": "Ends with...", + "SSE.Views.AutoFilterDialog.txtEquals": "Equals...", + "SSE.Views.AutoFilterDialog.txtFilterCellColor": "Filter by cells color", + "SSE.Views.AutoFilterDialog.txtFilterFontColor": "Filter by font color", + "SSE.Views.AutoFilterDialog.txtGreater": "Greater than...", + "SSE.Views.AutoFilterDialog.txtGreaterEquals": "Greater than or equal to...", + "SSE.Views.AutoFilterDialog.txtLabelFilter": "Label filter", + "SSE.Views.AutoFilterDialog.txtLess": "Less than...", + "SSE.Views.AutoFilterDialog.txtLessEquals": "Less than or equal to...", + "SSE.Views.AutoFilterDialog.txtNotBegins": "Does not begin with...", + "SSE.Views.AutoFilterDialog.txtNotBetween": "Not between...", + "SSE.Views.AutoFilterDialog.txtNotContains": "Does not contain...", + "SSE.Views.AutoFilterDialog.txtNotEnds": "Does not end with...", + "SSE.Views.AutoFilterDialog.txtNotEquals": "Does not equal...", + "SSE.Views.AutoFilterDialog.txtNumFilter": "Number filter", + "SSE.Views.AutoFilterDialog.txtReapply": "Reapply", + "SSE.Views.AutoFilterDialog.txtSortCellColor": "Sort by cells color", + "SSE.Views.AutoFilterDialog.txtSortFontColor": "Sort by font color", + "SSE.Views.AutoFilterDialog.txtSortHigh2Low": "Sort Highest to Lowest", + "SSE.Views.AutoFilterDialog.txtSortLow2High": "Sort Lowest to Highest", + "SSE.Views.AutoFilterDialog.txtSortOption": "More sort options...", + "SSE.Views.AutoFilterDialog.txtTextFilter": "Text filter", + "SSE.Views.AutoFilterDialog.txtTitle": "Filter", + "SSE.Views.AutoFilterDialog.txtTop10": "Top 10", + "SSE.Views.AutoFilterDialog.txtValueFilter": "Value filter", + "SSE.Views.AutoFilterDialog.warnFilterError": "You need at least one field in the Values area in order to apply a value filter.", + "SSE.Views.AutoFilterDialog.warnNoSelected": "You must choose at least one value", + "SSE.Views.CellEditor.textManager": "Name Manager", + "SSE.Views.CellEditor.tipFormula": "Insert function", + "SSE.Views.CellRangeDialog.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Views.CellRangeDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", + "SSE.Views.CellRangeDialog.txtEmpty": "This field is required", + "SSE.Views.CellRangeDialog.txtInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.CellRangeDialog.txtTitle": "Select Data Range", + "SSE.Views.CellSettings.strShrink": "Shrink to fit", + "SSE.Views.CellSettings.strWrap": "Wrap text", + "SSE.Views.CellSettings.textAngle": "Angle", + "SSE.Views.CellSettings.textBackColor": "Background Color", + "SSE.Views.CellSettings.textBackground": "Background color", + "SSE.Views.CellSettings.textBorderColor": "Color", + "SSE.Views.CellSettings.textBorders": "Borders Style", + "SSE.Views.CellSettings.textClearRule": "Clear Rules", + "SSE.Views.CellSettings.textColor": "Color Fill", + "SSE.Views.CellSettings.textColorScales": "Color Scales", + "SSE.Views.CellSettings.textCondFormat": "Conditional formatting", + "SSE.Views.CellSettings.textControl": "Text Control", + "SSE.Views.CellSettings.textDataBars": "Data Bars", + "SSE.Views.CellSettings.textDirection": "Direction", + "SSE.Views.CellSettings.textFill": "Fill", + "SSE.Views.CellSettings.textForeground": "Foreground color", + "SSE.Views.CellSettings.textGradient": "Gradient points", + "SSE.Views.CellSettings.textGradientColor": "Color", + "SSE.Views.CellSettings.textGradientFill": "Gradient Fill", + "SSE.Views.CellSettings.textIndent": "Indent", + "SSE.Views.CellSettings.textItems": "Items", + "SSE.Views.CellSettings.textLinear": "Linear", + "SSE.Views.CellSettings.textManageRule": "Manage Rules", + "SSE.Views.CellSettings.textNewRule": "New Rule", + "SSE.Views.CellSettings.textNoFill": "No Fill", + "SSE.Views.CellSettings.textOrientation": "Text Orientation", + "SSE.Views.CellSettings.textPattern": "Pattern", + "SSE.Views.CellSettings.textPatternFill": "Pattern", + "SSE.Views.CellSettings.textPosition": "Position", + "SSE.Views.CellSettings.textRadial": "Radial", + "SSE.Views.CellSettings.textSelectBorders": "Select borders you want to change applying style chosen above", + "SSE.Views.CellSettings.textSelection": "From current selection", + "SSE.Views.CellSettings.textThisPivot": "From this pivot", + "SSE.Views.CellSettings.textThisSheet": "From this worksheet", + "SSE.Views.CellSettings.textThisTable": "From this table", + "SSE.Views.CellSettings.tipAddGradientPoint": "Add gradient point", + "SSE.Views.CellSettings.tipAll": "Set outer border and all inner lines", + "SSE.Views.CellSettings.tipBottom": "Set outer bottom border only", + "SSE.Views.CellSettings.tipDiagD": "Set Diagonal Down Border", + "SSE.Views.CellSettings.tipDiagU": "Set Diagonal Up Border", + "SSE.Views.CellSettings.tipInner": "Set inner lines only", + "SSE.Views.CellSettings.tipInnerHor": "Set horizontal inner lines only", + "SSE.Views.CellSettings.tipInnerVert": "Set vertical inner lines only", + "SSE.Views.CellSettings.tipLeft": "Set outer left border only", + "SSE.Views.CellSettings.tipNone": "Set no borders", + "SSE.Views.CellSettings.tipOuter": "Set outer border only", + "SSE.Views.CellSettings.tipRemoveGradientPoint": "Remove gradient point", + "SSE.Views.CellSettings.tipRight": "Set outer right border only", + "SSE.Views.CellSettings.tipTop": "Set outer top border only", + "SSE.Views.ChartDataDialog.errorInFormula": "There's an error in formula you entered.", + "SSE.Views.ChartDataDialog.errorInvalidReference": "The reference is not valid. Reference must be to an open worksheet.", + "SSE.Views.ChartDataDialog.errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "SSE.Views.ChartDataDialog.errorMaxRows": "The maximum number of data series per chart is 255.", + "SSE.Views.ChartDataDialog.errorNoSingleRowCol": "The reference is not valid. References for titles, values, sizes, or data labels must be a single cell, row, or column.", + "SSE.Views.ChartDataDialog.errorNoValues": "To create a chart, the series must contain at least one value.", + "SSE.Views.ChartDataDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", + "SSE.Views.ChartDataDialog.textAdd": "Add", + "SSE.Views.ChartDataDialog.textCategory": "Horizontal (Category) Axis Labels", + "SSE.Views.ChartDataDialog.textData": "Chart data range", + "SSE.Views.ChartDataDialog.textDelete": "Remove", + "SSE.Views.ChartDataDialog.textDown": "Down", + "SSE.Views.ChartDataDialog.textEdit": "Edit", + "SSE.Views.ChartDataDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.ChartDataDialog.textSelectData": "Select data", + "SSE.Views.ChartDataDialog.textSeries": "Legend Entries (Series)", + "SSE.Views.ChartDataDialog.textSwitch": "Switch Row/Column", + "SSE.Views.ChartDataDialog.textTitle": "Chart Data", + "SSE.Views.ChartDataDialog.textUp": "Up", + "SSE.Views.ChartDataRangeDialog.errorInFormula": "There's an error in formula you entered.", + "SSE.Views.ChartDataRangeDialog.errorInvalidReference": "The reference is not valid. Reference must be to an open worksheet.", + "SSE.Views.ChartDataRangeDialog.errorMaxPoints": "The maximum number of points in series per chart is 4096.", + "SSE.Views.ChartDataRangeDialog.errorMaxRows": "The maximum number of data series per chart is 255.", + "SSE.Views.ChartDataRangeDialog.errorNoSingleRowCol": "The reference is not valid. References for titles, values, sizes, or data labels must be a single cell, row, or column.", + "SSE.Views.ChartDataRangeDialog.errorNoValues": "To create a chart, the series must contain at least one value.", + "SSE.Views.ChartDataRangeDialog.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", + "SSE.Views.ChartDataRangeDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.ChartDataRangeDialog.textSelectData": "Select data", + "SSE.Views.ChartDataRangeDialog.txtAxisLabel": "Axis label range", + "SSE.Views.ChartDataRangeDialog.txtChoose": "Choose range", + "SSE.Views.ChartDataRangeDialog.txtSeriesName": "Series name", + "SSE.Views.ChartDataRangeDialog.txtTitleCategory": "Axis Labels", + "SSE.Views.ChartDataRangeDialog.txtTitleSeries": "Edit Series", + "SSE.Views.ChartDataRangeDialog.txtValues": "Values", + "SSE.Views.ChartDataRangeDialog.txtXValues": "X Values", + "SSE.Views.ChartDataRangeDialog.txtYValues": "Y Values", + "SSE.Views.ChartSettings.strLineWeight": "Line Weight", + "SSE.Views.ChartSettings.strSparkColor": "Color", + "SSE.Views.ChartSettings.strTemplate": "Template", + "SSE.Views.ChartSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ChartSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", + "SSE.Views.ChartSettings.textChangeType": "Change type", + "SSE.Views.ChartSettings.textChartType": "Change Chart Type", + "SSE.Views.ChartSettings.textEditData": "Edit Data and Location", + "SSE.Views.ChartSettings.textFirstPoint": "First Point", + "SSE.Views.ChartSettings.textHeight": "Height", + "SSE.Views.ChartSettings.textHighPoint": "High Point", + "SSE.Views.ChartSettings.textKeepRatio": "Constant proportions", + "SSE.Views.ChartSettings.textLastPoint": "Last Point", + "SSE.Views.ChartSettings.textLowPoint": "Low Point", + "SSE.Views.ChartSettings.textMarkers": "Markers", + "SSE.Views.ChartSettings.textNegativePoint": "Negative Point", + "SSE.Views.ChartSettings.textRanges": "Data Range", + "SSE.Views.ChartSettings.textSelectData": "Select Data", + "SSE.Views.ChartSettings.textShow": "Show", + "SSE.Views.ChartSettings.textSize": "Size", + "SSE.Views.ChartSettings.textStyle": "Style", + "SSE.Views.ChartSettings.textType": "Type", + "SSE.Views.ChartSettings.textWidth": "Width", + "SSE.Views.ChartSettingsDlg.errorMaxPoints": "ERROR! The maximum number of points in series per chart is 4096.", + "SSE.Views.ChartSettingsDlg.errorMaxRows": "ERROR! The maximum number of data series per chart is 255", + "SSE.Views.ChartSettingsDlg.errorStockChart": "Incorrect row order. To build a stock chart place the data on the sheet in the following order:
opening price, max price, min price, closing price.", + "SSE.Views.ChartSettingsDlg.textAbsolute": "Don't move or size with cells", + "SSE.Views.ChartSettingsDlg.textAlt": "Alternative Text", + "SSE.Views.ChartSettingsDlg.textAltDescription": "Description", + "SSE.Views.ChartSettingsDlg.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", + "SSE.Views.ChartSettingsDlg.textAltTitle": "Title", + "SSE.Views.ChartSettingsDlg.textAuto": "Auto", + "SSE.Views.ChartSettingsDlg.textAutoEach": "Auto for Each", + "SSE.Views.ChartSettingsDlg.textAxisCrosses": "Axis Crosses", + "SSE.Views.ChartSettingsDlg.textAxisOptions": "Axis Options", + "SSE.Views.ChartSettingsDlg.textAxisPos": "Axis Position", + "SSE.Views.ChartSettingsDlg.textAxisSettings": "Axis Settings", + "SSE.Views.ChartSettingsDlg.textAxisTitle": "Title", + "SSE.Views.ChartSettingsDlg.textBetweenTickMarks": "Between Tick Marks", + "SSE.Views.ChartSettingsDlg.textBillions": "Billions", + "SSE.Views.ChartSettingsDlg.textBottom": "Bottom", + "SSE.Views.ChartSettingsDlg.textCategoryName": "Category Name", + "SSE.Views.ChartSettingsDlg.textCenter": "Center", + "SSE.Views.ChartSettingsDlg.textChartElementsLegend": "Chart Elements &
Chart Legend", + "SSE.Views.ChartSettingsDlg.textChartTitle": "Chart Title", + "SSE.Views.ChartSettingsDlg.textCross": "Cross", + "SSE.Views.ChartSettingsDlg.textCustom": "Custom", + "SSE.Views.ChartSettingsDlg.textDataColumns": "in columns", + "SSE.Views.ChartSettingsDlg.textDataLabels": "Data Labels", + "SSE.Views.ChartSettingsDlg.textDataRows": "in rows", + "SSE.Views.ChartSettingsDlg.textDisplayLegend": "Display Legend", + "SSE.Views.ChartSettingsDlg.textEmptyCells": "Hidden and Empty cells", + "SSE.Views.ChartSettingsDlg.textEmptyLine": "Connect data points with line", + "SSE.Views.ChartSettingsDlg.textFit": "Fit to Width", + "SSE.Views.ChartSettingsDlg.textFixed": "Fixed", + "SSE.Views.ChartSettingsDlg.textFormat": "Label format", + "SSE.Views.ChartSettingsDlg.textGaps": "Gaps", + "SSE.Views.ChartSettingsDlg.textGridLines": "Gridlines", + "SSE.Views.ChartSettingsDlg.textGroup": "Group Sparkline", + "SSE.Views.ChartSettingsDlg.textHide": "Hide", + "SSE.Views.ChartSettingsDlg.textHideAxis": "Hide axis", + "SSE.Views.ChartSettingsDlg.textHigh": "High", + "SSE.Views.ChartSettingsDlg.textHorAxis": "Horizontal Axis", + "SSE.Views.ChartSettingsDlg.textHorAxisSec": "Secondary Horizontal Axis", + "SSE.Views.ChartSettingsDlg.textHorizontal": "Horizontal", + "SSE.Views.ChartSettingsDlg.textHundredMil": "100 000 000", + "SSE.Views.ChartSettingsDlg.textHundreds": "Hundreds", + "SSE.Views.ChartSettingsDlg.textHundredThousands": "100 000", + "SSE.Views.ChartSettingsDlg.textIn": "In", + "SSE.Views.ChartSettingsDlg.textInnerBottom": "Inner Bottom", + "SSE.Views.ChartSettingsDlg.textInnerTop": "Inner Top", + "SSE.Views.ChartSettingsDlg.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.ChartSettingsDlg.textLabelDist": "Axis Label Distance", + "SSE.Views.ChartSettingsDlg.textLabelInterval": "Interval between Labels ", + "SSE.Views.ChartSettingsDlg.textLabelOptions": "Label Options", + "SSE.Views.ChartSettingsDlg.textLabelPos": "Label Position", + "SSE.Views.ChartSettingsDlg.textLayout": "Layout", + "SSE.Views.ChartSettingsDlg.textLeft": "Left", + "SSE.Views.ChartSettingsDlg.textLeftOverlay": "Left Overlay", + "SSE.Views.ChartSettingsDlg.textLegendBottom": "Bottom", + "SSE.Views.ChartSettingsDlg.textLegendLeft": "Left", + "SSE.Views.ChartSettingsDlg.textLegendPos": "Legend", + "SSE.Views.ChartSettingsDlg.textLegendRight": "Right", + "SSE.Views.ChartSettingsDlg.textLegendTop": "Top", + "SSE.Views.ChartSettingsDlg.textLines": "Lines ", + "SSE.Views.ChartSettingsDlg.textLocationRange": "Location Range", + "SSE.Views.ChartSettingsDlg.textLow": "Low", + "SSE.Views.ChartSettingsDlg.textMajor": "Major", + "SSE.Views.ChartSettingsDlg.textMajorMinor": "Major and Minor", + "SSE.Views.ChartSettingsDlg.textMajorType": "Major Type", + "SSE.Views.ChartSettingsDlg.textManual": "Manual", + "SSE.Views.ChartSettingsDlg.textMarkers": "Markers", + "SSE.Views.ChartSettingsDlg.textMarksInterval": "Interval between Marks", + "SSE.Views.ChartSettingsDlg.textMaxValue": "Maximum Value", + "SSE.Views.ChartSettingsDlg.textMillions": "Millions", + "SSE.Views.ChartSettingsDlg.textMinor": "Minor", + "SSE.Views.ChartSettingsDlg.textMinorType": "Minor Type", + "SSE.Views.ChartSettingsDlg.textMinValue": "Minimum Value", + "SSE.Views.ChartSettingsDlg.textNextToAxis": "Next to axis", + "SSE.Views.ChartSettingsDlg.textNone": "None", + "SSE.Views.ChartSettingsDlg.textNoOverlay": "No Overlay", + "SSE.Views.ChartSettingsDlg.textOneCell": "Move but don't size with cells", + "SSE.Views.ChartSettingsDlg.textOnTickMarks": "On Tick Marks", + "SSE.Views.ChartSettingsDlg.textOut": "Out", + "SSE.Views.ChartSettingsDlg.textOuterTop": "Outer Top", + "SSE.Views.ChartSettingsDlg.textOverlay": "Overlay", + "SSE.Views.ChartSettingsDlg.textReverse": "Values in reverse order", + "SSE.Views.ChartSettingsDlg.textReverseOrder": "Reverse order", + "SSE.Views.ChartSettingsDlg.textRight": "Right", + "SSE.Views.ChartSettingsDlg.textRightOverlay": "Right Overlay", + "SSE.Views.ChartSettingsDlg.textRotated": "Rotated", + "SSE.Views.ChartSettingsDlg.textSameAll": "Same for All", + "SSE.Views.ChartSettingsDlg.textSelectData": "Select Data", + "SSE.Views.ChartSettingsDlg.textSeparator": "Data Labels Separator", + "SSE.Views.ChartSettingsDlg.textSeriesName": "Series Name", + "SSE.Views.ChartSettingsDlg.textShow": "Show", + "SSE.Views.ChartSettingsDlg.textShowBorders": "Display chart borders", + "SSE.Views.ChartSettingsDlg.textShowData": "Show data in hidden rows and columns", + "SSE.Views.ChartSettingsDlg.textShowEmptyCells": "Show empty cells as", + "SSE.Views.ChartSettingsDlg.textShowSparkAxis": "Show Axis", + "SSE.Views.ChartSettingsDlg.textShowValues": "Display chart values", + "SSE.Views.ChartSettingsDlg.textSingle": "Single Sparkline", + "SSE.Views.ChartSettingsDlg.textSmooth": "Smooth", + "SSE.Views.ChartSettingsDlg.textSnap": "Cell Snapping", + "SSE.Views.ChartSettingsDlg.textSparkRanges": "Sparkline Ranges", + "SSE.Views.ChartSettingsDlg.textStraight": "Straight", + "SSE.Views.ChartSettingsDlg.textStyle": "Style", + "SSE.Views.ChartSettingsDlg.textTenMillions": "10 000 000", + "SSE.Views.ChartSettingsDlg.textTenThousands": "10 000", + "SSE.Views.ChartSettingsDlg.textThousands": "Thousands", + "SSE.Views.ChartSettingsDlg.textTickOptions": "Tick Options", + "SSE.Views.ChartSettingsDlg.textTitle": "Chart - Advanced Settings", + "SSE.Views.ChartSettingsDlg.textTitleSparkline": "Sparkline - Advanced Settings", + "SSE.Views.ChartSettingsDlg.textTop": "Top", + "SSE.Views.ChartSettingsDlg.textTrillions": "Trillions", + "SSE.Views.ChartSettingsDlg.textTwoCell": "Move and size with cells", + "SSE.Views.ChartSettingsDlg.textType": "Type", + "SSE.Views.ChartSettingsDlg.textTypeData": "Type & Data", + "SSE.Views.ChartSettingsDlg.textUnits": "Display Units", + "SSE.Views.ChartSettingsDlg.textValue": "Value", + "SSE.Views.ChartSettingsDlg.textVertAxis": "Vertical Axis", + "SSE.Views.ChartSettingsDlg.textVertAxisSec": "Secondary Vertical Axis", + "SSE.Views.ChartSettingsDlg.textXAxisTitle": "X Axis Title", + "SSE.Views.ChartSettingsDlg.textYAxisTitle": "Y Axis Title", + "SSE.Views.ChartSettingsDlg.textZero": "Zero", + "SSE.Views.ChartSettingsDlg.txtEmpty": "This field is required", + "SSE.Views.ChartTypeDialog.errorComboSeries": "To create a combination chart, select at least two series of data.", + "SSE.Views.ChartTypeDialog.errorSecondaryAxis": "The selected chart type requires the secondary axis that an existing chart is using. Select another chart type.", + "SSE.Views.ChartTypeDialog.textSecondary": "Secondary Axis", + "SSE.Views.ChartTypeDialog.textSeries": "Series", + "SSE.Views.ChartTypeDialog.textStyle": "Style", + "SSE.Views.ChartTypeDialog.textTitle": "Chart Type", + "SSE.Views.ChartTypeDialog.textType": "Type", + "SSE.Views.CreatePivotDialog.textDataRange": "Source data range", + "SSE.Views.CreatePivotDialog.textDestination": "Choose where to place the table", + "SSE.Views.CreatePivotDialog.textExist": "Existing worksheet", + "SSE.Views.CreatePivotDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.CreatePivotDialog.textNew": "New worksheet", + "SSE.Views.CreatePivotDialog.textSelectData": "Select data", + "SSE.Views.CreatePivotDialog.textTitle": "Create Pivot Table", + "SSE.Views.CreatePivotDialog.txtEmpty": "This field is required", + "SSE.Views.CreateSparklineDialog.textDataRange": "Source data range", + "SSE.Views.CreateSparklineDialog.textDestination": "Choose, where to place the sparklines", + "SSE.Views.CreateSparklineDialog.textInvalidRange": "Invalid cells range", + "SSE.Views.CreateSparklineDialog.textSelectData": "Select data", + "SSE.Views.CreateSparklineDialog.textTitle": "Create Sparklines", + "SSE.Views.CreateSparklineDialog.txtEmpty": "This field is required", + "SSE.Views.DataTab.capBtnGroup": "Group", + "SSE.Views.DataTab.capBtnTextCustomSort": "Custom Sort", + "SSE.Views.DataTab.capBtnTextDataValidation": "Data Validation", + "SSE.Views.DataTab.capBtnTextRemDuplicates": "Remove Duplicates", + "SSE.Views.DataTab.capBtnTextToCol": "Text to Columns", + "SSE.Views.DataTab.capBtnUngroup": "Ungroup", + "SSE.Views.DataTab.capDataFromText": "Get data", + "SSE.Views.DataTab.mniFromFile": "From local TXT/CSV", + "SSE.Views.DataTab.mniFromUrl": "From TXT/CSV web address", + "SSE.Views.DataTab.textBelow": "Summary rows below detail", + "SSE.Views.DataTab.textClear": "Clear outline", + "SSE.Views.DataTab.textColumns": "Ungroup columns", + "SSE.Views.DataTab.textGroupColumns": "Group columns", + "SSE.Views.DataTab.textGroupRows": "Group rows", + "SSE.Views.DataTab.textRightOf": "Summary columns to right of detail", + "SSE.Views.DataTab.textRows": "Ungroup rows", + "SSE.Views.DataTab.tipCustomSort": "Custom sort", + "SSE.Views.DataTab.tipDataFromText": "Get data from Text/CSV file", + "SSE.Views.DataTab.tipDataValidation": "Data validation", + "SSE.Views.DataTab.tipGroup": "Group range of cells", + "SSE.Views.DataTab.tipRemDuplicates": "Remove duplicate rows from a sheet", + "SSE.Views.DataTab.tipToColumns": "Separate cell text into columns", + "SSE.Views.DataTab.tipUngroup": "Ungroup range of cells", + "SSE.Views.DataValidationDialog.errorFormula": "The value currently evaluates to an error. Do you want to continue?", + "SSE.Views.DataValidationDialog.errorInvalid": "The value you entered for the field \"{0}\" is invalid.", + "SSE.Views.DataValidationDialog.errorInvalidDate": "The date you entered for the field \"{0}\" is invalid.", + "SSE.Views.DataValidationDialog.errorInvalidList": "The list source must be a delimited list, or a reference to single row or column.", + "SSE.Views.DataValidationDialog.errorInvalidTime": "The time you entered for the field \"{0}\" is invalid.", + "SSE.Views.DataValidationDialog.errorMinGreaterMax": "The \"{1}\" field must be greater than or equal to the \"{0}\" field.", + "SSE.Views.DataValidationDialog.errorMustEnterBothValues": "You must enter a value in both field \"{0}\" and field \"{1}\".", + "SSE.Views.DataValidationDialog.errorMustEnterValue": "You must enter a value in field \"{0}\".", + "SSE.Views.DataValidationDialog.errorNamedRange": "A named range you specified cannot be found.", + "SSE.Views.DataValidationDialog.errorNegativeTextLength": "Negative values cannot be used in conditions \"{0}\".", + "SSE.Views.DataValidationDialog.errorNotNumeric": "The field \"{0}\" must be a numeric value, numeric expression, or refer to a cell containing a numeric value.", + "SSE.Views.DataValidationDialog.strError": "Error Alert", + "SSE.Views.DataValidationDialog.strInput": "Input Message", + "SSE.Views.DataValidationDialog.strSettings": "Settings", + "SSE.Views.DataValidationDialog.textAlert": "Alert", + "SSE.Views.DataValidationDialog.textAllow": "Allow", + "SSE.Views.DataValidationDialog.textApply": "Apply these changes to all other cells with the same settings", + "SSE.Views.DataValidationDialog.textCellSelected": "When cell is selected, show this input message", + "SSE.Views.DataValidationDialog.textCompare": "Compare to", + "SSE.Views.DataValidationDialog.textData": "Data", + "SSE.Views.DataValidationDialog.textEndDate": "End Date", + "SSE.Views.DataValidationDialog.textEndTime": "End Time", + "SSE.Views.DataValidationDialog.textError": "Error Message", + "SSE.Views.DataValidationDialog.textFormula": "Formula", + "SSE.Views.DataValidationDialog.textIgnore": "Ignore blank", + "SSE.Views.DataValidationDialog.textInput": "Input Message", + "SSE.Views.DataValidationDialog.textMax": "Maximum", + "SSE.Views.DataValidationDialog.textMessage": "Message", + "SSE.Views.DataValidationDialog.textMin": "Minimum", + "SSE.Views.DataValidationDialog.textSelectData": "Select data", + "SSE.Views.DataValidationDialog.textShowDropDown": "Show drop-down list in cell", + "SSE.Views.DataValidationDialog.textShowError": "Show error alert after invalid data is entered", + "SSE.Views.DataValidationDialog.textShowInput": "Show input message when cell is selected", + "SSE.Views.DataValidationDialog.textSource": "Source", + "SSE.Views.DataValidationDialog.textStartDate": "Start Date", + "SSE.Views.DataValidationDialog.textStartTime": "Start Time", + "SSE.Views.DataValidationDialog.textStop": "Stop", + "SSE.Views.DataValidationDialog.textStyle": "Style", + "SSE.Views.DataValidationDialog.textTitle": "Title", + "SSE.Views.DataValidationDialog.textUserEnters": "When user enters invalid data, show this error alert", + "SSE.Views.DataValidationDialog.txtAny": "Any value", + "SSE.Views.DataValidationDialog.txtBetween": "between", + "SSE.Views.DataValidationDialog.txtDate": "Date", + "SSE.Views.DataValidationDialog.txtDecimal": "Decimal", + "SSE.Views.DataValidationDialog.txtElTime": "Elapsed time", + "SSE.Views.DataValidationDialog.txtEndDate": "End date", + "SSE.Views.DataValidationDialog.txtEndTime": "End time", + "SSE.Views.DataValidationDialog.txtEqual": "equals", + "SSE.Views.DataValidationDialog.txtGreaterThan": "greater than", + "SSE.Views.DataValidationDialog.txtGreaterThanOrEqual": "greater than or equal to", + "SSE.Views.DataValidationDialog.txtLength": "Length", + "SSE.Views.DataValidationDialog.txtLessThan": "less than", + "SSE.Views.DataValidationDialog.txtLessThanOrEqual": "less than or equal to", + "SSE.Views.DataValidationDialog.txtList": "List", + "SSE.Views.DataValidationDialog.txtNotBetween": "not between", + "SSE.Views.DataValidationDialog.txtNotEqual": "does not equal", + "SSE.Views.DataValidationDialog.txtOther": "Other", + "SSE.Views.DataValidationDialog.txtStartDate": "Start date", + "SSE.Views.DataValidationDialog.txtStartTime": "Start time", + "SSE.Views.DataValidationDialog.txtTextLength": "Text length", + "SSE.Views.DataValidationDialog.txtTime": "Time", + "SSE.Views.DataValidationDialog.txtWhole": "Whole number", + "SSE.Views.DigitalFilterDialog.capAnd": "And", + "SSE.Views.DigitalFilterDialog.capCondition1": "equals", + "SSE.Views.DigitalFilterDialog.capCondition10": "does not end with", + "SSE.Views.DigitalFilterDialog.capCondition11": "contains", + "SSE.Views.DigitalFilterDialog.capCondition12": "does not contain", + "SSE.Views.DigitalFilterDialog.capCondition2": "does not equal", + "SSE.Views.DigitalFilterDialog.capCondition3": "is greater than", + "SSE.Views.DigitalFilterDialog.capCondition4": "is greater than or equal to", + "SSE.Views.DigitalFilterDialog.capCondition5": "is less than", + "SSE.Views.DigitalFilterDialog.capCondition6": "is less than or equal to", + "SSE.Views.DigitalFilterDialog.capCondition7": "begins with", + "SSE.Views.DigitalFilterDialog.capCondition8": "does not begin with", + "SSE.Views.DigitalFilterDialog.capCondition9": "ends with", + "SSE.Views.DigitalFilterDialog.capOr": "Or", + "SSE.Views.DigitalFilterDialog.textNoFilter": "no filter", + "SSE.Views.DigitalFilterDialog.textShowRows": "Show rows where", + "SSE.Views.DigitalFilterDialog.textUse1": "Use ? to present any single character", + "SSE.Views.DigitalFilterDialog.textUse2": "Use * to present any series of character", + "SSE.Views.DigitalFilterDialog.txtTitle": "Custom Filter", + "SSE.Views.DocumentHolder.advancedImgText": "Image Advanced Settings", + "SSE.Views.DocumentHolder.advancedShapeText": "Shape Advanced Settings", + "SSE.Views.DocumentHolder.advancedSlicerText": "Slicer Advanced Settings", + "SSE.Views.DocumentHolder.bottomCellText": "Align Bottom", + "SSE.Views.DocumentHolder.bulletsText": "Bullets and Numbering", + "SSE.Views.DocumentHolder.centerCellText": "Align Middle", + "SSE.Views.DocumentHolder.chartText": "Chart Advanced Settings", + "SSE.Views.DocumentHolder.deleteColumnText": "Column", + "SSE.Views.DocumentHolder.deleteRowText": "Row", + "SSE.Views.DocumentHolder.deleteTableText": "Table", + "SSE.Views.DocumentHolder.direct270Text": "Rotate Text Up", + "SSE.Views.DocumentHolder.direct90Text": "Rotate Text Down", + "SSE.Views.DocumentHolder.directHText": "Horizontal", + "SSE.Views.DocumentHolder.directionText": "Text Direction", + "SSE.Views.DocumentHolder.editChartText": "Edit Data", + "SSE.Views.DocumentHolder.editHyperlinkText": "Edit Hyperlink", + "SSE.Views.DocumentHolder.insertColumnLeftText": "Column Left", + "SSE.Views.DocumentHolder.insertColumnRightText": "Column Right", + "SSE.Views.DocumentHolder.insertRowAboveText": "Row Above", + "SSE.Views.DocumentHolder.insertRowBelowText": "Row Below", + "SSE.Views.DocumentHolder.originalSizeText": "Actual Size", + "SSE.Views.DocumentHolder.removeHyperlinkText": "Remove Hyperlink", + "SSE.Views.DocumentHolder.selectColumnText": "Entire Column", + "SSE.Views.DocumentHolder.selectDataText": "Column Data", + "SSE.Views.DocumentHolder.selectRowText": "Row", + "SSE.Views.DocumentHolder.selectTableText": "Table", + "SSE.Views.DocumentHolder.strDelete": "Remove Signature", + "SSE.Views.DocumentHolder.strDetails": "Signature Details", + "SSE.Views.DocumentHolder.strSetup": "Signature Setup", + "SSE.Views.DocumentHolder.strSign": "Sign", + "SSE.Views.DocumentHolder.textAlign": "Align", + "SSE.Views.DocumentHolder.textArrange": "Arrange", + "SSE.Views.DocumentHolder.textArrangeBack": "Send to Background", + "SSE.Views.DocumentHolder.textArrangeBackward": "Send Backward", + "SSE.Views.DocumentHolder.textArrangeForward": "Bring Forward", + "SSE.Views.DocumentHolder.textArrangeFront": "Bring to Foreground", + "SSE.Views.DocumentHolder.textAverage": "Average", + "SSE.Views.DocumentHolder.textBullets": "Bullets", + "SSE.Views.DocumentHolder.textCount": "Count", + "SSE.Views.DocumentHolder.textCrop": "Crop", + "SSE.Views.DocumentHolder.textCropFill": "Fill", + "SSE.Views.DocumentHolder.textCropFit": "Fit", + "SSE.Views.DocumentHolder.textEntriesList": "Select from drop-down list", + "SSE.Views.DocumentHolder.textFlipH": "Flip Horizontally", + "SSE.Views.DocumentHolder.textFlipV": "Flip Vertically", + "SSE.Views.DocumentHolder.textFreezePanes": "Freeze Panes", + "SSE.Views.DocumentHolder.textFromFile": "From File", + "SSE.Views.DocumentHolder.textFromStorage": "From Storage", + "SSE.Views.DocumentHolder.textFromUrl": "From URL", + "SSE.Views.DocumentHolder.textListSettings": "List Settings", + "SSE.Views.DocumentHolder.textMacro": "Assign Macro", + "SSE.Views.DocumentHolder.textMax": "Max", + "SSE.Views.DocumentHolder.textMin": "Min", + "SSE.Views.DocumentHolder.textMore": "More functions", + "SSE.Views.DocumentHolder.textMoreFormats": "More formats", + "SSE.Views.DocumentHolder.textNone": "None", + "SSE.Views.DocumentHolder.textNumbering": "Numbering", + "SSE.Views.DocumentHolder.textReplace": "Replace image", + "SSE.Views.DocumentHolder.textRotate": "Rotate", + "SSE.Views.DocumentHolder.textRotate270": "Rotate 90° Counterclockwise", + "SSE.Views.DocumentHolder.textRotate90": "Rotate 90° Clockwise", + "SSE.Views.DocumentHolder.textShapeAlignBottom": "Align Bottom", + "SSE.Views.DocumentHolder.textShapeAlignCenter": "Align Center", + "SSE.Views.DocumentHolder.textShapeAlignLeft": "Align Left", + "SSE.Views.DocumentHolder.textShapeAlignMiddle": "Align Middle", + "SSE.Views.DocumentHolder.textShapeAlignRight": "Align Right", + "SSE.Views.DocumentHolder.textShapeAlignTop": "Align Top", + "SSE.Views.DocumentHolder.textStdDev": "StdDev", + "SSE.Views.DocumentHolder.textSum": "Sum", + "SSE.Views.DocumentHolder.textUndo": "Undo", + "SSE.Views.DocumentHolder.textUnFreezePanes": "Unfreeze Panes", + "SSE.Views.DocumentHolder.textVar": "Var", + "SSE.Views.DocumentHolder.topCellText": "Align Top", + "SSE.Views.DocumentHolder.txtAccounting": "Accounting", + "SSE.Views.DocumentHolder.txtAddComment": "Add Comment", + "SSE.Views.DocumentHolder.txtAddNamedRange": "Define Name", + "SSE.Views.DocumentHolder.txtArrange": "Arrange", + "SSE.Views.DocumentHolder.txtAscending": "Ascending", + "SSE.Views.DocumentHolder.txtAutoColumnWidth": "Auto Fit Column Width", + "SSE.Views.DocumentHolder.txtAutoRowHeight": "Auto Fit Row Height", + "SSE.Views.DocumentHolder.txtClear": "Clear", + "SSE.Views.DocumentHolder.txtClearAll": "All", + "SSE.Views.DocumentHolder.txtClearComments": "Comments", + "SSE.Views.DocumentHolder.txtClearFormat": "Format", + "SSE.Views.DocumentHolder.txtClearHyper": "Hyperlinks", + "SSE.Views.DocumentHolder.txtClearSparklineGroups": "Clear Selected Sparkline Groups", + "SSE.Views.DocumentHolder.txtClearSparklines": "Clear Selected Sparklines", + "SSE.Views.DocumentHolder.txtClearText": "Text", + "SSE.Views.DocumentHolder.txtColumn": "Entire column", + "SSE.Views.DocumentHolder.txtColumnWidth": "Set Column Width", + "SSE.Views.DocumentHolder.txtCondFormat": "Conditional Formatting", + "SSE.Views.DocumentHolder.txtCopy": "Copy", + "SSE.Views.DocumentHolder.txtCurrency": "Currency", + "SSE.Views.DocumentHolder.txtCustomColumnWidth": "Custom Column Width", + "SSE.Views.DocumentHolder.txtCustomRowHeight": "Custom Row Height", + "SSE.Views.DocumentHolder.txtCustomSort": "Custom sort", + "SSE.Views.DocumentHolder.txtCut": "Cut", + "SSE.Views.DocumentHolder.txtDate": "Date", + "SSE.Views.DocumentHolder.txtDelete": "Delete", + "SSE.Views.DocumentHolder.txtDescending": "Descending", + "SSE.Views.DocumentHolder.txtDistribHor": "Distribute Horizontally", + "SSE.Views.DocumentHolder.txtDistribVert": "Distribute Vertically", + "SSE.Views.DocumentHolder.txtEditComment": "Edit Comment", + "SSE.Views.DocumentHolder.txtFilter": "Filter", + "SSE.Views.DocumentHolder.txtFilterCellColor": "Filter by cell's color", + "SSE.Views.DocumentHolder.txtFilterFontColor": "Filter by font color", + "SSE.Views.DocumentHolder.txtFilterValue": "Filter by Selected cell's value", + "SSE.Views.DocumentHolder.txtFormula": "Insert Function", + "SSE.Views.DocumentHolder.txtFraction": "Fraction", + "SSE.Views.DocumentHolder.txtGeneral": "General", + "SSE.Views.DocumentHolder.txtGroup": "Group", + "SSE.Views.DocumentHolder.txtHide": "Hide", + "SSE.Views.DocumentHolder.txtInsert": "Insert", + "SSE.Views.DocumentHolder.txtInsHyperlink": "Hyperlink", + "SSE.Views.DocumentHolder.txtNumber": "Number", + "SSE.Views.DocumentHolder.txtNumFormat": "Number Format", + "SSE.Views.DocumentHolder.txtPaste": "Paste", + "SSE.Views.DocumentHolder.txtPercentage": "Percentage", + "SSE.Views.DocumentHolder.txtReapply": "Reapply", + "SSE.Views.DocumentHolder.txtRow": "Entire row", + "SSE.Views.DocumentHolder.txtRowHeight": "Set Row Height", + "SSE.Views.DocumentHolder.txtScientific": "Scientific", + "SSE.Views.DocumentHolder.txtSelect": "Select", + "SSE.Views.DocumentHolder.txtShiftDown": "Shift cells down", + "SSE.Views.DocumentHolder.txtShiftLeft": "Shift cells left", + "SSE.Views.DocumentHolder.txtShiftRight": "Shift cells right", + "SSE.Views.DocumentHolder.txtShiftUp": "Shift cells up", + "SSE.Views.DocumentHolder.txtShow": "Show", + "SSE.Views.DocumentHolder.txtShowComment": "Show Comment", + "SSE.Views.DocumentHolder.txtSort": "Sort", + "SSE.Views.DocumentHolder.txtSortCellColor": "Selected Cell Color on top", + "SSE.Views.DocumentHolder.txtSortFontColor": "Selected Font Color on top", + "SSE.Views.DocumentHolder.txtSparklines": "Sparklines", + "SSE.Views.DocumentHolder.txtText": "Text", + "SSE.Views.DocumentHolder.txtTextAdvanced": "Paragraph Advanced Settings", + "SSE.Views.DocumentHolder.txtTime": "Time", + "SSE.Views.DocumentHolder.txtUngroup": "Ungroup", + "SSE.Views.DocumentHolder.txtWidth": "Width", + "SSE.Views.DocumentHolder.vertAlignText": "Vertical Alignment", + "SSE.Views.FieldSettingsDialog.strLayout": "Layout", + "SSE.Views.FieldSettingsDialog.strSubtotals": "Subtotals", + "SSE.Views.FieldSettingsDialog.textReport": "Report Form", + "SSE.Views.FieldSettingsDialog.textTitle": "Field Settings", + "SSE.Views.FieldSettingsDialog.txtAverage": "Average", + "SSE.Views.FieldSettingsDialog.txtBlank": "Insert blank rows after each item", + "SSE.Views.FieldSettingsDialog.txtBottom": "Show at bottom of group", + "SSE.Views.FieldSettingsDialog.txtCompact": "Compact", + "SSE.Views.FieldSettingsDialog.txtCount": "Count", + "SSE.Views.FieldSettingsDialog.txtCountNums": "Count Numbers", + "SSE.Views.FieldSettingsDialog.txtCustomName": "Custom name", + "SSE.Views.FieldSettingsDialog.txtEmpty": "Show items with no data", + "SSE.Views.FieldSettingsDialog.txtMax": "Max", + "SSE.Views.FieldSettingsDialog.txtMin": "Min", + "SSE.Views.FieldSettingsDialog.txtOutline": "Outline", + "SSE.Views.FieldSettingsDialog.txtProduct": "Product", + "SSE.Views.FieldSettingsDialog.txtRepeat": "Repeat items labels at each row", + "SSE.Views.FieldSettingsDialog.txtShowSubtotals": "Show subtotals", + "SSE.Views.FieldSettingsDialog.txtSourceName": "Source name:", + "SSE.Views.FieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.FieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.FieldSettingsDialog.txtSum": "Sum", + "SSE.Views.FieldSettingsDialog.txtSummarize": "Functions for Subtotals", + "SSE.Views.FieldSettingsDialog.txtTabular": "Tabular", + "SSE.Views.FieldSettingsDialog.txtTop": "Show at top of group", + "SSE.Views.FieldSettingsDialog.txtVar": "Var", + "SSE.Views.FieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.FileMenu.btnBackCaption": "Open file location", + "SSE.Views.FileMenu.btnCloseMenuCaption": "Close Menu", + "SSE.Views.FileMenu.btnCreateNewCaption": "Create New", + "SSE.Views.FileMenu.btnDownloadCaption": "Download as...", + "SSE.Views.FileMenu.btnHelpCaption": "Help...", + "SSE.Views.FileMenu.btnInfoCaption": "Spreadsheet Info...", + "SSE.Views.FileMenu.btnPrintCaption": "Print", + "SSE.Views.FileMenu.btnProtectCaption": "Protect", + "SSE.Views.FileMenu.btnRecentFilesCaption": "Open Recent...", + "SSE.Views.FileMenu.btnRenameCaption": "Rename...", + "SSE.Views.FileMenu.btnReturnCaption": "Back to Spreadsheet", + "SSE.Views.FileMenu.btnRightsCaption": "Access Rights...", + "SSE.Views.FileMenu.btnSaveAsCaption": "Save as", + "SSE.Views.FileMenu.btnSaveCaption": "Save", + "SSE.Views.FileMenu.btnSaveCopyAsCaption": "Save Copy as...", + "SSE.Views.FileMenu.btnSettingsCaption": "Advanced Settings...", + "SSE.Views.FileMenu.btnToEditCaption": "Edit Spreadsheet", + "SSE.Views.FileMenu.btnHistoryCaption": "Version History", + "del_SSE.Views.FileMenuPanels.CreateNew.fromBlankText": "From Blank", + "del_SSE.Views.FileMenuPanels.CreateNew.fromTemplateText": "From Template", + "del_SSE.Views.FileMenuPanels.CreateNew.newDescriptionText": "Create a new blank spreadsheet which you will be able to style and format after it is created during the editing. Or choose one of the templates to start a spreadsheet of a certain type or purpose where some styles have already been pre-applied.", + "del_SSE.Views.FileMenuPanels.CreateNew.newDocumentText": "New Spreadsheet", + "SSE.Views.FileMenuPanels.CreateNew.txtCreateNew": "Create New", + "SSE.Views.FileMenuPanels.CreateNew.txtBlank": "Blank Spreadsheet", + "SSE.Views.FileMenuPanels.DocumentInfo.okButtonText": "Apply", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddAuthor": "Add Author", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAddText": "Add Text", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAppName": "Application", + "SSE.Views.FileMenuPanels.DocumentInfo.txtAuthor": "Author", + "SSE.Views.FileMenuPanels.DocumentInfo.txtBtnAccessRights": "Change access rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtComment": "Comment", + "SSE.Views.FileMenuPanels.DocumentInfo.txtCreated": "Created", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyBy": "Last Modified By", + "SSE.Views.FileMenuPanels.DocumentInfo.txtModifyDate": "Last Modified", + "SSE.Views.FileMenuPanels.DocumentInfo.txtOwner": "Owner", + "SSE.Views.FileMenuPanels.DocumentInfo.txtPlacement": "Location", + "SSE.Views.FileMenuPanels.DocumentInfo.txtRights": "Persons who have rights", + "SSE.Views.FileMenuPanels.DocumentInfo.txtSubject": "Subject", + "SSE.Views.FileMenuPanels.DocumentInfo.txtTitle": "Title", + "SSE.Views.FileMenuPanels.DocumentInfo.txtUploaded": "Uploaded", + "SSE.Views.FileMenuPanels.DocumentRights.txtBtnAccessRights": "Change access rights", + "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "Persons who have rights", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "Apply", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "Turn on autorecover", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "Turn on autosave", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "Co-editing Mode", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "Other users will see your changes at once", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "You will need to accept changes before you can see them", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strDecimalSeparator": "Decimal separator", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFast": "Fast", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFontRender": "Font Hinting", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "Add version to storage after clicking Save or Ctrl+S", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "Formula Language", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "Example: SUM; MIN; MAX; COUNT", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "Turn on display of the comments", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "Macros Settings", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "Cut, copy and paste", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "Show the Paste Options button when the content is pasted", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strR1C1": "Turn on R1C1 style", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettings": "Regional Settings", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strRegSettingsEx": "Example: ", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strResolvedComment": "Turn on display of the resolved comments", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strSeparator": "Separator", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "Strict", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "Interface theme", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "Thousands separator", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "Unit of Measurement", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "Use separators based on regional settings", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "Default Zoom Value", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "Every 10 Minutes", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text30Minutes": "Every 30 Minutes", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text5Minutes": "Every 5 Minutes", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.text60Minutes": "Every Hour", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoRecover": "Autorecover", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textAutoSave": "Autosave", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textDisabled": "Disabled", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textForceSave": "Saving intermediate versions", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textMinute": "Every Minute", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.textRefStyle": "Reference Style", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBe": "Belarusian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtBg": "Bulgarian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCa": "Catalan", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "Default cache mode", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "Centimeter", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCs": "Czech", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDa": "Danish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "German", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEl": "Greek", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "English", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "Spanish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFi": "Finnish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "French", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtHu": "Hungarian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "Indonesian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtInch": "Inch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtIt": "Italian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtJa": "Japanese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtKo": "Korean", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLiveComment": "Commenting Display", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLo": "Lao", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtLv": "Latvian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtMac": "as OS X", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNative": "Native", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNb": "Norwegian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtNl": "Dutch", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPl": "Polish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPt": "Point", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtbr": "Portuguese (Brazil)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtPtlang": "Portuguese (Portugal)", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRo": "Romanian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRu": "Russian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacros": "Enable All", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtRunMacrosDesc": "Enable all macros without a notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSk": "Slovak", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSl": "Slovenian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacros": "Disable All", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtStopMacrosDesc": "Disable all macros without a notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtSv": "Swedish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtTr": "Turkish", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtUk": "Ukrainian", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtVi": "Vietnamese", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacros": "Show Notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWarnMacrosDesc": "Disable all macros with a notification", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtWin": "as Windows", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtZh": "Chinese", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.okButtonText": "Apply", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strDictionaryLanguage": "Dictionary language", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsInUPPERCASE": "Ignore words in UPPERCASE", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.strIgnoreWordsWithNumbers": "Ignore words with numbers", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtAutoCorrect": "AutoCorrect options...", + "SSE.Views.FileMenuPanels.MainSpellCheckSettings.txtProofing": "Proofing", + "SSE.Views.FileMenuPanels.ProtectDoc.notcriticalErrorTitle": "Warning", + "SSE.Views.FileMenuPanels.ProtectDoc.strEncrypt": "With password", + "SSE.Views.FileMenuPanels.ProtectDoc.strProtect": "Protect Spreadsheet", + "SSE.Views.FileMenuPanels.ProtectDoc.strSignature": "With signature", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEdit": "Edit spreadsheet", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEditWarning": "Editing will remove signatures from the spreadsheet.
Continue?", + "SSE.Views.FileMenuPanels.ProtectDoc.txtEncrypted": "This spreadsheet has been protected by password", + "SSE.Views.FileMenuPanels.ProtectDoc.txtRequestedSignatures": "This spreadsheet needs to be signed.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSigned": "Valid signatures have been added to the spreadsheet. The spreadsheet is protected from editing.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtSignedInvalid": "Some of the digital signatures in spreadsheet are invalid or could not be verified. The spreadsheet is protected from editing.", + "SSE.Views.FileMenuPanels.ProtectDoc.txtView": "View signatures", + "SSE.Views.FileMenuPanels.Settings.txtGeneral": "General", + "SSE.Views.FileMenuPanels.Settings.txtPageSettings": "Page Settings", + "SSE.Views.FileMenuPanels.Settings.txtSpellChecking": "Spell checking", + "SSE.Views.FormatRulesEditDlg.fillColor": "Fill color", + "SSE.Views.FormatRulesEditDlg.notcriticalErrorTitle": "Warning", + "SSE.Views.FormatRulesEditDlg.text2Scales": "2 Color scale", + "SSE.Views.FormatRulesEditDlg.text3Scales": "3 Color scale", + "SSE.Views.FormatRulesEditDlg.textAllBorders": "All Borders", + "SSE.Views.FormatRulesEditDlg.textAppearance": "Bar Appearance", + "SSE.Views.FormatRulesEditDlg.textApply": "Apply to Range", + "SSE.Views.FormatRulesEditDlg.textAutomatic": "Automatic", + "SSE.Views.FormatRulesEditDlg.textAxis": "Axis", + "SSE.Views.FormatRulesEditDlg.textBarDirection": "Bar Direction", + "SSE.Views.FormatRulesEditDlg.textBold": "Bold", + "SSE.Views.FormatRulesEditDlg.textBorder": "Border", + "SSE.Views.FormatRulesEditDlg.textBordersColor": "Borders Color", + "SSE.Views.FormatRulesEditDlg.textBordersStyle": "Border Style", + "SSE.Views.FormatRulesEditDlg.textBottomBorders": "Bottom Borders", + "SSE.Views.FormatRulesEditDlg.textCannotAddCF": "Cannot add the conditional formatting.", + "SSE.Views.FormatRulesEditDlg.textCellMidpoint": "Cell midpoint", + "SSE.Views.FormatRulesEditDlg.textCenterBorders": "Inside Vertical Borders", + "SSE.Views.FormatRulesEditDlg.textClear": "Clear", + "SSE.Views.FormatRulesEditDlg.textColor": "Text color", + "SSE.Views.FormatRulesEditDlg.textContext": "Context", + "SSE.Views.FormatRulesEditDlg.textCustom": "Custom", + "SSE.Views.FormatRulesEditDlg.textDiagDownBorder": "Diagonal Down Border", + "SSE.Views.FormatRulesEditDlg.textDiagUpBorder": "Diagonal Up Border", + "SSE.Views.FormatRulesEditDlg.textEmptyFormula": "Enter a valid formula.", + "SSE.Views.FormatRulesEditDlg.textEmptyFormulaExt": "The formula you entered does not evaluate to a number, date, time or string.", + "SSE.Views.FormatRulesEditDlg.textEmptyText": "Enter a value.", + "SSE.Views.FormatRulesEditDlg.textEmptyValue": "The value you entered is not a valid number, date, time or string.", + "SSE.Views.FormatRulesEditDlg.textErrorGreater": "The value for the {0} must be greater than the value for the {1}.", + "SSE.Views.FormatRulesEditDlg.textErrorTop10Between": "Enter a number between {0} and {1}.", + "SSE.Views.FormatRulesEditDlg.textFill": "Fill", + "SSE.Views.FormatRulesEditDlg.textFormat": "Format", + "SSE.Views.FormatRulesEditDlg.textFormula": "Formula", + "SSE.Views.FormatRulesEditDlg.textGradient": "Gradient", + "SSE.Views.FormatRulesEditDlg.textIconLabel": "when {0} {1} and", + "SSE.Views.FormatRulesEditDlg.textIconLabelFirst": "when {0} {1}", + "SSE.Views.FormatRulesEditDlg.textIconLabelLast": "when value is", + "SSE.Views.FormatRulesEditDlg.textIconsOverlap": "One or more icon data ranges overlap.
Adjust icon data range values so that the ranges do not overlap.", + "SSE.Views.FormatRulesEditDlg.textIconStyle": "Icon Style", + "SSE.Views.FormatRulesEditDlg.textInsideBorders": "Inside Borders", + "SSE.Views.FormatRulesEditDlg.textInvalid": "Invalid data range.", + "SSE.Views.FormatRulesEditDlg.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.FormatRulesEditDlg.textItalic": "Italic", + "SSE.Views.FormatRulesEditDlg.textItem": "Item", + "SSE.Views.FormatRulesEditDlg.textLeft2Right": "Left to right", + "SSE.Views.FormatRulesEditDlg.textLeftBorders": "Left Borders", + "SSE.Views.FormatRulesEditDlg.textLongBar": "longest bar", + "SSE.Views.FormatRulesEditDlg.textMaximum": "Maximum", + "SSE.Views.FormatRulesEditDlg.textMaxpoint": "Maxpoint", + "SSE.Views.FormatRulesEditDlg.textMiddleBorders": "Inside Horizontal Borders", + "SSE.Views.FormatRulesEditDlg.textMidpoint": "Midpoint", + "SSE.Views.FormatRulesEditDlg.textMinimum": "Minimum", + "SSE.Views.FormatRulesEditDlg.textMinpoint": "Minpoint", + "SSE.Views.FormatRulesEditDlg.textNegative": "Negative", + "SSE.Views.FormatRulesEditDlg.textNewColor": "Add New Custom Color", + "SSE.Views.FormatRulesEditDlg.textNoBorders": "No Borders", + "SSE.Views.FormatRulesEditDlg.textNone": "None", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentage": "One or more of the specified values is not a valid percentage.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentageExt": "The specified {0} value is not a valid percentage.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentile": "One or more of the specified values is not a valid percentile.", + "SSE.Views.FormatRulesEditDlg.textNotValidPercentileExt": "The specified {0} value is not a valid percentile.", + "SSE.Views.FormatRulesEditDlg.textOutBorders": "Outside Borders", + "SSE.Views.FormatRulesEditDlg.textPercent": "Percent", + "SSE.Views.FormatRulesEditDlg.textPercentile": "Percentile", + "SSE.Views.FormatRulesEditDlg.textPosition": "Position", + "SSE.Views.FormatRulesEditDlg.textPositive": "Positive", + "SSE.Views.FormatRulesEditDlg.textPresets": "Presets", + "SSE.Views.FormatRulesEditDlg.textPreview": "Preview", + "SSE.Views.FormatRulesEditDlg.textRelativeRef": "You cannot use relative references in conditional formatting criteria for color scales, data bars, and icon sets.", + "SSE.Views.FormatRulesEditDlg.textReverse": "Reverse Icons Order", + "SSE.Views.FormatRulesEditDlg.textRight2Left": "Right to left", + "SSE.Views.FormatRulesEditDlg.textRightBorders": "Right Borders", + "SSE.Views.FormatRulesEditDlg.textRule": "Rule", + "SSE.Views.FormatRulesEditDlg.textSameAs": "Same as positive", + "SSE.Views.FormatRulesEditDlg.textSelectData": "Select Data", + "SSE.Views.FormatRulesEditDlg.textShortBar": "shortest bar", + "SSE.Views.FormatRulesEditDlg.textShowBar": "Show bar only", + "SSE.Views.FormatRulesEditDlg.textShowIcon": "Show icon only", + "SSE.Views.FormatRulesEditDlg.textSingleRef": "This type of reference cannot be used in a conditional formatting formula.
Change the reference to a single cell, or use the reference with a worksheet function, such as =SUM(A1:B5).", + "SSE.Views.FormatRulesEditDlg.textSolid": "Solid", + "SSE.Views.FormatRulesEditDlg.textStrikeout": "Strikeout", + "SSE.Views.FormatRulesEditDlg.textSubscript": "Subscript", + "SSE.Views.FormatRulesEditDlg.textSuperscript": "Superscript", + "SSE.Views.FormatRulesEditDlg.textTopBorders": "Top Borders", + "SSE.Views.FormatRulesEditDlg.textUnderline": "Underline", + "SSE.Views.FormatRulesEditDlg.tipBorders": "Borders", + "SSE.Views.FormatRulesEditDlg.tipNumFormat": "Number Format", + "SSE.Views.FormatRulesEditDlg.txtAccounting": "Accounting", + "SSE.Views.FormatRulesEditDlg.txtCurrency": "Currency", + "SSE.Views.FormatRulesEditDlg.txtDate": "Date", + "SSE.Views.FormatRulesEditDlg.txtEmpty": "This field is required", + "SSE.Views.FormatRulesEditDlg.txtFraction": "Fraction", + "SSE.Views.FormatRulesEditDlg.txtGeneral": "General", + "SSE.Views.FormatRulesEditDlg.txtNoCellIcon": "No Icon", + "SSE.Views.FormatRulesEditDlg.txtNumber": "Number", + "SSE.Views.FormatRulesEditDlg.txtPercentage": "Percentage", + "SSE.Views.FormatRulesEditDlg.txtScientific": "Scientific", + "SSE.Views.FormatRulesEditDlg.txtText": "Text", + "SSE.Views.FormatRulesEditDlg.txtTime": "Time", + "SSE.Views.FormatRulesEditDlg.txtTitleEdit": "Edit Formatting Rule", + "SSE.Views.FormatRulesEditDlg.txtTitleNew": "New Formatting Rule", + "SSE.Views.FormatRulesManagerDlg.guestText": "Guest", + "SSE.Views.FormatRulesManagerDlg.text1Above": "1 std dev above average", + "SSE.Views.FormatRulesManagerDlg.text1Below": "1 std dev below average", + "SSE.Views.FormatRulesManagerDlg.text2Above": "2 std dev above average", + "SSE.Views.FormatRulesManagerDlg.text2Below": "2 std dev below average", + "SSE.Views.FormatRulesManagerDlg.text3Above": "3 std dev above average", + "SSE.Views.FormatRulesManagerDlg.text3Below": "3 std dev below average", + "SSE.Views.FormatRulesManagerDlg.textAbove": "Above average", + "SSE.Views.FormatRulesManagerDlg.textApply": "Apply to", + "SSE.Views.FormatRulesManagerDlg.textBeginsWith": "Cell value begins with", + "SSE.Views.FormatRulesManagerDlg.textBelow": "Below average", + "SSE.Views.FormatRulesManagerDlg.textBetween": "is between {0} and {1}", + "SSE.Views.FormatRulesManagerDlg.textCellValue": "Cell value", + "SSE.Views.FormatRulesManagerDlg.textColorScale": "Graded color scale", + "SSE.Views.FormatRulesManagerDlg.textContains": "Cell value contains", + "SSE.Views.FormatRulesManagerDlg.textContainsBlank": "Cell contains a blank value", + "SSE.Views.FormatRulesManagerDlg.textContainsError": "Cell contains an error", + "SSE.Views.FormatRulesManagerDlg.textDelete": "Delete", + "SSE.Views.FormatRulesManagerDlg.textDown": "Move rule down", + "SSE.Views.FormatRulesManagerDlg.textDuplicate": "Duplicate values", + "SSE.Views.FormatRulesManagerDlg.textEdit": "Edit", + "SSE.Views.FormatRulesManagerDlg.textEnds": "Cell value ends with", + "SSE.Views.FormatRulesManagerDlg.textEqAbove": "Equal to or above average", + "SSE.Views.FormatRulesManagerDlg.textEqBelow": "Equal to or below average", + "SSE.Views.FormatRulesManagerDlg.textFormat": "Format", + "SSE.Views.FormatRulesManagerDlg.textIconSet": "Icon set", + "SSE.Views.FormatRulesManagerDlg.textNew": "New", + "SSE.Views.FormatRulesManagerDlg.textNotBetween": "is not between {0} and {1}", + "SSE.Views.FormatRulesManagerDlg.textNotContains": "Cell value does not contain", + "SSE.Views.FormatRulesManagerDlg.textNotContainsBlank": "Cell does not contain a blank value", + "SSE.Views.FormatRulesManagerDlg.textNotContainsError": "Cell does not contain an error", + "SSE.Views.FormatRulesManagerDlg.textRules": "Rules", + "SSE.Views.FormatRulesManagerDlg.textScope": "Show formatting rules for", + "SSE.Views.FormatRulesManagerDlg.textSelectData": "Select data", + "SSE.Views.FormatRulesManagerDlg.textSelection": "Current selection", + "SSE.Views.FormatRulesManagerDlg.textThisPivot": "This pivot", + "SSE.Views.FormatRulesManagerDlg.textThisSheet": "This worksheet", + "SSE.Views.FormatRulesManagerDlg.textThisTable": "This table", + "SSE.Views.FormatRulesManagerDlg.textUnique": "Unique values", + "SSE.Views.FormatRulesManagerDlg.textUp": "Move rule up", + "SSE.Views.FormatRulesManagerDlg.tipIsLocked": "This element is being edited by another user.", + "SSE.Views.FormatRulesManagerDlg.txtTitle": "Conditional Formatting", + "SSE.Views.FormatSettingsDialog.textCategory": "Category", + "SSE.Views.FormatSettingsDialog.textDecimal": "Decimal", + "SSE.Views.FormatSettingsDialog.textFormat": "Format", + "SSE.Views.FormatSettingsDialog.textLinked": "Linked to source", + "SSE.Views.FormatSettingsDialog.textSeparator": "Use 1000 separator", + "SSE.Views.FormatSettingsDialog.textSymbols": "Symbols", + "SSE.Views.FormatSettingsDialog.textTitle": "Number Format", + "SSE.Views.FormatSettingsDialog.txtAccounting": "Accounting", + "SSE.Views.FormatSettingsDialog.txtAs10": "As tenths (5/10)", + "SSE.Views.FormatSettingsDialog.txtAs100": "As hundredths (50/100)", + "SSE.Views.FormatSettingsDialog.txtAs16": "As sixteenths (8/16)", + "SSE.Views.FormatSettingsDialog.txtAs2": "As halves (1/2)", + "SSE.Views.FormatSettingsDialog.txtAs4": "As fourths (2/4)", + "SSE.Views.FormatSettingsDialog.txtAs8": "As eighths (4/8)", + "SSE.Views.FormatSettingsDialog.txtCurrency": "Currency", + "SSE.Views.FormatSettingsDialog.txtCustom": "Custom", + "SSE.Views.FormatSettingsDialog.txtCustomWarning": "Please enter the custom number format carefully. Spreadsheet Editor does not check custom formats for errors that may affect the xlsx file.", + "SSE.Views.FormatSettingsDialog.txtDate": "Date", + "SSE.Views.FormatSettingsDialog.txtFraction": "Fraction", + "SSE.Views.FormatSettingsDialog.txtGeneral": "General", + "SSE.Views.FormatSettingsDialog.txtNone": "None", + "SSE.Views.FormatSettingsDialog.txtNumber": "Number", + "SSE.Views.FormatSettingsDialog.txtPercentage": "Percentage", + "SSE.Views.FormatSettingsDialog.txtSample": "Sample:", + "SSE.Views.FormatSettingsDialog.txtScientific": "Scientific", + "SSE.Views.FormatSettingsDialog.txtText": "Text", + "SSE.Views.FormatSettingsDialog.txtTime": "Time", + "SSE.Views.FormatSettingsDialog.txtUpto1": "Up to one digit (1/3)", + "SSE.Views.FormatSettingsDialog.txtUpto2": "Up to two digits (12/25)", + "SSE.Views.FormatSettingsDialog.txtUpto3": "Up to three digits (131/135)", + "SSE.Views.FormulaDialog.sDescription": "Description", + "SSE.Views.FormulaDialog.textGroupDescription": "Select Function Group", + "SSE.Views.FormulaDialog.textListDescription": "Select Function", + "SSE.Views.FormulaDialog.txtRecommended": "Recommended", + "SSE.Views.FormulaDialog.txtSearch": "Search", + "SSE.Views.FormulaDialog.txtTitle": "Insert Function", + "SSE.Views.FormulaTab.textAutomatic": "Automatic", + "SSE.Views.FormulaTab.textCalculateCurrentSheet": "Calculate current sheet", + "SSE.Views.FormulaTab.textCalculateWorkbook": "Calculate workbook", + "SSE.Views.FormulaTab.textManual": "Manual", + "SSE.Views.FormulaTab.tipCalculate": "Calculate", + "SSE.Views.FormulaTab.tipCalculateTheEntireWorkbook": "Calculate the entire workbook", + "SSE.Views.FormulaTab.txtAdditional": "Additional", + "SSE.Views.FormulaTab.txtAutosum": "Autosum", + "SSE.Views.FormulaTab.txtAutosumTip": "Summation", + "SSE.Views.FormulaTab.txtCalculation": "Calculation", + "SSE.Views.FormulaTab.txtFormula": "Function", + "SSE.Views.FormulaTab.txtFormulaTip": "Insert function", + "SSE.Views.FormulaTab.txtMore": "More functions", + "SSE.Views.FormulaTab.txtRecent": "Recently used", + "SSE.Views.FormulaWizard.textAny": "any", + "SSE.Views.FormulaWizard.textArgument": "Argument", + "SSE.Views.FormulaWizard.textFunction": "Function", + "SSE.Views.FormulaWizard.textFunctionRes": "Function result", + "SSE.Views.FormulaWizard.textHelp": "Help on this function", + "SSE.Views.FormulaWizard.textLogical": "logical", + "SSE.Views.FormulaWizard.textNoArgs": "This function has no arguments", + "SSE.Views.FormulaWizard.textNumber": "number", + "SSE.Views.FormulaWizard.textRef": "reference", + "SSE.Views.FormulaWizard.textText": "text", + "SSE.Views.FormulaWizard.textTitle": "Function Arguments", + "SSE.Views.FormulaWizard.textValue": "Formula result", + "SSE.Views.HeaderFooterDialog.textAlign": "Align with page margins", + "SSE.Views.HeaderFooterDialog.textAll": "All pages", + "SSE.Views.HeaderFooterDialog.textBold": "Bold", + "SSE.Views.HeaderFooterDialog.textCenter": "Center", + "SSE.Views.HeaderFooterDialog.textColor": "Text color", + "SSE.Views.HeaderFooterDialog.textDate": "Date", + "SSE.Views.HeaderFooterDialog.textDiffFirst": "Different first page", + "SSE.Views.HeaderFooterDialog.textDiffOdd": "Different odd and even pages", + "SSE.Views.HeaderFooterDialog.textEven": "Even page", + "SSE.Views.HeaderFooterDialog.textFileName": "File name", + "SSE.Views.HeaderFooterDialog.textFirst": "First page", + "SSE.Views.HeaderFooterDialog.textFooter": "Footer", + "SSE.Views.HeaderFooterDialog.textHeader": "Header", + "SSE.Views.HeaderFooterDialog.textInsert": "Insert", + "SSE.Views.HeaderFooterDialog.textItalic": "Italic", + "SSE.Views.HeaderFooterDialog.textLeft": "Left", + "SSE.Views.HeaderFooterDialog.textMaxError": "The text string you entered is too long. Reduce the number of characters used.", + "SSE.Views.HeaderFooterDialog.textNewColor": "Add New Custom Color", + "SSE.Views.HeaderFooterDialog.textOdd": "Odd page", + "SSE.Views.HeaderFooterDialog.textPageCount": "Page count", + "SSE.Views.HeaderFooterDialog.textPageNum": "Page number", + "SSE.Views.HeaderFooterDialog.textPresets": "Presets", + "SSE.Views.HeaderFooterDialog.textRight": "Right", + "SSE.Views.HeaderFooterDialog.textScale": "Scale with document", + "SSE.Views.HeaderFooterDialog.textSheet": "Sheet name", + "SSE.Views.HeaderFooterDialog.textStrikeout": "Strikethrough", + "SSE.Views.HeaderFooterDialog.textSubscript": "Subscript", + "SSE.Views.HeaderFooterDialog.textSuperscript": "Superscript", + "SSE.Views.HeaderFooterDialog.textTime": "Time", + "SSE.Views.HeaderFooterDialog.textTitle": "Header/Footer Settings", + "SSE.Views.HeaderFooterDialog.textUnderline": "Underline", + "SSE.Views.HeaderFooterDialog.tipFontName": "Font", + "SSE.Views.HeaderFooterDialog.tipFontSize": "Font size", + "SSE.Views.HyperlinkSettingsDialog.strDisplay": "Display", + "SSE.Views.HyperlinkSettingsDialog.strLinkTo": "Link to", + "SSE.Views.HyperlinkSettingsDialog.strRange": "Range", + "SSE.Views.HyperlinkSettingsDialog.strSheet": "Sheet", + "SSE.Views.HyperlinkSettingsDialog.textCopy": "Copy", + "SSE.Views.HyperlinkSettingsDialog.textDefault": "Selected range", + "SSE.Views.HyperlinkSettingsDialog.textEmptyDesc": "Enter caption here", + "SSE.Views.HyperlinkSettingsDialog.textEmptyLink": "Enter link here", + "SSE.Views.HyperlinkSettingsDialog.textEmptyTooltip": "Enter tooltip here", + "SSE.Views.HyperlinkSettingsDialog.textExternalLink": "External Link", + "SSE.Views.HyperlinkSettingsDialog.textGetLink": "Get Link", + "SSE.Views.HyperlinkSettingsDialog.textInternalLink": "Internal Data Range", + "SSE.Views.HyperlinkSettingsDialog.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.HyperlinkSettingsDialog.textNames": "Defined names", + "SSE.Views.HyperlinkSettingsDialog.textSelectData": "Select data", + "SSE.Views.HyperlinkSettingsDialog.textSheets": "Sheets", + "SSE.Views.HyperlinkSettingsDialog.textTipText": "ScreenTip Text", + "SSE.Views.HyperlinkSettingsDialog.textTitle": "Hyperlink Settings", + "SSE.Views.HyperlinkSettingsDialog.txtEmpty": "This field is required", + "SSE.Views.HyperlinkSettingsDialog.txtNotUrl": "This field should be a URL in the \"http://www.example.com\" format", + "SSE.Views.HyperlinkSettingsDialog.txtSizeLimit": "This field is limited to 2083 characters", + "SSE.Views.ImageSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ImageSettings.textCrop": "Crop", + "SSE.Views.ImageSettings.textCropFill": "Fill", + "SSE.Views.ImageSettings.textCropFit": "Fit", + "SSE.Views.ImageSettings.textEdit": "Edit", + "SSE.Views.ImageSettings.textEditObject": "Edit Object", + "SSE.Views.ImageSettings.textFlip": "Flip", + "SSE.Views.ImageSettings.textFromFile": "From File", + "SSE.Views.ImageSettings.textFromStorage": "From Storage", + "SSE.Views.ImageSettings.textFromUrl": "From URL", + "SSE.Views.ImageSettings.textHeight": "Height", + "SSE.Views.ImageSettings.textHint270": "Rotate 90° Counterclockwise", + "SSE.Views.ImageSettings.textHint90": "Rotate 90° Clockwise", + "SSE.Views.ImageSettings.textHintFlipH": "Flip Horizontally", + "SSE.Views.ImageSettings.textHintFlipV": "Flip Vertically", + "SSE.Views.ImageSettings.textInsert": "Replace Image", + "SSE.Views.ImageSettings.textKeepRatio": "Constant proportions", + "SSE.Views.ImageSettings.textOriginalSize": "Actual Size", + "SSE.Views.ImageSettings.textRotate90": "Rotate 90°", + "SSE.Views.ImageSettings.textRotation": "Rotation", + "SSE.Views.ImageSettings.textSize": "Size", + "SSE.Views.ImageSettings.textWidth": "Width", + "SSE.Views.ImageSettingsAdvanced.textAbsolute": "Don't move or size with cells", + "SSE.Views.ImageSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.ImageSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.ImageSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", + "SSE.Views.ImageSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.ImageSettingsAdvanced.textAngle": "Angle", + "SSE.Views.ImageSettingsAdvanced.textFlipped": "Flipped", + "SSE.Views.ImageSettingsAdvanced.textHorizontally": "Horizontally", + "SSE.Views.ImageSettingsAdvanced.textOneCell": "Move but don't size with cells", + "SSE.Views.ImageSettingsAdvanced.textRotation": "Rotation", + "SSE.Views.ImageSettingsAdvanced.textSnap": "Cell Snapping", + "SSE.Views.ImageSettingsAdvanced.textTitle": "Image - Advanced Settings", + "SSE.Views.ImageSettingsAdvanced.textTwoCell": "Move and size with cells", + "SSE.Views.ImageSettingsAdvanced.textVertically": "Vertically", + "SSE.Views.LeftMenu.tipAbout": "About", + "SSE.Views.LeftMenu.tipChat": "Chat", + "SSE.Views.LeftMenu.tipComments": "Comments", + "SSE.Views.LeftMenu.tipFile": "File", + "SSE.Views.LeftMenu.tipPlugins": "Plugins", + "SSE.Views.LeftMenu.tipSearch": "Search", + "SSE.Views.LeftMenu.tipSpellcheck": "Spell checking", + "SSE.Views.LeftMenu.tipSupport": "Feedback & Support", + "SSE.Views.LeftMenu.txtDeveloper": "DEVELOPER MODE", + "SSE.Views.LeftMenu.txtLimit": "Limit Access", + "SSE.Views.LeftMenu.txtTrial": "TRIAL MODE", + "SSE.Views.LeftMenu.txtTrialDev": "Trial Developer Mode", + "SSE.Views.MacroDialog.textMacro": "Macro name", + "SSE.Views.MacroDialog.textTitle": "Assign Macro", + "SSE.Views.MainSettingsPrint.okButtonText": "Save", + "SSE.Views.MainSettingsPrint.strBottom": "Bottom", + "SSE.Views.MainSettingsPrint.strLandscape": "Landscape", + "SSE.Views.MainSettingsPrint.strLeft": "Left", + "SSE.Views.MainSettingsPrint.strMargins": "Margins", + "SSE.Views.MainSettingsPrint.strPortrait": "Portrait", + "SSE.Views.MainSettingsPrint.strPrint": "Print", + "SSE.Views.MainSettingsPrint.strPrintTitles": "Print Titles", + "SSE.Views.MainSettingsPrint.strRight": "Right", + "SSE.Views.MainSettingsPrint.strTop": "Top", + "SSE.Views.MainSettingsPrint.textActualSize": "Actual Size", + "SSE.Views.MainSettingsPrint.textCustom": "Custom", + "SSE.Views.MainSettingsPrint.textCustomOptions": "Custom Options", + "SSE.Views.MainSettingsPrint.textFitCols": "Fit All Columns on One Page", + "SSE.Views.MainSettingsPrint.textFitPage": "Fit Sheet on One Page", + "SSE.Views.MainSettingsPrint.textFitRows": "Fit All Rows on One Page", + "SSE.Views.MainSettingsPrint.textPageOrientation": "Page Orientation", + "SSE.Views.MainSettingsPrint.textPageScaling": "Scaling", + "SSE.Views.MainSettingsPrint.textPageSize": "Page Size", + "SSE.Views.MainSettingsPrint.textPrintGrid": "Print Gridlines", + "SSE.Views.MainSettingsPrint.textPrintHeadings": "Print Row and Column Headings", + "SSE.Views.MainSettingsPrint.textRepeat": "Repeat...", + "SSE.Views.MainSettingsPrint.textRepeatLeft": "Repeat columns at left", + "SSE.Views.MainSettingsPrint.textRepeatTop": "Repeat rows at top", + "SSE.Views.MainSettingsPrint.textSettings": "Settings for", + "SSE.Views.NamedRangeEditDlg.errorCreateDefName": "The existing named ranges cannot be edited and the new ones cannot be created
at the moment as some of them are being edited.", + "SSE.Views.NamedRangeEditDlg.namePlaceholder": "Defined name", + "SSE.Views.NamedRangeEditDlg.notcriticalErrorTitle": "Warning", + "SSE.Views.NamedRangeEditDlg.strWorkbook": "Workbook", + "SSE.Views.NamedRangeEditDlg.textDataRange": "Data Range", + "SSE.Views.NamedRangeEditDlg.textExistName": "ERROR! Range with such a name already exists", + "SSE.Views.NamedRangeEditDlg.textInvalidName": "The name must begin with a letter or an underscore and must not contain invalid characters.", + "SSE.Views.NamedRangeEditDlg.textInvalidRange": "ERROR! Invalid cell range", + "SSE.Views.NamedRangeEditDlg.textIsLocked": "ERROR! This element is being edited by another user.", + "SSE.Views.NamedRangeEditDlg.textName": "Name", + "SSE.Views.NamedRangeEditDlg.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", + "SSE.Views.NamedRangeEditDlg.textScope": "Scope", + "SSE.Views.NamedRangeEditDlg.textSelectData": "Select Data", + "SSE.Views.NamedRangeEditDlg.txtEmpty": "This field is required", + "SSE.Views.NamedRangeEditDlg.txtTitleEdit": "Edit Name", + "SSE.Views.NamedRangeEditDlg.txtTitleNew": "New Name", + "SSE.Views.NamedRangePasteDlg.textNames": "Named Ranges", + "SSE.Views.NamedRangePasteDlg.txtTitle": "Paste Name", + "SSE.Views.NameManagerDlg.closeButtonText": "Close", + "SSE.Views.NameManagerDlg.guestText": "Guest", + "SSE.Views.NameManagerDlg.textDataRange": "Data Range", + "SSE.Views.NameManagerDlg.textDelete": "Delete", + "SSE.Views.NameManagerDlg.textEdit": "Edit", + "SSE.Views.NameManagerDlg.textEmpty": "No named ranges have been created yet.
Create at least one named range and it will appear in this field.", + "SSE.Views.NameManagerDlg.textFilter": "Filter", + "SSE.Views.NameManagerDlg.textFilterAll": "All", + "SSE.Views.NameManagerDlg.textFilterDefNames": "Defined names", + "SSE.Views.NameManagerDlg.textFilterSheet": "Names Scoped to Sheet", + "SSE.Views.NameManagerDlg.textFilterTableNames": "Table names", + "SSE.Views.NameManagerDlg.textFilterWorkbook": "Names Scoped to Workbook", + "SSE.Views.NameManagerDlg.textNew": "New", + "SSE.Views.NameManagerDlg.textnoNames": "No named ranges matching your filter could be found.", + "SSE.Views.NameManagerDlg.textRanges": "Named Ranges", + "SSE.Views.NameManagerDlg.textScope": "Scope", + "SSE.Views.NameManagerDlg.textWorkbook": "Workbook", + "SSE.Views.NameManagerDlg.tipIsLocked": "This element is being edited by another user.", + "SSE.Views.NameManagerDlg.txtTitle": "Name Manager", + "SSE.Views.NameManagerDlg.warnDelete": "Are you sure you want to delete the name {0}?", + "SSE.Views.PageMarginsDialog.textBottom": "Bottom", + "SSE.Views.PageMarginsDialog.textLeft": "Left", + "SSE.Views.PageMarginsDialog.textRight": "Right", + "SSE.Views.PageMarginsDialog.textTitle": "Margins", + "SSE.Views.PageMarginsDialog.textTop": "Top", + "SSE.Views.ParagraphSettings.strLineHeight": "Line Spacing", + "SSE.Views.ParagraphSettings.strParagraphSpacing": "Paragraph Spacing", + "SSE.Views.ParagraphSettings.strSpacingAfter": "After", + "SSE.Views.ParagraphSettings.strSpacingBefore": "Before", + "SSE.Views.ParagraphSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ParagraphSettings.textAt": "At", + "SSE.Views.ParagraphSettings.textAtLeast": "At least", + "SSE.Views.ParagraphSettings.textAuto": "Multiple", + "SSE.Views.ParagraphSettings.textExact": "Exactly", + "SSE.Views.ParagraphSettings.txtAutoText": "Auto", + "SSE.Views.ParagraphSettingsAdvanced.noTabs": "The specified tabs will appear in this field", + "SSE.Views.ParagraphSettingsAdvanced.strAllCaps": "All caps", + "SSE.Views.ParagraphSettingsAdvanced.strDoubleStrike": "Double strikethrough", + "SSE.Views.ParagraphSettingsAdvanced.strIndent": "Indents", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLeftText": "Left", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsLineSpacing": "Line Spacing", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsRightText": "Right", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingAfter": "After", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpacingBefore": "Before", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecial": "Special", + "SSE.Views.ParagraphSettingsAdvanced.strIndentsSpecialBy": "By", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphFont": "Font", + "SSE.Views.ParagraphSettingsAdvanced.strParagraphIndents": "Indents & Spacing", + "SSE.Views.ParagraphSettingsAdvanced.strSmallCaps": "Small caps", + "SSE.Views.ParagraphSettingsAdvanced.strSpacing": "Spacing", + "SSE.Views.ParagraphSettingsAdvanced.strStrike": "Strikethrough", + "SSE.Views.ParagraphSettingsAdvanced.strSubscript": "Subscript", + "SSE.Views.ParagraphSettingsAdvanced.strSuperscript": "Superscript", + "SSE.Views.ParagraphSettingsAdvanced.strTabs": "Tabs", + "SSE.Views.ParagraphSettingsAdvanced.textAlign": "Alignment", + "SSE.Views.ParagraphSettingsAdvanced.textAuto": "Multiple", + "SSE.Views.ParagraphSettingsAdvanced.textCharacterSpacing": "Character Spacing", + "SSE.Views.ParagraphSettingsAdvanced.textDefault": "Default Tab", + "SSE.Views.ParagraphSettingsAdvanced.textEffects": "Effects", + "SSE.Views.ParagraphSettingsAdvanced.textExact": "Exactly", + "SSE.Views.ParagraphSettingsAdvanced.textFirstLine": "First line", + "SSE.Views.ParagraphSettingsAdvanced.textHanging": "Hanging", + "SSE.Views.ParagraphSettingsAdvanced.textJustified": "Justified", + "SSE.Views.ParagraphSettingsAdvanced.textNoneSpecial": "(none)", + "SSE.Views.ParagraphSettingsAdvanced.textRemove": "Remove", + "SSE.Views.ParagraphSettingsAdvanced.textRemoveAll": "Remove All", + "SSE.Views.ParagraphSettingsAdvanced.textSet": "Specify", + "SSE.Views.ParagraphSettingsAdvanced.textTabCenter": "Center", + "SSE.Views.ParagraphSettingsAdvanced.textTabLeft": "Left", + "SSE.Views.ParagraphSettingsAdvanced.textTabPosition": "Tab Position", + "SSE.Views.ParagraphSettingsAdvanced.textTabRight": "Right", + "SSE.Views.ParagraphSettingsAdvanced.textTitle": "Paragraph - Advanced Settings", + "SSE.Views.ParagraphSettingsAdvanced.txtAutoText": "Auto", + "SSE.Views.PivotDigitalFilterDialog.capCondition1": "equals", + "SSE.Views.PivotDigitalFilterDialog.capCondition10": "does not end with", + "SSE.Views.PivotDigitalFilterDialog.capCondition11": "contains", + "SSE.Views.PivotDigitalFilterDialog.capCondition12": "does not contain", + "SSE.Views.PivotDigitalFilterDialog.capCondition13": "between", + "SSE.Views.PivotDigitalFilterDialog.capCondition14": "not between", + "SSE.Views.PivotDigitalFilterDialog.capCondition2": "does not equal", + "SSE.Views.PivotDigitalFilterDialog.capCondition3": "is greater than", + "SSE.Views.PivotDigitalFilterDialog.capCondition4": "is greater than or equal to", + "SSE.Views.PivotDigitalFilterDialog.capCondition5": "is less than", + "SSE.Views.PivotDigitalFilterDialog.capCondition6": "is less than or equal to", + "SSE.Views.PivotDigitalFilterDialog.capCondition7": "begins with", + "SSE.Views.PivotDigitalFilterDialog.capCondition8": "does not begin with", + "SSE.Views.PivotDigitalFilterDialog.capCondition9": "ends with", + "SSE.Views.PivotDigitalFilterDialog.textShowLabel": "Show items for which the label:", + "SSE.Views.PivotDigitalFilterDialog.textShowValue": "Show items for which:", + "SSE.Views.PivotDigitalFilterDialog.textUse1": "Use ? to present any single character", + "SSE.Views.PivotDigitalFilterDialog.textUse2": "Use * to present any series of character", + "SSE.Views.PivotDigitalFilterDialog.txtAnd": "and", + "SSE.Views.PivotDigitalFilterDialog.txtTitleLabel": "Label Filter", + "SSE.Views.PivotDigitalFilterDialog.txtTitleValue": "Value Filter", + "SSE.Views.PivotGroupDialog.textAuto": "Auto", + "SSE.Views.PivotGroupDialog.textBy": "By", + "SSE.Views.PivotGroupDialog.textDays": "Days", + "SSE.Views.PivotGroupDialog.textEnd": "Ending at", + "SSE.Views.PivotGroupDialog.textError": "This field must be a numeric value", + "SSE.Views.PivotGroupDialog.textGreaterError": "The end number must be greater than the start number", + "SSE.Views.PivotGroupDialog.textHour": "Hours", + "SSE.Views.PivotGroupDialog.textMin": "Minutes", + "SSE.Views.PivotGroupDialog.textMonth": "Months", + "SSE.Views.PivotGroupDialog.textNumDays": "Number of days", + "SSE.Views.PivotGroupDialog.textQuart": "Quarters", + "SSE.Views.PivotGroupDialog.textSec": "Seconds", + "SSE.Views.PivotGroupDialog.textStart": "Starting at", + "SSE.Views.PivotGroupDialog.textYear": "Years", + "SSE.Views.PivotGroupDialog.txtTitle": "Grouping", + "SSE.Views.PivotSettings.textAdvanced": "Show advanced settings", + "SSE.Views.PivotSettings.textColumns": "Columns", + "SSE.Views.PivotSettings.textFields": "Select Fields", + "SSE.Views.PivotSettings.textFilters": "Filters", + "SSE.Views.PivotSettings.textRows": "Rows", + "SSE.Views.PivotSettings.textValues": "Values", + "SSE.Views.PivotSettings.txtAddColumn": "Add to Columns", + "SSE.Views.PivotSettings.txtAddFilter": "Add to Filters", + "SSE.Views.PivotSettings.txtAddRow": "Add to Rows", + "SSE.Views.PivotSettings.txtAddValues": "Add to Values", + "SSE.Views.PivotSettings.txtFieldSettings": "Field Settings", + "SSE.Views.PivotSettings.txtMoveBegin": "Move to Beginning", + "SSE.Views.PivotSettings.txtMoveColumn": "Move to Columns", + "SSE.Views.PivotSettings.txtMoveDown": "Move Down", + "SSE.Views.PivotSettings.txtMoveEnd": "Move to End", + "SSE.Views.PivotSettings.txtMoveFilter": "Move to Filters", + "SSE.Views.PivotSettings.txtMoveRow": "Move to Rows", + "SSE.Views.PivotSettings.txtMoveUp": "Move Up", + "SSE.Views.PivotSettings.txtMoveValues": "Move to Values", + "SSE.Views.PivotSettings.txtRemove": "Remove Field", + "SSE.Views.PivotSettingsAdvanced.strLayout": "Name and Layout", + "SSE.Views.PivotSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.PivotSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.PivotSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "SSE.Views.PivotSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.PivotSettingsAdvanced.textDataRange": "Data Range", + "SSE.Views.PivotSettingsAdvanced.textDataSource": "Data Source", + "SSE.Views.PivotSettingsAdvanced.textDisplayFields": "Display fields in report filter area", + "SSE.Views.PivotSettingsAdvanced.textDown": "Down, then over", + "SSE.Views.PivotSettingsAdvanced.textGrandTotals": "Grand Totals", + "SSE.Views.PivotSettingsAdvanced.textHeaders": "Field Headers", + "SSE.Views.PivotSettingsAdvanced.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.PivotSettingsAdvanced.textOver": "Over, then down", + "SSE.Views.PivotSettingsAdvanced.textSelectData": "Select data", + "SSE.Views.PivotSettingsAdvanced.textShowCols": "Show for columns", + "SSE.Views.PivotSettingsAdvanced.textShowHeaders": "Show field headers for rows and columns", + "SSE.Views.PivotSettingsAdvanced.textShowRows": "Show for rows", + "SSE.Views.PivotSettingsAdvanced.textTitle": "Pivot Table - Advanced Settings", + "SSE.Views.PivotSettingsAdvanced.textWrapCol": "Report filter fields per column", + "SSE.Views.PivotSettingsAdvanced.textWrapRow": "Report filter fields per row", + "SSE.Views.PivotSettingsAdvanced.txtEmpty": "This field is required", + "SSE.Views.PivotSettingsAdvanced.txtName": "Name", + "SSE.Views.PivotTable.capBlankRows": "Blank Rows", + "SSE.Views.PivotTable.capGrandTotals": "Grand Totals", + "SSE.Views.PivotTable.capLayout": "Report Layout", + "SSE.Views.PivotTable.capSubtotals": "Subtotals", + "SSE.Views.PivotTable.mniBottomSubtotals": "Show all Subtotals at Bottom of Group", + "SSE.Views.PivotTable.mniInsertBlankLine": "Insert Blank Line after Each Item", + "SSE.Views.PivotTable.mniLayoutCompact": "Show in Compact Form", + "SSE.Views.PivotTable.mniLayoutNoRepeat": "Don't Repeat All Item Labels", + "SSE.Views.PivotTable.mniLayoutOutline": "Show in Outline Form", + "SSE.Views.PivotTable.mniLayoutRepeat": "Repeat All Item Labels", + "SSE.Views.PivotTable.mniLayoutTabular": "Show in Tabular Form", + "SSE.Views.PivotTable.mniNoSubtotals": "Don't Show Subtotals", + "SSE.Views.PivotTable.mniOffTotals": "Off for Rows and Columns", + "SSE.Views.PivotTable.mniOnColumnsTotals": "On for Columns Only", + "SSE.Views.PivotTable.mniOnRowsTotals": "On for Rows Only", + "SSE.Views.PivotTable.mniOnTotals": "On for Rows and Columns", + "SSE.Views.PivotTable.mniRemoveBlankLine": "Remove Blank Line after Each Item", + "SSE.Views.PivotTable.mniTopSubtotals": "Show all Subtotals at Top of Group", + "SSE.Views.PivotTable.textColBanded": "Banded Columns", + "SSE.Views.PivotTable.textColHeader": "Column Headers", + "SSE.Views.PivotTable.textRowBanded": "Banded Rows", + "SSE.Views.PivotTable.textRowHeader": "Row Headers", + "SSE.Views.PivotTable.tipCreatePivot": "Insert Pivot Table", + "SSE.Views.PivotTable.tipGrandTotals": "Show or hide grand totals", + "SSE.Views.PivotTable.tipRefresh": "Update the information from data source", + "SSE.Views.PivotTable.tipSelect": "Select entire pivot table", + "SSE.Views.PivotTable.tipSubtotals": "Show or hide subtotals", + "SSE.Views.PivotTable.txtCreate": "Insert Table", + "SSE.Views.PivotTable.txtPivotTable": "Pivot Table", + "SSE.Views.PivotTable.txtRefresh": "Refresh", + "SSE.Views.PivotTable.txtSelect": "Select", + "SSE.Views.PrintSettings.btnDownload": "Save & Download", + "SSE.Views.PrintSettings.btnPrint": "Save & Print", + "SSE.Views.PrintSettings.strBottom": "Bottom", + "SSE.Views.PrintSettings.strLandscape": "Landscape", + "SSE.Views.PrintSettings.strLeft": "Left", + "SSE.Views.PrintSettings.strMargins": "Margins", + "SSE.Views.PrintSettings.strPortrait": "Portrait", + "SSE.Views.PrintSettings.strPrint": "Print", + "SSE.Views.PrintSettings.strPrintTitles": "Print Titles", + "SSE.Views.PrintSettings.strRight": "Right", + "SSE.Views.PrintSettings.strShow": "Show", + "SSE.Views.PrintSettings.strTop": "Top", + "SSE.Views.PrintSettings.textActualSize": "Actual Size", + "SSE.Views.PrintSettings.textAllSheets": "All Sheets", + "SSE.Views.PrintSettings.textCurrentSheet": "Current Sheet", + "SSE.Views.PrintSettings.textCustom": "Custom", + "SSE.Views.PrintSettings.textCustomOptions": "Custom Options", + "SSE.Views.PrintSettings.textFitCols": "Fit All Columns on One Page", + "SSE.Views.PrintSettings.textFitPage": "Fit Sheet on One Page", + "SSE.Views.PrintSettings.textFitRows": "Fit All Rows on One Page", + "SSE.Views.PrintSettings.textHideDetails": "Hide Details", + "SSE.Views.PrintSettings.textIgnore": "Ignore Print Area", + "SSE.Views.PrintSettings.textLayout": "Layout", + "SSE.Views.PrintSettings.textPageOrientation": "Page Orientation", + "SSE.Views.PrintSettings.textPageScaling": "Scaling", + "SSE.Views.PrintSettings.textPageSize": "Page Size", + "SSE.Views.PrintSettings.textPrintGrid": "Print Gridlines", + "SSE.Views.PrintSettings.textPrintHeadings": "Print Row and Column Headings", + "SSE.Views.PrintSettings.textPrintRange": "Print Range", + "SSE.Views.PrintSettings.textRange": "Range", + "SSE.Views.PrintSettings.textRepeat": "Repeat...", + "SSE.Views.PrintSettings.textRepeatLeft": "Repeat columns at left", + "SSE.Views.PrintSettings.textRepeatTop": "Repeat rows at top", + "SSE.Views.PrintSettings.textSelection": "Selection", + "SSE.Views.PrintSettings.textSettings": "Sheet Settings", + "SSE.Views.PrintSettings.textShowDetails": "Show Details", + "SSE.Views.PrintSettings.textShowGrid": "Show Gridlines", + "SSE.Views.PrintSettings.textShowHeadings": "Show Rows and Columns Headings", + "SSE.Views.PrintSettings.textTitle": "Print Settings", + "SSE.Views.PrintSettings.textTitlePDF": "PDF Settings", + "SSE.Views.PrintTitlesDialog.textFirstCol": "First column", + "SSE.Views.PrintTitlesDialog.textFirstRow": "First row", + "SSE.Views.PrintTitlesDialog.textFrozenCols": "Frozen columns", + "SSE.Views.PrintTitlesDialog.textFrozenRows": "Frozen rows", + "SSE.Views.PrintTitlesDialog.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.PrintTitlesDialog.textLeft": "Repeat columns at left", + "SSE.Views.PrintTitlesDialog.textNoRepeat": "Don't repeat", + "SSE.Views.PrintTitlesDialog.textRepeat": "Repeat...", + "SSE.Views.PrintTitlesDialog.textSelectRange": "Select range", + "SSE.Views.PrintTitlesDialog.textTitle": "Print Titles", + "SSE.Views.PrintTitlesDialog.textTop": "Repeat rows at top", + "SSE.Views.ProtectDialog.txtPassword": "Password", + "SSE.Views.ProtectDialog.txtRepeat": "Repeat password", + "SSE.Views.ProtectDialog.txtIncorrectPwd": "Confirmation password is not identical", + "SSE.Views.ProtectDialog.txtWarning": "Warning: If you lose or forget the password, it cannot be recovered. Please keep it in a safe place.", + "SSE.Views.ProtectDialog.txtOptional": "optional", + "SSE.Views.ProtectDialog.txtProtect": "Protect", + "SSE.Views.ProtectDialog.txtSelLocked": "Select locked cells", + "SSE.Views.ProtectDialog.txtSelUnLocked": "Select unlocked cells", + "SSE.Views.ProtectDialog.txtFormatCells": "Format cells", + "SSE.Views.ProtectDialog.txtFormatCols": "Format columns", + "SSE.Views.ProtectDialog.txtFormatRows": "Format rows", + "SSE.Views.ProtectDialog.txtInsCols": "Insert columns", + "SSE.Views.ProtectDialog.txtInsRows": "Insert rows", + "SSE.Views.ProtectDialog.txtInsHyper": "Insert hyperlink", + "SSE.Views.ProtectDialog.txtDelCols": "Delete columns", + "SSE.Views.ProtectDialog.txtDelRows": "Delete rows", + "SSE.Views.ProtectDialog.txtSort": "Sort", + "SSE.Views.ProtectDialog.txtAutofilter": "Use AutoFilter", + "SSE.Views.ProtectDialog.txtPivot": "Use PivotTable and PivotChart", + "SSE.Views.ProtectDialog.txtObjs": "Edit objects", + "SSE.Views.ProtectDialog.txtScen": "Edit scenarios", + "SSE.Views.ProtectDialog.txtWBDescription": "To prevent other users from viewing hidden worksheets, adding, moving, deleting, or hiding worksheets and renaming worksheets, you can protect the structure of your workbook with a password.", + "SSE.Views.ProtectDialog.txtWBTitle": "Protect Workbook structure", + "SSE.Views.ProtectDialog.txtSheetDescription": "Prevent unwanted changes from others by limiting their ability to edit.", + "SSE.Views.ProtectDialog.txtSheetTitle": "Protect Sheet", + "SSE.Views.ProtectDialog.txtAllow": "Allow all users of this sheet to", + "SSE.Views.ProtectDialog.txtRangeName": "Title", + "SSE.Views.ProtectDialog.txtRange": "Range", + "SSE.Views.ProtectDialog.txtEmpty": "This field is required", + "SSE.Views.ProtectDialog.textSelectData": "Select Data", + "SSE.Views.ProtectDialog.textInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.ProtectDialog.textInvalidName": "The range title must begin with a letter and may only contain letters, numbers, and spaces.", + "SSE.Views.ProtectDialog.textExistName": "ERROR! Range with such a title already exists", + "SSE.Views.ProtectRangesDlg.txtTitle": "Allow Users to Edit Ranges", + "SSE.Views.ProtectRangesDlg.textRangesDesc": "Ranges unlocked by a password when sheet is protected (this works only for locked cells)", + "SSE.Views.ProtectRangesDlg.textTitle": "Title", + "SSE.Views.ProtectRangesDlg.textRange": "Range", + "SSE.Views.ProtectRangesDlg.textPwd": "Password", + "SSE.Views.ProtectRangesDlg.textNew": "New", + "SSE.Views.ProtectRangesDlg.textEdit": "Edit", + "SSE.Views.ProtectRangesDlg.textDelete": "Delete", + "SSE.Views.ProtectRangesDlg.textEmpty": "No ranges allowed for edit.", + "SSE.Views.ProtectRangesDlg.guestText": "Guest", + "SSE.Views.ProtectRangesDlg.tipIsLocked": "This element is being edited by another user.", + "SSE.Views.ProtectRangesDlg.warnDelete": "Are you sure you want to delete the name {0}?", + "SSE.Views.ProtectRangesDlg.textProtect": "Protect Sheet", + "SSE.Views.ProtectRangesDlg.txtYes": "Yes", + "SSE.Views.ProtectRangesDlg.txtNo": "No", + "SSE.Views.ProtectRangesDlg.txtEditRange": "Edit Range", + "SSE.Views.ProtectRangesDlg.txtNewRange": "New Range", + "SSE.Views.RemoveDuplicatesDialog.textColumns": "Columns", + "SSE.Views.RemoveDuplicatesDialog.textDescription": "To delete duplicate values, select one or more columns that contain duplicates.", + "SSE.Views.RemoveDuplicatesDialog.textHeaders": "My data has headers", + "SSE.Views.RemoveDuplicatesDialog.textSelectAll": "Select All", + "SSE.Views.RemoveDuplicatesDialog.txtTitle": "Remove Duplicates", + "SSE.Views.RightMenu.txtCellSettings": "Cell settings", + "SSE.Views.RightMenu.txtChartSettings": "Chart settings", + "SSE.Views.RightMenu.txtImageSettings": "Image settings", + "SSE.Views.RightMenu.txtParagraphSettings": "Paragraph settings", + "SSE.Views.RightMenu.txtPivotSettings": "Pivot Table settings", + "SSE.Views.RightMenu.txtSettings": "Common Settings", + "SSE.Views.RightMenu.txtShapeSettings": "Shape settings", + "SSE.Views.RightMenu.txtSignatureSettings": "Signature settings", + "SSE.Views.RightMenu.txtSlicerSettings": "Slicer settings", + "SSE.Views.RightMenu.txtSparklineSettings": "Sparkline settings", + "SSE.Views.RightMenu.txtTableSettings": "Table settings", + "SSE.Views.RightMenu.txtTextArtSettings": "Text Art settings", + "SSE.Views.ScaleDialog.textAuto": "Auto", + "SSE.Views.ScaleDialog.textError": "The entered value is incorrect.", + "SSE.Views.ScaleDialog.textFewPages": "pages", + "SSE.Views.ScaleDialog.textFitTo": "Fit To", + "SSE.Views.ScaleDialog.textHeight": "Height", + "SSE.Views.ScaleDialog.textManyPages": "pages", + "SSE.Views.ScaleDialog.textOnePage": "page", + "SSE.Views.ScaleDialog.textScaleTo": "Scale To", + "SSE.Views.ScaleDialog.textTitle": "Scale Settings", + "SSE.Views.ScaleDialog.textWidth": "Width", + "SSE.Views.SetValueDialog.txtMaxText": "The maximum value for this field is {0}", + "SSE.Views.SetValueDialog.txtMinText": "The minimum value for this field is {0}", + "SSE.Views.ShapeSettings.strBackground": "Background color", + "SSE.Views.ShapeSettings.strChange": "Change Autoshape", + "SSE.Views.ShapeSettings.strColor": "Color", + "SSE.Views.ShapeSettings.strFill": "Fill", + "SSE.Views.ShapeSettings.strForeground": "Foreground color", + "SSE.Views.ShapeSettings.strPattern": "Pattern", + "SSE.Views.ShapeSettings.strShadow": "Show shadow", + "SSE.Views.ShapeSettings.strSize": "Size", + "SSE.Views.ShapeSettings.strStroke": "Line", + "SSE.Views.ShapeSettings.strTransparency": "Opacity", + "SSE.Views.ShapeSettings.strType": "Type", + "SSE.Views.ShapeSettings.textAdvanced": "Show advanced settings", + "SSE.Views.ShapeSettings.textAngle": "Angle", + "SSE.Views.ShapeSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", + "SSE.Views.ShapeSettings.textColor": "Color Fill", + "SSE.Views.ShapeSettings.textDirection": "Direction", + "SSE.Views.ShapeSettings.textEmptyPattern": "No Pattern", + "SSE.Views.ShapeSettings.textFlip": "Flip", + "SSE.Views.ShapeSettings.textFromFile": "From File", + "SSE.Views.ShapeSettings.textFromStorage": "From Storage", + "SSE.Views.ShapeSettings.textFromUrl": "From URL", + "SSE.Views.ShapeSettings.textGradient": "Gradient points", + "SSE.Views.ShapeSettings.textGradientFill": "Gradient Fill", + "SSE.Views.ShapeSettings.textHint270": "Rotate 90° Counterclockwise", + "SSE.Views.ShapeSettings.textHint90": "Rotate 90° Clockwise", + "SSE.Views.ShapeSettings.textHintFlipH": "Flip Horizontally", + "SSE.Views.ShapeSettings.textHintFlipV": "Flip Vertically", + "SSE.Views.ShapeSettings.textImageTexture": "Picture or Texture", + "SSE.Views.ShapeSettings.textLinear": "Linear", + "SSE.Views.ShapeSettings.textNoFill": "No Fill", + "SSE.Views.ShapeSettings.textOriginalSize": "Original Size", + "SSE.Views.ShapeSettings.textPatternFill": "Pattern", + "SSE.Views.ShapeSettings.textPosition": "Position", + "SSE.Views.ShapeSettings.textRadial": "Radial", + "SSE.Views.ShapeSettings.textRotate90": "Rotate 90°", + "SSE.Views.ShapeSettings.textRotation": "Rotation", + "SSE.Views.ShapeSettings.textSelectImage": "Select Picture", + "SSE.Views.ShapeSettings.textSelectTexture": "Select", + "SSE.Views.ShapeSettings.textStretch": "Stretch", + "SSE.Views.ShapeSettings.textStyle": "Style", + "SSE.Views.ShapeSettings.textTexture": "From Texture", + "SSE.Views.ShapeSettings.textTile": "Tile", + "SSE.Views.ShapeSettings.tipAddGradientPoint": "Add gradient point", + "SSE.Views.ShapeSettings.tipRemoveGradientPoint": "Remove gradient point", + "SSE.Views.ShapeSettings.txtBrownPaper": "Brown Paper", + "SSE.Views.ShapeSettings.txtCanvas": "Canvas", + "SSE.Views.ShapeSettings.txtCarton": "Carton", + "SSE.Views.ShapeSettings.txtDarkFabric": "Dark Fabric", + "SSE.Views.ShapeSettings.txtGrain": "Grain", + "SSE.Views.ShapeSettings.txtGranite": "Granite", + "SSE.Views.ShapeSettings.txtGreyPaper": "Gray Paper", + "SSE.Views.ShapeSettings.txtKnit": "Knit", + "SSE.Views.ShapeSettings.txtLeather": "Leather", + "SSE.Views.ShapeSettings.txtNoBorders": "No Line", + "SSE.Views.ShapeSettings.txtPapyrus": "Papyrus", + "SSE.Views.ShapeSettings.txtWood": "Wood", + "SSE.Views.ShapeSettingsAdvanced.strColumns": "Columns", + "SSE.Views.ShapeSettingsAdvanced.strMargins": "Text Padding", + "SSE.Views.ShapeSettingsAdvanced.textAbsolute": "Don't move or size with cells", + "SSE.Views.ShapeSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.ShapeSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.ShapeSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart, or table.", + "SSE.Views.ShapeSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.ShapeSettingsAdvanced.textAngle": "Angle", + "SSE.Views.ShapeSettingsAdvanced.textArrows": "Arrows", + "SSE.Views.ShapeSettingsAdvanced.textAutofit": "AutoFit", + "SSE.Views.ShapeSettingsAdvanced.textBeginSize": "Begin Size", + "SSE.Views.ShapeSettingsAdvanced.textBeginStyle": "Begin Style", + "SSE.Views.ShapeSettingsAdvanced.textBevel": "Bevel", + "SSE.Views.ShapeSettingsAdvanced.textBottom": "Bottom", + "SSE.Views.ShapeSettingsAdvanced.textCapType": "Cap Type", + "SSE.Views.ShapeSettingsAdvanced.textColNumber": "Number of columns", + "SSE.Views.ShapeSettingsAdvanced.textEndSize": "End Size", + "SSE.Views.ShapeSettingsAdvanced.textEndStyle": "End Style", + "SSE.Views.ShapeSettingsAdvanced.textFlat": "Flat", + "SSE.Views.ShapeSettingsAdvanced.textFlipped": "Flipped", + "SSE.Views.ShapeSettingsAdvanced.textHeight": "Height", + "SSE.Views.ShapeSettingsAdvanced.textHorizontally": "Horizontally", + "SSE.Views.ShapeSettingsAdvanced.textJoinType": "Join Type", + "SSE.Views.ShapeSettingsAdvanced.textKeepRatio": "Constant proportions", + "SSE.Views.ShapeSettingsAdvanced.textLeft": "Left", + "SSE.Views.ShapeSettingsAdvanced.textLineStyle": "Line Style", + "SSE.Views.ShapeSettingsAdvanced.textMiter": "Miter", + "SSE.Views.ShapeSettingsAdvanced.textOneCell": "Move but don't size with cells", + "SSE.Views.ShapeSettingsAdvanced.textOverflow": "Allow text to overflow shape", + "SSE.Views.ShapeSettingsAdvanced.textResizeFit": "Resize shape to fit text", + "SSE.Views.ShapeSettingsAdvanced.textRight": "Right", + "SSE.Views.ShapeSettingsAdvanced.textRotation": "Rotation", + "SSE.Views.ShapeSettingsAdvanced.textRound": "Round", + "SSE.Views.ShapeSettingsAdvanced.textSize": "Size", + "SSE.Views.ShapeSettingsAdvanced.textSnap": "Cell Snapping", + "SSE.Views.ShapeSettingsAdvanced.textSpacing": "Spacing between columns", + "SSE.Views.ShapeSettingsAdvanced.textSquare": "Square", + "SSE.Views.ShapeSettingsAdvanced.textTextBox": "Text Box", + "SSE.Views.ShapeSettingsAdvanced.textTitle": "Shape - Advanced Settings", + "SSE.Views.ShapeSettingsAdvanced.textTop": "Top", + "SSE.Views.ShapeSettingsAdvanced.textTwoCell": "Move and size with cells", + "SSE.Views.ShapeSettingsAdvanced.textVertically": "Vertically", + "SSE.Views.ShapeSettingsAdvanced.textWeightArrows": "Weights & Arrows", + "SSE.Views.ShapeSettingsAdvanced.textWidth": "Width", + "SSE.Views.SignatureSettings.notcriticalErrorTitle": "Warning", + "SSE.Views.SignatureSettings.strDelete": "Remove Signature", + "SSE.Views.SignatureSettings.strDetails": "Signature Details", + "SSE.Views.SignatureSettings.strInvalid": "Invalid signatures", + "SSE.Views.SignatureSettings.strRequested": "Requested signatures", + "SSE.Views.SignatureSettings.strSetup": "Signature Setup", + "SSE.Views.SignatureSettings.strSign": "Sign", + "SSE.Views.SignatureSettings.strSignature": "Signature", + "SSE.Views.SignatureSettings.strSigner": "Signer", + "SSE.Views.SignatureSettings.strValid": "Valid signatures", + "SSE.Views.SignatureSettings.txtContinueEditing": "Edit anyway", + "SSE.Views.SignatureSettings.txtEditWarning": "Editing will remove signatures from the spreadsheet.
Continue?", + "SSE.Views.SignatureSettings.txtRemoveWarning": "Do you want to remove this signature?
It can't be undone.", + "SSE.Views.SignatureSettings.txtRequestedSignatures": "This spreadsheet needs to be signed.", + "SSE.Views.SignatureSettings.txtSigned": "Valid signatures have been added to the spreadsheet. The spreadsheet is protected from editing.", + "SSE.Views.SignatureSettings.txtSignedInvalid": "Some of the digital signatures in spreadsheet are invalid or could not be verified. The spreadsheet is protected from editing.", + "SSE.Views.SlicerAddDialog.textColumns": "Columns", + "SSE.Views.SlicerAddDialog.txtTitle": "Insert Slicers", + "SSE.Views.SlicerSettings.strHideNoData": "Hide items with no data", + "SSE.Views.SlicerSettings.strIndNoData": "Visually indicate items with no data", + "SSE.Views.SlicerSettings.strShowDel": "Show items deleted from the data source", + "SSE.Views.SlicerSettings.strShowNoData": "Show items with no data last", + "SSE.Views.SlicerSettings.strSorting": "Sorting and filtering", + "SSE.Views.SlicerSettings.textAdvanced": "Show advanced settings", + "SSE.Views.SlicerSettings.textAsc": "Ascending", + "SSE.Views.SlicerSettings.textAZ": "A to Z", + "SSE.Views.SlicerSettings.textButtons": "Buttons", + "SSE.Views.SlicerSettings.textColumns": "Columns", + "SSE.Views.SlicerSettings.textDesc": "Descending", + "SSE.Views.SlicerSettings.textHeight": "Height", + "SSE.Views.SlicerSettings.textHor": "Horizontal", + "SSE.Views.SlicerSettings.textKeepRatio": "Constant Proportions", + "SSE.Views.SlicerSettings.textLargeSmall": "largest to smallest", + "SSE.Views.SlicerSettings.textLock": "Disable resizing or moving", + "SSE.Views.SlicerSettings.textNewOld": "newest to oldest", + "SSE.Views.SlicerSettings.textOldNew": "oldest to newest", + "SSE.Views.SlicerSettings.textPosition": "Position", + "SSE.Views.SlicerSettings.textSize": "Size", + "SSE.Views.SlicerSettings.textSmallLarge": "smallest to largest", + "SSE.Views.SlicerSettings.textStyle": "Style", + "SSE.Views.SlicerSettings.textVert": "Vertical", + "SSE.Views.SlicerSettings.textWidth": "Width", + "SSE.Views.SlicerSettings.textZA": "Z to A", + "SSE.Views.SlicerSettingsAdvanced.strButtons": "Buttons", + "SSE.Views.SlicerSettingsAdvanced.strColumns": "Columns", + "SSE.Views.SlicerSettingsAdvanced.strHeight": "Height", + "SSE.Views.SlicerSettingsAdvanced.strHideNoData": "Hide items with no data", + "SSE.Views.SlicerSettingsAdvanced.strIndNoData": "Visually indicate items with no data", + "SSE.Views.SlicerSettingsAdvanced.strReferences": "References", + "SSE.Views.SlicerSettingsAdvanced.strShowDel": "Show items deleted from the data source", + "SSE.Views.SlicerSettingsAdvanced.strShowHeader": "Display header", + "SSE.Views.SlicerSettingsAdvanced.strShowNoData": "Show items with no data last", + "SSE.Views.SlicerSettingsAdvanced.strSize": "Size", + "SSE.Views.SlicerSettingsAdvanced.strSorting": "Sorting & Filtering", + "SSE.Views.SlicerSettingsAdvanced.strStyle": "Style", + "SSE.Views.SlicerSettingsAdvanced.strStyleSize": "Style & Size", + "SSE.Views.SlicerSettingsAdvanced.strWidth": "Width", + "SSE.Views.SlicerSettingsAdvanced.textAbsolute": "Don't move or size with cells", + "SSE.Views.SlicerSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.SlicerSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.SlicerSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "SSE.Views.SlicerSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.SlicerSettingsAdvanced.textAsc": "Ascending", + "SSE.Views.SlicerSettingsAdvanced.textAZ": "A to Z", + "SSE.Views.SlicerSettingsAdvanced.textDesc": "Descending", + "SSE.Views.SlicerSettingsAdvanced.textFormulaName": "Name to use in formulas", + "SSE.Views.SlicerSettingsAdvanced.textHeader": "Header", + "SSE.Views.SlicerSettingsAdvanced.textKeepRatio": "Constant Proportions", + "SSE.Views.SlicerSettingsAdvanced.textLargeSmall": "largest to smallest", + "SSE.Views.SlicerSettingsAdvanced.textName": "Name", + "SSE.Views.SlicerSettingsAdvanced.textNewOld": "newest to oldest", + "SSE.Views.SlicerSettingsAdvanced.textOldNew": "oldest to newest", + "SSE.Views.SlicerSettingsAdvanced.textOneCell": "Move but don't size with cells", + "SSE.Views.SlicerSettingsAdvanced.textSmallLarge": "smallest to largest", + "SSE.Views.SlicerSettingsAdvanced.textSnap": "Cell Snapping", + "SSE.Views.SlicerSettingsAdvanced.textSort": "Sort", + "SSE.Views.SlicerSettingsAdvanced.textSourceName": "Source name", + "SSE.Views.SlicerSettingsAdvanced.textTitle": "Slicer - Advanced Settings", + "SSE.Views.SlicerSettingsAdvanced.textTwoCell": "Move and size with cells", + "SSE.Views.SlicerSettingsAdvanced.textZA": "Z to A", + "SSE.Views.SlicerSettingsAdvanced.txtEmpty": "This field is required", + "SSE.Views.SortDialog.errorEmpty": "All sort criteria must have a column or row specified.", + "SSE.Views.SortDialog.errorMoreOneCol": "More than one column is selected.", + "SSE.Views.SortDialog.errorMoreOneRow": "More than one row is selected.", + "SSE.Views.SortDialog.errorNotOriginalCol": "The column you selected is not in the original selected range.", + "SSE.Views.SortDialog.errorNotOriginalRow": "The row you selected is not in the original selected range.", + "SSE.Views.SortDialog.errorSameColumnColor": "%1 is being sorted by the same color more than once.
Delete the duplicate sort criteria and try again.", + "SSE.Views.SortDialog.errorSameColumnValue": "%1 is being sorted by values more than once.
Delete the duplicate sort criteria and try again.", + "SSE.Views.SortDialog.textAdd": "Add level", + "SSE.Views.SortDialog.textAsc": "Ascending", + "SSE.Views.SortDialog.textAuto": "Automatic", + "SSE.Views.SortDialog.textAZ": "A to Z", + "SSE.Views.SortDialog.textBelow": "Below", + "SSE.Views.SortDialog.textCellColor": "Cell color", + "SSE.Views.SortDialog.textColumn": "Column", + "SSE.Views.SortDialog.textCopy": "Copy level", + "SSE.Views.SortDialog.textDelete": "Delete level", + "SSE.Views.SortDialog.textDesc": "Descending", + "SSE.Views.SortDialog.textDown": "Move level down", + "SSE.Views.SortDialog.textFontColor": "Font color", + "SSE.Views.SortDialog.textLeft": "Left", + "SSE.Views.SortDialog.textMoreCols": "(More columns...)", + "SSE.Views.SortDialog.textMoreRows": "(More rows...)", + "SSE.Views.SortDialog.textNone": "None", + "SSE.Views.SortDialog.textOptions": "Options", + "SSE.Views.SortDialog.textOrder": "Order", + "SSE.Views.SortDialog.textRight": "Right", + "SSE.Views.SortDialog.textRow": "Row", + "SSE.Views.SortDialog.textSort": "Sort on", + "SSE.Views.SortDialog.textSortBy": "Sort by", + "SSE.Views.SortDialog.textThenBy": "Then by", + "SSE.Views.SortDialog.textTop": "Top", + "SSE.Views.SortDialog.textUp": "Move level up", + "SSE.Views.SortDialog.textValues": "Values", + "SSE.Views.SortDialog.textZA": "Z to A", + "SSE.Views.SortDialog.txtInvalidRange": "Invalid cells range.", + "SSE.Views.SortDialog.txtTitle": "Sort", + "SSE.Views.SortFilterDialog.textAsc": "Ascending (A to Z) by", + "SSE.Views.SortFilterDialog.textDesc": "Descending (Z to A) by", + "SSE.Views.SortFilterDialog.txtTitle": "Sort", + "SSE.Views.SortOptionsDialog.textCase": "Case sensitive", + "SSE.Views.SortOptionsDialog.textHeaders": "My data has headers", + "SSE.Views.SortOptionsDialog.textLeftRight": "Sort left to right", + "SSE.Views.SortOptionsDialog.textOrientation": "Orientation", + "SSE.Views.SortOptionsDialog.textTitle": "Sort Options", + "SSE.Views.SortOptionsDialog.textTopBottom": "Sort top to bottom", + "SSE.Views.SpecialPasteDialog.textAdd": "Add", + "SSE.Views.SpecialPasteDialog.textAll": "All", + "SSE.Views.SpecialPasteDialog.textBlanks": "Skip blanks", + "SSE.Views.SpecialPasteDialog.textColWidth": "Column widths", + "SSE.Views.SpecialPasteDialog.textComments": "Comments", + "SSE.Views.SpecialPasteDialog.textDiv": "Divide", + "SSE.Views.SpecialPasteDialog.textFFormat": "Formulas & formatting", + "SSE.Views.SpecialPasteDialog.textFNFormat": "Formulas & number formats", + "SSE.Views.SpecialPasteDialog.textFormats": "Formats", + "SSE.Views.SpecialPasteDialog.textFormulas": "Formulas", + "SSE.Views.SpecialPasteDialog.textFWidth": "Formulas & column widths", + "SSE.Views.SpecialPasteDialog.textMult": "Multiply", + "SSE.Views.SpecialPasteDialog.textNone": "None", + "SSE.Views.SpecialPasteDialog.textOperation": "Operation", + "SSE.Views.SpecialPasteDialog.textPaste": "Paste", + "SSE.Views.SpecialPasteDialog.textSub": "Subtract", + "SSE.Views.SpecialPasteDialog.textTitle": "Paste Special", + "SSE.Views.SpecialPasteDialog.textTranspose": "Transpose", + "SSE.Views.SpecialPasteDialog.textValues": "Values", + "SSE.Views.SpecialPasteDialog.textVFormat": "Values & formatting", + "SSE.Views.SpecialPasteDialog.textVNFormat": "Values & number formats", + "SSE.Views.SpecialPasteDialog.textWBorders": "All except borders", + "SSE.Views.Spellcheck.noSuggestions": "No spelling suggestions", + "SSE.Views.Spellcheck.textChange": "Change", + "SSE.Views.Spellcheck.textChangeAll": "Change All", + "SSE.Views.Spellcheck.textIgnore": "Ignore", + "SSE.Views.Spellcheck.textIgnoreAll": "Ignore All", + "SSE.Views.Spellcheck.txtAddToDictionary": "Add To Dictionary", + "SSE.Views.Spellcheck.txtComplete": "Spellcheck has been completed", + "SSE.Views.Spellcheck.txtDictionaryLanguage": "Dictionary Language", + "SSE.Views.Spellcheck.txtNextTip": "Go to the next word", + "SSE.Views.Spellcheck.txtSpelling": "Spelling", + "SSE.Views.Statusbar.CopyDialog.itemCopyToEnd": "(Copy to end)", + "SSE.Views.Statusbar.CopyDialog.itemMoveToEnd": "(Move to end)", + "SSE.Views.Statusbar.CopyDialog.textCopyBefore": "Paste before sheet", + "SSE.Views.Statusbar.CopyDialog.textMoveBefore": "Move before sheet", + "SSE.Views.Statusbar.filteredRecordsText": "{0} of {1} records filtered", + "SSE.Views.Statusbar.filteredText": "Filter mode", + "SSE.Views.Statusbar.itemAverage": "Average", + "SSE.Views.Statusbar.itemCopy": "Copy", + "SSE.Views.Statusbar.itemCount": "Count", + "SSE.Views.Statusbar.itemDelete": "Delete", + "SSE.Views.Statusbar.itemHidden": "Hidden", + "SSE.Views.Statusbar.itemHide": "Hide", + "SSE.Views.Statusbar.itemInsert": "Insert", + "SSE.Views.Statusbar.itemMaximum": "Maximum", + "SSE.Views.Statusbar.itemMinimum": "Minimum", + "SSE.Views.Statusbar.itemMove": "Move", + "SSE.Views.Statusbar.itemRename": "Rename", + "SSE.Views.Statusbar.itemSum": "Sum", + "SSE.Views.Statusbar.itemTabColor": "Tab Color", + "SSE.Views.Statusbar.itemStatus": "Saving status", + "SSE.Views.Statusbar.itemProtect": "Protect", + "SSE.Views.Statusbar.itemUnProtect": "Unprotect", + "SSE.Views.Statusbar.RenameDialog.errNameExists": "Worksheet with such a name already exists.", + "SSE.Views.Statusbar.RenameDialog.errNameWrongChar": "A sheet name cannot contain the following characters: \\/*?[]:", + "SSE.Views.Statusbar.RenameDialog.labelSheetName": "Sheet Name", + "SSE.Views.Statusbar.selectAllSheets": "Select All Sheets", + "SSE.Views.Statusbar.textAverage": "Average", + "SSE.Views.Statusbar.textCount": "Count", + "SSE.Views.Statusbar.textMax": "Max", + "SSE.Views.Statusbar.textMin": "Min", + "SSE.Views.Statusbar.textNewColor": "Add New Custom Color", + "SSE.Views.Statusbar.textNoColor": "No Color", + "SSE.Views.Statusbar.textSum": "Sum", + "SSE.Views.Statusbar.tipAddTab": "Add worksheet", + "SSE.Views.Statusbar.tipFirst": "Scroll to first sheet", + "SSE.Views.Statusbar.tipLast": "Scroll to last sheet", + "SSE.Views.Statusbar.tipNext": "Scroll sheet list right", + "SSE.Views.Statusbar.tipPrev": "Scroll sheet list left", + "SSE.Views.Statusbar.tipZoomFactor": "Zoom", + "SSE.Views.Statusbar.tipZoomIn": "Zoom in", + "SSE.Views.Statusbar.tipZoomOut": "Zoom out", + "SSE.Views.Statusbar.ungroupSheets": "Ungroup Sheets", + "SSE.Views.Statusbar.zoomText": "Zoom {0}%", + "SSE.Views.Statusbar.sheetIndexText": "Sheet {0} of {1}", + "SSE.Views.TableOptionsDialog.errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range different from the existing one and try again.", + "SSE.Views.TableOptionsDialog.errorFTChangeTableRangeError": "Operation could not be completed for the selected cell range.
Select a range so that the first table row was on the same row
and the resulting table overlapped the current one.", + "SSE.Views.TableOptionsDialog.errorFTRangeIncludedOtherTables": "Operation could not be completed for the selected cell range.
Select a range which does not include other tables.", + "SSE.Views.TableOptionsDialog.errorMultiCellFormula": "Multi-cell array formulas are not allowed in tables.", + "SSE.Views.TableOptionsDialog.txtEmpty": "This field is required", + "SSE.Views.TableOptionsDialog.txtFormat": "Create Table", + "SSE.Views.TableOptionsDialog.txtInvalidRange": "ERROR! Invalid cells range", + "SSE.Views.TableOptionsDialog.txtNote": "The headers must remain in the same row, and the resulting table range must overlap the original table range.", + "SSE.Views.TableOptionsDialog.txtTitle": "Title", + "SSE.Views.TableSettings.deleteColumnText": "Delete Column", + "SSE.Views.TableSettings.deleteRowText": "Delete Row", + "SSE.Views.TableSettings.deleteTableText": "Delete Table", + "SSE.Views.TableSettings.insertColumnLeftText": "Insert Column Left", + "SSE.Views.TableSettings.insertColumnRightText": "Insert Column Right", + "SSE.Views.TableSettings.insertRowAboveText": "Insert Row Above", + "SSE.Views.TableSettings.insertRowBelowText": "Insert Row Below", + "SSE.Views.TableSettings.notcriticalErrorTitle": "Warning", + "SSE.Views.TableSettings.selectColumnText": "Select Entire Column", + "SSE.Views.TableSettings.selectDataText": "Select Column Data", + "SSE.Views.TableSettings.selectRowText": "Select Row", + "SSE.Views.TableSettings.selectTableText": "Select Table", + "SSE.Views.TableSettings.textActions": "Table actions", + "SSE.Views.TableSettings.textAdvanced": "Show advanced settings", + "SSE.Views.TableSettings.textBanded": "Banded", + "SSE.Views.TableSettings.textColumns": "Columns", + "SSE.Views.TableSettings.textConvertRange": "Convert to range", + "SSE.Views.TableSettings.textEdit": "Rows & Columns", + "SSE.Views.TableSettings.textEmptyTemplate": "No templates", + "SSE.Views.TableSettings.textExistName": "ERROR! A range with such a name already exists", + "SSE.Views.TableSettings.textFilter": "Filter button", + "SSE.Views.TableSettings.textFirst": "First", + "SSE.Views.TableSettings.textHeader": "Header", + "SSE.Views.TableSettings.textInvalidName": "ERROR! Invalid table name", + "SSE.Views.TableSettings.textIsLocked": "This element is being edited by another user.", + "SSE.Views.TableSettings.textLast": "Last", + "SSE.Views.TableSettings.textLongOperation": "Long operation", + "SSE.Views.TableSettings.textPivot": "Insert pivot table", + "SSE.Views.TableSettings.textRemDuplicates": "Remove duplicates", + "SSE.Views.TableSettings.textReservedName": "The name you are trying to use is already referenced in cell formulas. Please use some other name.", + "SSE.Views.TableSettings.textResize": "Resize table", + "SSE.Views.TableSettings.textRows": "Rows", + "SSE.Views.TableSettings.textSelectData": "Select Data", + "SSE.Views.TableSettings.textSlicer": "Insert slicer", + "SSE.Views.TableSettings.textTableName": "Table Name", + "SSE.Views.TableSettings.textTemplate": "Select From Template", + "SSE.Views.TableSettings.textTotal": "Total", + "SSE.Views.TableSettings.warnLongOperation": "The operation you are about to perform might take rather much time to complete.
Are you sure you want to continue?", + "SSE.Views.TableSettingsAdvanced.textAlt": "Alternative Text", + "SSE.Views.TableSettingsAdvanced.textAltDescription": "Description", + "SSE.Views.TableSettingsAdvanced.textAltTip": "The alternative text-based representation of the visual object information, which will be read to the people with vision or cognitive impairments to help them better understand what information there is in the image, autoshape, chart or table.", + "SSE.Views.TableSettingsAdvanced.textAltTitle": "Title", + "SSE.Views.TableSettingsAdvanced.textTitle": "Table - Advanced Settings", + "SSE.Views.TextArtSettings.strBackground": "Background color", + "SSE.Views.TextArtSettings.strColor": "Color", + "SSE.Views.TextArtSettings.strFill": "Fill", + "SSE.Views.TextArtSettings.strForeground": "Foreground color", + "SSE.Views.TextArtSettings.strPattern": "Pattern", + "SSE.Views.TextArtSettings.strSize": "Size", + "SSE.Views.TextArtSettings.strStroke": "Line", + "SSE.Views.TextArtSettings.strTransparency": "Opacity", + "SSE.Views.TextArtSettings.strType": "Type", + "SSE.Views.TextArtSettings.textAngle": "Angle", + "SSE.Views.TextArtSettings.textBorderSizeErr": "The entered value is incorrect.
Please enter a value between 0 pt and 1584 pt.", + "SSE.Views.TextArtSettings.textColor": "Color Fill", + "SSE.Views.TextArtSettings.textDirection": "Direction", + "SSE.Views.TextArtSettings.textEmptyPattern": "No Pattern", + "SSE.Views.TextArtSettings.textFromFile": "From File", + "SSE.Views.TextArtSettings.textFromUrl": "From URL", + "SSE.Views.TextArtSettings.textGradient": "Gradient points", + "SSE.Views.TextArtSettings.textGradientFill": "Gradient Fill", + "SSE.Views.TextArtSettings.textImageTexture": "Picture or Texture", + "SSE.Views.TextArtSettings.textLinear": "Linear", + "SSE.Views.TextArtSettings.textNoFill": "No Fill", + "SSE.Views.TextArtSettings.textPatternFill": "Pattern", + "SSE.Views.TextArtSettings.textPosition": "Position", + "SSE.Views.TextArtSettings.textRadial": "Radial", + "SSE.Views.TextArtSettings.textSelectTexture": "Select", + "SSE.Views.TextArtSettings.textStretch": "Stretch", + "SSE.Views.TextArtSettings.textStyle": "Style", + "SSE.Views.TextArtSettings.textTemplate": "Template", + "SSE.Views.TextArtSettings.textTexture": "From Texture", + "SSE.Views.TextArtSettings.textTile": "Tile", + "SSE.Views.TextArtSettings.textTransform": "Transform", + "SSE.Views.TextArtSettings.tipAddGradientPoint": "Add gradient point", + "SSE.Views.TextArtSettings.tipRemoveGradientPoint": "Remove gradient point", + "SSE.Views.TextArtSettings.txtBrownPaper": "Brown Paper", + "SSE.Views.TextArtSettings.txtCanvas": "Canvas", + "SSE.Views.TextArtSettings.txtCarton": "Carton", + "SSE.Views.TextArtSettings.txtDarkFabric": "Dark Fabric", + "SSE.Views.TextArtSettings.txtGrain": "Grain", + "SSE.Views.TextArtSettings.txtGranite": "Granite", + "SSE.Views.TextArtSettings.txtGreyPaper": "Gray Paper", + "SSE.Views.TextArtSettings.txtKnit": "Knit", + "SSE.Views.TextArtSettings.txtLeather": "Leather", + "SSE.Views.TextArtSettings.txtNoBorders": "No Line", + "SSE.Views.TextArtSettings.txtPapyrus": "Papyrus", + "SSE.Views.TextArtSettings.txtWood": "Wood", + "SSE.Views.Toolbar.capBtnAddComment": "Add Comment", + "SSE.Views.Toolbar.capBtnColorSchemas": "Color Scheme", + "SSE.Views.Toolbar.capBtnComment": "Comment", + "SSE.Views.Toolbar.capBtnInsHeader": "Header/Footer", + "SSE.Views.Toolbar.capBtnInsSlicer": "Slicer", + "SSE.Views.Toolbar.capBtnInsSymbol": "Symbol", + "SSE.Views.Toolbar.capBtnMargins": "Margins", + "SSE.Views.Toolbar.capBtnPageOrient": "Orientation", + "SSE.Views.Toolbar.capBtnPageSize": "Size", + "SSE.Views.Toolbar.capBtnPrintArea": "Print Area", + "SSE.Views.Toolbar.capBtnPrintTitles": "Print Titles", + "SSE.Views.Toolbar.capBtnScale": "Scale to Fit", + "SSE.Views.Toolbar.capImgAlign": "Align", + "SSE.Views.Toolbar.capImgBackward": "Send Backward", + "SSE.Views.Toolbar.capImgForward": "Bring Forward", + "SSE.Views.Toolbar.capImgGroup": "Group", + "SSE.Views.Toolbar.capInsertChart": "Chart", + "SSE.Views.Toolbar.capInsertEquation": "Equation", + "SSE.Views.Toolbar.capInsertHyperlink": "Hyperlink", + "SSE.Views.Toolbar.capInsertImage": "Image", + "SSE.Views.Toolbar.capInsertShape": "Shape", + "SSE.Views.Toolbar.capInsertSpark": "Sparkline", + "SSE.Views.Toolbar.capInsertTable": "Table", + "SSE.Views.Toolbar.capInsertText": "Text Box", + "SSE.Views.Toolbar.mniImageFromFile": "Image from File", + "SSE.Views.Toolbar.mniImageFromStorage": "Image from Storage", + "SSE.Views.Toolbar.mniImageFromUrl": "Image from URL", + "SSE.Views.Toolbar.textAddPrintArea": "Add to Print Area", + "SSE.Views.Toolbar.textAlignBottom": "Align Bottom", + "SSE.Views.Toolbar.textAlignCenter": "Align Center", + "SSE.Views.Toolbar.textAlignJust": "Justified", + "SSE.Views.Toolbar.textAlignLeft": "Align Left", + "SSE.Views.Toolbar.textAlignMiddle": "Align Middle", + "SSE.Views.Toolbar.textAlignRight": "Align Right", + "SSE.Views.Toolbar.textAlignTop": "Align Top", + "SSE.Views.Toolbar.textAllBorders": "All Borders", + "SSE.Views.Toolbar.textAuto": "Auto", + "SSE.Views.Toolbar.textAutoColor": "Automatic", + "SSE.Views.Toolbar.textBold": "Bold", + "SSE.Views.Toolbar.textBordersColor": "Border Color", + "SSE.Views.Toolbar.textBordersStyle": "Border Style", + "SSE.Views.Toolbar.textBottom": "Bottom: ", + "SSE.Views.Toolbar.textBottomBorders": "Bottom Borders", + "SSE.Views.Toolbar.textCenterBorders": "Inside Vertical Borders", + "SSE.Views.Toolbar.textClearPrintArea": "Clear Print Area", + "SSE.Views.Toolbar.textClearRule": "Clear Rules", + "SSE.Views.Toolbar.textClockwise": "Angle Clockwise", + "SSE.Views.Toolbar.textColorScales": "Color Scales", + "SSE.Views.Toolbar.textCounterCw": "Angle Counterclockwise", + "SSE.Views.Toolbar.textDataBars": "Data Bars", + "SSE.Views.Toolbar.textDelLeft": "Shift Cells Left", + "SSE.Views.Toolbar.textDelUp": "Shift Cells Up", + "SSE.Views.Toolbar.textDiagDownBorder": "Diagonal Down Border", + "SSE.Views.Toolbar.textDiagUpBorder": "Diagonal Up Border", + "SSE.Views.Toolbar.textEntireCol": "Entire Column", + "SSE.Views.Toolbar.textEntireRow": "Entire Row", + "SSE.Views.Toolbar.textFewPages": "pages", + "SSE.Views.Toolbar.textHeight": "Height", + "SSE.Views.Toolbar.textHorizontal": "Horizontal Text", + "SSE.Views.Toolbar.textInsDown": "Shift Cells Down", + "SSE.Views.Toolbar.textInsideBorders": "Inside Borders", + "SSE.Views.Toolbar.textInsRight": "Shift Cells Right", + "SSE.Views.Toolbar.textItalic": "Italic", + "SSE.Views.Toolbar.textItems": "Items", + "SSE.Views.Toolbar.textLandscape": "Landscape", + "SSE.Views.Toolbar.textLeft": "Left: ", + "SSE.Views.Toolbar.textLeftBorders": "Left Borders", + "SSE.Views.Toolbar.textManageRule": "Manage Rules", + "SSE.Views.Toolbar.textManyPages": "pages", + "SSE.Views.Toolbar.textMarginsLast": "Last Custom", + "SSE.Views.Toolbar.textMarginsNarrow": "Narrow", + "SSE.Views.Toolbar.textMarginsNormal": "Normal", + "SSE.Views.Toolbar.textMarginsWide": "Wide", + "SSE.Views.Toolbar.textMiddleBorders": "Inside Horizontal Borders", + "SSE.Views.Toolbar.textMoreFormats": "More formats", + "SSE.Views.Toolbar.textMorePages": "More pages", + "SSE.Views.Toolbar.textNewColor": "Add New Custom Color", + "SSE.Views.Toolbar.textNewRule": "New Rule", + "SSE.Views.Toolbar.textNoBorders": "No Borders", + "SSE.Views.Toolbar.textOnePage": "page", + "SSE.Views.Toolbar.textOutBorders": "Outside Borders", + "SSE.Views.Toolbar.textPageMarginsCustom": "Custom margins", + "SSE.Views.Toolbar.textPortrait": "Portrait", + "SSE.Views.Toolbar.textPrint": "Print", + "SSE.Views.Toolbar.textPrintOptions": "Print Settings", + "SSE.Views.Toolbar.textRight": "Right: ", + "SSE.Views.Toolbar.textRightBorders": "Right Borders", + "SSE.Views.Toolbar.textRotateDown": "Rotate Text Down", + "SSE.Views.Toolbar.textRotateUp": "Rotate Text Up", + "SSE.Views.Toolbar.textScale": "Scale", + "SSE.Views.Toolbar.textScaleCustom": "Custom", + "SSE.Views.Toolbar.textSelection": "From current selection", + "SSE.Views.Toolbar.textSetPrintArea": "Set Print Area", + "SSE.Views.Toolbar.textStrikeout": "Strikethrough", + "SSE.Views.Toolbar.textSubscript": "Subscript", + "SSE.Views.Toolbar.textSubSuperscript": "Subscript/Superscript", + "SSE.Views.Toolbar.textSuperscript": "Superscript", + "SSE.Views.Toolbar.textTabCollaboration": "Collaboration", + "SSE.Views.Toolbar.textTabData": "Data", + "SSE.Views.Toolbar.textTabFile": "File", + "SSE.Views.Toolbar.textTabFormula": "Formula", + "SSE.Views.Toolbar.textTabHome": "Home", + "SSE.Views.Toolbar.textTabInsert": "Insert", + "SSE.Views.Toolbar.textTabLayout": "Layout", + "SSE.Views.Toolbar.textTabProtect": "Protection", + "SSE.Views.Toolbar.textTabView": "View", + "SSE.Views.Toolbar.textThisPivot": "From this pivot", + "SSE.Views.Toolbar.textThisSheet": "From this worksheet", + "SSE.Views.Toolbar.textThisTable": "From this table", + "SSE.Views.Toolbar.textTop": "Top: ", + "SSE.Views.Toolbar.textTopBorders": "Top Borders", + "SSE.Views.Toolbar.textUnderline": "Underline", + "SSE.Views.Toolbar.textVertical": "Vertical Text", + "SSE.Views.Toolbar.textWidth": "Width", + "SSE.Views.Toolbar.textZoom": "Zoom", + "SSE.Views.Toolbar.tipAlignBottom": "Align bottom", + "SSE.Views.Toolbar.tipAlignCenter": "Align center", + "SSE.Views.Toolbar.tipAlignJust": "Justified", + "SSE.Views.Toolbar.tipAlignLeft": "Align left", + "SSE.Views.Toolbar.tipAlignMiddle": "Align middle", + "SSE.Views.Toolbar.tipAlignRight": "Align right", + "SSE.Views.Toolbar.tipAlignTop": "Align top", + "SSE.Views.Toolbar.tipAutofilter": "Sort and Filter", + "SSE.Views.Toolbar.tipBack": "Back", + "SSE.Views.Toolbar.tipBorders": "Borders", + "SSE.Views.Toolbar.tipCellStyle": "Cell Style", + "SSE.Views.Toolbar.tipChangeChart": "Change chart type", + "SSE.Views.Toolbar.tipClearStyle": "Clear", + "SSE.Views.Toolbar.tipColorSchemas": "Change color scheme", + "SSE.Views.Toolbar.tipCondFormat": "Conditional formatting", + "SSE.Views.Toolbar.tipCopy": "Copy", + "SSE.Views.Toolbar.tipCopyStyle": "Copy style", + "SSE.Views.Toolbar.tipDecDecimal": "Decrease decimal", + "SSE.Views.Toolbar.tipDecFont": "Decrement font size", + "SSE.Views.Toolbar.tipDeleteOpt": "Delete cells", + "SSE.Views.Toolbar.tipDigStyleAccounting": "Accounting style", + "SSE.Views.Toolbar.tipDigStyleCurrency": "Currency Style", + "SSE.Views.Toolbar.tipDigStylePercent": "Percent style", + "SSE.Views.Toolbar.tipEditChart": "Edit Chart", + "SSE.Views.Toolbar.tipEditChartData": "Select Data", + "SSE.Views.Toolbar.tipEditChartType": "Change Chart Type", + "SSE.Views.Toolbar.tipEditHeader": "Edit header or footer", + "SSE.Views.Toolbar.tipFontColor": "Font color", + "SSE.Views.Toolbar.tipFontName": "Font", + "SSE.Views.Toolbar.tipFontSize": "Font size", + "SSE.Views.Toolbar.tipImgAlign": "Align objects", + "SSE.Views.Toolbar.tipImgGroup": "Group objects", + "SSE.Views.Toolbar.tipIncDecimal": "Increase decimal", + "SSE.Views.Toolbar.tipIncFont": "Increment font size", + "SSE.Views.Toolbar.tipInsertChart": "Insert chart", + "SSE.Views.Toolbar.tipInsertChartSpark": "Insert chart", + "SSE.Views.Toolbar.tipInsertEquation": "Insert equation", + "SSE.Views.Toolbar.tipInsertHyperlink": "Add hyperlink", + "SSE.Views.Toolbar.tipInsertImage": "Insert image", + "SSE.Views.Toolbar.tipInsertOpt": "Insert cells", + "SSE.Views.Toolbar.tipInsertShape": "Insert autoshape", + "SSE.Views.Toolbar.tipInsertSlicer": "Insert slicer", + "SSE.Views.Toolbar.tipInsertSpark": "Insert sparkline", + "SSE.Views.Toolbar.tipInsertSymbol": "Insert symbol", + "SSE.Views.Toolbar.tipInsertTable": "Insert table", + "SSE.Views.Toolbar.tipInsertText": "Insert text box", + "SSE.Views.Toolbar.tipInsertTextart": "Insert Text Art", + "SSE.Views.Toolbar.tipMerge": "Merge and center", + "SSE.Views.Toolbar.tipNumFormat": "Number format", + "SSE.Views.Toolbar.tipPageMargins": "Page margins", + "SSE.Views.Toolbar.tipPageOrient": "Page orientation", + "SSE.Views.Toolbar.tipPageSize": "Page size", + "SSE.Views.Toolbar.tipPaste": "Paste", + "SSE.Views.Toolbar.tipPrColor": "Fill color", + "SSE.Views.Toolbar.tipPrint": "Print", + "SSE.Views.Toolbar.tipPrintArea": "Print area", + "SSE.Views.Toolbar.tipPrintTitles": "Print titles", + "SSE.Views.Toolbar.tipRedo": "Redo", + "SSE.Views.Toolbar.tipSave": "Save", + "SSE.Views.Toolbar.tipSaveCoauth": "Save your changes for the other users to see them.", + "SSE.Views.Toolbar.tipScale": "Scale to Fit", + "SSE.Views.Toolbar.tipSendBackward": "Send backward", + "SSE.Views.Toolbar.tipSendForward": "Bring forward", + "SSE.Views.Toolbar.tipSynchronize": "The document has been changed by another user. Please click to save your changes and reload the updates.", + "SSE.Views.Toolbar.tipTextOrientation": "Orientation", + "SSE.Views.Toolbar.tipUndo": "Undo", + "SSE.Views.Toolbar.tipWrap": "Wrap text", + "SSE.Views.Toolbar.txtAccounting": "Accounting", + "SSE.Views.Toolbar.txtAdditional": "Additional", + "SSE.Views.Toolbar.txtAscending": "Ascending", + "SSE.Views.Toolbar.txtAutosumTip": "Summation", + "SSE.Views.Toolbar.txtClearAll": "All", + "SSE.Views.Toolbar.txtClearComments": "Comments", + "SSE.Views.Toolbar.txtClearFilter": "Clear filter", + "SSE.Views.Toolbar.txtClearFormat": "Format", + "SSE.Views.Toolbar.txtClearFormula": "Function", + "SSE.Views.Toolbar.txtClearHyper": "Hyperlinks", + "SSE.Views.Toolbar.txtClearText": "Text", + "SSE.Views.Toolbar.txtCurrency": "Currency", + "SSE.Views.Toolbar.txtCustom": "Custom", + "SSE.Views.Toolbar.txtDate": "Date", + "SSE.Views.Toolbar.txtDateTime": "Date & Time", + "SSE.Views.Toolbar.txtDescending": "Descending", + "SSE.Views.Toolbar.txtDollar": "$ Dollar", + "SSE.Views.Toolbar.txtEuro": "€ Euro", + "SSE.Views.Toolbar.txtExp": "Exponential", + "SSE.Views.Toolbar.txtFilter": "Filter", + "SSE.Views.Toolbar.txtFormula": "Insert function", + "SSE.Views.Toolbar.txtFraction": "Fraction", + "SSE.Views.Toolbar.txtFranc": "CHF Swiss franc", + "SSE.Views.Toolbar.txtGeneral": "General", + "SSE.Views.Toolbar.txtInteger": "Integer", + "SSE.Views.Toolbar.txtManageRange": "Name Manager", + "SSE.Views.Toolbar.txtMergeAcross": "Merge Across", + "SSE.Views.Toolbar.txtMergeCells": "Merge Cells", + "SSE.Views.Toolbar.txtMergeCenter": "Merge & Center", + "SSE.Views.Toolbar.txtNamedRange": "Named ranges", + "SSE.Views.Toolbar.txtNewRange": "Define Name", + "SSE.Views.Toolbar.txtNoBorders": "No borders", + "SSE.Views.Toolbar.txtNumber": "Number", + "SSE.Views.Toolbar.txtPasteRange": "Paste Name", + "SSE.Views.Toolbar.txtPercentage": "Percentage", + "SSE.Views.Toolbar.txtPound": "£ Pound", + "SSE.Views.Toolbar.txtRouble": "₽ Rouble", + "SSE.Views.Toolbar.txtScheme1": "Office", + "SSE.Views.Toolbar.txtScheme10": "Median", + "SSE.Views.Toolbar.txtScheme11": "Metro", + "SSE.Views.Toolbar.txtScheme12": "Module", + "SSE.Views.Toolbar.txtScheme13": "Opulent", + "SSE.Views.Toolbar.txtScheme14": "Oriel", + "SSE.Views.Toolbar.txtScheme15": "Origin", + "SSE.Views.Toolbar.txtScheme16": "Paper", + "SSE.Views.Toolbar.txtScheme17": "Solstice", + "SSE.Views.Toolbar.txtScheme18": "Technic", + "SSE.Views.Toolbar.txtScheme19": "Trek", + "SSE.Views.Toolbar.txtScheme2": "Grayscale", + "SSE.Views.Toolbar.txtScheme20": "Urban", + "SSE.Views.Toolbar.txtScheme21": "Verve", + "SSE.Views.Toolbar.txtScheme22": "New Office", + "SSE.Views.Toolbar.txtScheme3": "Apex", + "SSE.Views.Toolbar.txtScheme4": "Aspect", + "SSE.Views.Toolbar.txtScheme5": "Civic", + "SSE.Views.Toolbar.txtScheme6": "Concourse", + "SSE.Views.Toolbar.txtScheme7": "Equity", + "SSE.Views.Toolbar.txtScheme8": "Flow", + "SSE.Views.Toolbar.txtScheme9": "Foundry", + "SSE.Views.Toolbar.txtScientific": "Scientific", + "SSE.Views.Toolbar.txtSearch": "Search", + "SSE.Views.Toolbar.txtSort": "Sort", + "SSE.Views.Toolbar.txtSortAZ": "Sort ascending", + "SSE.Views.Toolbar.txtSortZA": "Sort descending", + "SSE.Views.Toolbar.txtSpecial": "Special", + "SSE.Views.Toolbar.txtTableTemplate": "Format as table template", + "SSE.Views.Toolbar.txtText": "Text", + "SSE.Views.Toolbar.txtTime": "Time", + "SSE.Views.Toolbar.txtUnmerge": "Unmerge Cells", + "SSE.Views.Toolbar.txtYen": "¥ Yen", + "SSE.Views.Top10FilterDialog.textType": "Show", + "SSE.Views.Top10FilterDialog.txtBottom": "Bottom", + "SSE.Views.Top10FilterDialog.txtBy": "by", + "SSE.Views.Top10FilterDialog.txtItems": "Item", + "SSE.Views.Top10FilterDialog.txtPercent": "Percent", + "SSE.Views.Top10FilterDialog.txtSum": "Sum", + "SSE.Views.Top10FilterDialog.txtTitle": "Top 10 AutoFilter", + "SSE.Views.Top10FilterDialog.txtTop": "Top", + "SSE.Views.Top10FilterDialog.txtValueTitle": "Top 10 Filter", + "SSE.Views.ValueFieldSettingsDialog.textTitle": "Value Field Settings", + "SSE.Views.ValueFieldSettingsDialog.txtAverage": "Average", + "SSE.Views.ValueFieldSettingsDialog.txtBaseField": "Base field", + "SSE.Views.ValueFieldSettingsDialog.txtBaseItem": "Base item", + "SSE.Views.ValueFieldSettingsDialog.txtByField": "%1 of %2", + "SSE.Views.ValueFieldSettingsDialog.txtCount": "Count", + "SSE.Views.ValueFieldSettingsDialog.txtCountNums": "Count Numbers", + "SSE.Views.ValueFieldSettingsDialog.txtCustomName": "Custom name", + "SSE.Views.ValueFieldSettingsDialog.txtDifference": "The Difference From", + "SSE.Views.ValueFieldSettingsDialog.txtIndex": "Index", + "SSE.Views.ValueFieldSettingsDialog.txtMax": "Max", + "SSE.Views.ValueFieldSettingsDialog.txtMin": "Min", + "SSE.Views.ValueFieldSettingsDialog.txtNormal": "No Calculation", + "SSE.Views.ValueFieldSettingsDialog.txtPercent": "Percent of", + "SSE.Views.ValueFieldSettingsDialog.txtPercentDiff": "Percent Difference From", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfCol": "Percent of Column", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfRow": "Percent of Total", + "SSE.Views.ValueFieldSettingsDialog.txtPercentOfTotal": "Percent of Row", + "SSE.Views.ValueFieldSettingsDialog.txtProduct": "Product", + "SSE.Views.ValueFieldSettingsDialog.txtRunTotal": "Running Total In", + "SSE.Views.ValueFieldSettingsDialog.txtShowAs": "Show values as", + "SSE.Views.ValueFieldSettingsDialog.txtSourceName": "Source name:", + "SSE.Views.ValueFieldSettingsDialog.txtStdDev": "StdDev", + "SSE.Views.ValueFieldSettingsDialog.txtStdDevp": "StdDevp", + "SSE.Views.ValueFieldSettingsDialog.txtSum": "Sum", + "SSE.Views.ValueFieldSettingsDialog.txtSummarize": "Summarize value field by", + "SSE.Views.ValueFieldSettingsDialog.txtVar": "Var", + "SSE.Views.ValueFieldSettingsDialog.txtVarp": "Varp", + "SSE.Views.ViewManagerDlg.closeButtonText": "Close", + "SSE.Views.ViewManagerDlg.guestText": "Guest", + "SSE.Views.ViewManagerDlg.textDelete": "Delete", + "SSE.Views.ViewManagerDlg.textDuplicate": "Duplicate", + "SSE.Views.ViewManagerDlg.textEmpty": "No views have been created yet.", + "SSE.Views.ViewManagerDlg.textGoTo": "Go to view", + "SSE.Views.ViewManagerDlg.textLongName": "Enter a name that is less than 128 characters.", + "SSE.Views.ViewManagerDlg.textNew": "New", + "SSE.Views.ViewManagerDlg.textRename": "Rename", + "SSE.Views.ViewManagerDlg.textRenameError": "View name must not be empty.", + "SSE.Views.ViewManagerDlg.textRenameLabel": "Rename view", + "SSE.Views.ViewManagerDlg.textViews": "Sheet views", + "SSE.Views.ViewManagerDlg.tipIsLocked": "This element is being edited by another user.", + "SSE.Views.ViewManagerDlg.txtTitle": "Sheet View Manager", + "SSE.Views.ViewManagerDlg.warnDeleteView": "You are trying to delete the currently enabled view '%1'.
Close this view and delete it?", + "SSE.Views.ViewTab.capBtnFreeze": "Freeze Panes", + "SSE.Views.ViewTab.capBtnSheetView": "Sheet View", + "SSE.Views.ViewTab.textClose": "Close", + "SSE.Views.ViewTab.textCreate": "New", + "SSE.Views.ViewTab.textDefault": "Default", + "SSE.Views.ViewTab.textFormula": "Formula bar", + "SSE.Views.ViewTab.textFreezeCol": "Freeze First Column", + "SSE.Views.ViewTab.textFreezeRow": "Freeze Top Row", + "SSE.Views.ViewTab.textGridlines": "Gridlines", + "SSE.Views.ViewTab.textHeadings": "Headings", + "SSE.Views.ViewTab.textManager": "View manager", + "SSE.Views.ViewTab.textUnFreeze": "Unfreeze Panes", + "SSE.Views.ViewTab.textZeros": "Show zeros", + "SSE.Views.ViewTab.textZoom": "Zoom", + "SSE.Views.ViewTab.tipClose": "Close sheet view", + "SSE.Views.ViewTab.tipCreate": "Create sheet view", + "SSE.Views.ViewTab.tipFreeze": "Freeze panes", + "SSE.Views.ViewTab.tipSheetView": "Sheet view", + "SSE.Views.WBProtection.txtProtectWB": "Protect Workbook", + "SSE.Views.WBProtection.txtProtectSheet": "Protect Sheet", + "SSE.Views.WBProtection.txtAllowRanges": "Allow Edit Ranges", + "SSE.Views.WBProtection.hintProtectWB": "Protect workbook", + "SSE.Views.WBProtection.hintProtectSheet": "Protect sheet", + "SSE.Views.WBProtection.hintAllowRanges": "Allow edit ranges", + "SSE.Views.WBProtection.txtLockedCell": "Locked Cell", + "SSE.Views.WBProtection.txtLockedShape": "Shape Locked", + "SSE.Views.WBProtection.txtLockedText": "Lock Text", + "SSE.Views.WBProtection.txtHiddenFormula": "Hidden Formulas", + "SSE.Views.WBProtection.txtWBUnlockTitle": "Unprotect Workbook", + "SSE.Views.WBProtection.txtWBUnlockDescription": "Enter a password to unprotect workbook", + "SSE.Views.WBProtection.txtSheetUnlockTitle": "Unprotect Sheet", + "SSE.Views.WBProtection.txtSheetUnlockDescription": "Enter a password to unprotect sheet" } \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/locale/es.json b/apps/spreadsheeteditor/main/locale/es.json index ab0be8c78..69f20b27a 100644 --- a/apps/spreadsheeteditor/main/locale/es.json +++ b/apps/spreadsheeteditor/main/locale/es.json @@ -549,6 +549,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Eliminar límite", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Quitar carácter de acento", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Eliminar barra", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "¿Desea eliminar esta firma?
No se puede deshacer.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Quitar índices", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Quitar subíndice", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Quitar superíndice", @@ -652,6 +653,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor de clave desconocido", "SSE.Controllers.Main.errorKeyExpire": "Descriptor de clave ha expirado", "SSE.Controllers.Main.errorLabledColumnsPivot": "Para crear una tabla dinámica, utilice datos que estén organizados como una lista con columnas etiquetadas.", + "SSE.Controllers.Main.errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "La referencia a la ubicación o al rango de datos no es válida.", "SSE.Controllers.Main.errorLockedAll": "No se pudo realizar la operación porque la hoja ha sido bloqueada por otro usuario.", "SSE.Controllers.Main.errorLockedCellPivot": "No puede modificar datos dentro de una tabla dinámica.", @@ -986,6 +988,9 @@ "SSE.Controllers.Main.txtYears": "Años", "SSE.Controllers.Main.unknownErrorText": "Error desconocido.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Su navegador no está soportado.", + "SSE.Controllers.Main.uploadDocExtMessage": "Formato de documento desconocido", + "SSE.Controllers.Main.uploadDocFileCountMessage": "No hay documentos subidos", + "SSE.Controllers.Main.uploadDocSizeMessage": "Límite de tamaño máximo del documento excedido.", "SSE.Controllers.Main.uploadImageExtMessage": "Formato de imagen desconocido.", "SSE.Controllers.Main.uploadImageFileCountMessage": "No hay imágenes subidas.", "SSE.Controllers.Main.uploadImageSizeMessage": "La imagen es demasiado grande. El tamaño máximo es de 25 MB.", @@ -1688,9 +1693,9 @@ "SSE.Views.DataTab.capBtnTextRemDuplicates": "Eliminar duplicados", "SSE.Views.DataTab.capBtnTextToCol": "Texto en columnas", "SSE.Views.DataTab.capBtnUngroup": "Desagrupar", - "SSE.Views.DataTab.capDataFromText": "Desde el texto/CSV", - "SSE.Views.DataTab.mniFromFile": "Obtener datos del archivo", - "SSE.Views.DataTab.mniFromUrl": "Obtener datos de la dirección URL", + "SSE.Views.DataTab.capDataFromText": "Obtener los datos", + "SSE.Views.DataTab.mniFromFile": "Desde el archivo TXT/CSV local", + "SSE.Views.DataTab.mniFromUrl": "Desde la dirección web del archivo TXT/CSV", "SSE.Views.DataTab.textBelow": "Filas resumen debajo del detalle", "SSE.Views.DataTab.textClear": "Borrar esquema", "SSE.Views.DataTab.textColumns": "Desagrupar columnas", diff --git a/apps/spreadsheeteditor/main/locale/fr.json b/apps/spreadsheeteditor/main/locale/fr.json index 237a898ff..9c3da55e7 100644 --- a/apps/spreadsheeteditor/main/locale/fr.json +++ b/apps/spreadsheeteditor/main/locale/fr.json @@ -549,6 +549,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Supprimer la limite", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Supprimer le caractère d'accent", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Supprimer la barre", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Voulez vous supprimer cette signature?
Cette action ne peut pas être annulée.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Supprimer scripts", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Supprimer la souscription", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Supprimer la suscription", @@ -652,6 +653,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descripteur de clés inconnu", "SSE.Controllers.Main.errorKeyExpire": "Descripteur de clés expiré", "SSE.Controllers.Main.errorLabledColumnsPivot": "Pour créer un tableau croisé dynamique, utilisez les données organisées sous forme de liste avec des colonnes libellées.", + "SSE.Controllers.Main.errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "La référence de localisation ou la plage de données n'est pas valide.", "SSE.Controllers.Main.errorLockedAll": "L'opération ne peut pas être réalisée car la feuille a été verrouillée par un autre utilisateur.", "SSE.Controllers.Main.errorLockedCellPivot": "Impossible de modifier les données d'un tableau croisé dynamique.", @@ -986,6 +988,9 @@ "SSE.Controllers.Main.txtYears": "années", "SSE.Controllers.Main.unknownErrorText": "Erreur inconnue.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Votre navigateur n'est pas pris en charge.", + "SSE.Controllers.Main.uploadDocExtMessage": "Format de fichier inconnu.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Aucun fichier n'a été chargé.", + "SSE.Controllers.Main.uploadDocSizeMessage": "La taille du fichier dépasse la limite autorisée.", "SSE.Controllers.Main.uploadImageExtMessage": "Format d'image inconnu.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Pas d'images chargées.", "SSE.Controllers.Main.uploadImageSizeMessage": "L'image est trop grande. La taille limite est de 25 Mo.", @@ -1688,9 +1693,9 @@ "SSE.Views.DataTab.capBtnTextRemDuplicates": "Supprimer les valeurs dupliquées", "SSE.Views.DataTab.capBtnTextToCol": "Texte en colonnes", "SSE.Views.DataTab.capBtnUngroup": "Dissocier", - "SSE.Views.DataTab.capDataFromText": "À partir d’un fichier texte/CSV", - "SSE.Views.DataTab.mniFromFile": "Obtenir les données à partir d'un fichier", - "SSE.Views.DataTab.mniFromUrl": "Récupérer les données à partir de l'URL", + "SSE.Views.DataTab.capDataFromText": "Obtenir les données", + "SSE.Views.DataTab.mniFromFile": "A partir du fuchier local TXT/CSV", + "SSE.Views.DataTab.mniFromUrl": "A partir de l'URL du fichier TXT/CSV", "SSE.Views.DataTab.textBelow": "Lignes de synthèse sous les lignes de détail", "SSE.Views.DataTab.textClear": "Effacer le plan", "SSE.Views.DataTab.textColumns": "Dissocier les colonnes", diff --git a/apps/spreadsheeteditor/main/locale/it.json b/apps/spreadsheeteditor/main/locale/it.json index 0b8919b47..def41f472 100644 --- a/apps/spreadsheeteditor/main/locale/it.json +++ b/apps/spreadsheeteditor/main/locale/it.json @@ -549,6 +549,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Rimuovi limite", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Rimuovi accento carattere", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Elimina barra", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Vuoi rimuovere questa firma?
Non può essere annullata.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Rimuovi gli script", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Elimina pedice", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Elimina apice", @@ -652,6 +653,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descrittore di chiave sconosciuto", "SSE.Controllers.Main.errorKeyExpire": "Descrittore di chiave scaduto", "SSE.Controllers.Main.errorLabledColumnsPivot": "Per creare una tabella pivot, è necessario utilizzare dati organizzati come un elenco con colonne etichettate.", + "SSE.Controllers.Main.errorLoadingFont": "I caratteri non sono caricati.
Si prega di contattare il tuo amministratore di Document Server.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "Il riferimento per la posizione o l'intervallo di dati non è valido.", "SSE.Controllers.Main.errorLockedAll": "L'operazione non può essere portata a termine fino a che il foglio è bloccato da un altro utente.", "SSE.Controllers.Main.errorLockedCellPivot": "Non è possibile modificare i dati all'interno di una tabella pivot.", @@ -986,6 +988,9 @@ "SSE.Controllers.Main.txtYears": "Anni", "SSE.Controllers.Main.unknownErrorText": "Errore sconosciuto.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Il tuo browser non è supportato.", + "SSE.Controllers.Main.uploadDocExtMessage": "Formato documento sconosciuto.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Nessun documento caricato.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Il limite massimo delle dimensioni del documento è stato superato.", "SSE.Controllers.Main.uploadImageExtMessage": "Formato immagine sconosciuto.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Nessuna immagine caricata.", "SSE.Controllers.Main.uploadImageSizeMessage": "L'immagine è troppo grande. La dimensione massima è 25 MB.", diff --git a/apps/spreadsheeteditor/main/locale/ja.json b/apps/spreadsheeteditor/main/locale/ja.json index b9d981294..fe4924f71 100644 --- a/apps/spreadsheeteditor/main/locale/ja.json +++ b/apps/spreadsheeteditor/main/locale/ja.json @@ -543,7 +543,7 @@ "SSE.Controllers.LeftMenu.textLookin": "検索の範囲", "SSE.Controllers.LeftMenu.textNoTextFound": "検索データが見つかりませんでした。他の検索設定を選択してください。", "SSE.Controllers.LeftMenu.textReplaceSkipped": "置換が行われました。スキップされた発生回数は{0}です。", - "SSE.Controllers.LeftMenu.textReplaceSuccess": "検索が行われました。変更された発生回数は{0}です。", + "SSE.Controllers.LeftMenu.textReplaceSuccess": "検索完了しました。更新件数は、{0} です。", "SSE.Controllers.LeftMenu.textSearch": "検索", "SSE.Controllers.LeftMenu.textSheet": "シート", "SSE.Controllers.LeftMenu.textValues": "値", @@ -694,7 +694,7 @@ "SSE.Controllers.Main.titleServerVersion": "エディターが更新された", "SSE.Controllers.Main.txtAccent": "アクセント", "SSE.Controllers.Main.txtAll": "すべて", - "SSE.Controllers.Main.txtArt": "あなたのテキストはここです。", + "SSE.Controllers.Main.txtArt": "ここにテキストを入力", "SSE.Controllers.Main.txtBasicShapes": "基本図形", "SSE.Controllers.Main.txtBlank": "(空白)", "SSE.Controllers.Main.txtButtons": "ボタン", @@ -1911,7 +1911,7 @@ "SSE.Views.FileMenuPanels.DocumentRights.txtRights": "権利を持っている者", "SSE.Views.FileMenuPanels.MainSettingsGeneral.okButtonText": "適用", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutoRecover": "自動バックアップをターンにします。", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "自動保存をターンにします。", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strAutosave": "自動保存をオンにします。", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthMode": "共同編集のモード", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescFast": "他のユーザーにすぐに変更が表示されます", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strCoAuthModeDescStrict": "変更を見れる前に、変更を受け入れる必要があります。", @@ -1921,7 +1921,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strForcesave": "常にサーバーに保存する(もしくは、文書を閉じる後、サーバーに保存する)", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocale": "数式の言語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strFuncLocaleEx": "例えば:合計;最小;最大;カウント", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "テキストコメントの表示をターンにします。", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strLiveComment": "テキストコメントの表示をオンにします。", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strMacrosSettings": "マクロの設定", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPaste": "切り取り、コピー、貼り付け", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strPasteButton": "貼り付けるときに[貼り付けオプション]ボタンを表示する", @@ -1933,7 +1933,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.strStrict": "高レベル", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strTheme": "テーマ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strThousandsSeparator": "桁区切り", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "販売単位", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUnit": "測定単位", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strUseSeparatorsBasedOnRegionalSettings": "地域の設定に基づいて桁区切りを使用する", "SSE.Views.FileMenuPanels.MainSettingsGeneral.strZoom": "既定のズーム値", "SSE.Views.FileMenuPanels.MainSettingsGeneral.text10Minutes": "10 分ごと", @@ -1949,7 +1949,7 @@ "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCacheMode": "既定のキャッシュ モード", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtCm": "センチ", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtDe": "ドイツ語", - "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "英吾", + "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEn": "英語", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtEs": "スペイン", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtFr": "フランス", "SSE.Views.FileMenuPanels.MainSettingsGeneral.txtId": "インドネシア語", diff --git a/apps/spreadsheeteditor/main/locale/ro.json b/apps/spreadsheeteditor/main/locale/ro.json index e61ad775e..e6e963724 100644 --- a/apps/spreadsheeteditor/main/locale/ro.json +++ b/apps/spreadsheeteditor/main/locale/ro.json @@ -549,6 +549,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Eliminare limită", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Eliminare caracter cu accent", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Eliminare bară", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Doriți să eliminați aceasta semnătura?
Va fi imposibil să anulați acțiunea.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Eliminare scripturi", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Eliminare indice", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Eliminare exponent", @@ -652,6 +653,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Descriptor cheie nerecunoscut", "SSE.Controllers.Main.errorKeyExpire": "Descriptor cheie a expirat", "SSE.Controllers.Main.errorLabledColumnsPivot": "Pentru a crea o tabelă Pivot, datele trebuie să fie organizate sub formă de listă care conține etichete pentru fiecare coloană. ", + "SSE.Controllers.Main.errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "Referința de localizare sau zona de date nu este validă.", "SSE.Controllers.Main.errorLockedAll": "Operațiunea nu poate fi efectuată deoarece foaia a fost blocată de către un alt utilizator.", "SSE.Controllers.Main.errorLockedCellPivot": "Nu puteți modifica datele manipulând tabel Pivot.", @@ -986,6 +988,9 @@ "SSE.Controllers.Main.txtYears": "Ani", "SSE.Controllers.Main.unknownErrorText": "Eroare necunoscută.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Browserul nu este compatibil.", + "SSE.Controllers.Main.uploadDocExtMessage": "Format de fișier necunoscut.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Nu există nicun document încărcat.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Dimensiunea documentului depășește limita permisă.", "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 permisă.", @@ -1688,9 +1693,9 @@ "SSE.Views.DataTab.capBtnTextRemDuplicates": "Eliminare dubluri", "SSE.Views.DataTab.capBtnTextToCol": "Text în coloane", "SSE.Views.DataTab.capBtnUngroup": "Anularea grupării", - "SSE.Views.DataTab.capDataFromText": "Din text/CSV", - "SSE.Views.DataTab.mniFromFile": "Colectare date din fișier", - "SSE.Views.DataTab.mniFromUrl": "Colectare date prin URL", + "SSE.Views.DataTab.capDataFromText": "Obținere date", + "SSE.Views.DataTab.mniFromFile": "Din fișier local", + "SSE.Views.DataTab.mniFromUrl": "Prin adresa web a fișierului TXT/CSV", "SSE.Views.DataTab.textBelow": "Rânduri rezumative sub detalii", "SSE.Views.DataTab.textClear": "Golire schiță", "SSE.Views.DataTab.textColumns": "Anularea grupării coloanelor", diff --git a/apps/spreadsheeteditor/main/locale/ru.json b/apps/spreadsheeteditor/main/locale/ru.json index eb3510481..8a3a22ecc 100644 --- a/apps/spreadsheeteditor/main/locale/ru.json +++ b/apps/spreadsheeteditor/main/locale/ru.json @@ -549,6 +549,7 @@ "SSE.Controllers.DocumentHolder.txtRemLimit": "Удалить предел", "SSE.Controllers.DocumentHolder.txtRemoveAccentChar": "Удалить диакритический знак", "SSE.Controllers.DocumentHolder.txtRemoveBar": "Удалить черту", + "SSE.Controllers.DocumentHolder.txtRemoveWarning": "Вы хотите удалить эту подпись?
Это нельзя отменить.", "SSE.Controllers.DocumentHolder.txtRemScripts": "Удалить индексы", "SSE.Controllers.DocumentHolder.txtRemSubscript": "Удалить нижний индекс", "SSE.Controllers.DocumentHolder.txtRemSuperscript": "Удалить верхний индекс", @@ -652,6 +653,7 @@ "SSE.Controllers.Main.errorKeyEncrypt": "Неизвестный дескриптор ключа", "SSE.Controllers.Main.errorKeyExpire": "Срок действия дескриптора ключа истек", "SSE.Controllers.Main.errorLabledColumnsPivot": "Чтобы создать сводную таблицу, используйте данные, организованные в виде списка с заголовками столбцов.", + "SSE.Controllers.Main.errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "SSE.Controllers.Main.errorLocationOrDataRangeError": "Недействительная ссылка на расположение или диапазон данных.", "SSE.Controllers.Main.errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.", "SSE.Controllers.Main.errorLockedCellPivot": "Нельзя изменить данные в сводной таблице.", @@ -986,6 +988,9 @@ "SSE.Controllers.Main.txtYears": "Годы", "SSE.Controllers.Main.unknownErrorText": "Неизвестная ошибка.", "SSE.Controllers.Main.unsupportedBrowserErrorText": "Ваш браузер не поддерживается.", + "SSE.Controllers.Main.uploadDocExtMessage": "Неизвестный формат документа.", + "SSE.Controllers.Main.uploadDocFileCountMessage": "Ни одного документа не загружено.", + "SSE.Controllers.Main.uploadDocSizeMessage": "Превышен максимальный размер документа.", "SSE.Controllers.Main.uploadImageExtMessage": "Неизвестный формат изображения.", "SSE.Controllers.Main.uploadImageFileCountMessage": "Ни одного изображения не загружено.", "SSE.Controllers.Main.uploadImageSizeMessage": "Слишком большое изображение. Максимальный размер - 25 MB.", @@ -1688,9 +1693,9 @@ "SSE.Views.DataTab.capBtnTextRemDuplicates": "Удалить дубликаты", "SSE.Views.DataTab.capBtnTextToCol": "Текст по столбцам", "SSE.Views.DataTab.capBtnUngroup": "Разгруппировать", - "SSE.Views.DataTab.capDataFromText": "Из текстового/CSV-файла", - "SSE.Views.DataTab.mniFromFile": "Получить данные из файла", - "SSE.Views.DataTab.mniFromUrl": "Получить данные по URL", + "SSE.Views.DataTab.capDataFromText": "Получить данные", + "SSE.Views.DataTab.mniFromFile": "Из локального TXT/CSV файла", + "SSE.Views.DataTab.mniFromUrl": "По URL TXT/CSV файла", "SSE.Views.DataTab.textBelow": "Итоги в строках под данными", "SSE.Views.DataTab.textClear": "Удалить структуру", "SSE.Views.DataTab.textColumns": "Разгруппировать столбцы", diff --git a/apps/spreadsheeteditor/main/locale/zh.json b/apps/spreadsheeteditor/main/locale/zh.json index bed415854..c06c9f234 100644 --- a/apps/spreadsheeteditor/main/locale/zh.json +++ b/apps/spreadsheeteditor/main/locale/zh.json @@ -1954,7 +1954,7 @@ "SSE.Views.MainSettingsPrint.strLandscape": "横向", "SSE.Views.MainSettingsPrint.strLeft": "左", "SSE.Views.MainSettingsPrint.strMargins": "边距", - "SSE.Views.MainSettingsPrint.strPortrait": "肖像", + "SSE.Views.MainSettingsPrint.strPortrait": "纵向", "SSE.Views.MainSettingsPrint.strPrint": "打印", "SSE.Views.MainSettingsPrint.strPrintTitles": "打印标题", "SSE.Views.MainSettingsPrint.strRight": "右", diff --git a/apps/spreadsheeteditor/main/resources/img/file-template.svg b/apps/spreadsheeteditor/main/resources/img/file-template.svg index 88a890b07..325f0a78f 100644 --- a/apps/spreadsheeteditor/main/resources/img/file-template.svg +++ b/apps/spreadsheeteditor/main/resources/img/file-template.svg @@ -1,33 +1,27 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png index 640f0a1b6..ca643e2e7 100644 Binary files a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png and b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.25x.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.25x.png new file mode 100644 index 000000000..93960c60f Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.25x.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.5x.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.5x.png index 18d70bd14..089651768 100644 Binary files a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.5x.png and b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.5x.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.75x.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.75x.png new file mode 100644 index 000000000..adaadab32 Binary files /dev/null and b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@1.75x.png differ diff --git a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png index be0b87b62..79a421a6f 100644 Binary files a/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png and b/apps/spreadsheeteditor/main/resources/img/toolbar/BorderSize@2x.png differ diff --git a/apps/spreadsheeteditor/main/resources/less/leftmenu.less b/apps/spreadsheeteditor/main/resources/less/leftmenu.less index 2cb71ac7a..d8b073b21 100644 --- a/apps/spreadsheeteditor/main/resources/less/leftmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/leftmenu.less @@ -49,10 +49,6 @@ width: 96px; height: 96px; cursor: pointer; - - svg&:hover { - opacity:0.85; - } } #file-menu-panel { @@ -271,10 +267,6 @@ white-space: nowrap; } - .blank-document { - min-width: 650px; - } - .blank-document-info { vertical-align: top; width: 445px; @@ -287,14 +279,6 @@ } } - .blank-document-btn { - display: inline-block; - margin: 25px 20px 65px; - width: 96px; - height: 96px; - cursor: pointer; - } - hr { margin: 0; border-bottom: none; @@ -303,22 +287,46 @@ } .thumb-list { - .thumb-wrap { + max-width: 600px; + .thumb-wrap, .blank-document { display: inline-block; text-align: center; width: auto; - padding: 30px 20px; cursor: pointer; + vertical-align: top; + .border-radius(@border-radius-small); - .thumb { + .thumb, .blank-document-btn { width: 96px; height: 96px; background-repeat: no-repeat; background-position: center; + margin: 12px 12px 0px 12px; } .title { - padding-top: 20px; + width: 104px; + font-size: 12px; + line-height: 14px; + height: 28px; + margin: 8px 8px 12px 8px; + word-break: break-word; + word-wrap: break-word; + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; + } + &:hover{ + background-color: @highlight-button-hover-ie; + background-color: @highlight-button-hover; + } + &:active{ + color: @text-normal-pressed-ie; + color: @text-normal-pressed; + background-color: @highlight-button-pressed-ie; + background-color: @highlight-button-pressed; } } } diff --git a/apps/spreadsheeteditor/main/resources/less/rightmenu.less b/apps/spreadsheeteditor/main/resources/less/rightmenu.less index d8736eef1..4011aefb1 100644 --- a/apps/spreadsheeteditor/main/resources/less/rightmenu.less +++ b/apps/spreadsheeteditor/main/resources/less/rightmenu.less @@ -9,7 +9,7 @@ } .combo-pattern-item { - .background-ximage-v2('right-panels/patterns.png', 112px); + .background-ximage-all('right-panels/patterns.png', 112px); } .combo-dataview-menu { @@ -27,7 +27,7 @@ } .item-gradient { - .background-ximage('@{common-image-path}/right-panels/gradients.png', '@{common-image-path}/right-panels/gradients@2x.png', 150px); + .background-ximage-all('right-panels/gradients.png', 150px); width:50px; height:50px; } @@ -210,10 +210,18 @@ background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize.png)"; background-size: 60px auto; + .pixel-ratio__1_25 & { + background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@1.25x.png)"; + } + .pixel-ratio__1_5 & { background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@1.5x.png)"; } + .pixel-ratio__1_75 & { + background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@1.75x.png)"; + } + .pixel-ratio__2 & { background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@2x.png)"; } diff --git a/apps/spreadsheeteditor/main/resources/less/statusbar.less b/apps/spreadsheeteditor/main/resources/less/statusbar.less index d0ea085d6..e72c9df19 100644 --- a/apps/spreadsheeteditor/main/resources/less/statusbar.less +++ b/apps/spreadsheeteditor/main/resources/less/statusbar.less @@ -6,18 +6,26 @@ width: 112px; float: left; padding: 3px 12px 0 10px; + height: 25px; } #status-zoom-box { width: 160px; - float: right; + //float: right; padding-top: 3px; + position: absolute; + right: 0; + height: 25px; + .separator { - margin-right: 10px; margin-top: -3px; } + #status-btn-zoomdown { + margin-left: 10px; + } + #status-label-zoom { cursor: pointer; text-align: center; @@ -120,28 +128,42 @@ #status-math-box, #status-filtered-box { - float: right; + //float: right; padding-top: 6px; - padding-right: 14px; + position: absolute; + height: 25px; + + .separator { + position: relative; + padding-right: 11px; + margin-top: -6px; + } + } + + #status-math-box { + padding-right: 4px; + label { + padding-right: 10px; + } + } + + #status-filtered-box { + padding-right: 14px; label { &:not(:last-child) { padding-right: 10px; } } - - .separator { - margin-top: -6px; - } } #status-sheets-bar-box { position: absolute; overflow: hidden; - height: 32px; + height: 25px; left: 112px; right: 160px; - margin-right: 3px; + //margin-right: 3px; } #status-sheets-bar { @@ -315,10 +337,12 @@ } } &.separator-item { + margin-top: 1px; margin-left: 20px; width: @scaled-one-px-value-ie; width: @scaled-one-px-value; > span { + display: none; padding: 0; margin: 0; width: @scaled-one-px-value-ie; @@ -337,6 +361,33 @@ } } + #status-number-of-sheet , #status-action { + position: absolute; + height: 25px; + bottom: 0; + display: flex; + justify-content: flex-start; + .status-label { + font-weight: bold; + color: @text-normal; + margin-top: 5px; + width: 100%; + text-align: center; + } + } + + #status-number-of-sheet { + width: 135px; + } + + &.no-compact { + #status-tabs-scroll, #status-sheets-bar-box, #status-addtabs-box { + height: 26px; + border-bottom: @scaled-one-px-value-ie solid @border-toolbar-ie; + border-bottom: @scaled-one-px-value solid @border-toolbar; + } + } + .btn-tpl(@top-position) { .btn-icon { background-position: 0 @top-position; @@ -428,6 +479,19 @@ } } +#statusbar-menu { + .dropdown-menu { + li { + > a { + padding: 5px 12px 5px 26px; + &::before { + margin-left: -22px; + } + } + } + } +} + .statusbar-mask { position: absolute; bottom: 0; diff --git a/apps/spreadsheeteditor/main/resources/less/toolbar.less b/apps/spreadsheeteditor/main/resources/less/toolbar.less index e3a19c398..1b70b7237 100644 --- a/apps/spreadsheeteditor/main/resources/less/toolbar.less +++ b/apps/spreadsheeteditor/main/resources/less/toolbar.less @@ -84,11 +84,19 @@ margin: -3px 10px -2px; filter: @img-border-type-filter; + .pixel-ratio__1_25 & { + background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@1.25x.png)"; + } + .pixel-ratio__1_5 & { background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@1.5x.png)"; //background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@1.5x.png)"; } + .pixel-ratio__1_75 & { + background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@1.75x.png)"; + } + .pixel-ratio__2 & { background-image: ~"url(@{app-image-const-path}/toolbar/BorderSize@2x.png)"; } @@ -126,8 +134,8 @@ } .item-markerlist { - width: 38px; - height: 38px; + width: 40px; + height: 40px; } .item-multilevellist { @@ -137,7 +145,7 @@ #menu-list-number-group { .item { - margin-right: 9px; + margin-right: 10px; margin-bottom: 9px; } .group-items-container { @@ -145,13 +153,13 @@ } } +#menu-list-bullet-group { + .item { + margin-right: 2px; + } +} + #slot-field-zoom { float: left; min-width: 46px; } - -.combo-styles { - .view, .dropdown-menu { - //background-color: @canvas-content-background; - } -} \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/be.json b/apps/spreadsheeteditor/mobile/locale/be.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/be.json +++ b/apps/spreadsheeteditor/mobile/locale/be.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/bg.json b/apps/spreadsheeteditor/mobile/locale/bg.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/bg.json +++ b/apps/spreadsheeteditor/mobile/locale/bg.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ca.json b/apps/spreadsheeteditor/mobile/locale/ca.json index 757f8d11b..e077fd1fa 100644 --- a/apps/spreadsheeteditor/mobile/locale/ca.json +++ b/apps/spreadsheeteditor/mobile/locale/ca.json @@ -4,127 +4,128 @@ "textAddress": "Adreça", "textBack": "Enrere", "textEmail": "Correu electrònic", - "textPoweredBy": "Impulsat per", + "textPoweredBy": "Amb tecnologia de", "textTel": "Tel", "textVersion": "Versió" }, "Common": { "Collaboration": { "notcriticalErrorTitle": "Advertiment", - "textAddComment": "Afegir comentari", - "textAddReply": "Afegir Resposta", + "textAddComment": "Afegeix un comentari", + "textAddReply": "Afegeix una resposta", "textBack": "Enrere", - "textCancel": "Cancel·lar", + "textCancel": "Cancel·la", "textCollaboration": "Col·laboració", "textComments": "Comentaris", - "textDeleteComment": "Suprimir Comentari", - "textDeleteReply": "Suprimir Resposta", + "textDeleteComment": "Suprimeix el comentari", + "textDeleteReply": "Suprimeix la resposta", "textDone": "Fet", - "textEdit": "Editar", - "textEditComment": "Editar Comentari", - "textEditReply": "Editar Resposta", + "textEdit": "Edita", + "textEditComment": "Edita el comentari", + "textEditReply": "Edita la resposta", "textEditUser": "Usuaris que editen el fitxer:", - "textMessageDeleteComment": "Segur que voleu suprimir aquest comentari?", - "textMessageDeleteReply": "Segur que vol suprimir aquesta resposta?", + "textMessageDeleteComment": "Segur que vols suprimir aquest comentari?", + "textMessageDeleteReply": "Segur que vols 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" + "textReopen": "Torna a obrir", + "textResolve": "Resol", + "textTryUndoRedo": "S'han desactivat les funcions desfés/refés per al mode de coedició ràpida.", + "textUsers": "Usuaris", + "textOk": "Ok" }, "ThemeColorPalette": { - "textCustomColors": "Colors Personalitzats", - "textStandartColors": "Colors Estàndard", - "textThemeColors": "Colors del Tema" + "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", + "errorCopyCutPaste": "Les accions copia, talla i enganxa que utilitzen el menú contextual només s'executaran en el fitxer actual.", + "menuAddComment": "Afegeix un comentari", + "menuAddLink": "Afegeix un enllaç", + "menuCancel": "Cancel·la", "menuCell": "Cel·la", - "menuDelete": "Suprimir", - "menuEdit": "Editar", - "menuFreezePanes": "Congelar Panells", - "menuHide": "Amagar", - "menuMerge": "Combinar", + "menuDelete": "Suprimeix", + "menuEdit": "Edita", + "menuFreezePanes": "Immobilitza les subfinestres", + "menuHide": "Amaga", + "menuMerge": "Combina", "menuMore": "Més", - "menuOpenLink": "Obrir Enllaç", - "menuShow": "Mostrar", - "menuUnfreezePanes": "Descongelar Panells", - "menuUnmerge": "Anul·lar Combinació", - "menuUnwrap": "Desembolicar", - "menuViewComment": "Veure Comentari", - "menuWrap": "Embolcall", + "menuOpenLink": "Obre l'enllaç", + "menuShow": "Mostra", + "menuUnfreezePanes": "Mobilitza subfinestres", + "menuUnmerge": "Separa les cel·les", + "menuUnwrap": "Desajusta", + "menuViewComment": "Mostra el comentari", + "menuWrap": "Ajustament", "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?" + "textCopyCutPasteActions": "Accions de copia, talla i enganxa ", + "textDoNotShowAgain": "No ho mostris més", + "warnMergeLostData": "Aquesta operació pot eliminar 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.", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
Contacteu amb el vostre administrador.", + "errorProcessSaveResult": "No s'ha pogut 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.", + "errorUpdateVersion": "S'ha canviat la versió del fitxer. La pàgina es tornarà a carregar.", + "leavePageText": "Teniu canvis no desats en aquest document. Cliqueu a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Cliqueu a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", "notcriticalErrorTitle": "Advertiment", "SDK": { "txtAccent": "Accent", "txtAll": "(Tots)", - "txtArt": "El seu text aquí", + "txtArt": "El vostre text aquí", "txtBlank": "(en blanc)", "txtByField": "%1 de %2", - "txtClearFilter": "Netejar el filtre (Alt+C)", - "txtColLbls": "Etiquetes de Columnes", + "txtClearFilter": "Suprimeix el filtre (Alt + C)", + "txtColLbls": "Etiquetes de la columna", "txtColumn": "Columna", "txtConfidential": "Confidencial", "txtDate": "Data", "txtDays": "Dies", - "txtDiagramTitle": "Títol del Gràfic", + "txtDiagramTitle": "Títol del gràfic", "txtFile": "Fitxer", - "txtGrandTotal": "Total General", - "txtGroup": "Grup", + "txtGrandTotal": "Total general", + "txtGroup": "Agrupa", "txtHours": "Hores", "txtMinutes": "Minuts", "txtMonths": "Mesos", - "txtMultiSelect": "Selecció Múltiple (Alt+S)", + "txtMultiSelect": "Selecció múltiple (Alt+S)", "txtOr": "%1 o %2", "txtPage": "Pàgina", "txtPageOf": "Pàgina %1 de %2", "txtPages": "Pàgines", "txtPreparedBy": "Preparat per", - "txtPrintArea": "Àrea d'Impressió", - "txtQuarter": "Tri", + "txtPrintArea": "Àrea d'impressió", + "txtQuarter": "Trim", "txtQuarters": "Trimestres", "txtRow": "Fila", - "txtRowLbls": "Etiquetes de Fila", + "txtRowLbls": "Etiquetes de la fila", "txtSeconds": "Segons", "txtSeries": "Sèrie", - "txtStyle_Bad": "Dolent", + "txtStyle_Bad": "Incorrecte", "txtStyle_Calculation": "Càlcul", - "txtStyle_Check_Cell": "Cel·la de Control", + "txtStyle_Check_Cell": "Cel·la de comprovació", "txtStyle_Comma": "Coma", "txtStyle_Currency": "Moneda", - "txtStyle_Explanatory_Text": "Text Explicatiu", - "txtStyle_Good": "Bo", + "txtStyle_Explanatory_Text": "Text explicatiu", + "txtStyle_Good": "Correcte", "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_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_Output": "Resultat", + "txtStyle_Percent": "Per cent", + "txtStyle_Title": "Títol", "txtStyle_Total": "Total", - "txtStyle_Warning_Text": "Text d'Advertència", - "txtTab": "Pestanya", + "txtStyle_Warning_Text": "Text d'advertiment", + "txtTab": "Tabulador", "txtTable": "Taula", "txtTime": "Hora", "txtValues": "Valors", @@ -133,394 +134,397 @@ "txtYears": "Anys" }, "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.", + "textBuyNow": "Visita el lloc web", + "textClose": "Tanca", + "textContactUs": "Contacta amb vendes", + "textCustomLoader": "No teniu els permisos per canviar el carregador. Contacteu amb el nostre departament de vendes per obtenir un pressupost.", "textGuest": "Convidat", - "textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar macros?", + "textHasMacros": "El fitxer conté macros automàtiques.
Voleu executar les macros?", "textNo": "No", - "textNoLicenseTitle": "Heu arribat al límit de la llicència", + "textNoLicenseTitle": "S'ha assolit el límit de llicència", "textPaidFeature": "Funció de pagament", - "textRemember": "Recordar la meva elecció", + "textRemember": "Recorda la meva elecció", "textYes": "Sí", - "titleServerVersion": "Editor actualitzat", + "titleServerVersion": "S'ha actualitzat l'editor", "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.", + "warnLicenseExceeded": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb el vostre administrador per a més informació.", + "warnLicenseLimitedNoAccess": "La llicència ha caducat. No teniu accés a la funció d'edició de documents. Contacteu amb el vostre administrador.", + "warnLicenseLimitedRenewed": "Cal renovar la llicència. Teniu accés limitat a la funció d'edició de documents.
Contacteu amb el vostre administrador per obtenir accés complet", + "warnLicenseUsersExceeded": "Heu arribat al límit d'usuari per a %1 editors. Contacteu amb el vostre administrador per a més informació.", + "warnNoLicense": "Heu arribat al límit de connexions simultànies a %1 editors. Aquest document només s'obrirà en mode lectura. Contacteu amb l'equip de vendes %1 per a les condicions d'una actualització personal.", + "warnNoLicenseUsers": "Heu arribat al límit d'usuaris per a %1 editors. Contacteu amb l'equip de vendes de %1 per obtenir les condicions de millora personals dels vostres serveis.", "warnProcessRightsChange": "No teniu permís per editar el fitxer." } }, "Error": { "convertationTimeoutText": "S'ha superat el temps de conversió.", - "criticalErrorExtText": "Premeu «D'acord» per tornar a la llista de documents.", + "criticalErrorExtText": "Prem «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", + "downloadErrorText": "S'ha produït un error en la baixada", + "errorAccessDeny": "No teniu permís per realitzar aquesta acció.
Contacteu amb el vostre administrador.", + "errorArgsRange": "Hi ha un error en la fórmula.
l'interval d'arguments no és correcte.", + "errorAutoFilterChange": "Aquesta operació no està permesa, perquè intenta canviar les cel·les d'una taula del vostre full de càlcul.", + "errorAutoFilterChangeFormatTable": "Aquesta operació no pot fer per a les cel·les seleccionades, perquè no podeu moure una part de la taula.
Seleccioneu un altre interval de dades perquè es desplaci tota la taula i torneu-ho a provar.", + "errorAutoFilterDataRange": "Aquesta operació no es pot fer per a l'interval de cel·les seleccionat.
Seleccioneu un interval de dades uniforme dins o fora de la taula i torneu-ho a provar.", + "errorAutoFilterHiddenRange": "Aquesta operació no es pot fer perquè l'àrea conté cel·les filtrades.
Mostreu els elements filtrats i torneu-ho a provar.", + "errorBadImageUrl": "L'URL de la imatge no és correcta", "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.", + "errorConnectToServer": "No es pot desar aquest document. Comproveu la configuració de la vostra connexió o contacteu amb el vostre administrador.
Quan cliqueu el botó «D'acord», se us demanarà que baixeu el document.", + "errorCopyMultiselectArea": "Aquesta ordre no es pot utilitzar amb diverses seleccions.
Seleccioneu un interval únic i torneu-ho a provar.", + "errorCountArg": "Hi ha un error en la fórmula.
El nombre d'arguments no és vàlid.", + "errorCountArgExceed": "Hi ha un error en la fórmula. S'ha superat el nombre màxim d'arguments
.", + "errorCreateDefName": "No es poden editar els intervals de nom existents i no se'n poden crear de nous
en aquest moment perquè algú els ha obert.", + "errorDatabaseConnection": "Error extern.
Error de connexió amb la base de dades. Contacteu amb el servei d'assistència tècnica.", + "errorDataEncrypted": "Els canvis xifrats que s'han rebut no es poden desxifrar.", + "errorDataRange": "L'interval de dades no és correcte.", + "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.", + "errorEditingDownloadas": "S'ha produït un error mentre es treballava 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.", + "errorFileRequest": "Error extern.
Sol·licitud de fitxer. Contacteu amb el servei d'assistència tècnica.", + "errorFileSizeExceed": "La mida del fitxer supera el límit del vostre servidor.
Contacteu amb el vostre administrador per a més detalls.", + "errorFileVKey": "Error extern.
La clau de seguretat no és correcta. Contacteu amb el servei d'assistència tècnica.", + "errorFillRange": "No s'ha pogut omplir l'interval de cel·les seleccionat.
Totes les cel·les combinades han de tenir la mateixa mida.", + "errorFormulaName": "Hi ha un error en la fórmula.
El nom de la fórmula no és correcte.", "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.", + "errorFrmlMaxLength": "No podeu afegir aquesta fórmula perquè la seva longitud supera el nombre de caràcters permesos.
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", + "errorFrmlMaxTextLength": "Els valors del text en les fórmules es limiten a 255 caràcters.
Useu la funció CONCATENATE o l'operador de concatenació(&)", + "errorFrmlWrongReferences": "La funció fa referència a un full que no existeix.
Comproveu les dades i torneu-ho a provar.", + "errorInvalidRef": "Introdueix un nom correcte per a la selecció o una referència vàlida a la qual accedir.", + "errorKeyEncrypt": "Descriptor de claus desconegut", + "errorKeyExpire": "El descriptor de claus ha caducat", + "errorLockedAll": "Aquesta operació no es pot fer perquè un altre usuari ha bloquejat el full.", + "errorLockedCellPivot": "No podeu canviar les dades d'una taula dinàmica", + "errorLockedWorksheetRename": "En aquest moment no es pot canviar el nom del full de càlcul, perquè ja ho fa 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.", + "errorMultiCellFormula": "No es permeten fórmules de matriu de múltiples cel·les a les taules.", + "errorOpenWarning": "La longitud d'una de les fórmules del fitxer superava el nombre de caràcters permès 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.", + "errorPasteMaxRange": "L’àrea de copiar i enganxar no coincideixen. Seleccioneu una àrea de la mateixa mida o cliqueu a la primera cel·la d'una fila per enganxar les cel·les copiades.", + "errorPrintMaxPagesCount": "No es poden imprimir més de 1500 pàgines alhora amb 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.", + "errorSessionIdle": "Fa molt de temps que no s'edita el document. Torneu a carregar la pàgina.", + "errorSessionToken": "S'ha interromput la connexió amb el servidor. Torneu a carregar la pàgina.", + "errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, poseu les dades al full de càlcul en l'ordre següent:
preu d'obertura, preu màxim, preu mínim, preu de tancament.", + "errorUnexpectedGuid": "Error extern.
Guid inesperat. Contacteu amb el servei d'assistència tècnica.", + "errorUpdateVersionOnDisconnect": "S'ha restaurat la connexió a internet i la versió del fitxer ha canviat.
Abans de continuar treballant, heu de baixar el fitxer o copiar-ne el contingut per assegurar-vos que no es perdi res i, després, torneu a carregar aquesta pàgina.", + "errorUserDrop": "Ara mateix no es pot accedir al fitxer.", "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.", + "errorWrongBracketsCount": "Hi ha un error en la fórmula.
El nombre de parèntesis no és correcte.", + "errorWrongOperator": "S'ha produït un error en la fórmula introduïda. L'operador que s'utilitza no és correcte.
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.", + "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." + "uploadImageFileCountMessage": "No s'ha carregat cap imatge.", + "uploadImageSizeMessage": "La imatge és massa gran. La mida màxima és de 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "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", + "applyChangesTextText": "S'estant carregant les dades...", + "applyChangesTitleText": "S'estan carregant les dades", + "confirmMoveCellRange": "L'interval de cel·les de destinació pot contenir dades. Voleu continuar amb l'operació?", + "confirmPutMergeRange": "Les dades d'origen contenen cel·les combinades.
La combinació es desfarà abans que s'enganxin a la taula.", + "confirmReplaceFormulaInTable": "Les fórmules de la capçalera s'eliminaran i es convertiran en text estàtic.
Voleu continuar?", + "downloadTextText": "S'està baixant el document...", + "downloadTitleText": "S'està baixant el document", + "loadFontsTextText": "S'estant carregant les dades...", + "loadFontsTitleText": "S'estan carregant les dades", + "loadFontTextText": "S'estant carregant les dades...", + "loadFontTitleText": "S'estan carregant les dades", + "loadImagesTextText": "S'estan carregant les imatges...", + "loadImagesTitleText": "S'estan carregant les imatges", + "loadImageTextText": "S'està carregant la imatge...", + "loadImageTitleText": "S'està carregant la imatge", + "loadingDocumentTextText": "S'està carregant el document...", + "loadingDocumentTitleText": "S'està carregant el 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", + "openTextText": "S'està obrint el document...", + "openTitleText": "S'està obrint el document", + "printTextText": "S'està imprimint el document...", + "printTitleText": "S'està imprimint el document", + "savePreparingText": "S'està preparant per desar", + "savePreparingTitle": "S'està preparant per desar. Espereu...", + "saveTextText": "S'està desant el document...", + "saveTitleText": "S'està desant el document", + "textLoadingDocument": "S'està carregant el 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..." + "txtEditingMode": "Estableix el mode d'edició ...", + "uploadImageTextText": "S'està carregant la imatge...", + "uploadImageTitleText": "S'està carregant la imatge", + "waitText": "Espereu..." }, "Statusbar": { "notcriticalErrorTitle": "Advertiment", - "textCancel": "Cancel·lar", - "textDelete": "Suprimir", - "textDuplicate": "Duplicar", + "textCancel": "Cancel·la", + "textDelete": "Suprimeix", + "textDuplicate": "Duplica", "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", + "textErrorLastSheet": "El llibre de treball ha de tenir com a mínim un full de càlcul visible.", + "textErrorRemoveSheet": "No es pot suprimir el full de càlcul.", + "textHide": "Amaga", "textMore": "Més", - "textRename": "Canviar el nom", - "textRenameSheet": "Canviar el nom del full", + "textRename": "Canvia el nom", + "textRenameSheet": "Canvia 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ó?" + "textSheetName": "Nom del full", + "textUnhide": "Mostrar", + "textWarnDeleteSheet": "El full de càlcul pot tenir dades. Voleu continuar amb l'operació?", + "textOk": "Ok" }, "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" + "dlgLeaveMsgText": "Teniu canvis no desats en aquest document. Cliqueu a \"Mantingueu-vos en aquesta pàgina\" per esperar al desament automàtic. Cliqueu a \"Deixa aquesta pàgina\" per descartar tots els canvis no desats.", + "dlgLeaveTitleText": "Estàs sortint de l'aplicació", + "leaveButtonText": "Surt d'aquesta pàgina", + "stayButtonText": "Queda't a 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.", + "errorStockChart": "L'ordre de la fila no és correcte. Per construir un gràfic de valors, poseu les dades al full de càlcul en l'ordre següent:
preu d'obertura, preu màxim, preu mínim, preu de tancament.", "notcriticalErrorTitle": "Advertiment", - "sCatDateAndTime": "Data i hora", + "sCatDateAndTime": "Hora i data", "sCatEngineering": "Enginyeria", "sCatFinancial": "Financer", "sCatInformation": "Informació", "sCatLogical": "Lògic", - "sCatLookupAndReference": "Cercar i Referenciar", + "sCatLookupAndReference": "Cerca i referencia", "sCatMathematic": "Matemàtiques i trigonometria", - "sCatStatistical": "Estadístic", + "sCatStatistical": "Estadístiques", "sCatTextAndData": "Text i dades", - "textAddLink": "Afegir Enllaç", + "textAddLink": "Afegeix un enllaç", "textAddress": "Adreça", "textBack": "Enrere", - "textCancel": "Cancel·lar", + "textCancel": "Cancel·la", "textChart": "Gràfic", "textComment": "Comentari", - "textDisplay": "Mostrar", - "textEmptyImgUrl": "Heu d'especificar l'URL de la imatge.", - "textExternalLink": "Enllaç Extern", + "textDisplay": "Visualització", + "textEmptyImgUrl": "Has 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", + "textInsert": "Insereix", + "textInsertImage": "Insereix una imatge", + "textInternalDataRange": "Interval de dades intern", + "textInvalidRange": "ERROR! L'interval de cel·les no és vàlid", "textLink": "Enllaç", "textLinkSettings": "Configuració de l'enllaç", - "textLinkType": "Tipus d'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", + "textPictureFromLibrary": "Imatge de la biblioteca", + "textPictureFromURL": "Imatge de l'URL", + "textRange": "Interval", + "textRequired": "Obligatori", + "textScreenTip": "Consell de pantalla", "textShape": "Forma", "textSheet": "Full", - "textSortAndFilter": "Ordenar i Filtrar", - "txtExpand": "Expandir i ordenar", - "txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. Voleu ampliar la selecció per incloure les dades adjacents o continuar amb l'ordenació de les cel·les actualment seleccionades?", - "txtNotUrl": "Aquest camp hauria de ser una URL en el format \"http://www.exemple.com\"", + "textSortAndFilter": "Ordena i filtra", + "txtExpand": "Amplia i ordena", + "txtExpandSort": "No s'ordenaran les dades que hi ha al costat de la selecció. ¿Voleu ampliar la selecció per incloure les dades adjacents o bé voleu continuar i ordenar només les cel·les seleccionades?", + "txtNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.exemple.com\"", "txtSorting": "Ordenació", - "txtSortSelected": "Ordenar els objectes seleccionats" + "txtSortSelected": "Ordena els objectes seleccionats", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Advertiment", "textAccounting": "Comptabilitat", "textActualSize": "Mida real", - "textAddCustomColor": "Afegir Color Personalitzat", + "textAddCustomColor": "Afegeix un 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", + "textAlign": "Alinea", + "textAlignBottom": "Alinea a baix", + "textAlignCenter": "Alinea al centre", + "textAlignLeft": "Alinea a l'esquerra", + "textAlignMiddle": "Alinea al mig", + "textAlignRight": "Alinea a la dreta", + "textAlignTop": "Alinea a dalt", + "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", + "textAxisCrosses": "Creus de l'eix", + "textAxisOptions": "Opcions de l’eix", + "textAxisPosition": "Posició de l’eix", + "textAxisTitle": "Títol de l’eix", "textBack": "Enrere", - "textBetweenTickMarks": "Entre Marques de Graduació", + "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", + "textBorderStyle": "Estil de la vora", + "textBottom": "Part inferior", + "textBottomBorder": "Vora inferior", + "textBringToForeground": "Porta al primer pla", "textCell": "Cel·la", - "textCellStyles": "Estils de Cel·la", - "textCenter": "Centre", + "textCellStyles": "Estils de la cel·la", + "textCenter": "Centra", "textChart": "Gràfic", - "textChartTitle": "Títol del Gràfic", - "textClearFilter": "Netejar el filtre", + "textChartTitle": "Títol del gràfic", + "textClearFilter": "Suprimeix el filtre", "textColor": "Color", "textCross": "Creu", - "textCrossesValue": "Valor d'encreuat", + "textCrossesValue": "Valor de les creus", "textCurrency": "Moneda", - "textCustomColor": "Color Personalitzat", - "textDataLabels": "Etiquetes de Dades", + "textCustomColor": "Color personalitzat", + "textDataLabels": "Etiquetes de dades", "textDate": "Data", - "textDefault": "Interval Seleccionat", - "textDeleteFilter": "Suprimir Filtre", + "textDefault": "Interval seleccionat", + "textDeleteFilter": "Suprimeix el filtre", "textDesign": "Disseny", - "textDiagonalDownBorder": "Vora Diagonal Descendent", - "textDiagonalUpBorder": "Vora Diagonal Ascendent", - "textDisplay": "Mostrar", - "textDisplayUnits": "Unitats de Visualització", + "textDiagonalDownBorder": "Vora diagonal inferior", + "textDiagonalUpBorder": "Vora diagonal superior", + "textDisplay": "Visualització", + "textDisplayUnits": "Unitats de visualització", "textDollar": "Dòlar", - "textEditLink": "Editar Enllaç", + "textEditLink": "Edita l'enllaç", "textEffects": "Efectes", - "textEmptyImgUrl": "Heu d'especificar l'URL de la imatge.", + "textEmptyImgUrl": "Has d'especificar l'URL de la imatge.", "textEmptyItem": "{En blanc}", - "textErrorMsg": "Heu de triar almenys un valor", + "textErrorMsg": "Com a mínim heu de triar 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", + "textExternalLink": "Enllaç extern", + "textFill": "Emplena", + "textFillColor": "Color d'emplenament", + "textFilterOptions": "Opcions de filtre", + "textFit": "Ajusta l'amplada", + "textFonts": "Tipus de lletra", "textFormat": "Format", "textFraction": "Fracció", - "textFromLibrary": "Imatge de la Biblioteca", - "textFromURL": "Imatge des de URL", + "textFromLibrary": "Imatge de la biblioteca", + "textFromURL": "Imatge de l'URL", "textGeneral": "General", - "textGridlines": "Línies de Quadrícula", - "textHigh": "Alt", + "textGridlines": "Línies de la quadrícula", + "textHigh": "Alta", "textHorizontal": "Horitzontal", - "textHorizontalAxis": "Eix Horitzontal", - "textHorizontalText": "Text Horitzontal", - "textHundredMil": "100 000 000", + "textHorizontalAxis": "Eix horitzontal", + "textHorizontalText": "Text horitzontal", + "textHundredMil": "100.000.000", "textHundreds": "Centenars", - "textHundredThousands": "100 000", - "textHyperlink": "Hiperenllaç", + "textHundredThousands": "100.000", + "textHyperlink": "Enllaç", "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", + "textInnerBottom": "Part inferior interna", + "textInnerTop": "Part 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", + "textInternalDataRange": "Interval de dades intern", + "textInvalidRange": "L'interval de cel·les no és vàlid", "textJustified": "Justificat", - "textLabelOptions": "Opcions d'Etiqueta", - "textLabelPosition": "Posició d'Etiqueta", - "textLayout": "Maquetació", + "textLabelOptions": "Opcions d'etiqueta", + "textLabelPosition": "Posició de l'etiqueta", + "textLayout": "Disposició", "textLeft": "Esquerra", - "textLeftBorder": "Vora Esquerra", - "textLeftOverlay": "Superposició Esquerra", + "textLeftBorder": "Vora esquerra", + "textLeftOverlay": "Superposició esquerra", "textLegend": "Llegenda", "textLink": "Enllaç", "textLinkSettings": "Configuració de l'enllaç", - "textLinkType": "Tipus d'Enllaç", + "textLinkType": "Tipus d'enllaç", "textLow": "Baix", - "textMajor": "Major", - "textMajorAndMinor": "Major i Menor", - "textMajorType": "Tipus Major", - "textMaximumValue": "Valor Màxim", - "textMedium": "Mitjà", + "textMajor": "Principal", + "textMajorAndMinor": "Principal i secundari", + "textMajorType": "Tipus principal", + "textMaximumValue": "Valor màxim", + "textMedium": "Mitjana", "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", + "textMinimumValue": "Valor mínim", + "textMinor": "Secundari", + "textMinorType": "Tipus secundari", + "textMoveBackward": "Torna enrere", + "textMoveForward": "Avança", + "textNextToAxis": "Al costat 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\"", + "textNoOverlay": "Sense superposició", + "textNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.exemple.com\"", "textNumber": "Número", - "textOnTickMarks": "Marques de Graduació", + "textOnTickMarks": "A les marques de graduació", "textOpacity": "Opacitat", "textOut": "Fora", - "textOuterTop": "Superior Externa", - "textOutsideBorders": "Vores Exteriors", + "textOuterTop": "Part superior externa", + "textOutsideBorders": "Vores exteriors", "textOverlay": "Superposició", "textPercentage": "Percentatge", - "textPictureFromLibrary": "Imatge de la Biblioteca", - "textPictureFromURL": "Imatge des de URL", + "textPictureFromLibrary": "Imatge de la biblioteca", + "textPictureFromURL": "Imatge de l'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", + "textRange": "Interval", + "textRemoveChart": "Suprimeix el gràfic", + "textRemoveImage": "Suprimeix la imatge", + "textRemoveLink": "Suprimeix l'enllaç", + "textRemoveShape": "Suprimeix la forma", + "textReorder": "Reordena", + "textReplace": "Substitueix", + "textReplaceImage": "Substitueix la imatge", + "textRequired": "Obligatori", "textRight": "Dreta", - "textRightBorder": "Vora Dreta", - "textRightOverlay": "Superposició Dreta", + "textRightBorder": "Vora dreta", + "textRightOverlay": "Superposició dreta", "textRotated": "Girat", - "textRotateTextDown": "Girar Text Avall", - "textRotateTextUp": "Girar Text Amunt", + "textRotateTextDown": "Gira el text cap avall", + "textRotateTextUp": "Gira el text cap amunt", "textRouble": "Ruble", "textScientific": "Científic", - "textScreenTip": "Consell de Pantalla", + "textScreenTip": "Consell de pantalla", "textSelectAll": "Selecciona-ho tot ", - "textSelectObjectToEdit": "Seleccionar l'objecte a editar", - "textSendToBackground": "Enviar al Fons", + "textSelectObjectToEdit": "Selecciona l'objecte a editar", + "textSendToBackground": "Envia al fons", "textSettings": "Configuració", "textShape": "Forma", "textSheet": "Full", "textSize": "Mida", "textStyle": "Estil", - "textTenMillions": "10 000 000", - "textTenThousands": "10 000", + "textTenMillions": "10.000.000", + "textTenThousands": "10.000", "textText": "Text", - "textTextColor": "Color del Text", - "textTextFormat": "Format del Text", - "textTextOrientation": "Orientació del 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", + "textTopBorder": "Vora superior", + "textTrillions": "Bilions", "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\"", - "txtSortHigh2Low": "Ordenar de Major a Menor", - "txtSortLow2High": "Ordenar de Menor a Major" + "textVerticalAxis": "Eix vertical", + "textVerticalText": "Text vertical", + "textWrapText": "Ajusta el text", + "textYen": "Ien", + "txtNotUrl": "Aquest camp hauria de ser una URL amb el format \"http://www.exemple.com\"", + "txtSortHigh2Low": "Ordena de major a menor", + "txtSortLow2High": "Ordena de menor a major" }, "Settings": { - "advCSVOptions": "Trieu les opcions CSV", - "advDRMEnterPassword": "La contrasenya, si us plau:", - "advDRMOptions": "Fitxer Protegit", + "advCSVOptions": "Tria les opcions CSV", + "advDRMEnterPassword": "La vostra contrasenya:", + "advDRMOptions": "El fitxer està protegit", "advDRMPassword": "Contrasenya", - "closeButtonText": "Tancar Fitxer", + "closeButtonText": "Tanca el fitxer", "notcriticalErrorTitle": "Advertiment", "textAbout": "Quant a...", "textAddress": "Adreça", @@ -528,87 +532,87 @@ "textApplicationSettings": "Configuració de l'aplicació", "textAuthor": "Autor", "textBack": "Enrere", - "textBottom": "Inferior", - "textByColumns": "Per Columnes", + "textBottom": "Part inferior", + "textByColumns": "Per columnes", "textByRows": "Per files", - "textCancel": "Cancel·lar", + "textCancel": "Cancel·la", "textCentimeter": "Centímetre", "textCollaboration": "Col·laboració", - "textColorSchemes": "Esquemes de Color", + "textColorSchemes": "Combinacions de colors", "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ó", + "textCustomSize": "Mida personalitzada", + "textDisableAll": "Inhabilita-ho tot", + "textDisableAllMacrosWithNotification": "Inhabilita totes les macros amb una notificació", + "textDisableAllMacrosWithoutNotification": "Inhabilita totes les macros sense una notificació", "textDone": "Fet", - "textDownload": "Descarregar", - "textDownloadAs": "Descarregar com a", + "textDownload": "Baixa", + "textDownloadAs": "Baixa-ho 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", + "textEnableAll": "Habilita-ho tot", + "textEnableAllMacrosWithoutNotification": "Habilita totes les macros sense una notificació", + "textFind": "Cerca", + "textFindAndReplace": "Cerca i substitueix", + "textFindAndReplaceAll": "Cerca i substitueix-ho tot", "textFormat": "Format", - "textFormulaLanguage": "Idioma de la Fórmula", + "textFormulaLanguage": "Llenguatge de la fórmula", "textFormulas": "Fórmules", "textHelp": "Ajuda", - "textHideGridlines": "Amagar Quadrícules", - "textHideHeadings": "Amagar Encapçalaments", - "textHighlightRes": "Ressaltar els resultats", + "textHideGridlines": "Amaga les línies de la quadrícula ", + "textHideHeadings": "Amaga els títols", + "textHighlightRes": "Ressalta els resultats", "textInch": "Polzada", - "textLandscape": "Horitzontal", - "textLastModified": "Última Modificació", - "textLastModifiedBy": "Modificat per Últim cop Per", + "textLandscape": "Orientació horitzontal", + "textLastModified": "Última modificació", + "textLastModifiedBy": "Última modificació feta per", "textLeft": "Esquerra", "textLocation": "Ubicació", "textLookIn": "Mirar a", - "textMacrosSettings": "Configuració de Macros", + "textMacrosSettings": "Configuració de les macros", "textMargins": "Marges", "textMatchCase": "Coincidir majúscules i minúscules", - "textMatchCell": "Coincidir la Cel·la", + "textMatchCell": "Coincidir la cel·la", "textNoTextFound": "No s'ha trobat el text", - "textOpenFile": "Introduïu una contrasenya per obrir el fitxer", + "textOpenFile": "Introdueix 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", + "textPortrait": "Orientació vertical", + "textPoweredBy": "Amb tecnologia de", + "textPrint": "Imprimeix", + "textR1C1Style": "Estil de referència R1C1", + "textRegionalSettings": "Configuració regional", + "textReplace": "Substitueix", + "textReplaceAll": "Substitueix-ho tot ", + "textResolvedComments": "Comentaris resolts", "textRight": "Dreta", - "textSearch": "Cercar", - "textSearchBy": "Cercar", - "textSearchIn": "Cerca A", + "textSearch": "Cerca", + "textSearchBy": "Cerca", + "textSearchIn": "Cerca a", "textSettings": "Configuració", "textSheet": "Full", - "textShowNotification": "Mostrar la Notificació", - "textSpreadsheetFormats": "Formats de full de càlcul", + "textShowNotification": "Mostra la notificació", + "textSpreadsheetFormats": "Formats del 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", + "textTitle": "Títol", "textTop": "Superior", - "textUnitOfMeasurement": "Unitat de Mesura", - "textUploaded": "Carregat", + "textUnitOfMeasurement": "Unitat de mesura", + "textUploaded": "S'ha carregat", "textValues": "Valors", "textVersion": "Versió", "textWorkbook": "Llibre de treball", "txtDelimiter": "Delimitador", "txtEncoding": "Codificació", - "txtIncorrectPwd": "La contrasenya és incorrecta", + "txtIncorrectPwd": "La contrasenya no és correcta", "txtProtected": "Un cop hàgiu introduït la contrasenya i obert el fitxer, es restablirà la contrasenya actual del fitxer", - "txtScheme1": "Oficina", - "txtScheme10": "Mitjana", + "txtScheme1": "Office", + "txtScheme10": "Mediana", "txtScheme11": "Metro", "txtScheme12": "Mòdul", "txtScheme13": "Opulent", @@ -620,18 +624,19 @@ "txtScheme19": "Excursió", "txtScheme2": "Escala de grisos", "txtScheme20": "Urbà", - "txtScheme21": "Empenta", - "txtScheme22": "Nova Oficina", + "txtScheme21": "Inspiració", + "txtScheme22": "Office", "txtScheme3": "Vèrtex", "txtScheme4": "Aspecte", "txtScheme5": "Cívic", - "txtScheme6": "Concurs", - "txtScheme7": "Patrimoni net", + "txtScheme6": "Esplanada", + "txtScheme7": "Equitat", "txtScheme8": "Flux", - "txtScheme9": "Fosa", + "txtScheme9": "Foneria", "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?" + "txtTab": "Tabulador", + "warnDownloadAs": "Si continueu desant en aquest format, es perdran totes les característiques, excepte el text.
Segur que voleu continuar?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/cs.json b/apps/spreadsheeteditor/mobile/locale/cs.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/cs.json +++ b/apps/spreadsheeteditor/mobile/locale/cs.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/de.json b/apps/spreadsheeteditor/mobile/locale/de.json index 2ff5762a4..7e85a82d7 100644 --- a/apps/spreadsheeteditor/mobile/locale/de.json +++ b/apps/spreadsheeteditor/mobile/locale/de.json @@ -30,7 +30,8 @@ "textReopen": "Wiederöffnen", "textResolve": "Lösen", "textTryUndoRedo": "Die Optionen Rückgängig machen/Wiederholen sind für den Schnellmodus deaktiviert.", - "textUsers": "Benutzer" + "textUsers": "Benutzer", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Benutzerdefinierte Farben", @@ -193,6 +194,7 @@ "errorInvalidRef": "Geben Sie einen korrekten Namen oder einen gültigen Webverweis ein.", "errorKeyEncrypt": "Unbekannter Schlüsseldeskriptor", "errorKeyExpire": "Der Schlüsseldeskriptor ist abgelaufen", + "errorLoadingFont": "Schriftarten nicht hochgeladen.
Bitte wenden Sie sich an Administratoren von Ihrem Document Server.", "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.", @@ -272,6 +274,7 @@ "textErrorRemoveSheet": "Arbeitsblatt kann nicht gelöscht werden. ", "textHide": "Ausblenden", "textMore": "Mehr", + "textOk": "OK", "textRename": "Umbenennen", "textRenameSheet": "Tabelle umbenennen", "textSheet": "Blatt", @@ -326,6 +329,7 @@ "textRange": "Bereich", "textRequired": "Erforderlich", "textScreenTip": "QuickInfo", + "textSelectedRange": "Ausgewählter Bereich", "textShape": "Form", "textSheet": "Blatt", "textSortAndFilter": "Sortieren und Filtern", @@ -571,6 +575,7 @@ "textMatchCase": "Groß-/Kleinschreibung beachten", "textMatchCell": "Zelle anpassen", "textNoTextFound": "Der Text wurde nicht gefunden", + "textOk": "OK", "textOpenFile": "Kennwort zum Öffnen der Datei eingeben", "textOrientation": "Orientierung", "textOwner": "Besitzer", diff --git a/apps/spreadsheeteditor/mobile/locale/el.json b/apps/spreadsheeteditor/mobile/locale/el.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/el.json +++ b/apps/spreadsheeteditor/mobile/locale/el.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/en.json b/apps/spreadsheeteditor/mobile/locale/en.json index 9211947d1..007043442 100644 --- a/apps/spreadsheeteditor/mobile/locale/en.json +++ b/apps/spreadsheeteditor/mobile/locale/en.json @@ -15,6 +15,7 @@ "textAddReply": "Add Reply", "textBack": "Back", "textCancel": "Cancel", + "textOk": "Ok", "textCollaboration": "Collaboration", "textComments": "Comments", "textDeleteComment": "Delete Comment", @@ -193,6 +194,7 @@ "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "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", @@ -211,7 +213,7 @@ "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.", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print 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", @@ -272,6 +274,7 @@ "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", + "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", @@ -326,6 +329,7 @@ "textRange": "Range", "textRequired": "Required", "textScreenTip": "Screen Tip", + "textSelectedRange": "Selected Range", "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", @@ -574,6 +578,7 @@ "textMatchCase": "Match Case", "textMatchCell": "Match Cell", "textNoTextFound": "Text not found", + "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", diff --git a/apps/spreadsheeteditor/mobile/locale/es.json b/apps/spreadsheeteditor/mobile/locale/es.json index 17eda1b13..27437f58a 100644 --- a/apps/spreadsheeteditor/mobile/locale/es.json +++ b/apps/spreadsheeteditor/mobile/locale/es.json @@ -30,7 +30,8 @@ "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" + "textUsers": "Usuarios", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Colores personalizados", @@ -193,6 +194,7 @@ "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", + "errorLoadingFont": "Las fuentes no están cargadas.
Por favor, póngase en contacto con el administrador del Document Server.", "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", @@ -211,7 +213,7 @@ "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.", + "errorViewerDisconnect": "Se ha perdido la conexión. Todavía puede ver el documento,
pero no podrá descargarlo ni imprimirlo 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", @@ -272,6 +274,7 @@ "textErrorRemoveSheet": "No se puede eliminar la hoja de cálculo.", "textHide": "Ocultar", "textMore": "Más", + "textOk": "OK", "textRename": "Renombrar", "textRenameSheet": "Renombrar hoja", "textSheet": "Hoja", @@ -326,6 +329,7 @@ "textRange": "Rango", "textRequired": "Requerido", "textScreenTip": "Consejo de pantalla", + "textSelectedRange": "Rango seleccionado", "textShape": "Forma", "textSheet": "Hoja", "textSortAndFilter": "Ordenar y filtrar", @@ -571,6 +575,7 @@ "textMatchCase": "Coincidir mayúsculas y minúsculas", "textMatchCell": "Hacer coincidir las celdas", "textNoTextFound": "Texto no encontrado", + "textOk": "OK", "textOpenFile": "Introduzca la contraseña para abrir el archivo", "textOrientation": "Orientación ", "textOwner": "Propietario", diff --git a/apps/spreadsheeteditor/mobile/locale/fr.json b/apps/spreadsheeteditor/mobile/locale/fr.json index 1c9978e43..454515ca7 100644 --- a/apps/spreadsheeteditor/mobile/locale/fr.json +++ b/apps/spreadsheeteditor/mobile/locale/fr.json @@ -30,7 +30,8 @@ "textReopen": "Rouvrir", "textResolve": "Résoudre", "textTryUndoRedo": "Les fonctions Annuler/Rétablir sont désactivées pour le mode de co-édition rapide.", - "textUsers": "Utilisateurs" + "textUsers": "Utilisateurs", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Couleurs personnalisées", @@ -193,6 +194,7 @@ "errorInvalidRef": "Entrez un nom correct pour la sélection ou une référence valable à laquelle aller.", "errorKeyEncrypt": "Descripteur de clé inconnu", "errorKeyExpire": "Descripteur de clés expiré", + "errorLoadingFont": "Les polices ne sont pas téléchargées.
Veuillez contacter l'administrateur de Document Server.", "errorLockedAll": "L'opération ne peut pas être réalisée car la feuille a été verrouillée par un autre utilisateur.", "errorLockedCellPivot": "Impossible de modifier les données d'un tableau croisé dynamique.", "errorLockedWorksheetRename": "La feuille ne peut pas être renommée pour le moment car elle est en train d'être renommée par un autre utilisateur", @@ -272,6 +274,7 @@ "textErrorRemoveSheet": "Impossible de supprimer la feuille de calcul.", "textHide": "Masquer", "textMore": "Plus", + "textOk": "OK", "textRename": "Renommer", "textRenameSheet": "Renommer la feuille", "textSheet": "Feuille", @@ -333,7 +336,8 @@ "txtExpandSort": "Les données situées à côté de la sélection ne seront pas triées. Souhaitez-vous développer la sélection pour inclure les données adjacentes ou souhaitez-vous continuer à trier iniquement les cellules sélectionnées ?", "txtNotUrl": "Ce champ doit contenir une URL au format \"http://www.example.com\"", "txtSorting": "Tri", - "txtSortSelected": "Trier l'objet sélectionné " + "txtSortSelected": "Trier l'objet sélectionné ", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Avertissement", @@ -571,6 +575,7 @@ "textMatchCase": "Respecter la casse", "textMatchCell": "Respecter la cellule", "textNoTextFound": "Le texte est introuvable", + "textOk": "OK", "textOpenFile": "Entrer le mot de passe pour ouvrir le fichier", "textOrientation": "Orientation", "textOwner": "Propriétaire", diff --git a/apps/spreadsheeteditor/mobile/locale/hu.json b/apps/spreadsheeteditor/mobile/locale/hu.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/hu.json +++ b/apps/spreadsheeteditor/mobile/locale/hu.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/it.json b/apps/spreadsheeteditor/mobile/locale/it.json index 7724d1d16..d10cc1140 100644 --- a/apps/spreadsheeteditor/mobile/locale/it.json +++ b/apps/spreadsheeteditor/mobile/locale/it.json @@ -1,4 +1,97 @@ { + "Controller": { + "Main": { + "SDK": { + "txtByField": "%1 di %2", + "txtOr": "%1 o %2", + "txtAccent": "Accent", + "txtAll": "(All)", + "txtArt": "Your text here", + "txtBlank": "(blank)", + "txtClearFilter": "Clear Filter (Alt+C)", + "txtColLbls": "Column Labels", + "txtColumn": "Column", + "txtConfidential": "Confidential", + "txtDate": "Date", + "txtDays": "Days", + "txtDiagramTitle": "Chart Title", + "txtFile": "File", + "txtGrandTotal": "Grand Total", + "txtGroup": "Group", + "txtHours": "Hours", + "txtMinutes": "Minutes", + "txtMonths": "Months", + "txtMultiSelect": "Multi-Select (Alt+S)", + "txtPage": "Page", + "txtPageOf": "Page %1 of %2", + "txtPages": "Pages", + "txtPreparedBy": "Prepared by", + "txtPrintArea": "Print_Area", + "txtQuarter": "Qtr", + "txtQuarters": "Quarters", + "txtRow": "Row", + "txtRowLbls": "Row Labels", + "txtSeconds": "Seconds", + "txtSeries": "Series", + "txtStyle_Bad": "Bad", + "txtStyle_Calculation": "Calculation", + "txtStyle_Check_Cell": "Check Cell", + "txtStyle_Comma": "Comma", + "txtStyle_Currency": "Currency", + "txtStyle_Explanatory_Text": "Explanatory Text", + "txtStyle_Good": "Good", + "txtStyle_Heading_1": "Heading 1", + "txtStyle_Heading_2": "Heading 2", + "txtStyle_Heading_3": "Heading 3", + "txtStyle_Heading_4": "Heading 4", + "txtStyle_Input": "Input", + "txtStyle_Linked_Cell": "Linked Cell", + "txtStyle_Neutral": "Neutral", + "txtStyle_Normal": "Normal", + "txtStyle_Note": "Note", + "txtStyle_Output": "Output", + "txtStyle_Percent": "Percent", + "txtStyle_Title": "Title", + "txtStyle_Total": "Total", + "txtStyle_Warning_Text": "Warning Text", + "txtTab": "Tab", + "txtTable": "Table", + "txtTime": "Time", + "txtValues": "Values", + "txtXAxis": "X Axis", + "txtYAxis": "Y Axis", + "txtYears": "Years" + }, + "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", + "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." + } + }, "About": { "textAbout": "About", "textAddress": "Address", @@ -15,6 +108,7 @@ "textAddReply": "Add Reply", "textBack": "Back", "textCancel": "Cancel", + "textOk": "Ok", "textCollaboration": "Collaboration", "textComments": "Comments", "textDeleteComment": "Delete Comment", @@ -62,99 +156,6 @@ "textDoNotShowAgain": "Don't show again", "warnMergeLostData": "The operation can destroy data in the selected cells. Continue?" }, - "Controller": { - "Main": { - "criticalErrorTitle": "Error", - "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorProcessSaveResult": "Saving is failed.", - "errorServerVersion": "The editor version has been updated. The page will be reloaded to apply the changes.", - "errorUpdateVersion": "The file version has been changed. The page will be reloaded.", - "leavePageText": "You have unsaved changes in this document. Click 'Stay on this Page' to wait for autosave. Click 'Leave this Page' to discard all the unsaved changes.", - "notcriticalErrorTitle": "Warning", - "SDK": { - "txtAccent": "Accent", - "txtAll": "(All)", - "txtArt": "Your text here", - "txtBlank": "(blank)", - "txtByField": "%1 of %2", - "txtClearFilter": "Clear Filter (Alt+C)", - "txtColLbls": "Column Labels", - "txtColumn": "Column", - "txtConfidential": "Confidential", - "txtDate": "Date", - "txtDays": "Days", - "txtDiagramTitle": "Chart Title", - "txtFile": "File", - "txtGrandTotal": "Grand Total", - "txtGroup": "Group", - "txtHours": "Hours", - "txtMinutes": "Minutes", - "txtMonths": "Months", - "txtMultiSelect": "Multi-Select (Alt+S)", - "txtOr": "%1 or %2", - "txtPage": "Page", - "txtPageOf": "Page %1 of %2", - "txtPages": "Pages", - "txtPreparedBy": "Prepared by", - "txtPrintArea": "Print_Area", - "txtQuarter": "Qtr", - "txtQuarters": "Quarters", - "txtRow": "Row", - "txtRowLbls": "Row Labels", - "txtSeconds": "Seconds", - "txtSeries": "Series", - "txtStyle_Bad": "Bad", - "txtStyle_Calculation": "Calculation", - "txtStyle_Check_Cell": "Check Cell", - "txtStyle_Comma": "Comma", - "txtStyle_Currency": "Currency", - "txtStyle_Explanatory_Text": "Explanatory Text", - "txtStyle_Good": "Good", - "txtStyle_Heading_1": "Heading 1", - "txtStyle_Heading_2": "Heading 2", - "txtStyle_Heading_3": "Heading 3", - "txtStyle_Heading_4": "Heading 4", - "txtStyle_Input": "Input", - "txtStyle_Linked_Cell": "Linked Cell", - "txtStyle_Neutral": "Neutral", - "txtStyle_Normal": "Normal", - "txtStyle_Note": "Note", - "txtStyle_Output": "Output", - "txtStyle_Percent": "Percent", - "txtStyle_Title": "Title", - "txtStyle_Total": "Total", - "txtStyle_Warning_Text": "Warning Text", - "txtTab": "Tab", - "txtTable": "Table", - "txtTime": "Time", - "txtValues": "Values", - "txtXAxis": "X Axis", - "txtYAxis": "Y Axis", - "txtYears": "Years" - }, - "textAnonymous": "Anonymous", - "textBuyNow": "Visit website", - "textClose": "Close", - "textContactUs": "Contact sales", - "textCustomLoader": "Sorry, you are not entitled to change the loader. Please, contact our sales department to get a quote.", - "textGuest": "Guest", - "textHasMacros": "The file contains automatic macros.
Do you want to run macros?", - "textNo": "No", - "textNoLicenseTitle": "License limit reached", - "textPaidFeature": "Paid feature", - "textRemember": "Remember my choice", - "textYes": "Yes", - "titleServerVersion": "Editor updated", - "titleUpdateVersion": "Version changed", - "warnLicenseExceeded": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact your administrator to learn more.", - "warnLicenseLimitedNoAccess": "License expired. You have no access to document editing functionality. Please, contact your admin.", - "warnLicenseLimitedRenewed": "License needs to be renewed. You have limited access to document editing functionality.
Please contact your administrator to get full access", - "warnLicenseUsersExceeded": "You've reached the user limit for %1 editors. Contact your administrator to learn more.", - "warnNoLicense": "You've reached the limit for simultaneous connections to %1 editors. This document will be opened for viewing only. Contact %1 sales team for personal upgrade terms.", - "warnNoLicenseUsers": "You've reached the user limit for %1 editors. Contact %1 sales team for personal upgrade terms.", - "warnProcessRightsChange": "You don't have permission to edit the file." - } - }, "Error": { "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", @@ -193,6 +194,7 @@ "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "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", @@ -211,7 +213,7 @@ "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.", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print 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", @@ -272,6 +274,7 @@ "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", + "textOk": "Ok", "textRename": "Rename", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", @@ -326,6 +329,7 @@ "textRange": "Range", "textRequired": "Required", "textScreenTip": "Screen Tip", + "textSelectedRange": "Selected Range", "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", @@ -571,6 +575,7 @@ "textMatchCase": "Match Case", "textMatchCell": "Match Cell", "textNoTextFound": "Text not found", + "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textOwner": "Owner", diff --git a/apps/spreadsheeteditor/mobile/locale/ja.json b/apps/spreadsheeteditor/mobile/locale/ja.json index 5e0f72fd0..0522f2303 100644 --- a/apps/spreadsheeteditor/mobile/locale/ja.json +++ b/apps/spreadsheeteditor/mobile/locale/ja.json @@ -1,8 +1,8 @@ { "About": { "textAbout": "詳細情報", + "textAddress": "アドレス", "textEmail": "メール", - "textAddress": "Address", "textBack": "Back", "textPoweredBy": "Powered By", "textTel": "Tel", @@ -11,12 +11,13 @@ "Common": { "Collaboration": { "notcriticalErrorTitle": " 警告", + "textAddComment": "コメントを追加する", + "textAddReply": "返信を追加する", "textCancel": "キャンセル", "textDone": "完了", "textEdit": "編集", - "textAddComment": "Add Comment", - "textAddReply": "Add Reply", "textBack": "Back", + "textOk": "Ok", "textCollaboration": "Collaboration", "textComments": "Comments", "textDeleteComment": "Delete Comment", @@ -39,14 +40,14 @@ } }, "ContextMenu": { + "menuAddComment": "コメントを追加する", + "menuAddLink": "リンクを追加する", "menuCancel": "キャンセル", "menuDelete": "削除", "menuEdit": "編集", "menuViewComment": "コメントを見る", "notcriticalErrorTitle": " 警告", "errorCopyCutPaste": "Copy, cut, and paste actions using the context menu will be performed within the current file only.", - "menuAddComment": "Add Comment", - "menuAddLink": "Add Link", "menuCell": "Cell", "menuFreezePanes": "Freeze Panes", "menuHide": "Hide", @@ -66,9 +67,13 @@ "Main": { "notcriticalErrorTitle": " 警告", "SDK": { + "txtAccent": "アクセント", + "txtAll": "すべて", "txtArt": "テキストを入力…", "txtBlank": "(空白)", + "txtByField": "%2分の%1", "txtGroup": "グループ", + "txtOr": "%1か%2", "txtPrintArea": "印刷範囲", "txtStyle_Heading_1": "見出し1", "txtStyle_Heading_2": "見出し2", @@ -78,9 +83,6 @@ "txtTable": "テーブル", "txtValues": "値", "txtYears": "年", - "txtAccent": "Accent", - "txtAll": "(All)", - "txtByField": "%1 of %2", "txtClearFilter": "Clear Filter (Alt+C)", "txtColLbls": "Column Labels", "txtColumn": "Column", @@ -94,7 +96,6 @@ "txtMinutes": "Minutes", "txtMonths": "Months", "txtMultiSelect": "Multi-Select (Alt+S)", - "txtOr": "%1 or %2", "txtPage": "Page", "txtPageOf": "Page %1 of %2", "txtPages": "Pages", @@ -157,13 +158,16 @@ }, "Error": { "downloadErrorText": "ダウンロード失敗", + "errorArgsRange": "数式にエラーがあります。
引数の範囲が正しくありません。", "errorBadImageUrl": "画像のURLが正しくありません。", + "errorWrongOperator": "入力した数式にエラーがあります。間違った演算子が使用されています。
エラーを修正するか、Escキーを使用して数式の編集をキャンセルしてください。", "notcriticalErrorTitle": " 警告", + "openErrorText": "ファイルを開く際にエラーが発生しました。", + "saveErrorText": "ファイルの保存中にエラーが発生しました", "convertationTimeoutText": "Conversion timeout exceeded.", "criticalErrorExtText": "Press 'OK' to go back to the document list.", "criticalErrorTitle": "Error", "errorAccessDeny": "You are trying to perform an action you do not have rights for.
Please, contact your admin.", - "errorArgsRange": "An error in the formula.
Incorrect arguments range.", "errorAutoFilterChange": "The operation is not allowed as it is attempting to shift cells in a table on your worksheet.", "errorAutoFilterChangeFormatTable": "The operation could not be done for the selected cells as you cannot move a part of a table.
Select another data range so that the whole table is shifted and try again.", "errorAutoFilterDataRange": "The operation could not be done for the selected range of cells.
Select a uniform data range inside or outside the table and try again.", @@ -194,6 +198,7 @@ "errorInvalidRef": "Enter a correct name for the selection or a valid reference to go to.", "errorKeyEncrypt": "Unknown key descriptor", "errorKeyExpire": "Key descriptor expired", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator.", "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", @@ -212,12 +217,9 @@ "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.", + "errorViewerDisconnect": "Connection is lost. You can still view the document,
but you won't be able to download or print it until the connection is restored and the page is reloaded.", "errorWrongBracketsCount": "An error in the formula.
Wrong number of brackets.", - "errorWrongOperator": "An error in the entered formula. The wrong operator is used.
Correct the error or use the Esc button to cancel the formula editing.", - "openErrorText": "An error has occurred while opening the file", "pastInMergeAreaError": "Cannot change a part of a merged cell", - "saveErrorText": "An error has occurred while saving the file", "scriptLoadError": "The connection is too slow, some of the components could not be loaded. Please, reload the page.", "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", @@ -266,13 +268,14 @@ "textDelete": "削除", "textDuplicate": "複製", "textErrNameExists": "この名前のワークシートはすでに存在しています。", + "textErrNameWrongChar": "シート名に次の文字を含めることはできません: \\, /, *, ?, [, ], :", "textRename": "名前の変更", - "textErrNameWrongChar": "A sheet name cannot contains characters: \\, /, *, ?, [, ], :", "textErrNotEmpty": "Sheet name must not be empty", "textErrorLastSheet": "The workbook must have at least one visible worksheet.", "textErrorRemoveSheet": "Can't delete the worksheet.", "textHide": "Hide", "textMore": "More", + "textOk": "Ok", "textRenameSheet": "Rename Sheet", "textSheet": "Sheet", "textSheetName": "Sheet Name", @@ -288,10 +291,14 @@ "View": { "Add": { "notcriticalErrorTitle": " 警告", + "textAddLink": "リンクを追加する", + "textAddress": "アドレス", "textCancel": "キャンセル", "textComment": "コメント", "textImage": "画像", "textImageURL": "画像のURL", + "textInsert": "挿入", + "textInsertImage": "画像の挿入", "errorMaxRows": "ERROR! The maximum number of data series per chart is 255.", "errorStockChart": "Incorrect row order. To build a stock chart, place the data on the sheet in the following order:
opening price, max price, min price, closing price.", "sCatDateAndTime": "Date and time", @@ -303,8 +310,6 @@ "sCatMathematic": "Math and trigonometry", "sCatStatistical": "Statistical", "sCatTextAndData": "Text and data", - "textAddLink": "Add Link", - "textAddress": "Address", "textBack": "Back", "textChart": "Chart", "textDisplay": "Display", @@ -313,8 +318,6 @@ "textFilter": "Filter", "textFunction": "Function", "textGroups": "CATEGORIES", - "textInsert": "Insert", - "textInsertImage": "Insert Image", "textInternalDataRange": "Internal Data Range", "textInvalidRange": "ERROR! Invalid cells range", "textLink": "Link", @@ -326,6 +329,7 @@ "textRange": "Range", "textRequired": "Required", "textScreenTip": "Screen Tip", + "textSelectedRange": "Selected Range", "textShape": "Shape", "textSheet": "Sheet", "textSortAndFilter": "Sort and Filter", @@ -337,11 +341,25 @@ }, "Edit": { "notcriticalErrorTitle": " 警告", + "textAccounting": "会計", + "textActualSize": "実際のサイズ", + "textAddCustomColor": "カスタム色を追加する", + "textAddress": "アドレス", + "textAlign": "配置", + "textAlignBottom": "下揃え", + "textAlignCenter": "中央揃え", + "textAlignLeft": "左揃え", + "textAlignMiddle": "中央揃え", + "textAlignRight": "右揃え", + "textAlignTop": "上揃え", + "textAllBorders": "全てのボーダー", "textAuto": "オート", "textBillions": "十億", "textColor": "色", "textDesign": "デザイン", + "textDisplayUnits": "表示単位", "textDollar": "ドル", + "textEmptyItem": "{空白のセル}", "textErrorMsg": "少なくとも1つの値を選択する必要があります", "textErrorTitle": " 警告", "textEuro": "ユーロ", @@ -362,18 +380,6 @@ "textValue": "値", "textVerticalText": "縦書きテキスト", "textYen": "円", - "textAccounting": "Accounting", - "textActualSize": "Actual Size", - "textAddCustomColor": "Add Custom Color", - "textAddress": "Address", - "textAlign": "Align", - "textAlignBottom": "Align Bottom", - "textAlignCenter": "Align Center", - "textAlignLeft": "Align Left", - "textAlignMiddle": "Align Middle", - "textAlignRight": "Align Right", - "textAlignTop": "Align Top", - "textAllBorders": "All Borders", "textAngleClockwise": "Angle Clockwise", "textAngleCounterclockwise": "Angle Counterclockwise", "textAxisCrosses": "Axis Crosses", @@ -404,11 +410,9 @@ "textDiagonalDownBorder": "Diagonal Down Border", "textDiagonalUpBorder": "Diagonal Up Border", "textDisplay": "Display", - "textDisplayUnits": "Display Units", "textEditLink": "Edit Link", "textEffects": "Effects", "textEmptyImgUrl": "You need to specify the image URL.", - "textEmptyItem": "{Blanks}", "textExternalLink": "External Link", "textFill": "Fill", "textFillColor": "Fill Color", @@ -520,6 +524,7 @@ "advDRMPassword": "パスワード", "notcriticalErrorTitle": " 警告", "textAbout": "詳細情報", + "textAddress": "アドレス", "textApplication": "アプリケーション", "textAuthor": "作成者", "textCancel": "キャンセル", @@ -533,11 +538,11 @@ "textSearch": "検索", "textSearchBy": "検索", "textTitle": "タイトル", + "textUnitOfMeasurement": "測定単位", "textValues": "値", "advCSVOptions": "Choose CSV options", "advDRMOptions": "Protected File", "closeButtonText": "Close File", - "textAddress": "Address", "textApplicationSettings": "Application Settings", "textBack": "Back", "textBottom": "Bottom", @@ -577,6 +582,7 @@ "textMatchCase": "Match Case", "textMatchCell": "Match Cell", "textNoTextFound": "Text not found", + "textOk": "Ok", "textOpenFile": "Enter a password to open the file", "textOrientation": "Orientation", "textPoint": "Point", @@ -599,7 +605,6 @@ "textSubject": "Subject", "textTel": "Tel", "textTop": "Top", - "textUnitOfMeasurement": "Unit Of Measurement", "textUploaded": "Uploaded", "textVersion": "Version", "textWorkbook": "Workbook", diff --git a/apps/spreadsheeteditor/mobile/locale/ko.json b/apps/spreadsheeteditor/mobile/locale/ko.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/ko.json +++ b/apps/spreadsheeteditor/mobile/locale/ko.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/lo.json b/apps/spreadsheeteditor/mobile/locale/lo.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/lo.json +++ b/apps/spreadsheeteditor/mobile/locale/lo.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/lv.json b/apps/spreadsheeteditor/mobile/locale/lv.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/lv.json +++ b/apps/spreadsheeteditor/mobile/locale/lv.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/nb.json b/apps/spreadsheeteditor/mobile/locale/nb.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/nb.json +++ b/apps/spreadsheeteditor/mobile/locale/nb.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/nl.json b/apps/spreadsheeteditor/mobile/locale/nl.json index d5474aa7c..71157306e 100644 --- a/apps/spreadsheeteditor/mobile/locale/nl.json +++ b/apps/spreadsheeteditor/mobile/locale/nl.json @@ -30,7 +30,8 @@ "textReopen": "Heropenen", "textResolve": "Oplossen", "textTryUndoRedo": "De functies Ongedaan maken/Annuleren zijn uitgeschakeld in de Modus Gezamenlijk bewerken.", - "textUsers": "Gebruikers" + "textUsers": "Gebruikers", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Aangepaste kleuren", @@ -222,7 +223,8 @@ "unknownErrorText": "Onbekende fout.", "uploadImageExtMessage": "Onbekende afbeeldingsindeling.", "uploadImageFileCountMessage": "Geen afbeeldingen geüpload.", - "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB." + "uploadImageSizeMessage": "De afbeelding is te groot. De maximale grote is 25MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Gegevens worden geladen...", @@ -277,7 +279,8 @@ "textSheet": "Blad", "textSheetName": "Bladnaam", "textUnhide": "Verbergen ongedaan maken", - "textWarnDeleteSheet": "Het werkblad heeft misschien gegevens. Verder gaan met de bewerking?" + "textWarnDeleteSheet": "Het werkblad heeft misschien gegevens. Verder gaan met de bewerking?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "U hebt niet-opgeslagen wijzigingen in dit document. Klik op 'Blijf op deze pagina' om te wachten op automatisch opslaan. Klik op 'Verlaat deze pagina' om alle niet-opgeslagen wijzigingen te verwijderen.", @@ -333,7 +336,8 @@ "txtExpandSort": "De gegevens naast de selectie worden niet gesorteerd. Wilt u de selectie uitbreiden en aangrenzende gegevens opnemen of wilt u doorgaan met sorteren van alleen de cellen die op dit moment zijn geselecteerd?", "txtNotUrl": "Dit veld moet een URL bevatten in de notatie \"http://www.internet.nl\"", "txtSorting": "Sorteren", - "txtSortSelected": "Geselecteerde sorteren" + "txtSortSelected": "Geselecteerde sorteren", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Waarschuwing", @@ -631,7 +635,8 @@ "txtScheme9": "Gieterij", "txtSpace": "Spatie", "txtTab": "Tab", - "warnDownloadAs": "Als u doorgaat met opslaan in dit formaat, gaat alle opmaak verloren en blijft alleen de tekst behouden.
Wilt u doorgaan?" + "warnDownloadAs": "Als u doorgaat met opslaan in dit formaat, gaat alle opmaak verloren en blijft alleen de tekst behouden.
Wilt u doorgaan?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/pl.json b/apps/spreadsheeteditor/mobile/locale/pl.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/pl.json +++ b/apps/spreadsheeteditor/mobile/locale/pl.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/pt.json b/apps/spreadsheeteditor/mobile/locale/pt.json index 5e35bc3bf..1f621e07c 100644 --- a/apps/spreadsheeteditor/mobile/locale/pt.json +++ b/apps/spreadsheeteditor/mobile/locale/pt.json @@ -30,7 +30,8 @@ "textReopen": "Reabrir", "textResolve": "Resolver", "textTryUndoRedo": "As funções Desfazer/Refazer estão desabilitadas para o modo de coedição rápido.", - "textUsers": "Usuários" + "textUsers": "Usuários", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Cores personalizadas", @@ -222,7 +223,8 @@ "unknownErrorText": "Erro desconhecido.", "uploadImageExtMessage": "Formato de imagem desconhecido.", "uploadImageFileCountMessage": "Sem imagens carregadas.", - "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB." + "uploadImageSizeMessage": "Tamanho limite máximo da imagem excedido. O tamanho máximo é de 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Carregando dados...", @@ -277,7 +279,8 @@ "textSheet": "Folha", "textSheetName": "Nome da folha", "textUnhide": "Reexibir", - "textWarnDeleteSheet": "A folha de trabalho talvez tenha dados. Proceder à operação?" + "textWarnDeleteSheet": "A folha de trabalho talvez tenha dados. Proceder à operação?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "Você tem alterações não salvas neste documento. Clique em 'Permanecer nesta página' para aguardar o salvamento automático. Clique em 'Sair desta página' para descartar todas as alterações não salvas.", @@ -333,7 +336,8 @@ "txtExpandSort": "Os dados próximos à seleção não serão classificados. Você quer expandir a seleção para incluir os dados adjacentes ou continuar com classificando apenas as células selecionadas atualmente?", "txtNotUrl": "Este campo deve ser uma URL no formato \"http://www.example.com\"", "txtSorting": "Classificação", - "txtSortSelected": "Classificar selecionado" + "txtSortSelected": "Classificar selecionado", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Aviso", @@ -631,7 +635,8 @@ "txtScheme9": "Fundição", "txtSpace": "Espaço", "txtTab": "Aba", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/ro.json b/apps/spreadsheeteditor/mobile/locale/ro.json index e7dc8db1a..5da47baa2 100644 --- a/apps/spreadsheeteditor/mobile/locale/ro.json +++ b/apps/spreadsheeteditor/mobile/locale/ro.json @@ -30,7 +30,8 @@ "textReopen": "Redeschidere", "textResolve": "Rezolvare", "textTryUndoRedo": "Funcții Anulare/Refacere sunt dezactivate în modul Rapid de editare colaborativă.", - "textUsers": "Utilizatori" + "textUsers": "Utilizatori", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Culori particularizate", @@ -193,6 +194,7 @@ "errorInvalidRef": "Introduceți numele din selecție corect sau o referință validă de accesat.", "errorKeyEncrypt": "Descriptor cheie nerecunoscut", "errorKeyExpire": "Descriptor cheie a expirat", + "errorLoadingFont": "Fonturile nu sunt încărcate.
Contactați administratorul dvs de Server Documente.", "errorLockedAll": "Operațiunea nu poate fi efectuată deoarece foaia a fost blocată de către un alt utilizator.", "errorLockedCellPivot": "Nu puteți modifica datele manipulând tabel Pivot.", "errorLockedWorksheetRename": "Deocamdată, nu puteți redenumi foaia deoarece foaia este redenumită de către un alt utilizator", @@ -272,6 +274,7 @@ "textErrorRemoveSheet": "Foaia de calcul nu poate fi ștearsă.", "textHide": "Ascunde", "textMore": "Mai multe", + "textOk": "OK", "textRename": "Redenumire", "textRenameSheet": "Redenumire foaie", "textSheet": "Foaie", @@ -326,6 +329,7 @@ "textRange": "Zona", "textRequired": "Obligatoriu", "textScreenTip": "Sfaturi ecran", + "textSelectedRange": "Zona selectată", "textShape": "Forma", "textSheet": "Foaie", "textSortAndFilter": "Sortare și filtrare", @@ -571,6 +575,7 @@ "textMatchCase": "Potrivire litere mari și mici", "textMatchCell": "Potrivire celulă", "textNoTextFound": "Textul nu a fost găsit", + "textOk": "OK", "textOpenFile": "Introduceți parola pentru deschidere fișier", "textOrientation": "Orientare", "textOwner": "Proprietar", diff --git a/apps/spreadsheeteditor/mobile/locale/ru.json b/apps/spreadsheeteditor/mobile/locale/ru.json index 2d0b761cf..04d1a1637 100644 --- a/apps/spreadsheeteditor/mobile/locale/ru.json +++ b/apps/spreadsheeteditor/mobile/locale/ru.json @@ -30,7 +30,8 @@ "textReopen": "Переоткрыть", "textResolve": "Решить", "textTryUndoRedo": "Функции отмены и повтора действий отключены в Быстром режиме совместного редактирования.", - "textUsers": "Пользователи" + "textUsers": "Пользователи", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Пользовательские цвета", @@ -193,6 +194,7 @@ "errorInvalidRef": "Введите корректное имя для выделенного диапазона или допустимую ссылку для перехода.", "errorKeyEncrypt": "Неизвестный дескриптор ключа", "errorKeyExpire": "Срок действия дескриптора ключа истек", + "errorLoadingFont": "Шрифты не загружены.
Пожалуйста, обратитесь к администратору Сервера документов.", "errorLockedAll": "Операция не может быть произведена, так как лист заблокирован другим пользователем.", "errorLockedCellPivot": "Нельзя изменить данные в сводной таблице.", "errorLockedWorksheetRename": "В настоящее время лист нельзя переименовать, так как его переименовывает другой пользователь", @@ -211,7 +213,7 @@ "errorUpdateVersionOnDisconnect": "Подключение к Интернету было восстановлено, и версия файла изменилась.
Прежде чем продолжить работу, надо скачать файл или скопировать его содержимое, чтобы обеспечить сохранность данных, а затем перезагрузить страницу.", "errorUserDrop": "В настоящий момент файл недоступен.", "errorUsersExceed": "Превышено количество пользователей, разрешенных согласно тарифному плану", - "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать его до восстановления подключения и обновления страницы.", + "errorViewerDisconnect": "Подключение прервано. Вы можете просматривать документ,
но не сможете скачать или напечатать его до восстановления подключения и обновления страницы.", "errorWrongBracketsCount": "Ошибка в формуле.
Неверное количество скобок.", "errorWrongOperator": "Ошибка во введенной формуле. Использован неправильный оператор.
Исправьте ошибку или используйте клавишу Esc для отмены редактирования формулы.", "notcriticalErrorTitle": "Внимание", @@ -272,6 +274,7 @@ "textErrorRemoveSheet": "Не удалось удалить лист.", "textHide": "Скрыть", "textMore": "Ещё", + "textOk": "Ok", "textRename": "Переименовать", "textRenameSheet": "Переименовать лист", "textSheet": "Лист", @@ -326,6 +329,7 @@ "textRange": "Диапазон", "textRequired": "Обязательно", "textScreenTip": "Подсказка", + "textSelectedRange": "Выбранный диапазон", "textShape": "Фигура", "textSheet": "Лист", "textSortAndFilter": "Сортировка и фильтрация", @@ -571,6 +575,7 @@ "textMatchCase": "С учетом регистра", "textMatchCell": "Сопоставление ячеек", "textNoTextFound": "Текст не найден", + "textOk": "Ok", "textOpenFile": "Введите пароль для открытия файла", "textOrientation": "Ориентация", "textOwner": "Владелец", diff --git a/apps/spreadsheeteditor/mobile/locale/sk.json b/apps/spreadsheeteditor/mobile/locale/sk.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/sk.json +++ b/apps/spreadsheeteditor/mobile/locale/sk.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/sl.json b/apps/spreadsheeteditor/mobile/locale/sl.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/sl.json +++ b/apps/spreadsheeteditor/mobile/locale/sl.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/tr.json b/apps/spreadsheeteditor/mobile/locale/tr.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/tr.json +++ b/apps/spreadsheeteditor/mobile/locale/tr.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/uk.json b/apps/spreadsheeteditor/mobile/locale/uk.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/uk.json +++ b/apps/spreadsheeteditor/mobile/locale/uk.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/vi.json b/apps/spreadsheeteditor/mobile/locale/vi.json index 7724d1d16..b86cade17 100644 --- a/apps/spreadsheeteditor/mobile/locale/vi.json +++ b/apps/spreadsheeteditor/mobile/locale/vi.json @@ -30,7 +30,8 @@ "textReopen": "Reopen", "textResolve": "Resolve", "textTryUndoRedo": "The Undo/Redo functions are disabled for the Fast co-editing mode.", - "textUsers": "Users" + "textUsers": "Users", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "Custom Colors", @@ -222,7 +223,8 @@ "unknownErrorText": "Unknown error.", "uploadImageExtMessage": "Unknown image format.", "uploadImageFileCountMessage": "No images uploaded.", - "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB." + "uploadImageSizeMessage": "The image is too big. The maximum size is 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "Loading data...", @@ -277,7 +279,8 @@ "textSheet": "Sheet", "textSheetName": "Sheet Name", "textUnhide": "Unhide", - "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?" + "textWarnDeleteSheet": "The worksheet maybe has data. Proceed operation?", + "textOk": "Ok" }, "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.", @@ -333,7 +336,8 @@ "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtNotUrl": "This field should be a URL in the format \"http://www.example.com\"", "txtSorting": "Sorting", - "txtSortSelected": "Sort selected" + "txtSortSelected": "Sort selected", + "textSelectedRange": "Selected Range" }, "Edit": { "notcriticalErrorTitle": "Warning", @@ -631,7 +635,8 @@ "txtScheme9": "Foundry", "txtSpace": "Space", "txtTab": "Tab", - "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?" + "warnDownloadAs": "If you continue saving in this format all features except the text will be lost.
Are you sure you want to continue?", + "textOk": "Ok" } } } \ No newline at end of file diff --git a/apps/spreadsheeteditor/mobile/locale/zh.json b/apps/spreadsheeteditor/mobile/locale/zh.json index 8c30de436..f0b05a183 100644 --- a/apps/spreadsheeteditor/mobile/locale/zh.json +++ b/apps/spreadsheeteditor/mobile/locale/zh.json @@ -30,7 +30,8 @@ "textReopen": "重新打开", "textResolve": "解决", "textTryUndoRedo": "快速共同编辑模式下,撤销/重做功能被禁用。", - "textUsers": "用户" + "textUsers": "用户", + "textOk": "Ok" }, "ThemeColorPalette": { "textCustomColors": "自定义颜色", @@ -222,7 +223,8 @@ "unknownErrorText": "未知错误。", "uploadImageExtMessage": "未知图像格式。", "uploadImageFileCountMessage": "没有图片上传", - "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB." + "uploadImageSizeMessage": "图片太大了。最大允许的大小是 25 MB.", + "errorLoadingFont": "Fonts are not loaded.
Please contact your Document Server administrator." }, "LongActions": { "applyChangesTextText": "数据加载中…", @@ -277,7 +279,8 @@ "textSheet": "表格", "textSheetName": "工作表名称", "textUnhide": "取消隐藏", - "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?" + "textWarnDeleteSheet": "该工作表可能带有数据。要进行操作吗?", + "textOk": "Ok" }, "Toolbar": { "dlgLeaveMsgText": "你在该文档中有未保存的修改。点击“留在该页”来等待自动保存。点击“离开该页”将舍弃全部未保存的更改。", @@ -330,6 +333,7 @@ "textSortAndFilter": "排序和过滤", "txtNotUrl": "该字段应为“http://www.example.com”格式的URL", "textCancel": "Cancel", + "textSelectedRange": "Selected Range", "txtExpand": "Expand and sort", "txtExpandSort": "The data next to the selection will not be sorted. Do you want to expand the selection to include the adjacent data or continue with sorting the currently selected cells only?", "txtSorting": "Sorting", @@ -610,6 +614,7 @@ "txtSpace": "空格", "txtTab": "标签", "warnDownloadAs": "如果您继续以此格式保存,除文本之外的所有功能将丢失。
您确定要继续吗?", + "textOk": "Ok", "txtScheme1": "Office", "txtScheme10": "Median", "txtScheme11": "Metro", diff --git a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx index 1dad32e42..7447d436a 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Error.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Error.jsx @@ -29,7 +29,7 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu } Common.Notifications.trigger('preloader:close'); - Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument); + Common.Notifications.trigger('preloader:endAction', Asc.c_oAscAsyncActionType['BlockInteraction'], LoadingDocument,true); const api = Common.EditorApi.get(); @@ -307,6 +307,10 @@ const ErrorController = inject('storeAppOptions')(({storeAppOptions, LoadingDocu config.msg = _t.errorChangeOnProtectedSheet; break; + case Asc.c_oAscError.ID.LoadingFontError: + config.msg = _t.errorLoadingFont; + break; + default: config.msg = _t.errorDefaultMessage.replace('%1', id); break; diff --git a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx index adba817b8..34d2f7d8f 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/LongActions.jsx @@ -66,7 +66,9 @@ const LongActionsController = () => { if (action && !forceClose) { setLongActionView(action) } else { - loadMask && loadMask.el && loadMask.el.classList.contains('modal-in') && f7.dialog.close(loadMask.el); + loadMask && loadMask.el && loadMask.el.classList.contains('modal-in') ? + f7.dialog.close(loadMask.el) : + f7.dialog.close($$('.dialog-preloader')); } }; @@ -167,8 +169,11 @@ const LongActionsController = () => { } if (action.type == Asc.c_oAscAsyncActionType.BlockInteraction) { + if (loadMask && loadMask.el && loadMask.el.classList.contains('modal-in')) { loadMask.el.getElementsByClassName('dialog-title')[0].innerHTML = title; + } else if ($$('.dialog-preloader').hasClass('modal-in')) { + $$('.dialog-preloader').find('dialog-title').text(title); } else { loadMask = f7.dialog.preloader(title); } diff --git a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx index 9b04def60..545629359 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Main.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Main.jsx @@ -56,8 +56,8 @@ class MainController extends Component { initSdk() { const on_load_scripts = () => { - !window.sdk_scripts && (window.sdk_scripts = ['../../../../../../sdkjs/common/AllFonts.js', - '../../../../../../sdkjs/cell/sdk-all-min.js']); + !window.sdk_scripts && (window.sdk_scripts = ['../../../../sdkjs/common/AllFonts.js', + '../../../../sdkjs/cell/sdk-all-min.js']); let dep_scripts = [ '../../../vendor/jquery/jquery.min.js', '../../../vendor/bootstrap/dist/js/bootstrap.min.js', diff --git a/apps/spreadsheeteditor/mobile/src/controller/Search.jsx b/apps/spreadsheeteditor/mobile/src/controller/Search.jsx index f6949e9c6..f80e789fc 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Search.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Search.jsx @@ -38,13 +38,11 @@ class SearchSettings extends SearchSettingsView { this.onFindReplaceClick('find')} /> - {isEdit ? - this.onFindReplaceClick('replace')} /> - : null} - {isEdit ? - this.onFindReplaceClick('replace-all')}> + {isEdit ? [ + this.onFindReplaceClick('replace')} />, + this.onFindReplaceClick('replace-all')}>] : null} {_t.textSearchIn} diff --git a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx index cb71e6993..d0f131594 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/Statusbar.jsx @@ -199,15 +199,20 @@ const Statusbar = inject('sheets', 'storeAppOptions', 'users')(observer(props => if (sheets.sheets.length == 1 || visibleSheets.length == 1) { f7.dialog.alert(_t.textErrorLastSheet, _t.notcriticalErrorTitle); } else { - f7.dialog.confirm( - _t.textWarnDeleteSheet, - _t.notcriticalErrorTitle, - () => { - if (!api.asc_deleteWorksheet()) { - f7.dialog.alert(_t.textErrorRemoveSheet, _t.notcriticalErrorTitle); - } - } - ); + f7.dialog.create({ + title: _t.notcriticalErrorTitle, + text: _t.textWarnDeleteSheet, + buttons: [ + {text: _t.textCancel}, + { + text: _t.textOk, + onClick: () => { + if (!api.asc_deleteWorksheet()) { + f7.dialog.alert(_t.textErrorRemoveSheet, _t.notcriticalErrorTitle); + } + } + }] + }).open(); } }; diff --git a/apps/spreadsheeteditor/mobile/src/controller/add/AddLink.jsx b/apps/spreadsheeteditor/mobile/src/controller/add/AddLink.jsx index 3d026852b..683964fc1 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/add/AddLink.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/add/AddLink.jsx @@ -87,7 +87,10 @@ class AddLinkController extends Component { display = args.sheet + '!' + args.url; } - link.asc_setText(args.text == null ? null : !!args.text ? args.text : display); + if(this.displayText !== 'locked') { + link.asc_setText(args.text == null ? null : !!args.text ? args.text : display); + } + link.asc_setTooltip(args.tooltip); api.asc_insertHyperlink(link); diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx index 5091c765b..2d10d41f8 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/Download.jsx @@ -26,15 +26,21 @@ class DownloadController extends Component { if (format) { if (format == Asc.c_oAscFileType.CSV) { - f7.dialog.confirm( - _t.warnDownloadAs, - _t.notcriticalErrorTitle, - () => { - const advOptions = api.asc_getAdvancedOptions(); - this.closeModal(); - Common.Notifications.trigger('openEncoding', Asc.c_oAscAdvancedOptionsID.CSV, advOptions, 2, new Asc.asc_CDownloadOptions(format)); - } - ) + f7.dialog.create({ + title: _t.notcriticalErrorTitle, + text: _t.warnDownloadAs, + buttons: [ + { + text: _t.textCancel + }, + { + text: _t.textOk, + onClick: () => { + onAdvancedOptions(Asc.c_oAscAdvancedOptionsID.CSV, api.asc_getAdvancedOptions(), 2, new Asc.asc_CDownloadOptions(format), _t, true); + } + } + ] + }).open(); } else { this.closeModal(); api.asc_DownloadAs(new Asc.asc_CDownloadOptions(format)); diff --git a/apps/spreadsheeteditor/mobile/src/controller/settings/SpreadsheetInfo.jsx b/apps/spreadsheeteditor/mobile/src/controller/settings/SpreadsheetInfo.jsx index 37c38b3b0..573297dd3 100644 --- a/apps/spreadsheeteditor/mobile/src/controller/settings/SpreadsheetInfo.jsx +++ b/apps/spreadsheeteditor/mobile/src/controller/settings/SpreadsheetInfo.jsx @@ -6,8 +6,8 @@ class SpreadsheetInfoController extends Component { constructor(props) { super(props); this.docProps = this.getDocProps(); + if (this.docProps) { - this.dataApp = this.getAppProps(); this.modified = this.getModified(); this.modifiedBy = this.getModifiedBy(); this.creators = this.getCreators(); @@ -15,7 +15,6 @@ class SpreadsheetInfoController extends Component { this.subject = this.getSubject(); this.description = this.getDescription(); this.created = this.getCreated(); - } } @@ -40,6 +39,7 @@ class SpreadsheetInfoController extends Component { getModified() { let valueModified = this.docProps.asc_getModified(); const _lang = this.props.storeAppOptions.lang; + if (valueModified) { return ( valueModified.toLocaleString(_lang, { @@ -81,16 +81,18 @@ class SpreadsheetInfoController extends Component { getCreated() { let value = this.docProps.asc_getCreated(); const _lang = this.props.storeAppOptions.lang; + if(value) { return value.toLocaleString(_lang, {year: 'numeric', month: '2-digit', day: '2-digit'}) + ' ' + value.toLocaleTimeString(_lang, {timeStyle: 'short'}); } + return null; } render() { return ( '); + .encoded-svg-mask(''); } &.icon-insimage { @@ -467,6 +467,9 @@ height: 24px; .encoded-svg-background(''); } + &.icon-link { + background: #fff; + } } } } diff --git a/apps/spreadsheeteditor/mobile/src/less/icons-material.less b/apps/spreadsheeteditor/mobile/src/less/icons-material.less index 74821ae31..928c5806f 100644 --- a/apps/spreadsheeteditor/mobile/src/less/icons-material.less +++ b/apps/spreadsheeteditor/mobile/src/less/icons-material.less @@ -105,7 +105,7 @@ &.icon-link { width: 24px; height: 24px; - .encoded-svg-background(''); + .encoded-svg-mask(''); } &.icon-insimage, &.icon-image-library { width: 24px; @@ -398,6 +398,16 @@ } } + .tabbar { + .link.tab-link { + i.icon { + &.icon-link { + background: #fff; + } + } + } + } + // Overwrite color for toolbar .navbar { i.icon { diff --git a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx index 621b5afb9..ea12db905 100644 --- a/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/FilterOptions.jsx @@ -6,19 +6,27 @@ import { Device } from '../../../../common/mobile/utils/device'; const FilterOptions = (props) => { const { t } = useTranslation(); const _t = t('View.Edit', {returnObjects: true}); - - useEffect(() => { - const is_all_checked = props.listVal.every(item => item.check); - setAll(is_all_checked); - }); - - const [all, setAll] = useState(false); + let is_all_checked = props.listVal.every(item => item.check); const HandleClearFilter = () => { + is_all_checked = true; props.onClearFilter(); - setAll(true); props.onUpdateCell('all', true); }; + + const onValidChecked = () => { + if ( props.listVal.every(item => !item.check) ) { + f7.dialog.create({ + title: _t.textErrorTitle, + text: _t.textErrorMsg, + buttons: [ + { + text: 'OK', + } + ] + }).open(); + } + }; return ( @@ -36,10 +44,10 @@ const FilterOptions = (props) => { - props.onSort('sortdown')}> + {props.onSort('sortdown'); onValidChecked();}}> - props.onSort('sortup')}> + {props.onSort('sortup'); onValidChecked();}}> @@ -51,9 +59,9 @@ const FilterOptions = (props) => { props.onDeleteFilter()} id="btn-delete-filter">{_t.textDeleteFilter} - props.onUpdateCell('all', e.target.checked)} name='filter-cellAll' checkbox checked={all}>{_t.textSelectAll} + {props.onUpdateCell('all', e.target.checked); onValidChecked();}} name='filter-cellAll' checkbox checked={is_all_checked}>{_t.textSelectAll} {props.listVal.map((value) => - props.onUpdateCell(value.id, e.target.checked)} key={value.value} name='filter-cell' value={value.value} title={value.cellvalue} checkbox checked={value.check} /> + {props.onUpdateCell(value.id, e.target.checked); onValidChecked();}} key={value.value} name='filter-cell' value={value.value} title={value.cellvalue} checkbox checked={value.check} /> )} @@ -62,29 +70,12 @@ const FilterOptions = (props) => { }; const FilterView = (props) => { - const { t } = useTranslation(); - const _t = t('View.Edit', {returnObjects: true}); - - const onClosed = () => { - if ( props.listVal.every(item => !item.check) ) { - f7.dialog.create({ - title: _t.textErrorTitle, - text: _t.textErrorMsg, - buttons: [ - { - text: 'OK', - } - ] - }).open(); - } - }; - return ( !Device.phone ? - + : - + ) diff --git a/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx b/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx index 0ba851392..8721cad25 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/Add.jsx @@ -91,6 +91,7 @@ const AddTabs = props => { const _t = t('View.Add', {returnObjects: true}); const showPanels = props.showPanels; const tabs = []; + if (!showPanels) { tabs.push({ caption: _t.textChart, @@ -131,10 +132,11 @@ const AddTabs = props => { component: }); } - if (showPanels && showPanels === 'hyperlink') { + if ((showPanels && showPanels === 'hyperlink') || props.isAddShapeHyperlink) { tabs.push({ caption: _t.textAddLink, id: 'add-link', + icon: 'icon-link', component: }); } @@ -162,10 +164,10 @@ class AddView extends Component { return ( show_popover ? this.props.onclosed()}> - + : this.props.onclosed()}> - + ) } @@ -193,6 +195,7 @@ const Add = props => { const cellinfo = api.asc_getCellInfo(); const seltype = cellinfo.asc_getSelectionType(); const iscelllocked = cellinfo.asc_getLocked(); + const isAddShapeHyperlink = api.asc_canAddShapeHyperlink(); let options; if ( !iscelllocked ) { @@ -217,6 +220,7 @@ const Add = props => { return }; diff --git a/apps/spreadsheeteditor/mobile/src/view/add/AddImage.jsx b/apps/spreadsheeteditor/mobile/src/view/add/AddImage.jsx index a3311cb6c..9f2928cfd 100644 --- a/apps/spreadsheeteditor/mobile/src/view/add/AddImage.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/add/AddImage.jsx @@ -27,7 +27,7 @@ const PageLinkSettings = props => { {_t.textAddress} - + { let displayText = props.displayText; const displayDisabled = displayText === 'locked'; displayText = displayDisabled ? _t.textSelectedRange : displayText; + const [stateDisplayText, setDisplayText] = useState(displayText); - const [stateAutoUpdate, setAutoUpdate] = useState(true); + const [stateAutoUpdate, setAutoUpdate] = useState(!stateDisplayText ? true : false); const [screenTip, setScreenTip] = useState(''); const activeSheet = props.activeSheet; @@ -89,7 +90,7 @@ const AddLinkView = props => { value={link} onChange={(event) => { setLink(event.target.value); - if((!stateDisplayText || stateDisplayText === link) && stateAutoUpdate) setDisplayText(event.target.value); + if(stateAutoUpdate && !displayDisabled) setDisplayText(event.target.value); }} className={isIos ? 'list-input-right' : ''} /> diff --git a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx index 93c83815e..377b8f88b 100644 --- a/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/edit/EditCell.jsx @@ -105,8 +105,9 @@ const EditCell = props => { {cellStyles.map((elem, index) => { return ( - props.onStyleClick(elem.name)}> +
) })} diff --git a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetInfo.jsx b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetInfo.jsx index 8cd420b90..cb92430a4 100644 --- a/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetInfo.jsx +++ b/apps/spreadsheeteditor/mobile/src/view/settings/SpreadsheetInfo.jsx @@ -8,7 +8,7 @@ const PageSpreadsheetInfo = (props) => { const _t = t("View.Settings", { returnObjects: true }); const storeSpreadsheetInfo = props.storeSpreadsheetInfo; const dataDoc = storeSpreadsheetInfo.dataDoc; - const dataApp = props.dataApp; + const dataApp = props.getAppProps(); const dataModified = props.modified; const dataModifiedBy = props.modifiedBy; const creators = props.creators; @@ -88,11 +88,11 @@ const PageSpreadsheetInfo = (props) => {
) : null} - {props.getCreated ? ( + {props.created ? ( {_t.textCreated} - + ) : null} diff --git a/vendor/framework7-react/package.json b/vendor/framework7-react/package.json index 2fa213be4..a19d70144 100644 --- a/vendor/framework7-react/package.json +++ b/vendor/framework7-react/package.json @@ -13,7 +13,7 @@ "deploy-word": "cross-env TARGET_EDITOR=word NODE_ENV=production node ./build/build.js", "deploy-cell": "cross-env TARGET_EDITOR=cell NODE_ENV=production node ./build/build.js", "deploy-slide": "cross-env TARGET_EDITOR=slide NODE_ENV=production node ./build/build.js", - "postinstall": "cpy ./node_modules/framework7-icons/fonts/*.* ./src/fonts/", + "postinstall1": "cpy ./node_modules/framework7-icons/fonts/*.* ./src/fonts/", "build-word": "cross-env NODE_ENV=development node ./build/build.js", "build-slide": "cross-env NODE_ENV=development TARGET_EDITOR=slide node ./build/build.js", "build-cell": "cross-env NODE_ENV=development TARGET_EDITOR=cell node ./build/build.js"